2d108c295a
Reescribe todos los componentes UI para usar Mantine v9 en lugar de shadcn/Tailwind. Elimina cn(), CVA, components.json, theme_provider custom y globals.css con Tailwind. Añade 25+ componentes nuevos (AppShell, AuthForm, DatePickerInput, Dropzone, etc.) y MantineProvider como wrapper estándar del sistema de temas. Co-Authored-By: Claude Opus 4.6 (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.