create-lexy 0.2.0 → 0.3.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.
- package/assets/r/accordion.json +1 -0
- package/assets/r/alert-dialog.json +28 -0
- package/assets/r/app-accordion.json +2 -1
- package/assets/r/app-dialog.json +3 -2
- package/assets/r/app-header-bar.json +4 -3
- package/assets/r/app-sidebar.json +3 -2
- package/assets/r/avatar.json +1 -0
- package/assets/r/badge.json +1 -0
- package/assets/r/breadcrumb.json +1 -0
- package/assets/r/button-group.json +2 -1
- package/assets/r/button.json +1 -0
- package/assets/r/calendar.json +2 -1
- package/assets/r/card.json +1 -0
- package/assets/r/chart.json +1 -0
- package/assets/r/checkbox.json +1 -0
- package/assets/r/combobox.json +4 -3
- package/assets/r/command.json +1 -0
- package/assets/r/confirmacion.json +27 -0
- package/assets/r/counter-badge.json +1 -0
- package/assets/r/crm-app-layout.json +29 -0
- package/assets/r/crm-desk.json +31 -0
- package/assets/r/crm-detalle-caso.json +28 -0
- package/assets/r/date-picker.json +4 -3
- package/assets/r/dialog.json +1 -0
- package/assets/r/dropdown-menu.json +1 -0
- package/assets/r/empty.json +1 -0
- package/assets/r/feature-card.json +1 -0
- package/assets/r/form.json +30 -0
- package/assets/r/header-bar.json +2 -1
- package/assets/r/input.json +1 -0
- package/assets/r/intake-wizard.json +28 -0
- package/assets/r/label.json +1 -0
- package/assets/r/login.json +28 -0
- package/assets/r/logo.json +1 -0
- package/assets/r/menubar.json +1 -0
- package/assets/r/navigation-menu.json +1 -0
- package/assets/r/pagination.json +2 -1
- package/assets/r/popover.json +1 -0
- package/assets/r/profile-card.json +3 -2
- package/assets/r/progress.json +1 -0
- package/assets/r/radio-group.json +1 -0
- package/assets/r/registry.json +355 -77
- package/assets/r/scroll-area.json +1 -0
- package/assets/r/searchbox.json +1 -0
- package/assets/r/select.json +1 -0
- package/assets/r/separator.json +1 -0
- package/assets/r/sheet.json +1 -0
- package/assets/r/sidebar.json +7 -6
- package/assets/r/skeleton.json +1 -0
- package/assets/r/slider.json +1 -0
- package/assets/r/snippet.json +1 -0
- package/assets/r/spinner.json +1 -0
- package/assets/r/status-dot.json +1 -0
- package/assets/r/switch.json +1 -0
- package/assets/r/table.json +1 -0
- package/assets/r/tabs.json +1 -0
- package/assets/r/tag.json +1 -0
- package/assets/r/textarea.json +1 -0
- package/assets/r/toaster.json +25 -0
- package/assets/r/tooltip.json +1 -0
- package/assets/r/tree.json +1 -0
- package/dist/index.js +31 -26
- package/package.json +1 -1
package/assets/r/registry.json
CHANGED
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"files": [
|
|
16
16
|
{
|
|
17
17
|
"path": "components/base/Accordion.tsx",
|
|
18
|
-
"type": "registry:ui"
|
|
18
|
+
"type": "registry:ui",
|
|
19
|
+
"target": "components/base/Accordion.tsx"
|
|
19
20
|
},
|
|
20
21
|
{
|
|
21
22
|
"path": "components/base/Accordion.md",
|
|
@@ -24,6 +25,31 @@
|
|
|
24
25
|
}
|
|
25
26
|
]
|
|
26
27
|
},
|
|
28
|
+
{
|
|
29
|
+
"name": "alert-dialog",
|
|
30
|
+
"type": "registry:ui",
|
|
31
|
+
"title": "AlertDialog",
|
|
32
|
+
"description": "Confirmación modal que **interrumpe** (rol `alertdialog`): la persona debe elegir entre cancelar o confirmar — no hay X, ni cierre con click afuera. Para destruir, descartar cambios o salir de un flujo con costo. El componente vive en tu proyecto: instálalo con `create-lexy add alert-dialog` y edítalo con libertad.",
|
|
33
|
+
"dependencies": [
|
|
34
|
+
"@radix-ui/react-alert-dialog",
|
|
35
|
+
"class-variance-authority"
|
|
36
|
+
],
|
|
37
|
+
"registryDependencies": [
|
|
38
|
+
"@lexy/button"
|
|
39
|
+
],
|
|
40
|
+
"files": [
|
|
41
|
+
{
|
|
42
|
+
"path": "components/base/AlertDialog.tsx",
|
|
43
|
+
"type": "registry:ui",
|
|
44
|
+
"target": "components/base/AlertDialog.tsx"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"path": "components/base/AlertDialog.md",
|
|
48
|
+
"type": "registry:file",
|
|
49
|
+
"target": "components/base/AlertDialog.md"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
},
|
|
27
53
|
{
|
|
28
54
|
"name": "app-accordion",
|
|
29
55
|
"type": "registry:ui",
|
|
@@ -31,12 +57,13 @@
|
|
|
31
57
|
"description": "Acordeón de aplicación **data-driven**. Describe los items como datos (`items`)",
|
|
32
58
|
"dependencies": [],
|
|
33
59
|
"registryDependencies": [
|
|
34
|
-
"accordion"
|
|
60
|
+
"@lexy/accordion"
|
|
35
61
|
],
|
|
36
62
|
"files": [
|
|
37
63
|
{
|
|
38
64
|
"path": "components/base/AppAccordion.tsx",
|
|
39
|
-
"type": "registry:ui"
|
|
65
|
+
"type": "registry:ui",
|
|
66
|
+
"target": "components/base/AppAccordion.tsx"
|
|
40
67
|
},
|
|
41
68
|
{
|
|
42
69
|
"path": "components/base/AppAccordion.md",
|
|
@@ -52,13 +79,14 @@
|
|
|
52
79
|
"description": "Diálogo de aplicación al estilo **Material 3**. Estructura canónica sin dividers: El componente vive en tu proyecto: instálalo con `create-lexy add app-dialog` y edítalo con libertad.",
|
|
53
80
|
"dependencies": [],
|
|
54
81
|
"registryDependencies": [
|
|
55
|
-
"button",
|
|
56
|
-
"dialog"
|
|
82
|
+
"@lexy/button",
|
|
83
|
+
"@lexy/dialog"
|
|
57
84
|
],
|
|
58
85
|
"files": [
|
|
59
86
|
{
|
|
60
87
|
"path": "components/base/AppDialog.tsx",
|
|
61
|
-
"type": "registry:ui"
|
|
88
|
+
"type": "registry:ui",
|
|
89
|
+
"target": "components/base/AppDialog.tsx"
|
|
62
90
|
},
|
|
63
91
|
{
|
|
64
92
|
"path": "components/base/AppDialog.md",
|
|
@@ -76,14 +104,15 @@
|
|
|
76
104
|
"class-variance-authority"
|
|
77
105
|
],
|
|
78
106
|
"registryDependencies": [
|
|
79
|
-
"button",
|
|
80
|
-
"header-bar",
|
|
81
|
-
"logo"
|
|
107
|
+
"@lexy/button",
|
|
108
|
+
"@lexy/header-bar",
|
|
109
|
+
"@lexy/logo"
|
|
82
110
|
],
|
|
83
111
|
"files": [
|
|
84
112
|
{
|
|
85
113
|
"path": "components/base/AppHeaderBar.tsx",
|
|
86
|
-
"type": "registry:ui"
|
|
114
|
+
"type": "registry:ui",
|
|
115
|
+
"target": "components/base/AppHeaderBar.tsx"
|
|
87
116
|
},
|
|
88
117
|
{
|
|
89
118
|
"path": "components/base/AppHeaderBar.md",
|
|
@@ -101,13 +130,14 @@
|
|
|
101
130
|
"lucide-react"
|
|
102
131
|
],
|
|
103
132
|
"registryDependencies": [
|
|
104
|
-
"avatar",
|
|
105
|
-
"sidebar"
|
|
133
|
+
"@lexy/avatar",
|
|
134
|
+
"@lexy/sidebar"
|
|
106
135
|
],
|
|
107
136
|
"files": [
|
|
108
137
|
{
|
|
109
138
|
"path": "components/base/AppSidebar.tsx",
|
|
110
|
-
"type": "registry:ui"
|
|
139
|
+
"type": "registry:ui",
|
|
140
|
+
"target": "components/base/AppSidebar.tsx"
|
|
111
141
|
},
|
|
112
142
|
{
|
|
113
143
|
"path": "components/base/AppSidebar.md",
|
|
@@ -128,7 +158,8 @@
|
|
|
128
158
|
"files": [
|
|
129
159
|
{
|
|
130
160
|
"path": "components/base/Avatar.tsx",
|
|
131
|
-
"type": "registry:ui"
|
|
161
|
+
"type": "registry:ui",
|
|
162
|
+
"target": "components/base/Avatar.tsx"
|
|
132
163
|
},
|
|
133
164
|
{
|
|
134
165
|
"path": "components/base/Avatar.md",
|
|
@@ -149,7 +180,8 @@
|
|
|
149
180
|
"files": [
|
|
150
181
|
{
|
|
151
182
|
"path": "components/base/Badge.tsx",
|
|
152
|
-
"type": "registry:ui"
|
|
183
|
+
"type": "registry:ui",
|
|
184
|
+
"target": "components/base/Badge.tsx"
|
|
153
185
|
},
|
|
154
186
|
{
|
|
155
187
|
"path": "components/base/Badge.md",
|
|
@@ -170,7 +202,8 @@
|
|
|
170
202
|
"files": [
|
|
171
203
|
{
|
|
172
204
|
"path": "components/base/Breadcrumb.tsx",
|
|
173
|
-
"type": "registry:ui"
|
|
205
|
+
"type": "registry:ui",
|
|
206
|
+
"target": "components/base/Breadcrumb.tsx"
|
|
174
207
|
},
|
|
175
208
|
{
|
|
176
209
|
"path": "components/base/Breadcrumb.md",
|
|
@@ -192,7 +225,8 @@
|
|
|
192
225
|
"files": [
|
|
193
226
|
{
|
|
194
227
|
"path": "components/base/Button.tsx",
|
|
195
|
-
"type": "registry:ui"
|
|
228
|
+
"type": "registry:ui",
|
|
229
|
+
"target": "components/base/Button.tsx"
|
|
196
230
|
},
|
|
197
231
|
{
|
|
198
232
|
"path": "components/base/Button.md",
|
|
@@ -211,12 +245,13 @@
|
|
|
211
245
|
"class-variance-authority"
|
|
212
246
|
],
|
|
213
247
|
"registryDependencies": [
|
|
214
|
-
"separator"
|
|
248
|
+
"@lexy/separator"
|
|
215
249
|
],
|
|
216
250
|
"files": [
|
|
217
251
|
{
|
|
218
252
|
"path": "components/base/ButtonGroup.tsx",
|
|
219
|
-
"type": "registry:ui"
|
|
253
|
+
"type": "registry:ui",
|
|
254
|
+
"target": "components/base/ButtonGroup.tsx"
|
|
220
255
|
},
|
|
221
256
|
{
|
|
222
257
|
"path": "components/base/ButtonGroup.md",
|
|
@@ -235,12 +270,13 @@
|
|
|
235
270
|
"react-day-picker@^9.8.0"
|
|
236
271
|
],
|
|
237
272
|
"registryDependencies": [
|
|
238
|
-
"button"
|
|
273
|
+
"@lexy/button"
|
|
239
274
|
],
|
|
240
275
|
"files": [
|
|
241
276
|
{
|
|
242
277
|
"path": "components/base/Calendar.tsx",
|
|
243
|
-
"type": "registry:ui"
|
|
278
|
+
"type": "registry:ui",
|
|
279
|
+
"target": "components/base/Calendar.tsx"
|
|
244
280
|
},
|
|
245
281
|
{
|
|
246
282
|
"path": "components/base/Calendar.md",
|
|
@@ -261,7 +297,8 @@
|
|
|
261
297
|
"files": [
|
|
262
298
|
{
|
|
263
299
|
"path": "components/base/Card.tsx",
|
|
264
|
-
"type": "registry:ui"
|
|
300
|
+
"type": "registry:ui",
|
|
301
|
+
"target": "components/base/Card.tsx"
|
|
265
302
|
},
|
|
266
303
|
{
|
|
267
304
|
"path": "components/base/Card.md",
|
|
@@ -282,7 +319,8 @@
|
|
|
282
319
|
"files": [
|
|
283
320
|
{
|
|
284
321
|
"path": "components/base/Chart.tsx",
|
|
285
|
-
"type": "registry:ui"
|
|
322
|
+
"type": "registry:ui",
|
|
323
|
+
"target": "components/base/Chart.tsx"
|
|
286
324
|
},
|
|
287
325
|
{
|
|
288
326
|
"path": "components/base/Chart.md",
|
|
@@ -303,7 +341,8 @@
|
|
|
303
341
|
"files": [
|
|
304
342
|
{
|
|
305
343
|
"path": "components/base/Checkbox.tsx",
|
|
306
|
-
"type": "registry:ui"
|
|
344
|
+
"type": "registry:ui",
|
|
345
|
+
"target": "components/base/Checkbox.tsx"
|
|
307
346
|
},
|
|
308
347
|
{
|
|
309
348
|
"path": "components/base/Checkbox.md",
|
|
@@ -319,14 +358,15 @@
|
|
|
319
358
|
"description": "Campo de entrada con lista desplegable filtrable. Para búsqueda + selección. El componente vive en tu proyecto: instálalo con `create-lexy add combobox` y edítalo con libertad.",
|
|
320
359
|
"dependencies": [],
|
|
321
360
|
"registryDependencies": [
|
|
322
|
-
"button",
|
|
323
|
-
"command",
|
|
324
|
-
"popover"
|
|
361
|
+
"@lexy/button",
|
|
362
|
+
"@lexy/command",
|
|
363
|
+
"@lexy/popover"
|
|
325
364
|
],
|
|
326
365
|
"files": [
|
|
327
366
|
{
|
|
328
367
|
"path": "components/base/Combobox.tsx",
|
|
329
|
-
"type": "registry:ui"
|
|
368
|
+
"type": "registry:ui",
|
|
369
|
+
"target": "components/base/Combobox.tsx"
|
|
330
370
|
},
|
|
331
371
|
{
|
|
332
372
|
"path": "components/base/Combobox.md",
|
|
@@ -347,7 +387,8 @@
|
|
|
347
387
|
"files": [
|
|
348
388
|
{
|
|
349
389
|
"path": "components/base/Command.tsx",
|
|
350
|
-
"type": "registry:ui"
|
|
390
|
+
"type": "registry:ui",
|
|
391
|
+
"target": "components/base/Command.tsx"
|
|
351
392
|
},
|
|
352
393
|
{
|
|
353
394
|
"path": "components/base/Command.md",
|
|
@@ -368,7 +409,8 @@
|
|
|
368
409
|
"files": [
|
|
369
410
|
{
|
|
370
411
|
"path": "components/base/CounterBadge.tsx",
|
|
371
|
-
"type": "registry:ui"
|
|
412
|
+
"type": "registry:ui",
|
|
413
|
+
"target": "components/base/CounterBadge.tsx"
|
|
372
414
|
},
|
|
373
415
|
{
|
|
374
416
|
"path": "components/base/CounterBadge.md",
|
|
@@ -387,14 +429,15 @@
|
|
|
387
429
|
"react-day-picker@^9.8.0"
|
|
388
430
|
],
|
|
389
431
|
"registryDependencies": [
|
|
390
|
-
"button",
|
|
391
|
-
"calendar",
|
|
392
|
-
"popover"
|
|
432
|
+
"@lexy/button",
|
|
433
|
+
"@lexy/calendar",
|
|
434
|
+
"@lexy/popover"
|
|
393
435
|
],
|
|
394
436
|
"files": [
|
|
395
437
|
{
|
|
396
438
|
"path": "components/base/DatePicker.tsx",
|
|
397
|
-
"type": "registry:ui"
|
|
439
|
+
"type": "registry:ui",
|
|
440
|
+
"target": "components/base/DatePicker.tsx"
|
|
398
441
|
},
|
|
399
442
|
{
|
|
400
443
|
"path": "components/base/DatePicker.md",
|
|
@@ -415,7 +458,8 @@
|
|
|
415
458
|
"files": [
|
|
416
459
|
{
|
|
417
460
|
"path": "components/base/Dialog.tsx",
|
|
418
|
-
"type": "registry:ui"
|
|
461
|
+
"type": "registry:ui",
|
|
462
|
+
"target": "components/base/Dialog.tsx"
|
|
419
463
|
},
|
|
420
464
|
{
|
|
421
465
|
"path": "components/base/Dialog.md",
|
|
@@ -436,7 +480,8 @@
|
|
|
436
480
|
"files": [
|
|
437
481
|
{
|
|
438
482
|
"path": "components/base/DropdownMenu.tsx",
|
|
439
|
-
"type": "registry:ui"
|
|
483
|
+
"type": "registry:ui",
|
|
484
|
+
"target": "components/base/DropdownMenu.tsx"
|
|
440
485
|
},
|
|
441
486
|
{
|
|
442
487
|
"path": "components/base/DropdownMenu.md",
|
|
@@ -457,7 +502,8 @@
|
|
|
457
502
|
"files": [
|
|
458
503
|
{
|
|
459
504
|
"path": "components/base/Empty.tsx",
|
|
460
|
-
"type": "registry:ui"
|
|
505
|
+
"type": "registry:ui",
|
|
506
|
+
"target": "components/base/Empty.tsx"
|
|
461
507
|
},
|
|
462
508
|
{
|
|
463
509
|
"path": "components/base/Empty.md",
|
|
@@ -476,7 +522,8 @@
|
|
|
476
522
|
"files": [
|
|
477
523
|
{
|
|
478
524
|
"path": "components/base/FeatureCard.tsx",
|
|
479
|
-
"type": "registry:ui"
|
|
525
|
+
"type": "registry:ui",
|
|
526
|
+
"target": "components/base/FeatureCard.tsx"
|
|
480
527
|
},
|
|
481
528
|
{
|
|
482
529
|
"path": "components/base/FeatureCard.md",
|
|
@@ -485,6 +532,33 @@
|
|
|
485
532
|
}
|
|
486
533
|
]
|
|
487
534
|
},
|
|
535
|
+
{
|
|
536
|
+
"name": "form",
|
|
537
|
+
"type": "registry:ui",
|
|
538
|
+
"title": "Form",
|
|
539
|
+
"description": "Formularios con validación (patrón shadcn sobre `react-hook-form` + `zod`). `Form` provee el contexto, `FormField` registra cada campo y `FormItem`/`FormLabel`/`FormControl` cablean ids y `aria-*` automáticamente; `FormMessage` muestra el error del campo. `create-lexy add form` instala también `zod` y `@hookform/resolvers`. El componente vive en tu proyecto: instálalo con `create-lexy add form` y edítalo con libertad.",
|
|
540
|
+
"dependencies": [
|
|
541
|
+
"@radix-ui/react-slot",
|
|
542
|
+
"react-hook-form@^7.62.0",
|
|
543
|
+
"zod@^4.1.0",
|
|
544
|
+
"@hookform/resolvers@^5.2.0"
|
|
545
|
+
],
|
|
546
|
+
"registryDependencies": [
|
|
547
|
+
"@lexy/label"
|
|
548
|
+
],
|
|
549
|
+
"files": [
|
|
550
|
+
{
|
|
551
|
+
"path": "components/base/Form.tsx",
|
|
552
|
+
"type": "registry:ui",
|
|
553
|
+
"target": "components/base/Form.tsx"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"path": "components/base/Form.md",
|
|
557
|
+
"type": "registry:file",
|
|
558
|
+
"target": "components/base/Form.md"
|
|
559
|
+
}
|
|
560
|
+
]
|
|
561
|
+
},
|
|
488
562
|
{
|
|
489
563
|
"name": "header-bar",
|
|
490
564
|
"type": "registry:ui",
|
|
@@ -494,12 +568,13 @@
|
|
|
494
568
|
"class-variance-authority"
|
|
495
569
|
],
|
|
496
570
|
"registryDependencies": [
|
|
497
|
-
"logo"
|
|
571
|
+
"@lexy/logo"
|
|
498
572
|
],
|
|
499
573
|
"files": [
|
|
500
574
|
{
|
|
501
575
|
"path": "components/base/HeaderBar.tsx",
|
|
502
|
-
"type": "registry:ui"
|
|
576
|
+
"type": "registry:ui",
|
|
577
|
+
"target": "components/base/HeaderBar.tsx"
|
|
503
578
|
},
|
|
504
579
|
{
|
|
505
580
|
"path": "components/base/HeaderBar.md",
|
|
@@ -518,7 +593,8 @@
|
|
|
518
593
|
"files": [
|
|
519
594
|
{
|
|
520
595
|
"path": "components/base/Input.tsx",
|
|
521
|
-
"type": "registry:ui"
|
|
596
|
+
"type": "registry:ui",
|
|
597
|
+
"target": "components/base/Input.tsx"
|
|
522
598
|
},
|
|
523
599
|
{
|
|
524
600
|
"path": "components/base/Input.md",
|
|
@@ -540,7 +616,8 @@
|
|
|
540
616
|
"files": [
|
|
541
617
|
{
|
|
542
618
|
"path": "components/base/Label.tsx",
|
|
543
|
-
"type": "registry:ui"
|
|
619
|
+
"type": "registry:ui",
|
|
620
|
+
"target": "components/base/Label.tsx"
|
|
544
621
|
},
|
|
545
622
|
{
|
|
546
623
|
"path": "components/base/Label.md",
|
|
@@ -559,7 +636,8 @@
|
|
|
559
636
|
"files": [
|
|
560
637
|
{
|
|
561
638
|
"path": "components/base/Logo.tsx",
|
|
562
|
-
"type": "registry:ui"
|
|
639
|
+
"type": "registry:ui",
|
|
640
|
+
"target": "components/base/Logo.tsx"
|
|
563
641
|
},
|
|
564
642
|
{
|
|
565
643
|
"path": "components/base/Logo.md",
|
|
@@ -670,7 +748,8 @@
|
|
|
670
748
|
"files": [
|
|
671
749
|
{
|
|
672
750
|
"path": "components/base/Menubar.tsx",
|
|
673
|
-
"type": "registry:ui"
|
|
751
|
+
"type": "registry:ui",
|
|
752
|
+
"target": "components/base/Menubar.tsx"
|
|
674
753
|
},
|
|
675
754
|
{
|
|
676
755
|
"path": "components/base/Menubar.md",
|
|
@@ -692,7 +771,8 @@
|
|
|
692
771
|
"files": [
|
|
693
772
|
{
|
|
694
773
|
"path": "components/base/NavigationMenu.tsx",
|
|
695
|
-
"type": "registry:ui"
|
|
774
|
+
"type": "registry:ui",
|
|
775
|
+
"target": "components/base/NavigationMenu.tsx"
|
|
696
776
|
},
|
|
697
777
|
{
|
|
698
778
|
"path": "components/base/NavigationMenu.md",
|
|
@@ -711,12 +791,13 @@
|
|
|
711
791
|
"lucide-react"
|
|
712
792
|
],
|
|
713
793
|
"registryDependencies": [
|
|
714
|
-
"button"
|
|
794
|
+
"@lexy/button"
|
|
715
795
|
],
|
|
716
796
|
"files": [
|
|
717
797
|
{
|
|
718
798
|
"path": "components/base/Pagination.tsx",
|
|
719
|
-
"type": "registry:ui"
|
|
799
|
+
"type": "registry:ui",
|
|
800
|
+
"target": "components/base/Pagination.tsx"
|
|
720
801
|
},
|
|
721
802
|
{
|
|
722
803
|
"path": "components/base/Pagination.md",
|
|
@@ -737,7 +818,8 @@
|
|
|
737
818
|
"files": [
|
|
738
819
|
{
|
|
739
820
|
"path": "components/base/Popover.tsx",
|
|
740
|
-
"type": "registry:ui"
|
|
821
|
+
"type": "registry:ui",
|
|
822
|
+
"target": "components/base/Popover.tsx"
|
|
741
823
|
},
|
|
742
824
|
{
|
|
743
825
|
"path": "components/base/Popover.md",
|
|
@@ -753,13 +835,14 @@
|
|
|
753
835
|
"description": "Tarjeta de perfil. Para mostrar información de usuario. El componente vive en tu proyecto: instálalo con `create-lexy add profile-card` y edítalo con libertad.",
|
|
754
836
|
"dependencies": [],
|
|
755
837
|
"registryDependencies": [
|
|
756
|
-
"avatar",
|
|
757
|
-
"button"
|
|
838
|
+
"@lexy/avatar",
|
|
839
|
+
"@lexy/button"
|
|
758
840
|
],
|
|
759
841
|
"files": [
|
|
760
842
|
{
|
|
761
843
|
"path": "components/base/ProfileCard.tsx",
|
|
762
|
-
"type": "registry:ui"
|
|
844
|
+
"type": "registry:ui",
|
|
845
|
+
"target": "components/base/ProfileCard.tsx"
|
|
763
846
|
},
|
|
764
847
|
{
|
|
765
848
|
"path": "components/base/ProfileCard.md",
|
|
@@ -780,7 +863,8 @@
|
|
|
780
863
|
"files": [
|
|
781
864
|
{
|
|
782
865
|
"path": "components/base/Progress.tsx",
|
|
783
|
-
"type": "registry:ui"
|
|
866
|
+
"type": "registry:ui",
|
|
867
|
+
"target": "components/base/Progress.tsx"
|
|
784
868
|
},
|
|
785
869
|
{
|
|
786
870
|
"path": "components/base/Progress.md",
|
|
@@ -801,7 +885,8 @@
|
|
|
801
885
|
"files": [
|
|
802
886
|
{
|
|
803
887
|
"path": "components/base/RadioGroup.tsx",
|
|
804
|
-
"type": "registry:ui"
|
|
888
|
+
"type": "registry:ui",
|
|
889
|
+
"target": "components/base/RadioGroup.tsx"
|
|
805
890
|
},
|
|
806
891
|
{
|
|
807
892
|
"path": "components/base/RadioGroup.md",
|
|
@@ -822,7 +907,8 @@
|
|
|
822
907
|
"files": [
|
|
823
908
|
{
|
|
824
909
|
"path": "components/base/ScrollArea.tsx",
|
|
825
|
-
"type": "registry:ui"
|
|
910
|
+
"type": "registry:ui",
|
|
911
|
+
"target": "components/base/ScrollArea.tsx"
|
|
826
912
|
},
|
|
827
913
|
{
|
|
828
914
|
"path": "components/base/ScrollArea.md",
|
|
@@ -841,7 +927,8 @@
|
|
|
841
927
|
"files": [
|
|
842
928
|
{
|
|
843
929
|
"path": "components/base/Searchbox.tsx",
|
|
844
|
-
"type": "registry:ui"
|
|
930
|
+
"type": "registry:ui",
|
|
931
|
+
"target": "components/base/Searchbox.tsx"
|
|
845
932
|
},
|
|
846
933
|
{
|
|
847
934
|
"path": "components/base/Searchbox.md",
|
|
@@ -862,7 +949,8 @@
|
|
|
862
949
|
"files": [
|
|
863
950
|
{
|
|
864
951
|
"path": "components/base/Select.tsx",
|
|
865
|
-
"type": "registry:ui"
|
|
952
|
+
"type": "registry:ui",
|
|
953
|
+
"target": "components/base/Select.tsx"
|
|
866
954
|
},
|
|
867
955
|
{
|
|
868
956
|
"path": "components/base/Select.md",
|
|
@@ -883,7 +971,8 @@
|
|
|
883
971
|
"files": [
|
|
884
972
|
{
|
|
885
973
|
"path": "components/base/Separator.tsx",
|
|
886
|
-
"type": "registry:ui"
|
|
974
|
+
"type": "registry:ui",
|
|
975
|
+
"target": "components/base/Separator.tsx"
|
|
887
976
|
},
|
|
888
977
|
{
|
|
889
978
|
"path": "components/base/Separator.md",
|
|
@@ -905,7 +994,8 @@
|
|
|
905
994
|
"files": [
|
|
906
995
|
{
|
|
907
996
|
"path": "components/base/Sheet.tsx",
|
|
908
|
-
"type": "registry:ui"
|
|
997
|
+
"type": "registry:ui",
|
|
998
|
+
"target": "components/base/Sheet.tsx"
|
|
909
999
|
},
|
|
910
1000
|
{
|
|
911
1001
|
"path": "components/base/Sheet.md",
|
|
@@ -925,17 +1015,18 @@
|
|
|
925
1015
|
"lucide-react"
|
|
926
1016
|
],
|
|
927
1017
|
"registryDependencies": [
|
|
928
|
-
"button",
|
|
929
|
-
"input",
|
|
930
|
-
"separator",
|
|
931
|
-
"sheet",
|
|
932
|
-
"skeleton",
|
|
933
|
-
"tooltip"
|
|
1018
|
+
"@lexy/button",
|
|
1019
|
+
"@lexy/input",
|
|
1020
|
+
"@lexy/separator",
|
|
1021
|
+
"@lexy/sheet",
|
|
1022
|
+
"@lexy/skeleton",
|
|
1023
|
+
"@lexy/tooltip"
|
|
934
1024
|
],
|
|
935
1025
|
"files": [
|
|
936
1026
|
{
|
|
937
1027
|
"path": "components/base/Sidebar.tsx",
|
|
938
|
-
"type": "registry:ui"
|
|
1028
|
+
"type": "registry:ui",
|
|
1029
|
+
"target": "components/base/Sidebar.tsx"
|
|
939
1030
|
},
|
|
940
1031
|
{
|
|
941
1032
|
"path": "components/base/Sidebar.md",
|
|
@@ -956,7 +1047,8 @@
|
|
|
956
1047
|
"files": [
|
|
957
1048
|
{
|
|
958
1049
|
"path": "components/base/Skeleton.tsx",
|
|
959
|
-
"type": "registry:ui"
|
|
1050
|
+
"type": "registry:ui",
|
|
1051
|
+
"target": "components/base/Skeleton.tsx"
|
|
960
1052
|
},
|
|
961
1053
|
{
|
|
962
1054
|
"path": "components/base/Skeleton.md",
|
|
@@ -977,7 +1069,8 @@
|
|
|
977
1069
|
"files": [
|
|
978
1070
|
{
|
|
979
1071
|
"path": "components/base/Slider.tsx",
|
|
980
|
-
"type": "registry:ui"
|
|
1072
|
+
"type": "registry:ui",
|
|
1073
|
+
"target": "components/base/Slider.tsx"
|
|
981
1074
|
},
|
|
982
1075
|
{
|
|
983
1076
|
"path": "components/base/Slider.md",
|
|
@@ -998,7 +1091,8 @@
|
|
|
998
1091
|
"files": [
|
|
999
1092
|
{
|
|
1000
1093
|
"path": "components/base/Snippet.tsx",
|
|
1001
|
-
"type": "registry:ui"
|
|
1094
|
+
"type": "registry:ui",
|
|
1095
|
+
"target": "components/base/Snippet.tsx"
|
|
1002
1096
|
},
|
|
1003
1097
|
{
|
|
1004
1098
|
"path": "components/base/Snippet.md",
|
|
@@ -1020,7 +1114,8 @@
|
|
|
1020
1114
|
"files": [
|
|
1021
1115
|
{
|
|
1022
1116
|
"path": "components/base/Spinner.tsx",
|
|
1023
|
-
"type": "registry:ui"
|
|
1117
|
+
"type": "registry:ui",
|
|
1118
|
+
"target": "components/base/Spinner.tsx"
|
|
1024
1119
|
},
|
|
1025
1120
|
{
|
|
1026
1121
|
"path": "components/base/Spinner.md",
|
|
@@ -1041,7 +1136,8 @@
|
|
|
1041
1136
|
"files": [
|
|
1042
1137
|
{
|
|
1043
1138
|
"path": "components/base/StatusDot.tsx",
|
|
1044
|
-
"type": "registry:ui"
|
|
1139
|
+
"type": "registry:ui",
|
|
1140
|
+
"target": "components/base/StatusDot.tsx"
|
|
1045
1141
|
},
|
|
1046
1142
|
{
|
|
1047
1143
|
"path": "components/base/StatusDot.md",
|
|
@@ -1062,7 +1158,8 @@
|
|
|
1062
1158
|
"files": [
|
|
1063
1159
|
{
|
|
1064
1160
|
"path": "components/base/Switch.tsx",
|
|
1065
|
-
"type": "registry:ui"
|
|
1161
|
+
"type": "registry:ui",
|
|
1162
|
+
"target": "components/base/Switch.tsx"
|
|
1066
1163
|
},
|
|
1067
1164
|
{
|
|
1068
1165
|
"path": "components/base/Switch.md",
|
|
@@ -1083,7 +1180,8 @@
|
|
|
1083
1180
|
"files": [
|
|
1084
1181
|
{
|
|
1085
1182
|
"path": "components/base/Table.tsx",
|
|
1086
|
-
"type": "registry:ui"
|
|
1183
|
+
"type": "registry:ui",
|
|
1184
|
+
"target": "components/base/Table.tsx"
|
|
1087
1185
|
},
|
|
1088
1186
|
{
|
|
1089
1187
|
"path": "components/base/Table.md",
|
|
@@ -1104,7 +1202,8 @@
|
|
|
1104
1202
|
"files": [
|
|
1105
1203
|
{
|
|
1106
1204
|
"path": "components/base/Tabs.tsx",
|
|
1107
|
-
"type": "registry:ui"
|
|
1205
|
+
"type": "registry:ui",
|
|
1206
|
+
"target": "components/base/Tabs.tsx"
|
|
1108
1207
|
},
|
|
1109
1208
|
{
|
|
1110
1209
|
"path": "components/base/Tabs.md",
|
|
@@ -1125,7 +1224,8 @@
|
|
|
1125
1224
|
"files": [
|
|
1126
1225
|
{
|
|
1127
1226
|
"path": "components/base/Tag.tsx",
|
|
1128
|
-
"type": "registry:ui"
|
|
1227
|
+
"type": "registry:ui",
|
|
1228
|
+
"target": "components/base/Tag.tsx"
|
|
1129
1229
|
},
|
|
1130
1230
|
{
|
|
1131
1231
|
"path": "components/base/Tag.md",
|
|
@@ -1144,7 +1244,8 @@
|
|
|
1144
1244
|
"files": [
|
|
1145
1245
|
{
|
|
1146
1246
|
"path": "components/base/Textarea.tsx",
|
|
1147
|
-
"type": "registry:ui"
|
|
1247
|
+
"type": "registry:ui",
|
|
1248
|
+
"target": "components/base/Textarea.tsx"
|
|
1148
1249
|
},
|
|
1149
1250
|
{
|
|
1150
1251
|
"path": "components/base/Textarea.md",
|
|
@@ -1153,6 +1254,28 @@
|
|
|
1153
1254
|
}
|
|
1154
1255
|
]
|
|
1155
1256
|
},
|
|
1257
|
+
{
|
|
1258
|
+
"name": "toaster",
|
|
1259
|
+
"type": "registry:ui",
|
|
1260
|
+
"title": "Toaster",
|
|
1261
|
+
"description": "Notificaciones efímeras de la app (sobre **Sonner**, tematizado con tokens Lexy). Se monta **una vez** en el layout raíz y se dispara imperativo con `toast.*` desde cualquier parte. Reemplaza al `Toast` presentacional del sistema antiguo (deprecado). El componente vive en tu proyecto: instálalo con `create-lexy add toaster` y edítalo con libertad.",
|
|
1262
|
+
"dependencies": [
|
|
1263
|
+
"sonner@^2.0.0"
|
|
1264
|
+
],
|
|
1265
|
+
"registryDependencies": [],
|
|
1266
|
+
"files": [
|
|
1267
|
+
{
|
|
1268
|
+
"path": "components/base/Toaster.tsx",
|
|
1269
|
+
"type": "registry:ui",
|
|
1270
|
+
"target": "components/base/Toaster.tsx"
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"path": "components/base/Toaster.md",
|
|
1274
|
+
"type": "registry:file",
|
|
1275
|
+
"target": "components/base/Toaster.md"
|
|
1276
|
+
}
|
|
1277
|
+
]
|
|
1278
|
+
},
|
|
1156
1279
|
{
|
|
1157
1280
|
"name": "tooltip",
|
|
1158
1281
|
"type": "registry:ui",
|
|
@@ -1165,7 +1288,8 @@
|
|
|
1165
1288
|
"files": [
|
|
1166
1289
|
{
|
|
1167
1290
|
"path": "components/base/Tooltip.tsx",
|
|
1168
|
-
"type": "registry:ui"
|
|
1291
|
+
"type": "registry:ui",
|
|
1292
|
+
"target": "components/base/Tooltip.tsx"
|
|
1169
1293
|
},
|
|
1170
1294
|
{
|
|
1171
1295
|
"path": "components/base/Tooltip.md",
|
|
@@ -1184,7 +1308,8 @@
|
|
|
1184
1308
|
"files": [
|
|
1185
1309
|
{
|
|
1186
1310
|
"path": "components/base/Tree.tsx",
|
|
1187
|
-
"type": "registry:ui"
|
|
1311
|
+
"type": "registry:ui",
|
|
1312
|
+
"target": "components/base/Tree.tsx"
|
|
1188
1313
|
},
|
|
1189
1314
|
{
|
|
1190
1315
|
"path": "components/base/Tree.md",
|
|
@@ -1192,6 +1317,159 @@
|
|
|
1192
1317
|
"target": "components/base/Tree.md"
|
|
1193
1318
|
}
|
|
1194
1319
|
]
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"name": "confirmacion",
|
|
1323
|
+
"type": "registry:block",
|
|
1324
|
+
"title": "confirmacion",
|
|
1325
|
+
"description": "Pantalla de confirmación / éxito para **mundo cliente**: celebra breve, dice qué pasa ahora y dónde seguir. Instálalo con `create-lexy add confirmacion` — trae `Button` (el icono es de lucide). La vista queda en tu proyecto (`views/EnvioConfirmado.tsx`): edítala con libertad.",
|
|
1326
|
+
"dependencies": [
|
|
1327
|
+
"lucide-react"
|
|
1328
|
+
],
|
|
1329
|
+
"registryDependencies": [
|
|
1330
|
+
"@lexy/button"
|
|
1331
|
+
],
|
|
1332
|
+
"files": [
|
|
1333
|
+
{
|
|
1334
|
+
"path": "views/EnvioConfirmado.tsx",
|
|
1335
|
+
"type": "registry:file",
|
|
1336
|
+
"target": "views/EnvioConfirmado.tsx"
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"path": "views/confirmacion.md",
|
|
1340
|
+
"type": "registry:file",
|
|
1341
|
+
"target": "views/confirmacion.md"
|
|
1342
|
+
}
|
|
1343
|
+
]
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"name": "crm-app-layout",
|
|
1347
|
+
"type": "registry:block",
|
|
1348
|
+
"title": "crm-app-layout",
|
|
1349
|
+
"description": "Estructura persistente de la app interna (**CRM**): navegación lateral colapsable data-driven (`AppSidebar`) y área de trabajo (`SidebarInset`). Instálalo con `create-lexy add crm-app-layout` — trae `AppSidebar`, `Sidebar` y `Logo`. La vista queda en tu proyecto (`views/AppLayout.tsx`): edítala con libertad.",
|
|
1350
|
+
"dependencies": [
|
|
1351
|
+
"lucide-react"
|
|
1352
|
+
],
|
|
1353
|
+
"registryDependencies": [
|
|
1354
|
+
"@lexy/app-sidebar",
|
|
1355
|
+
"@lexy/logo",
|
|
1356
|
+
"@lexy/sidebar"
|
|
1357
|
+
],
|
|
1358
|
+
"files": [
|
|
1359
|
+
{
|
|
1360
|
+
"path": "views/AppLayout.tsx",
|
|
1361
|
+
"type": "registry:file",
|
|
1362
|
+
"target": "views/AppLayout.tsx"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"path": "views/crm-app-layout.md",
|
|
1366
|
+
"type": "registry:file",
|
|
1367
|
+
"target": "views/crm-app-layout.md"
|
|
1368
|
+
}
|
|
1369
|
+
]
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"name": "crm-desk",
|
|
1373
|
+
"type": "registry:block",
|
|
1374
|
+
"title": "crm-desk",
|
|
1375
|
+
"description": "Desk de trabajo para **CRM**: ancho completo, toolbar con búsqueda y acción primaria, tabla densa y escaneable con estado por fila, y paginación al pie. Instálalo con `create-lexy add crm-desk` — trae `Table`, `StatusDot`, `Pagination`, `Input` y `Button`. La vista queda en tu proyecto (`views/CasosDesk.tsx`): edítala con libertad.",
|
|
1376
|
+
"dependencies": [
|
|
1377
|
+
"lucide-react"
|
|
1378
|
+
],
|
|
1379
|
+
"registryDependencies": [
|
|
1380
|
+
"@lexy/button",
|
|
1381
|
+
"@lexy/input",
|
|
1382
|
+
"@lexy/pagination",
|
|
1383
|
+
"@lexy/status-dot",
|
|
1384
|
+
"@lexy/table"
|
|
1385
|
+
],
|
|
1386
|
+
"files": [
|
|
1387
|
+
{
|
|
1388
|
+
"path": "views/CasosDesk.tsx",
|
|
1389
|
+
"type": "registry:file",
|
|
1390
|
+
"target": "views/CasosDesk.tsx"
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
"path": "views/crm-desk.md",
|
|
1394
|
+
"type": "registry:file",
|
|
1395
|
+
"target": "views/crm-desk.md"
|
|
1396
|
+
}
|
|
1397
|
+
]
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"name": "crm-detalle-caso",
|
|
1401
|
+
"type": "registry:block",
|
|
1402
|
+
"title": "crm-detalle-caso",
|
|
1403
|
+
"description": "Detalle master-detail para **CRM**: contexto del caso a la izquierda (panel fijo de 288px), trabajo al centro en tabs, acción primaria a la mano. La información que se consulta junta vive junta. Instálalo con `create-lexy add crm-detalle-caso` — trae `Tabs`, `Tag`, `Separator` y `Button`. La vista queda en tu proyecto (`views/CasoDetalle.tsx`): edítala con libertad.",
|
|
1404
|
+
"dependencies": [],
|
|
1405
|
+
"registryDependencies": [
|
|
1406
|
+
"@lexy/button",
|
|
1407
|
+
"@lexy/separator",
|
|
1408
|
+
"@lexy/tabs",
|
|
1409
|
+
"@lexy/tag"
|
|
1410
|
+
],
|
|
1411
|
+
"files": [
|
|
1412
|
+
{
|
|
1413
|
+
"path": "views/CasoDetalle.tsx",
|
|
1414
|
+
"type": "registry:file",
|
|
1415
|
+
"target": "views/CasoDetalle.tsx"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"path": "views/crm-detalle-caso.md",
|
|
1419
|
+
"type": "registry:file",
|
|
1420
|
+
"target": "views/crm-detalle-caso.md"
|
|
1421
|
+
}
|
|
1422
|
+
]
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"name": "intake-wizard",
|
|
1426
|
+
"type": "registry:block",
|
|
1427
|
+
"title": "intake-wizard",
|
|
1428
|
+
"description": "Paso de wizard de intake para **mundo cliente**: un paso enfocado, columna angosta (`max-w-xl`), indicador de avance arriba y CTA al final. Instálalo con `create-lexy add intake-wizard` — trae consigo `Progress`, `Input`, `Label` y `Button`. La vista queda en tu proyecto (`views/IntakeDatosPersonales.tsx`): edítala con libertad.",
|
|
1429
|
+
"dependencies": [],
|
|
1430
|
+
"registryDependencies": [
|
|
1431
|
+
"@lexy/button",
|
|
1432
|
+
"@lexy/input",
|
|
1433
|
+
"@lexy/label",
|
|
1434
|
+
"@lexy/progress"
|
|
1435
|
+
],
|
|
1436
|
+
"files": [
|
|
1437
|
+
{
|
|
1438
|
+
"path": "views/IntakeDatosPersonales.tsx",
|
|
1439
|
+
"type": "registry:file",
|
|
1440
|
+
"target": "views/IntakeDatosPersonales.tsx"
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"path": "views/intake-wizard.md",
|
|
1444
|
+
"type": "registry:file",
|
|
1445
|
+
"target": "views/intake-wizard.md"
|
|
1446
|
+
}
|
|
1447
|
+
]
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"name": "login",
|
|
1451
|
+
"type": "registry:block",
|
|
1452
|
+
"title": "login",
|
|
1453
|
+
"description": "Pantalla de acceso: una sola tarea, foco único, ayuda contextual breve. Instálalo con `create-lexy add login` — trae `Card`, `Input`, `Label` y `Button`. La vista queda en tu proyecto (`views/Login.tsx`): edítala con libertad.",
|
|
1454
|
+
"dependencies": [],
|
|
1455
|
+
"registryDependencies": [
|
|
1456
|
+
"@lexy/button",
|
|
1457
|
+
"@lexy/card",
|
|
1458
|
+
"@lexy/input",
|
|
1459
|
+
"@lexy/label"
|
|
1460
|
+
],
|
|
1461
|
+
"files": [
|
|
1462
|
+
{
|
|
1463
|
+
"path": "views/Login.tsx",
|
|
1464
|
+
"type": "registry:file",
|
|
1465
|
+
"target": "views/Login.tsx"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"path": "views/login.md",
|
|
1469
|
+
"type": "registry:file",
|
|
1470
|
+
"target": "views/login.md"
|
|
1471
|
+
}
|
|
1472
|
+
]
|
|
1195
1473
|
}
|
|
1196
1474
|
]
|
|
1197
1475
|
}
|