@adamosuiteservices/ui 2.13.4 → 2.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/{button-Bn4LFAa9.js → button-B0lWuG-D.js} +27 -18
  2. package/dist/{button-Day6_fbu.cjs → button-DVrteFz9.cjs} +2 -2
  3. package/dist/button.cjs +1 -1
  4. package/dist/button.js +1 -1
  5. package/dist/{calendar-B1_ybTg0.js → calendar-CfqtuOWv.js} +1 -1
  6. package/dist/{calendar-CZkzHgYi.cjs → calendar-CpUN6BGK.cjs} +1 -1
  7. package/dist/calendar.cjs +1 -1
  8. package/dist/calendar.js +1 -1
  9. package/dist/colors.css +1 -1
  10. package/dist/{combobox-BOi7QzmO.js → combobox-B8HMlZy6.js} +1 -1
  11. package/dist/{combobox-0ndFo07_.cjs → combobox-Btj-hiBy.cjs} +1 -1
  12. package/dist/combobox.cjs +1 -1
  13. package/dist/combobox.js +1 -1
  14. package/dist/components/ui/alert/alert.d.ts +1 -1
  15. package/dist/components/ui/button/button.d.ts +3 -2
  16. package/dist/components/ui/card/card.d.ts +2 -2
  17. package/dist/date-picker-selector.cjs +1 -1
  18. package/dist/date-picker-selector.js +3 -3
  19. package/dist/file-upload.cjs +1 -1
  20. package/dist/file-upload.js +1 -1
  21. package/dist/full-screen-loader.cjs +1 -1
  22. package/dist/full-screen-loader.js +1 -1
  23. package/dist/input-group.cjs +1 -1
  24. package/dist/input-group.js +1 -1
  25. package/dist/pagination.cjs +1 -1
  26. package/dist/pagination.js +1 -1
  27. package/dist/sidebar.cjs +1 -1
  28. package/dist/sidebar.js +1 -1
  29. package/dist/styles.css +1 -1
  30. package/dist/tabs.cjs +14 -16
  31. package/dist/tabs.js +17 -19
  32. package/docs/AI-GUIDE.md +321 -321
  33. package/docs/components/layout/full-screen-loader.md +2 -2
  34. package/docs/components/layout/sidebar.md +399 -399
  35. package/docs/components/layout/toaster.md +436 -436
  36. package/docs/components/ui/accordion-rounded.md +584 -584
  37. package/docs/components/ui/accordion.md +269 -269
  38. package/docs/components/ui/button.md +35 -23
  39. package/docs/components/ui/calendar.md +1159 -1159
  40. package/docs/components/ui/card.md +1455 -1455
  41. package/docs/components/ui/checkbox.md +292 -292
  42. package/docs/components/ui/collapsible.md +323 -323
  43. package/docs/components/ui/dialog.md +628 -628
  44. package/docs/components/ui/field.md +706 -706
  45. package/docs/components/ui/hover-card.md +446 -446
  46. package/docs/components/ui/kbd.md +434 -434
  47. package/docs/components/ui/label.md +359 -359
  48. package/docs/components/ui/pagination.md +650 -650
  49. package/docs/components/ui/popover.md +536 -536
  50. package/docs/components/ui/progress.md +182 -182
  51. package/docs/components/ui/radio-group.md +311 -311
  52. package/docs/components/ui/separator.md +214 -214
  53. package/docs/components/ui/sheet.md +174 -174
  54. package/docs/components/ui/skeleton.md +140 -140
  55. package/docs/components/ui/spinner.md +170 -170
  56. package/docs/components/ui/switch.md +408 -408
  57. package/docs/components/ui/tabs-underline.md +106 -106
  58. package/docs/components/ui/tabs.md +125 -122
  59. package/docs/components/ui/textarea.md +243 -243
  60. package/docs/components/ui/toggle.md +237 -237
  61. package/docs/components/ui/tooltip.md +317 -317
  62. package/docs/components/ui/typography.md +320 -320
  63. package/package.json +1 -1
