@adamosuiteservices/ui 2.11.16 → 2.11.18

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 (66) hide show
  1. package/dist/accordion-rounded.cjs +1 -1
  2. package/dist/accordion-rounded.js +1 -1
  3. package/dist/badge.cjs +3 -3
  4. package/dist/badge.js +2 -2
  5. package/dist/breadcrumb.cjs +5 -5
  6. package/dist/breadcrumb.js +16 -16
  7. package/dist/components/ui/date-picker-selector/date-picker-selector.d.ts +2 -2
  8. package/dist/components/ui/sheet/sheet.d.ts +2 -1
  9. package/dist/date-picker-selector.cjs +1 -1
  10. package/dist/date-picker-selector.js +29 -30
  11. package/dist/dialog.cjs +1 -1
  12. package/dist/dialog.js +1 -1
  13. package/dist/select.cjs +2 -2
  14. package/dist/select.js +2 -2
  15. package/dist/{sheet-DVT_djHX.cjs → sheet-CvcCaGSl.cjs} +11 -11
  16. package/dist/{sheet-CPf9Guon.js → sheet-IRIc3TJ1.js} +33 -19
  17. package/dist/sheet.cjs +1 -1
  18. package/dist/sheet.js +7 -6
  19. package/dist/sidebar.cjs +1 -1
  20. package/dist/sidebar.js +1 -1
  21. package/dist/styles.css +1 -1
  22. package/dist/tabs-underline.cjs +3 -3
  23. package/dist/tabs-underline.js +13 -13
  24. package/dist/tabs.cjs +5 -4
  25. package/dist/tabs.js +3 -2
  26. package/dist/themes.css +1 -1
  27. package/docs/AI-GUIDE.md +321 -321
  28. package/docs/components/layout/sidebar.md +399 -399
  29. package/docs/components/layout/toaster.md +436 -436
  30. package/docs/components/ui/accordion-rounded.md +584 -584
  31. package/docs/components/ui/accordion.md +269 -269
  32. package/docs/components/ui/badge.md +2 -1
  33. package/docs/components/ui/button-group.md +984 -984
  34. package/docs/components/ui/button.md +1137 -1137
  35. package/docs/components/ui/calendar.md +1159 -1159
  36. package/docs/components/ui/card.md +1455 -1455
  37. package/docs/components/ui/checkbox.md +292 -292
  38. package/docs/components/ui/collapsible.md +323 -323
  39. package/docs/components/ui/command.md +454 -454
  40. package/docs/components/ui/context-menu.md +540 -540
  41. package/docs/components/ui/date-picker-selector.md +0 -2
  42. package/docs/components/ui/dialog.md +628 -628
  43. package/docs/components/ui/dropdown-menu.md +709 -709
  44. package/docs/components/ui/field.md +706 -706
  45. package/docs/components/ui/hover-card.md +446 -446
  46. package/docs/components/ui/input.md +362 -362
  47. package/docs/components/ui/kbd.md +434 -434
  48. package/docs/components/ui/label.md +359 -359
  49. package/docs/components/ui/pagination.md +650 -650
  50. package/docs/components/ui/popover.md +536 -536
  51. package/docs/components/ui/progress.md +182 -182
  52. package/docs/components/ui/radio-group.md +311 -311
  53. package/docs/components/ui/select.md +352 -352
  54. package/docs/components/ui/separator.md +214 -214
  55. package/docs/components/ui/sheet.md +174 -142
  56. package/docs/components/ui/skeleton.md +140 -140
  57. package/docs/components/ui/slider.md +341 -341
  58. package/docs/components/ui/spinner.md +170 -170
  59. package/docs/components/ui/switch.md +408 -408
  60. package/docs/components/ui/tabs-underline.md +106 -106
  61. package/docs/components/ui/tabs.md +122 -122
  62. package/docs/components/ui/textarea.md +243 -243
  63. package/docs/components/ui/toggle.md +237 -237
  64. package/docs/components/ui/tooltip.md +317 -317
  65. package/docs/components/ui/typography.md +280 -280
  66. 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>