47fac22230
- .claude/CLAUDE.md - .claude/commands/subagentes.md - .claude/rules/INDEX.md - .mcp.json - bash/functions/cybersecurity/analyze_dns.md - bash/functions/cybersecurity/audit_http_headers.md - bash/functions/cybersecurity/audit_ssh_config.md - bash/functions/cybersecurity/check_firewall.md - bash/functions/cybersecurity/detect_suspicious_users.md - bash/functions/cybersecurity/encrypt_file.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1.7 KiB
1.7 KiB
name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, framework, props, output, tested, tests, test_file_path, file_path, emits, has_state, variant
| name | kind | lang | domain | version | purity | signature | description | tags | uses_functions | uses_types | returns | returns_optional | error_type | imports | framework | props | output | tested | tests | test_file_path | file_path | emits | has_state | variant | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| stepper | component | ts | ui | 1.0.0 | impure | FnStepper(props: FnStepperProps): JSX.Element | Stepper de pasos con orientacion horizontal/vertical. Wrapper sobre Mantine Stepper. |
|
false |
|
react |
|
Stepper con indicadores de paso, labels y descripciones opcionales | false | frontend/functions/ui/stepper.tsx | false |
Ejemplo
import { FnStepper } from '@fn_library'
<FnStepper
active={1}
onStepClick={setActive}
steps={[
{ label: 'Configuracion' },
{ label: 'Datos', description: 'Importar CSV' },
{ label: 'Revision' },
]}
/>
Notas
Wrapper sobre Mantine Stepper. Recibe un array declarativo de pasos en vez de children manuales. Soporta iconos custom por paso.