@@ -1,214 +1,214 @@
1
- # Separator
2
-
3
- Separador visual basado en Radix UI. Divide secciones con línea horizontal o vertical, con semántica accesible.
4
-
5
- ## Descripción
6
-
7
- El componente `Separator` muestra una línea divisoria visual entre secciones de contenido.
8
-
9
- ## Importación
10
-
11
- ```typescript
12
- import { Separator } from "@adamosuiteservices/ui/separator";
13
- ```
14
-
15
- ## Anatomía
16
-
17
- ```tsx
18
- <div>
19
- <div>Section 1</div>
20
- <Separator />
21
- <div>Section 2</div>
22
- </div>
23
- ```
24
-
25
- **Componentes**: 1 (Separator)
26
-
27
- ## Props
28
-
29
- | Prop | Tipo | Default | Descripción |
30
- | ------------- | ---------------------------- | -------------- | ------------------------------- |
31
- | `orientation` | `"horizontal" \| "vertical"` | `"horizontal"` | Orientación del separador |
32
- | `decorative` | `boolean` | `true` | Si es decorativo (no semántico) |
33
- | `className` | `string` | - | Clases CSS adicionales |
34
-
35
- ## Patrones de Uso
36
-
37
- ### Horizontal (Default)
38
-
39
- ```tsx
40
- <div>
41
- <h4 className="text-sm font-medium">Radix Primitives</h4>
42
- <p className="text-sm text-muted-foreground">
43
- An open-source UI component library.
44
- </p>
45
- </div>
46
- <Separator className="my-4" />
47
- <div>
48
- <h4 className="text-sm font-medium">Next Section</h4>
49
- <p className="text-sm text-muted-foreground">More content here.</p>
50
- </div>
51
- ```
52
-
53
- ### Vertical
54
-
55
- ```tsx
56
- <div className="flex h-5 items-center space-x-4 text-sm">
57
- <div>Blog</div>
58
- <Separator orientation="vertical" />
59
- <div>Docs</div>
60
- <Separator orientation="vertical" />
61
- <div>Source</div>
62
- </div>
63
- ```
64
-
65
- ### En Navegación
66
-
67
- ```tsx
68
- <nav className="flex items-center space-x-4 text-sm">
69
- <a href="#" className="font-medium hover:underline">
70
- Home
71
- </a>
72
- <Separator orientation="vertical" className="h-4" />
73
- <a href="#" className="font-medium hover:underline">
74
- About
75
- </a>
76
- <Separator orientation="vertical" className="h-4" />
77
- <a href="#" className="font-medium hover:underline">
78
- Contact
79
- </a>
80
- </nav>
81
- ```
82
-
83
- ### En Cards
84
-
85
- ```tsx
86
- import {
87
- Card,
88
- CardHeader,
89
- CardContent,
90
- CardTitle,
91
- } from "@adamosuiteservices/ui/card";
92
-
93
- <Card>
94
- <CardHeader>
95
- <CardTitle>User Profile</CardTitle>
96
- </CardHeader>
97
- <CardContent className="space-y-4">
98
- <div>
99
- <p className="text-sm">John Doe</p>
100
- <p className="text-xs text-muted-foreground">john@example.com</p>
101
- </div>
102
- <Separator />
103
- <div className="space-y-2">
104
- <div className="flex justify-between text-sm">
105
- <span>Status</span>
106
- <span className="text-muted-foreground">Active</span>
107
- </div>
108
- <div className="flex justify-between text-sm">
109
- <span>Role</span>
110
- <span className="text-muted-foreground">Admin</span>
111
- </div>
112
- </div>
113
- </CardContent>
114
- </Card>;
115
- ```
116
-
117
- ### Con Spacing Custom
118
-
119
- ```tsx
120
- <Separator className="my-2" /> {/* Tight */}
121
- <Separator className="my-4" /> {/* Normal */}
122
- <Separator className="my-8" /> {/* Loose */}
123
- ```
124
-
125
- ### En Listas
126
-
127
- ```tsx
128
- const items = [
129
- { id: 1, title: "First Item" },
130
- { id: 2, title: "Second Item" },
131
- { id: 3, title: "Third Item" },
132
- ];
133
-
134
- <div className="space-y-0">
135
- {items.map((item, index) => (
136
- <div key={item.id}>
137
- <div className="py-3">
138
- <h4 className="text-sm font-medium">{item.title}</h4>
139
- </div>
140
- {index < items.length - 1 && <Separator />}
141
- </div>
142
- ))}
143
- </div>;
144
- ```
145
-
146
- ### Con Colores Custom
147
-
148
- ```tsx
149
- <Separator className="bg-muted" /> {/* Subtle */}
150
- <Separator className="bg-primary h-0.5" /> {/* Accent */}
151
- <Separator className="bg-border" /> {/* Default */}
152
- ```
153
-
154
- ## Casos de Uso
155
-
156
- **Section dividers**: Separar secciones de contenido
157
- **Navigation**: Dividir items de navegación
158
- **Cards**: Separar contenido en cards
159
- **Lists**: Dividir items en listas
160
- **Sidebars**: Separar grupos de opciones
161
- **Stats**: Dividir métricas verticalmente
162
-
163
- ## Estilos Base
164
-
165
- ### Estilos Horizontal
166
-
167
- - **Height**: `h-px` (1px)
168
- - **Width**: `w-full`
169
- - **Color**: `bg-border`
170
-
171
- ### Estilos Vertical
172
-
173
- - **Width**: `w-px` (1px)
174
- - **Height**: `h-full`
175
- - **Color**: `bg-border`
176
-
177
- ## Accesibilidad
178
-
179
- - ✅ **ARIA**: `role="separator"` si `decorative=false`
180
- - ✅ **Decorative**: Por defecto `decorative=true` (no anunciado por screen readers)
181
- - ✅ **Semantic**: Usa `decorative=false` para separadores semánticos
182
-
183
- ## Notas de Implementación
184
-
185
- - **Radix UI**: Basado en `@radix-ui/react-separator`
186
- - **Data attributes**: `data-[orientation=horizontal|vertical]` para estilos
187
- - **Shrink**: `shrink-0` para evitar colapso en flex
188
- - **Decorative**: Por defecto no tiene rol semántico (solo visual)
189
-
190
- ## Decorative vs Semantic
191
-
192
- ```tsx
193
- {
194
- /* Decorative (default) - solo visual */
195
- }
196
- <Separator />;
197
-
198
- {
199
- /* Semantic - anunciado por screen readers */
200
- }
201
- <Separator decorative={false} />;
202
- ```
203
-
204
- ## Troubleshooting
205
-
206
- **No se ve**: Verifica `bg-border` o color custom aplicado
207
- **Muy alto/ancho**: Horizontal usa `h-px`, vertical usa `w-px`
208
- **No divide verticalmente**: Verifica `orientation="vertical"` y altura del contenedor
209
- **Spacing inconsistente**: Usa `my-*` o `mx-*` para spacing uniforme
210
-
211
- ## Referencias
212
-
213
- - **Radix UI Separator**: <https://www.radix-ui.com/primitives/docs/components/separator>
214
- - **shadcn/ui Separator**: <https://ui.shadcn.com/docs/components/separator>
1
+ # Separator
2
+
3
+ Separador visual basado en Radix UI. Divide secciones con línea horizontal o vertical, con semántica accesible.
4
+
5
+ ## Descripción
6
+
7
+ El componente `Separator` muestra una línea divisoria visual entre secciones de contenido.
8
+
9
+ ## Importación
10
+
11
+ ```typescript
12
+ import { Separator } from "@adamosuiteservices/ui/separator";
13
+ ```
14
+
15
+ ## Anatomía
16
+
17
+ ```tsx
18
+ <div>
19
+ <div>Section 1</div>
20
+ <Separator />
21
+ <div>Section 2</div>
22
+ </div>
23
+ ```
24
+
25
+ **Componentes**: 1 (Separator)
26
+
27
+ ## Props
28
+
29
+ | Prop | Tipo | Default | Descripción |
30
+ | ------------- | ---------------------------- | -------------- | ------------------------------- |
31
+ | `orientation` | `"horizontal" \| "vertical"` | `"horizontal"` | Orientación del separador |
32
+ | `decorative` | `boolean` | `true` | Si es decorativo (no semántico) |
33
+ | `className` | `string` | - | Clases CSS adicionales |
34
+
35
+ ## Patrones de Uso
36
+
37
+ ### Horizontal (Default)
38
+
39
+ ```tsx
40
+ <div>
41
+ <h4 className="text-sm font-medium">Radix Primitives</h4>
42
+ <p className="text-sm text-muted-foreground">
43
+ An open-source UI component library.
44
+ </p>
45
+ </div>
46
+ <Separator className="my-4" />
47
+ <div>
48
+ <h4 className="text-sm font-medium">Next Section</h4>
49
+ <p className="text-sm text-muted-foreground">More content here.</p>
50
+ </div>
51
+ ```
52
+
53
+ ### Vertical
54
+
55
+ ```tsx
56
+ <div className="flex h-5 items-center space-x-4 text-sm">
57
+ <div>Blog</div>
58
+ <Separator orientation="vertical" />
59
+ <div>Docs</div>
60
+ <Separator orientation="vertical" />
61
+ <div>Source</div>
62
+ </div>
63
+ ```
64
+
65
+ ### En Navegación
66
+
67
+ ```tsx
68
+ <nav className="flex items-center space-x-4 text-sm">
69
+ <a href="#" className="font-medium hover:underline">
70
+ Home
71
+ </a>
72
+ <Separator orientation="vertical" className="h-4" />
73
+ <a href="#" className="font-medium hover:underline">
74
+ About
75
+ </a>
76
+ <Separator orientation="vertical" className="h-4" />
77
+ <a href="#" className="font-medium hover:underline">
78
+ Contact
79
+ </a>
80
+ </nav>
81
+ ```
82
+
83
+ ### En Cards
84
+
85
+ ```tsx
86
+ import {
87
+ Card,
88
+ CardHeader,
89
+ CardContent,
90
+ CardTitle,
91
+ } from "@adamosuiteservices/ui/card";
92
+
93
+ <Card>
94
+ <CardHeader>
95
+ <CardTitle>User Profile</CardTitle>
96
+ </CardHeader>
97
+ <CardContent className="space-y-4">
98
+ <div>
99
+ <p className="text-sm">John Doe</p>
100
+ <p className="text-xs text-muted-foreground">john@example.com</p>
101
+ </div>
102
+ <Separator />
103
+ <div className="space-y-2">
104
+ <div className="flex justify-between text-sm">
105
+ <span>Status</span>
106
+ <span className="text-muted-foreground">Active</span>
107
+ </div>
108
+ <div className="flex justify-between text-sm">
109
+ <span>Role</span>
110
+ <span className="text-muted-foreground">Admin</span>
111
+ </div>
112
+ </div>
113
+ </CardContent>
114
+ </Card>;
115
+ ```
116
+
117
+ ### Con Spacing Custom
118
+
119
+ ```tsx
120
+ <Separator className="my-2" /> {/* Tight */}
121
+ <Separator className="my-4" /> {/* Normal */}
122
+ <Separator className="my-8" /> {/* Loose */}
123
+ ```
124
+
125
+ ### En Listas
126
+
127
+ ```tsx
128
+ const items = [
129
+ { id: 1, title: "First Item" },
130
+ { id: 2, title: "Second Item" },
131
+ { id: 3, title: "Third Item" },
132
+ ];
133
+
134
+ <div className="space-y-0">
135
+ {items.map((item, index) => (
136
+ <div key={item.id}>
137
+ <div className="py-3">
138
+ <h4 className="text-sm font-medium">{item.title}</h4>
139
+ </div>
140
+ {index < items.length - 1 && <Separator />}
141
+ </div>
142
+ ))}
143
+ </div>;
144
+ ```
145
+
146
+ ### Con Colores Custom
147
+
148
+ ```tsx
149
+ <Separator className="bg-muted" /> {/* Subtle */}
150
+ <Separator className="bg-primary h-0.5" /> {/* Accent */}
151
+ <Separator className="bg-border" /> {/* Default */}
152
+ ```
153
+
154
+ ## Casos de Uso
155
+
156
+ **Section dividers**: Separar secciones de contenido
157
+ **Navigation**: Dividir items de navegación
158
+ **Cards**: Separar contenido en cards
159
+ **Lists**: Dividir items en listas
160
+ **Sidebars**: Separar grupos de opciones
161
+ **Stats**: Dividir métricas verticalmente
162
+
163
+ ## Estilos Base
164
+
165
+ ### Estilos Horizontal
166
+
167
+ - **Height**: `h-px` (1px)
168
+ - **Width**: `w-full`
169
+ - **Color**: `bg-border`
170
+
171
+ ### Estilos Vertical
172
+
173
+ - **Width**: `w-px` (1px)
174
+ - **Height**: `h-full`
175
+ - **Color**: `bg-border`
176
+
177
+ ## Accesibilidad
178
+
179
+ - ✅ **ARIA**: `role="separator"` si `decorative=false`
180
+ - ✅ **Decorative**: Por defecto `decorative=true` (no anunciado por screen readers)
181
+ - ✅ **Semantic**: Usa `decorative=false` para separadores semánticos
182
+
183
+ ## Notas de Implementación
184
+
185
+ - **Radix UI**: Basado en `@radix-ui/react-separator`
186
+ - **Data attributes**: `data-[orientation=horizontal|vertical]` para estilos
187
+ - **Shrink**: `shrink-0` para evitar colapso en flex
188
+ - **Decorative**: Por defecto no tiene rol semántico (solo visual)
189
+
190
+ ## Decorative vs Semantic
191
+
192
+ ```tsx
193
+ {
194
+ /* Decorative (default) - solo visual */
195
+ }
196
+ <Separator />;
197
+
198
+ {
199
+ /* Semantic - anunciado por screen readers */
200
+ }
201
+ <Separator decorative={false} />;
202
+ ```
203
+
204
+ ## Troubleshooting
205
+
206
+ **No se ve**: Verifica `bg-border` o color custom aplicado
207
+ **Muy alto/ancho**: Horizontal usa `h-px`, vertical usa `w-px`
208
+ **No divide verticalmente**: Verifica `orientation="vertical"` y altura del contenedor
209
+ **Spacing inconsistente**: Usa `my-*` o `mx-*` para spacing uniforme
210
+
211
+ ## Referencias
212
+
213
+ - **Radix UI Separator**: <https://www.radix-ui.com/primitives/docs/components/separator>
214
+ - **shadcn/ui Separator**: <https://ui.shadcn.com/docs/components/separator>