@adamosuiteservices/ui 2.13.2 → 2.13.4

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 (35) hide show
  1. package/dist/components/ui/slider/slider.d.ts +5 -2
  2. package/dist/slider.cjs +7 -8
  3. package/dist/slider.js +192 -178
  4. package/dist/styles.css +1 -1
  5. package/docs/AI-GUIDE.md +321 -321
  6. package/docs/components/layout/sidebar.md +399 -399
  7. package/docs/components/layout/toaster.md +436 -436
  8. package/docs/components/ui/accordion-rounded.md +584 -584
  9. package/docs/components/ui/accordion.md +269 -269
  10. package/docs/components/ui/calendar.md +1159 -1159
  11. package/docs/components/ui/card.md +1455 -1455
  12. package/docs/components/ui/checkbox.md +292 -292
  13. package/docs/components/ui/collapsible.md +323 -323
  14. package/docs/components/ui/dialog.md +628 -628
  15. package/docs/components/ui/field.md +706 -706
  16. package/docs/components/ui/hover-card.md +446 -446
  17. package/docs/components/ui/kbd.md +434 -434
  18. package/docs/components/ui/label.md +359 -359
  19. package/docs/components/ui/pagination.md +650 -650
  20. package/docs/components/ui/popover.md +536 -536
  21. package/docs/components/ui/progress.md +182 -182
  22. package/docs/components/ui/radio-group.md +311 -311
  23. package/docs/components/ui/separator.md +214 -214
  24. package/docs/components/ui/sheet.md +174 -174
  25. package/docs/components/ui/skeleton.md +140 -140
  26. package/docs/components/ui/slider.md +460 -341
  27. package/docs/components/ui/spinner.md +170 -170
  28. package/docs/components/ui/switch.md +408 -408
  29. package/docs/components/ui/tabs-underline.md +106 -106
  30. package/docs/components/ui/tabs.md +122 -122
  31. package/docs/components/ui/textarea.md +243 -243
  32. package/docs/components/ui/toggle.md +237 -237
  33. package/docs/components/ui/tooltip.md +317 -317
  34. package/docs/components/ui/typography.md +320 -320
  35. 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>