tembro 6.0.2 → 6.1.0

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 (127) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/components/calendar/calendar-range-scheduler.cjs +1 -0
  3. package/dist/components/calendar/calendar-range-scheduler.d.ts +20 -0
  4. package/dist/components/calendar/calendar-range-scheduler.js +1 -0
  5. package/dist/components/calendar/date-time-picker.cjs +1 -0
  6. package/dist/components/calendar/date-time-picker.d.ts +15 -0
  7. package/dist/components/calendar/date-time-picker.js +1 -0
  8. package/dist/components/calendar/index.d.ts +2 -0
  9. package/dist/components/charts/chart-card.cjs +1 -0
  10. package/dist/components/charts/chart-card.d.ts +24 -0
  11. package/dist/components/charts/chart-card.js +1 -0
  12. package/dist/components/charts/index.d.ts +1 -0
  13. package/dist/components/command/advanced-command-menu.cjs +1 -0
  14. package/dist/components/command/advanced-command-menu.d.ts +25 -0
  15. package/dist/components/command/advanced-command-menu.js +1 -0
  16. package/dist/components/command/index.d.ts +1 -0
  17. package/dist/components/data-table/data-grid.cjs +1 -0
  18. package/dist/components/data-table/data-grid.d.ts +15 -0
  19. package/dist/components/data-table/data-grid.js +1 -0
  20. package/dist/components/data-table/index.d.ts +1 -0
  21. package/dist/components/data-table/public.d.ts +1 -0
  22. package/dist/components/feedback/async-boundary.cjs +1 -0
  23. package/dist/components/feedback/async-boundary.d.ts +12 -0
  24. package/dist/components/feedback/async-boundary.js +1 -0
  25. package/dist/components/feedback/index.d.ts +1 -0
  26. package/dist/components/inputs/index.d.ts +1 -0
  27. package/dist/components/inputs/multi-select.cjs +1 -0
  28. package/dist/components/inputs/multi-select.d.ts +16 -0
  29. package/dist/components/inputs/multi-select.js +1 -0
  30. package/dist/components/inputs/public.d.ts +1 -0
  31. package/dist/components/modern/file-manager.cjs +1 -0
  32. package/dist/components/modern/file-manager.d.ts +20 -0
  33. package/dist/components/modern/file-manager.js +1 -0
  34. package/dist/components/modern/index.d.ts +1 -0
  35. package/dist/components/notifications/action-toast.cjs +1 -0
  36. package/dist/components/notifications/action-toast.d.ts +16 -0
  37. package/dist/components/notifications/action-toast.js +1 -0
  38. package/dist/components/notifications/index.d.ts +1 -0
  39. package/dist/components/patterns/index.d.ts +1 -0
  40. package/dist/components/patterns/permissions-matrix.cjs +1 -0
  41. package/dist/components/patterns/permissions-matrix.d.ts +19 -0
  42. package/dist/components/patterns/permissions-matrix.js +1 -0
  43. package/dist/components/patterns/public.d.ts +1 -0
  44. package/dist/src/components/calendar/calendar-range-scheduler.cjs +1 -0
  45. package/dist/src/components/calendar/calendar-range-scheduler.js +75 -0
  46. package/dist/src/components/calendar/date-time-picker.cjs +1 -0
  47. package/dist/src/components/calendar/date-time-picker.js +36 -0
  48. package/dist/src/components/calendar/index.cjs +1 -1
  49. package/dist/src/components/calendar/index.js +5 -3
  50. package/dist/src/components/charts/chart-card.cjs +1 -0
  51. package/dist/src/components/charts/chart-card.js +55 -0
  52. package/dist/src/components/charts/index.cjs +1 -1
  53. package/dist/src/components/charts/index.js +3 -2
  54. package/dist/src/components/command/advanced-command-menu.cjs +1 -0
  55. package/dist/src/components/command/advanced-command-menu.js +57 -0
  56. package/dist/src/components/command/index.cjs +1 -1
  57. package/dist/src/components/command/index.js +3 -2
  58. package/dist/src/components/data-table/data-grid.cjs +1 -0
  59. package/dist/src/components/data-table/data-grid.js +32 -0
  60. package/dist/src/components/data-table/data-table-saved-filters.cjs +1 -1
  61. package/dist/src/components/data-table/data-table-saved-filters.js +11 -11
  62. package/dist/src/components/data-table/data-table.cjs +1 -1
  63. package/dist/src/components/data-table/data-table.js +170 -170
  64. package/dist/src/components/data-table/index.cjs +1 -1
  65. package/dist/src/components/data-table/index.js +15 -14
  66. package/dist/src/components/data-table/public.cjs +1 -1
  67. package/dist/src/components/data-table/public.js +3 -2
  68. package/dist/src/components/feedback/async-boundary.cjs +1 -0
  69. package/dist/src/components/feedback/async-boundary.js +22 -0
  70. package/dist/src/components/feedback/index.cjs +1 -1
  71. package/dist/src/components/feedback/index.js +2 -1
  72. package/dist/src/components/inputs/index.cjs +1 -1
  73. package/dist/src/components/inputs/index.js +13 -12
  74. package/dist/src/components/inputs/multi-select.cjs +1 -0
  75. package/dist/src/components/inputs/multi-select.js +80 -0
  76. package/dist/src/components/inputs/public.cjs +1 -1
  77. package/dist/src/components/inputs/public.js +13 -12
  78. package/dist/src/components/modern/file-manager.cjs +1 -0
  79. package/dist/src/components/modern/file-manager.js +75 -0
  80. package/dist/src/components/modern/index.cjs +1 -1
  81. package/dist/src/components/modern/index.js +5 -4
  82. package/dist/src/components/notifications/action-toast.cjs +1 -0
  83. package/dist/src/components/notifications/action-toast.js +49 -0
  84. package/dist/src/components/notifications/index.cjs +1 -1
  85. package/dist/src/components/notifications/index.js +3 -2
  86. package/dist/src/components/patterns/index.cjs +1 -1
  87. package/dist/src/components/patterns/index.js +2 -1
  88. package/dist/src/components/patterns/permissions-matrix.cjs +1 -0
  89. package/dist/src/components/patterns/permissions-matrix.js +43 -0
  90. package/dist/src/components/patterns/public.cjs +1 -1
  91. package/dist/src/components/patterns/public.js +2 -1
  92. package/dist/src/components/ui/input/group.cjs +1 -1
  93. package/dist/src/components/ui/input/group.js +8 -8
  94. package/dist/src/index.cjs +1 -1
  95. package/dist/src/index.js +117 -107
  96. package/dist/src/public-component-surface.cjs +1 -1
  97. package/dist/src/public-component-surface.js +50 -0
  98. package/package.json +13 -13
  99. package/packages/cli/dist/index.cjs +73 -73
  100. package/packages/cli/vendor/src/components/calendar/calendar-range-scheduler.tsx +72 -0
  101. package/packages/cli/vendor/src/components/calendar/date-time-picker.tsx +53 -0
  102. package/packages/cli/vendor/src/components/calendar/index.ts +5 -3
  103. package/packages/cli/vendor/src/components/charts/chart-card.tsx +81 -0
  104. package/packages/cli/vendor/src/components/charts/index.ts +1 -0
  105. package/packages/cli/vendor/src/components/command/advanced-command-menu.tsx +88 -0
  106. package/packages/cli/vendor/src/components/command/index.ts +2 -1
  107. package/packages/cli/vendor/src/components/data-table/data-grid.tsx +59 -0
  108. package/packages/cli/vendor/src/components/data-table/index.ts +3 -2
  109. package/packages/cli/vendor/src/components/data-table/public.ts +1 -0
  110. package/packages/cli/vendor/src/components/feedback/async-boundary.tsx +36 -0
  111. package/packages/cli/vendor/src/components/feedback/index.ts +1 -0
  112. package/packages/cli/vendor/src/components/inputs/index.ts +1 -0
  113. package/packages/cli/vendor/src/components/inputs/multi-select.tsx +75 -0
  114. package/packages/cli/vendor/src/components/inputs/public.ts +1 -0
  115. package/packages/cli/vendor/src/components/modern/file-manager.tsx +79 -0
  116. package/packages/cli/vendor/src/components/modern/index.ts +1 -0
  117. package/packages/cli/vendor/src/components/notifications/action-toast.tsx +78 -0
  118. package/packages/cli/vendor/src/components/notifications/index.ts +2 -1
  119. package/packages/cli/vendor/src/components/patterns/index.ts +1 -0
  120. package/packages/cli/vendor/src/components/patterns/permissions-matrix.tsx +71 -0
  121. package/packages/cli/vendor/src/components/patterns/public.ts +1 -0
  122. package/packages/cli/vendor/src/public-component-surface.ts +10 -0
  123. package/packages/cli/vendor/templates/showcase/src/showcase/data/registry.ts +1 -1
  124. package/packages/cli/vendor/templates/showcase/src/showcase/layout/HeroSection.tsx +3 -2
  125. package/packages/cli/vendor/templates/showcase/src/showcase/layout/WorkbenchSidebar.tsx +3 -2
  126. package/packages/cli/vendor/templates/showcase/src/showcase/sections/ComponentLivePreview.tsx +1 -1
  127. package/registry.json +1726 -1256
package/registry.json CHANGED
@@ -1,732 +1,1063 @@
1
1
  {
2
2
  "$schema": "https://tembro.dev/registry.schema.json",
3
3
  "name": "tembro",
4
- "version": "6.0.2",
4
+ "version": "6.1.0",
5
5
  "components": {
6
- "utils": {
7
- "category": "lib",
6
+ "accordion": {
7
+ "category": "ui",
8
+ "kind": "component",
8
9
  "dependencies": [
9
- "clsx",
10
- "tailwind-merge"
10
+ "lucide-react"
11
+ ],
12
+ "registryDependencies": [
13
+ "collapse"
11
14
  ],
12
15
  "files": [
13
16
  {
14
- "source": "src/lib/utils.ts",
15
- "target": "{utils}"
17
+ "source": "src/components/ui/accordion",
18
+ "target": "{ui}/accordion"
16
19
  }
17
20
  ],
18
- "status": "internal",
21
+ "status": "stable",
19
22
  "distribution": "foundation"
20
23
  },
21
- "button": {
22
- "category": "ui",
23
- "dependencies": [
24
- "@base-ui/react",
25
- "class-variance-authority"
26
- ],
27
- "registryDependencies": [
28
- "utils"
29
- ],
24
+ "action-menu": {
25
+ "category": "actions",
26
+ "kind": "component",
30
27
  "files": [
31
28
  {
32
- "source": "src/components/ui/button",
33
- "target": "{ui}/button"
29
+ "source": "src/components/actions/action-menu.tsx",
30
+ "target": "{components}/actions/action-menu.tsx"
34
31
  }
35
32
  ],
36
33
  "status": "stable",
37
- "distribution": "foundation"
34
+ "distribution": "source-copy"
38
35
  },
39
- "input": {
40
- "category": "ui",
36
+ "action-toast": {
37
+ "category": "notifications",
38
+ "kind": "component",
41
39
  "dependencies": [
42
- "@base-ui/react",
43
40
  "lucide-react"
44
41
  ],
45
42
  "registryDependencies": [
46
- "utils"
43
+ "button",
44
+ "toast"
47
45
  ],
48
46
  "files": [
49
47
  {
50
- "source": "src/components/ui/input",
51
- "target": "{ui}/input"
48
+ "source": "src/components/notifications/action-toast.tsx",
49
+ "target": "{components}/notifications/action-toast.tsx"
52
50
  }
53
51
  ],
54
- "status": "stable",
55
- "distribution": "foundation"
52
+ "status": "preview",
53
+ "distribution": "source-copy"
56
54
  },
57
- "textarea": {
58
- "category": "ui",
59
- "registryDependencies": [
60
- "utils"
61
- ],
55
+ "activity-feed": {
56
+ "category": "display",
57
+ "kind": "component",
62
58
  "files": [
63
59
  {
64
- "source": "src/components/ui/textarea",
65
- "target": "{ui}/textarea"
60
+ "source": "src/components/display/activity-feed.tsx",
61
+ "target": "{components}/display/activity-feed.tsx"
66
62
  }
67
63
  ],
68
64
  "status": "stable",
69
- "distribution": "foundation"
65
+ "distribution": "source-copy"
70
66
  },
71
- "checkbox": {
72
- "category": "ui",
67
+ "advanced-command-menu": {
68
+ "category": "command",
69
+ "kind": "component",
73
70
  "dependencies": [
74
71
  "lucide-react"
75
72
  ],
76
73
  "registryDependencies": [
77
- "utils"
74
+ "button",
75
+ "command",
76
+ "dialog"
78
77
  ],
79
78
  "files": [
80
79
  {
81
- "source": "src/components/ui/checkbox",
82
- "target": "{ui}/checkbox"
80
+ "source": "src/components/command/advanced-command-menu.tsx",
81
+ "target": "{components}/command/advanced-command-menu.tsx"
83
82
  }
84
83
  ],
85
- "status": "stable",
86
- "distribution": "foundation"
84
+ "status": "preview",
85
+ "distribution": "source-copy"
87
86
  },
88
- "switch": {
89
- "category": "ui",
90
- "registryDependencies": [
91
- "utils"
92
- ],
87
+ "alert": {
88
+ "category": "feedback",
89
+ "kind": "component",
93
90
  "files": [
94
91
  {
95
- "source": "src/components/ui/switch",
96
- "target": "{ui}/switch"
92
+ "source": "src/components/feedback/alert.tsx",
93
+ "target": "{components}/feedback/alert.tsx"
97
94
  }
98
95
  ],
99
- "status": "stable",
100
- "distribution": "foundation"
96
+ "status": "preview",
97
+ "distribution": "source-copy"
101
98
  },
102
- "badge": {
103
- "category": "ui",
99
+ "alert-dialog": {
100
+ "category": "overlay",
101
+ "kind": "component",
104
102
  "dependencies": [
105
- "@base-ui/react",
106
- "class-variance-authority"
103
+ "lucide-react"
107
104
  ],
108
105
  "registryDependencies": [
109
- "utils"
106
+ "dialog",
107
+ "button"
110
108
  ],
111
109
  "files": [
112
110
  {
113
- "source": "src/components/ui/badge",
114
- "target": "{ui}/badge"
111
+ "source": "src/components/overlay/alert-dialog.tsx",
112
+ "target": "{components}/overlay/alert-dialog.tsx"
115
113
  }
116
114
  ],
117
115
  "status": "stable",
118
- "distribution": "foundation"
116
+ "distribution": "source-copy"
119
117
  },
120
- "card": {
121
- "category": "ui",
122
- "dependencies": [
123
- "class-variance-authority"
118
+ "all": {
119
+ "category": "group",
120
+ "kind": "preset",
121
+ "registryDependencies": [
122
+ "button",
123
+ "input",
124
+ "textarea",
125
+ "checkbox",
126
+ "switch",
127
+ "badge",
128
+ "card",
129
+ "skeleton",
130
+ "tabs",
131
+ "dialog",
132
+ "dropdown-menu",
133
+ "popover",
134
+ "tooltip",
135
+ "hover-card",
136
+ "menubar",
137
+ "navigation-menu",
138
+ "select",
139
+ "table",
140
+ "segmented-control",
141
+ "radio-group",
142
+ "accordion",
143
+ "kbd",
144
+ "scroll-box",
145
+ "right-click-menu",
146
+ "number-field",
147
+ "toggle-group",
148
+ "toolbar",
149
+ "tag-input",
150
+ "multi-select",
151
+ "combobox",
152
+ "async-select",
153
+ "form-field-shell",
154
+ "form-input",
155
+ "form-select",
156
+ "form-textarea",
157
+ "form-switch",
158
+ "form-date-range-input",
159
+ "form-date-picker",
160
+ "form-date-range-picker",
161
+ "confirm-dialog",
162
+ "alert-dialog",
163
+ "drawer",
164
+ "state-view",
165
+ "async-boundary",
166
+ "sidebar-context",
167
+ "workspace-layout",
168
+ "sidebar",
169
+ "calendar",
170
+ "date-picker",
171
+ "date-range-picker",
172
+ "date-time-picker",
173
+ "calendar-range-scheduler",
174
+ "action-menu",
175
+ "activity-feed",
176
+ "alert",
177
+ "avatar",
178
+ "breadcrumbs",
179
+ "button-group",
180
+ "code-block",
181
+ "collapse",
182
+ "carousel",
183
+ "tag",
184
+ "typography",
185
+ "command",
186
+ "copy-button",
187
+ "data-state",
188
+ "data-table",
189
+ "description-list",
190
+ "divider",
191
+ "file-upload",
192
+ "filter-bar",
193
+ "empty-state",
194
+ "charts",
195
+ "chart-card",
196
+ "image-upload",
197
+ "kanban",
198
+ "chat",
199
+ "list",
200
+ "otp-input",
201
+ "color-picker",
202
+ "signature-pad",
203
+ "pagination",
204
+ "progress",
205
+ "progress-circle",
206
+ "data-grid",
207
+ "quick-action-grid",
208
+ "rating",
209
+ "section",
210
+ "slider",
211
+ "info-card",
212
+ "spinner",
213
+ "statistic",
214
+ "status-dot",
215
+ "status-legend",
216
+ "stepper",
217
+ "timeline",
218
+ "toast",
219
+ "action-toast",
220
+ "tree-view",
221
+ "use-before-unload-when-dirty",
222
+ "use-data-table-view-state",
223
+ "use-debounce",
224
+ "use-disclosure",
225
+ "use-is-mobile",
226
+ "use-session-storage-state",
227
+ "wizard",
228
+ "inline-editable",
229
+ "command-palette",
230
+ "advanced-command-menu",
231
+ "saved-filter-select",
232
+ "notification-center",
233
+ "calendar-scheduler",
234
+ "dual-list-picker",
235
+ "resizable-panel",
236
+ "rich-text-editor",
237
+ "file-manager",
238
+ "image-cropper",
239
+ "qr-code",
240
+ "json-input",
241
+ "time-picker",
242
+ "sortable-list",
243
+ "virtual-list",
244
+ "permissions-matrix"
124
245
  ],
246
+ "status": "preview",
247
+ "distribution": "system"
248
+ },
249
+ "app-header": {
250
+ "category": "layout",
251
+ "kind": "alias",
252
+ "migrationAliasFor": "workspace-layout",
253
+ "status": "internal",
254
+ "distribution": "source-copy"
255
+ },
256
+ "app-sidebar": {
257
+ "category": "layout",
258
+ "kind": "alias",
259
+ "migrationAliasFor": "sidebar",
260
+ "status": "preview",
261
+ "distribution": "source-copy"
262
+ },
263
+ "async-boundary": {
264
+ "category": "feedback",
265
+ "kind": "component",
125
266
  "registryDependencies": [
126
- "utils"
267
+ "state-view"
127
268
  ],
128
269
  "files": [
129
270
  {
130
- "source": "src/components/ui/card",
131
- "target": "{ui}/card"
271
+ "source": "src/components/feedback/async-boundary.tsx",
272
+ "target": "{components}/feedback/async-boundary.tsx"
132
273
  }
133
274
  ],
134
- "status": "stable",
135
- "distribution": "foundation"
275
+ "status": "preview",
276
+ "distribution": "source-copy"
136
277
  },
137
- "skeleton": {
138
- "category": "ui",
278
+ "async-select": {
279
+ "category": "inputs",
280
+ "kind": "component",
281
+ "dependencies": [
282
+ "lucide-react"
283
+ ],
139
284
  "registryDependencies": [
285
+ "button",
286
+ "input",
287
+ "popover",
140
288
  "utils"
141
289
  ],
142
290
  "files": [
143
291
  {
144
- "source": "src/components/ui/skeleton",
145
- "target": "{ui}/skeleton"
292
+ "source": "src/components/inputs/async-select.tsx",
293
+ "target": "{components}/inputs/async-select.tsx"
146
294
  }
147
295
  ],
148
296
  "status": "preview",
149
- "distribution": "foundation"
297
+ "distribution": "source-copy"
150
298
  },
151
- "tabs": {
152
- "category": "ui",
153
- "dependencies": [
154
- "@base-ui/react"
155
- ],
156
- "registryDependencies": [
157
- "utils"
158
- ],
299
+ "avatar": {
300
+ "category": "display",
301
+ "kind": "component",
159
302
  "files": [
160
303
  {
161
- "source": "src/components/ui/tabs",
162
- "target": "{ui}/tabs"
304
+ "source": "src/components/display/avatar.tsx",
305
+ "target": "{components}/display/avatar.tsx"
163
306
  }
164
307
  ],
165
308
  "status": "preview",
166
- "distribution": "foundation"
309
+ "distribution": "source-copy"
167
310
  },
168
- "dialog": {
311
+ "badge": {
169
312
  "category": "ui",
313
+ "kind": "component",
170
314
  "dependencies": [
171
315
  "@base-ui/react",
172
- "lucide-react"
316
+ "class-variance-authority"
173
317
  ],
174
318
  "registryDependencies": [
175
- "button",
176
319
  "utils"
177
320
  ],
178
321
  "files": [
179
322
  {
180
- "source": "src/components/ui/dialog",
181
- "target": "{ui}/dialog"
323
+ "source": "src/components/ui/badge",
324
+ "target": "{ui}/badge"
182
325
  }
183
326
  ],
184
327
  "status": "stable",
185
328
  "distribution": "foundation"
186
329
  },
187
- "dropdown-menu": {
188
- "category": "ui",
189
- "dependencies": [
190
- "@base-ui/react",
191
- "lucide-react"
192
- ],
193
- "registryDependencies": [
194
- "utils"
195
- ],
330
+ "breadcrumbs": {
331
+ "category": "layout",
332
+ "kind": "component",
196
333
  "files": [
197
334
  {
198
- "source": "src/components/ui/dropdown-menu",
199
- "target": "{ui}/dropdown-menu"
335
+ "source": "src/components/layout/breadcrumbs.tsx",
336
+ "target": "{components}/layout/breadcrumbs.tsx"
200
337
  }
201
338
  ],
202
339
  "status": "stable",
203
- "distribution": "foundation"
340
+ "distribution": "source-copy"
204
341
  },
205
- "popover": {
342
+ "button": {
206
343
  "category": "ui",
344
+ "kind": "component",
207
345
  "dependencies": [
208
- "@base-ui/react"
346
+ "@base-ui/react",
347
+ "class-variance-authority"
209
348
  ],
210
349
  "registryDependencies": [
211
350
  "utils"
212
351
  ],
213
352
  "files": [
214
353
  {
215
- "source": "src/components/ui/popover",
216
- "target": "{ui}/popover"
354
+ "source": "src/components/ui/button",
355
+ "target": "{ui}/button"
217
356
  }
218
357
  ],
219
358
  "status": "stable",
220
359
  "distribution": "foundation"
221
360
  },
222
- "tooltip": {
223
- "category": "ui",
224
- "registryDependencies": [
225
- "utils"
226
- ],
361
+ "button-group": {
362
+ "category": "actions",
363
+ "kind": "component",
227
364
  "files": [
228
365
  {
229
- "source": "src/components/ui/tooltip",
230
- "target": "{ui}/tooltip"
366
+ "source": "src/components/actions/button-group.tsx",
367
+ "target": "{components}/actions/button-group.tsx"
231
368
  }
232
369
  ],
233
370
  "status": "preview",
234
- "distribution": "foundation"
371
+ "distribution": "source-copy"
235
372
  },
236
- "hover-card": {
237
- "category": "ui",
373
+ "calendar": {
374
+ "category": "calendar",
375
+ "kind": "component",
238
376
  "dependencies": [
239
- "@base-ui/react"
377
+ "lucide-react"
240
378
  ],
241
379
  "registryDependencies": [
380
+ "button",
242
381
  "utils"
243
382
  ],
244
383
  "files": [
245
384
  {
246
- "source": "src/components/ui/hover-card",
247
- "target": "{ui}/hover-card"
385
+ "source": "src/components/calendar/calendar.tsx",
386
+ "target": "{components}/calendar/calendar.tsx"
387
+ },
388
+ {
389
+ "source": "src/components/calendar/date-utils.ts",
390
+ "target": "{components}/calendar/date-utils.ts"
248
391
  }
249
392
  ],
250
- "status": "stable",
393
+ "status": "preview",
394
+ "distribution": "source-copy"
395
+ },
396
+ "calendar-kit": {
397
+ "category": "group",
398
+ "kind": "preset",
399
+ "registryDependencies": [
400
+ "calendar",
401
+ "date-picker",
402
+ "date-range-picker",
403
+ "date-time-picker",
404
+ "calendar-range-scheduler"
405
+ ],
406
+ "status": "preview",
251
407
  "distribution": "system"
252
408
  },
253
- "menubar": {
254
- "category": "ui",
409
+ "calendar-range-scheduler": {
410
+ "category": "calendar",
411
+ "kind": "component",
255
412
  "dependencies": [
256
- "@base-ui/react",
257
413
  "lucide-react"
258
414
  ],
259
415
  "registryDependencies": [
416
+ "date-range-picker",
417
+ "badge",
418
+ "button",
419
+ "card",
260
420
  "utils"
261
421
  ],
262
422
  "files": [
263
423
  {
264
- "source": "src/components/ui/menubar",
265
- "target": "{ui}/menubar"
424
+ "source": "src/components/calendar/calendar-range-scheduler.tsx",
425
+ "target": "{components}/calendar/calendar-range-scheduler.tsx"
266
426
  }
267
427
  ],
268
428
  "status": "preview",
269
- "distribution": "system"
429
+ "distribution": "source-copy"
270
430
  },
271
- "navigation-menu": {
272
- "category": "navigation",
273
- "dependencies": [
274
- "@base-ui/react",
275
- "lucide-react"
276
- ],
431
+ "calendar-scheduler": {
432
+ "category": "modern",
433
+ "kind": "component",
277
434
  "registryDependencies": [
278
435
  "utils"
279
436
  ],
280
437
  "files": [
281
438
  {
282
- "source": "src/components/ui/navigation-menu",
283
- "target": "{ui}/navigation-menu"
439
+ "source": "src/components/modern/calendar-scheduler.tsx",
440
+ "target": "{components}/modern/calendar-scheduler.tsx"
284
441
  }
285
442
  ],
286
443
  "status": "preview",
287
- "distribution": "system"
288
- },
289
- "simple-select": {
290
- "category": "ui",
291
- "migrationAliasFor": "select",
292
- "status": "internal",
293
- "distribution": "foundation"
444
+ "distribution": "source-copy"
294
445
  },
295
- "select": {
446
+ "card": {
296
447
  "category": "ui",
448
+ "kind": "component",
297
449
  "dependencies": [
298
- "@base-ui/react",
299
- "lucide-react"
450
+ "class-variance-authority"
300
451
  ],
301
452
  "registryDependencies": [
302
453
  "utils"
303
454
  ],
304
455
  "files": [
305
456
  {
306
- "source": "src/components/ui/select",
307
- "target": "{ui}/select"
457
+ "source": "src/components/ui/card",
458
+ "target": "{ui}/card"
308
459
  }
309
460
  ],
310
461
  "status": "stable",
311
462
  "distribution": "foundation"
312
463
  },
313
- "table": {
314
- "category": "ui",
464
+ "carousel": {
465
+ "category": "display",
466
+ "kind": "component",
467
+ "files": [
468
+ {
469
+ "source": "src/components/display/carousel.tsx",
470
+ "target": "{components}/display/carousel.tsx"
471
+ }
472
+ ],
473
+ "status": "preview",
474
+ "distribution": "source-copy"
475
+ },
476
+ "chart-card": {
477
+ "category": "charts",
478
+ "kind": "component",
479
+ "dependencies": [
480
+ "recharts"
481
+ ],
315
482
  "registryDependencies": [
483
+ "badge",
484
+ "card",
485
+ "charts",
486
+ "select",
316
487
  "utils"
317
488
  ],
318
489
  "files": [
319
490
  {
320
- "source": "src/components/ui/table",
321
- "target": "{ui}/table"
491
+ "source": "src/components/charts/chart-card.tsx",
492
+ "target": "{components}/charts/chart-card.tsx"
322
493
  }
323
494
  ],
324
- "status": "stable",
325
- "distribution": "foundation"
495
+ "status": "preview"
326
496
  },
327
- "segmented-control": {
328
- "category": "ui",
497
+ "charts": {
498
+ "category": "charts",
499
+ "kind": "component",
500
+ "dependencies": [
501
+ "recharts"
502
+ ],
329
503
  "registryDependencies": [
504
+ "card",
505
+ "state-view",
330
506
  "utils"
331
507
  ],
332
508
  "files": [
333
509
  {
334
- "source": "src/components/ui/segmented-control",
335
- "target": "{ui}/segmented-control"
510
+ "source": "src/components/charts/charts.tsx",
511
+ "target": "{components}/charts/charts.tsx"
512
+ },
513
+ {
514
+ "source": "src/components/charts/index.ts",
515
+ "target": "{components}/charts/index.ts"
336
516
  }
337
517
  ],
338
- "status": "preview",
339
- "distribution": "foundation"
518
+ "status": "stable"
340
519
  },
341
- "radio-group": {
342
- "category": "ui",
520
+ "chat": {
521
+ "category": "display",
522
+ "kind": "component",
523
+ "dependencies": [
524
+ "lucide-react"
525
+ ],
343
526
  "registryDependencies": [
527
+ "avatar",
528
+ "badge",
344
529
  "button",
530
+ "input",
531
+ "textarea",
345
532
  "utils"
346
533
  ],
347
534
  "files": [
348
535
  {
349
- "source": "src/components/ui/radio-group",
350
- "target": "{ui}/radio-group"
536
+ "source": "src/components/display/chat.tsx",
537
+ "target": "{components}/display/chat.tsx"
351
538
  }
352
539
  ],
353
- "status": "stable",
354
- "distribution": "foundation"
540
+ "status": "preview",
541
+ "distribution": "source-copy"
355
542
  },
356
- "accordion": {
543
+ "checkbox": {
357
544
  "category": "ui",
545
+ "kind": "component",
358
546
  "dependencies": [
359
547
  "lucide-react"
360
548
  ],
361
549
  "registryDependencies": [
362
- "collapse"
550
+ "utils"
363
551
  ],
364
552
  "files": [
365
553
  {
366
- "source": "src/components/ui/accordion",
367
- "target": "{ui}/accordion"
554
+ "source": "src/components/ui/checkbox",
555
+ "target": "{ui}/checkbox"
368
556
  }
369
557
  ],
370
558
  "status": "stable",
371
559
  "distribution": "foundation"
372
560
  },
373
- "kbd": {
374
- "category": "ui",
561
+ "clearable-input": {
562
+ "category": "inputs",
563
+ "kind": "alias",
564
+ "migrationAliasFor": "input",
565
+ "status": "preview",
566
+ "distribution": "source-copy"
567
+ },
568
+ "code-block": {
569
+ "category": "display",
570
+ "kind": "component",
375
571
  "files": [
376
572
  {
377
- "source": "src/components/ui/kbd",
378
- "target": "{ui}/kbd"
573
+ "source": "src/components/display/code-block.tsx",
574
+ "target": "{components}/display/code-block.tsx"
379
575
  }
380
576
  ],
381
- "status": "stable",
382
- "distribution": "foundation"
577
+ "status": "preview",
578
+ "distribution": "source-copy"
383
579
  },
384
- "scroll-box": {
580
+ "collapse": {
385
581
  "category": "ui",
582
+ "kind": "component",
386
583
  "files": [
387
584
  {
388
- "source": "src/components/ui/scroll-box",
389
- "target": "{ui}/scroll-box"
585
+ "source": "src/components/ui/collapse",
586
+ "target": "{ui}/collapse"
390
587
  }
391
588
  ],
392
- "status": "stable",
589
+ "status": "preview",
393
590
  "distribution": "foundation"
394
591
  },
395
- "right-click-menu": {
396
- "category": "ui",
397
- "dependencies": [
398
- "react"
592
+ "color-picker": {
593
+ "category": "inputs",
594
+ "kind": "component",
595
+ "registryDependencies": [
596
+ "utils"
399
597
  ],
400
598
  "files": [
401
599
  {
402
- "source": "src/components/ui/right-click-menu",
403
- "target": "{ui}/right-click-menu"
600
+ "source": "src/components/inputs/color-picker.tsx",
601
+ "target": "{components}/inputs/color-picker.tsx"
404
602
  }
405
603
  ],
406
604
  "status": "stable",
407
- "distribution": "foundation"
605
+ "distribution": "source-copy"
408
606
  },
409
- "number-field": {
607
+ "combobox": {
410
608
  "category": "inputs",
609
+ "kind": "component",
411
610
  "dependencies": [
412
- "@base-ui/react",
413
611
  "lucide-react"
414
612
  ],
415
613
  "registryDependencies": [
614
+ "button",
615
+ "input",
616
+ "popover",
416
617
  "utils"
417
618
  ],
418
619
  "files": [
419
620
  {
420
- "source": "src/components/ui/number-field",
421
- "target": "{ui}/number-field"
621
+ "source": "src/components/inputs/combobox.tsx",
622
+ "target": "{components}/inputs/combobox.tsx"
422
623
  }
423
624
  ],
424
625
  "status": "preview",
425
- "distribution": "foundation"
626
+ "distribution": "source-copy"
426
627
  },
427
- "toggle-group": {
628
+ "command": {
428
629
  "category": "ui",
429
- "dependencies": [
430
- "@base-ui/react"
431
- ],
432
- "registryDependencies": [
433
- "utils"
434
- ],
630
+ "kind": "component",
435
631
  "files": [
436
632
  {
437
- "source": "src/components/ui/toggle-group",
438
- "target": "{ui}/toggle-group"
633
+ "source": "src/components/ui/command",
634
+ "target": "{ui}/command"
439
635
  }
440
636
  ],
441
637
  "status": "preview",
442
638
  "distribution": "foundation"
443
639
  },
444
- "toolbar": {
445
- "category": "ui",
446
- "dependencies": [
447
- "@base-ui/react"
448
- ],
449
- "registryDependencies": [
450
- "utils"
451
- ],
452
- "files": [
453
- {
454
- "source": "src/components/ui/toolbar",
455
- "target": "{ui}/toolbar"
456
- }
457
- ],
640
+ "command-bar": {
641
+ "category": "navigation",
642
+ "kind": "alias",
643
+ "migrationAliasFor": "command-palette",
458
644
  "status": "preview",
459
- "distribution": "foundation"
645
+ "distribution": "source-copy"
460
646
  },
461
- "tag-input": {
462
- "category": "inputs",
647
+ "command-palette": {
648
+ "category": "command",
649
+ "kind": "component",
463
650
  "dependencies": [
651
+ "cmdk",
464
652
  "lucide-react"
465
653
  ],
466
654
  "registryDependencies": [
467
- "badge",
655
+ "button",
656
+ "dialog",
468
657
  "input",
658
+ "kbd",
469
659
  "utils"
470
660
  ],
471
661
  "files": [
472
662
  {
473
- "source": "src/components/inputs/tag-input.tsx",
474
- "target": "{components}/inputs/tag-input.tsx"
663
+ "source": "src/components/command/command-palette.tsx",
664
+ "target": "{components}/command/command-palette.tsx"
475
665
  }
476
666
  ],
477
667
  "status": "preview",
478
668
  "distribution": "source-copy"
479
669
  },
480
- "combobox": {
481
- "category": "inputs",
482
- "dependencies": [
483
- "lucide-react"
484
- ],
485
- "registryDependencies": [
486
- "button",
487
- "input",
488
- "popover",
489
- "utils"
490
- ],
491
- "files": [
492
- {
493
- "source": "src/components/inputs/combobox.tsx",
494
- "target": "{components}/inputs/combobox.tsx"
495
- }
496
- ],
670
+ "comparison-card": {
671
+ "category": "display",
672
+ "kind": "alias",
673
+ "migrationAliasFor": "card",
497
674
  "status": "preview",
498
675
  "distribution": "source-copy"
499
676
  },
500
- "async-select": {
501
- "category": "inputs",
502
- "dependencies": [
503
- "lucide-react"
504
- ],
677
+ "confirm-dialog": {
678
+ "category": "overlay",
679
+ "kind": "component",
505
680
  "registryDependencies": [
506
681
  "button",
507
- "input",
508
- "popover",
509
- "utils"
682
+ "dialog"
510
683
  ],
511
684
  "files": [
512
685
  {
513
- "source": "src/components/inputs/async-select.tsx",
514
- "target": "{components}/inputs/async-select.tsx"
686
+ "source": "src/components/overlay/confirm-dialog.tsx",
687
+ "target": "{components}/overlay/confirm-dialog.tsx"
515
688
  }
516
689
  ],
517
- "status": "preview",
690
+ "status": "stable",
518
691
  "distribution": "source-copy"
519
692
  },
520
- "form-field-shell": {
521
- "category": "form",
522
- "registryDependencies": [
523
- "utils"
524
- ],
693
+ "copy-button": {
694
+ "category": "actions",
695
+ "kind": "component",
525
696
  "files": [
526
697
  {
527
- "source": "src/components/form/form-field-shell.tsx",
528
- "target": "{components}/form/form-field-shell.tsx"
698
+ "source": "src/components/actions/copy-button.tsx",
699
+ "target": "{components}/actions/copy-button.tsx"
529
700
  }
530
701
  ],
531
702
  "status": "preview",
532
703
  "distribution": "source-copy"
533
704
  },
534
- "form-input": {
535
- "category": "form",
536
- "dependencies": [
537
- "react-hook-form"
538
- ],
539
- "registryDependencies": [
540
- "input",
541
- "form-field-shell"
542
- ],
543
- "files": [
544
- {
545
- "source": "src/components/form/form-input.tsx",
546
- "target": "{components}/form/form-input.tsx"
547
- }
548
- ],
705
+ "copy-field": {
706
+ "category": "actions",
707
+ "kind": "alias",
708
+ "migrationAliasFor": "copy-button",
549
709
  "status": "preview",
550
710
  "distribution": "source-copy"
551
711
  },
552
- "form-select": {
553
- "category": "form",
554
- "dependencies": [
555
- "react-hook-form"
556
- ],
712
+ "dashboard": {
713
+ "category": "group",
714
+ "kind": "preset",
557
715
  "registryDependencies": [
558
- "select",
716
+ "layout",
717
+ "feedback",
718
+ "input",
559
719
  "async-select",
560
- "form-field-shell"
561
- ],
562
- "files": [
563
- {
564
- "source": "src/components/form/form-select.tsx",
565
- "target": "{components}/form/form-select.tsx"
566
- }
720
+ "tag-input",
721
+ "form"
567
722
  ],
568
723
  "status": "preview",
569
- "distribution": "source-copy"
724
+ "distribution": "system"
570
725
  },
571
- "form-textarea": {
572
- "category": "form",
573
- "dependencies": [
574
- "react-hook-form"
575
- ],
726
+ "data-grid": {
727
+ "category": "data-table",
728
+ "kind": "component",
576
729
  "registryDependencies": [
577
- "textarea",
578
- "form-field-shell"
730
+ "input",
731
+ "table",
732
+ "utils"
579
733
  ],
580
734
  "files": [
581
735
  {
582
- "source": "src/components/form/form-textarea.tsx",
583
- "target": "{components}/form/form-textarea.tsx"
736
+ "source": "src/components/data-table/data-grid.tsx",
737
+ "target": "{components}/data-table/data-grid.tsx"
584
738
  }
585
739
  ],
586
740
  "status": "preview",
741
+ "distribution": "system"
742
+ },
743
+ "data-list": {
744
+ "category": "display",
745
+ "kind": "alias",
746
+ "migrationAliasFor": "list",
747
+ "status": "preview",
587
748
  "distribution": "source-copy"
588
749
  },
589
- "form-switch": {
590
- "category": "form",
591
- "dependencies": [
592
- "react-hook-form"
593
- ],
750
+ "data-state": {
751
+ "category": "display",
752
+ "kind": "component",
594
753
  "registryDependencies": [
595
- "switch",
596
- "form-field-shell",
597
- "utils"
754
+ "state-view"
598
755
  ],
599
756
  "files": [
600
757
  {
601
- "source": "src/components/form/form-switch.tsx",
602
- "target": "{components}/form/form-switch.tsx"
758
+ "source": "src/components/display/data-state.tsx",
759
+ "target": "{components}/display/data-state.tsx"
603
760
  }
604
761
  ],
605
762
  "status": "preview",
606
763
  "distribution": "source-copy"
607
764
  },
608
- "form-date-range-input": {
609
- "category": "form",
765
+ "data-table": {
766
+ "category": "data-table",
767
+ "kind": "component",
610
768
  "dependencies": [
611
- "react-hook-form"
769
+ "@tanstack/react-table",
770
+ "@tanstack/react-virtual",
771
+ "lucide-react"
612
772
  ],
613
773
  "registryDependencies": [
774
+ "button",
775
+ "checkbox",
776
+ "data-state",
777
+ "dropdown-menu",
614
778
  "input",
615
- "form-field-shell"
779
+ "pagination",
780
+ "search-input",
781
+ "select",
782
+ "table",
783
+ "utils"
616
784
  ],
617
785
  "files": [
618
786
  {
619
- "source": "src/components/form/form-date-range-input.tsx",
620
- "target": "{components}/form/form-date-range-input.tsx"
787
+ "source": "src/components/data-table/data-table.tsx",
788
+ "target": "{components}/data-table/data-table.tsx"
789
+ },
790
+ {
791
+ "source": "src/components/data-table/data-table-actions-column.tsx",
792
+ "target": "{components}/data-table/data-table-actions-column.tsx"
793
+ },
794
+ {
795
+ "source": "src/components/data-table/data-table-bulk-actions.tsx",
796
+ "target": "{components}/data-table/data-table-bulk-actions.tsx"
797
+ },
798
+ {
799
+ "source": "src/components/data-table/data-table-column-visibility-menu.tsx",
800
+ "target": "{components}/data-table/data-table-column-visibility-menu.tsx"
801
+ },
802
+ {
803
+ "source": "src/components/data-table/data-table-pagination.tsx",
804
+ "target": "{components}/data-table/data-table-pagination.tsx"
805
+ },
806
+ {
807
+ "source": "src/components/data-table/data-table-row-actions.tsx",
808
+ "target": "{components}/data-table/data-table-row-actions.tsx"
809
+ },
810
+ {
811
+ "source": "src/components/data-table/data-table-saved-filters.tsx",
812
+ "target": "{components}/data-table/data-table-saved-filters.tsx"
813
+ },
814
+ {
815
+ "source": "src/components/data-table/data-table-select-column.tsx",
816
+ "target": "{components}/data-table/data-table-select-column.tsx"
817
+ },
818
+ {
819
+ "source": "src/components/data-table/data-table-sortable-header.tsx",
820
+ "target": "{components}/data-table/data-table-sortable-header.tsx"
821
+ },
822
+ {
823
+ "source": "src/components/data-table/data-table-toolbar.tsx",
824
+ "target": "{components}/data-table/data-table-toolbar.tsx"
825
+ },
826
+ {
827
+ "source": "src/components/data-table/data-table-view-presets.tsx",
828
+ "target": "{components}/data-table/data-table-view-presets.tsx"
829
+ },
830
+ {
831
+ "source": "src/components/data-table/table-export-menu.tsx",
832
+ "target": "{components}/data-table/table-export-menu.tsx"
833
+ },
834
+ {
835
+ "source": "src/components/data-table/table-import-button.tsx",
836
+ "target": "{components}/data-table/table-import-button.tsx"
621
837
  }
622
838
  ],
623
839
  "status": "preview",
624
- "distribution": "source-copy"
840
+ "distribution": "system"
625
841
  },
626
- "form-date-picker": {
627
- "category": "form",
628
- "dependencies": [
629
- "react-hook-form"
630
- ],
631
- "registryDependencies": [
632
- "date-picker",
633
- "form-field-shell"
634
- ],
635
- "files": [
636
- {
637
- "source": "src/components/form/form-date-picker.tsx",
638
- "target": "{components}/form/form-date-picker.tsx"
842
+ "data-table-actions-column": {
843
+ "category": "data-table",
844
+ "kind": "alias",
845
+ "migrationAliasFor": "data-table",
846
+ "status": "internal",
847
+ "distribution": "system"
848
+ },
849
+ "data-table-bulk-actions": {
850
+ "category": "data-table",
851
+ "kind": "alias",
852
+ "migrationAliasFor": "data-table",
853
+ "status": "preview",
854
+ "distribution": "system"
855
+ },
856
+ "data-table-column-visibility-menu": {
857
+ "category": "data-table",
858
+ "kind": "alias",
859
+ "migrationAliasFor": "data-table",
860
+ "status": "preview",
861
+ "distribution": "system"
862
+ },
863
+ "data-table-pagination": {
864
+ "category": "data-table",
865
+ "kind": "alias",
866
+ "migrationAliasFor": "data-table",
867
+ "status": "preview",
868
+ "distribution": "system"
869
+ },
870
+ "data-table-row-actions": {
871
+ "category": "data-table",
872
+ "kind": "alias",
873
+ "migrationAliasFor": "data-table",
874
+ "status": "preview",
875
+ "distribution": "system"
876
+ },
877
+ "data-table-saved-filters": {
878
+ "category": "data-table",
879
+ "kind": "alias",
880
+ "migrationAliasFor": "data-table",
881
+ "status": "preview",
882
+ "distribution": "system"
883
+ },
884
+ "data-table-select-column": {
885
+ "category": "data-table",
886
+ "kind": "alias",
887
+ "migrationAliasFor": "data-table",
888
+ "status": "preview",
889
+ "distribution": "system"
890
+ },
891
+ "data-table-sortable-header": {
892
+ "category": "data-table",
893
+ "kind": "alias",
894
+ "migrationAliasFor": "data-table",
895
+ "status": "preview",
896
+ "distribution": "system"
897
+ },
898
+ "data-table-toolbar": {
899
+ "category": "data-table",
900
+ "kind": "alias",
901
+ "migrationAliasFor": "data-table",
902
+ "status": "preview",
903
+ "distribution": "system"
904
+ },
905
+ "data-table-view-presets": {
906
+ "category": "data-table",
907
+ "kind": "alias",
908
+ "migrationAliasFor": "data-table",
909
+ "status": "preview",
910
+ "distribution": "system"
911
+ },
912
+ "date-input": {
913
+ "category": "inputs",
914
+ "kind": "alias",
915
+ "migrationAliasFor": "input",
916
+ "status": "preview",
917
+ "distribution": "source-copy"
918
+ },
919
+ "date-picker": {
920
+ "category": "calendar",
921
+ "kind": "component",
922
+ "dependencies": [
923
+ "lucide-react"
924
+ ],
925
+ "registryDependencies": [
926
+ "calendar",
927
+ "button",
928
+ "popover",
929
+ "utils"
930
+ ],
931
+ "files": [
932
+ {
933
+ "source": "src/components/calendar/date-picker.tsx",
934
+ "target": "{components}/calendar/date-picker.tsx"
639
935
  }
640
936
  ],
641
937
  "status": "preview",
642
938
  "distribution": "source-copy"
643
939
  },
644
- "form-date-range-picker": {
645
- "category": "form",
940
+ "date-range-input": {
941
+ "category": "inputs",
942
+ "kind": "alias",
943
+ "migrationAliasFor": "input",
944
+ "status": "preview",
945
+ "distribution": "source-copy"
946
+ },
947
+ "date-range-picker": {
948
+ "category": "calendar",
949
+ "kind": "component",
646
950
  "dependencies": [
647
- "react-hook-form"
951
+ "lucide-react"
648
952
  ],
649
953
  "registryDependencies": [
650
- "date-range-picker",
651
- "form-field-shell"
954
+ "calendar",
955
+ "button",
956
+ "popover",
957
+ "utils"
652
958
  ],
653
959
  "files": [
654
960
  {
655
- "source": "src/components/form/form-date-range-picker.tsx",
656
- "target": "{components}/form/form-date-range-picker.tsx"
961
+ "source": "src/components/calendar/date-range-picker.tsx",
962
+ "target": "{components}/calendar/date-range-picker.tsx"
657
963
  }
658
964
  ],
659
965
  "status": "preview",
660
966
  "distribution": "source-copy"
661
967
  },
662
- "form": {
663
- "category": "group",
968
+ "date-time-picker": {
969
+ "category": "calendar",
970
+ "kind": "component",
664
971
  "registryDependencies": [
665
- "form-field-shell",
666
- "form-input",
667
- "form-select",
668
- "form-textarea",
669
- "form-switch",
670
- "form-date-range-input",
671
- "form-date-picker",
672
- "form-date-range-picker"
972
+ "date-picker",
973
+ "time-picker",
974
+ "utils"
673
975
  ],
674
976
  "files": [
675
977
  {
676
- "source": "src/components/form/index.ts",
677
- "target": "{components}/form/index.ts"
978
+ "source": "src/components/calendar/date-time-picker.tsx",
979
+ "target": "{components}/calendar/date-time-picker.tsx"
678
980
  }
679
981
  ],
680
982
  "status": "preview",
681
- "distribution": "system"
682
- },
683
- "dialog-actions": {
684
- "category": "overlay",
685
- "migrationAliasFor": "dialog",
686
- "status": "internal",
687
983
  "distribution": "source-copy"
688
984
  },
689
- "modal-shell": {
690
- "category": "overlay",
691
- "migrationAliasFor": "dialog",
692
- "status": "internal",
985
+ "delta-badge": {
986
+ "category": "display",
987
+ "kind": "alias",
988
+ "migrationAliasFor": "badge",
989
+ "status": "preview",
693
990
  "distribution": "source-copy"
694
991
  },
695
- "confirm-dialog": {
696
- "category": "overlay",
697
- "registryDependencies": [
698
- "button",
699
- "dialog"
700
- ],
992
+ "description-list": {
993
+ "category": "display",
994
+ "kind": "component",
701
995
  "files": [
702
996
  {
703
- "source": "src/components/overlay/confirm-dialog.tsx",
704
- "target": "{components}/overlay/confirm-dialog.tsx"
997
+ "source": "src/components/display/description-list.tsx",
998
+ "target": "{components}/display/description-list.tsx"
705
999
  }
706
1000
  ],
707
1001
  "status": "stable",
708
1002
  "distribution": "source-copy"
709
1003
  },
710
- "alert-dialog": {
711
- "category": "overlay",
1004
+ "dialog": {
1005
+ "category": "ui",
1006
+ "kind": "component",
712
1007
  "dependencies": [
1008
+ "@base-ui/react",
713
1009
  "lucide-react"
714
1010
  ],
715
1011
  "registryDependencies": [
716
- "dialog",
717
- "button"
1012
+ "button",
1013
+ "utils"
718
1014
  ],
719
1015
  "files": [
720
1016
  {
721
- "source": "src/components/overlay/alert-dialog.tsx",
722
- "target": "{components}/overlay/alert-dialog.tsx"
1017
+ "source": "src/components/ui/dialog",
1018
+ "target": "{ui}/dialog"
723
1019
  }
724
1020
  ],
725
1021
  "status": "stable",
1022
+ "distribution": "foundation"
1023
+ },
1024
+ "dialog-actions": {
1025
+ "category": "overlay",
1026
+ "kind": "alias",
1027
+ "migrationAliasFor": "dialog",
1028
+ "status": "internal",
726
1029
  "distribution": "source-copy"
727
1030
  },
1031
+ "divider": {
1032
+ "category": "ui",
1033
+ "kind": "component",
1034
+ "files": [
1035
+ {
1036
+ "source": "src/components/ui/divider",
1037
+ "target": "{ui}/divider"
1038
+ }
1039
+ ],
1040
+ "status": "preview",
1041
+ "distribution": "foundation"
1042
+ },
1043
+ "dnd": {
1044
+ "category": "group",
1045
+ "kind": "preset",
1046
+ "registryDependencies": [
1047
+ "sortable-list"
1048
+ ],
1049
+ "files": [
1050
+ {
1051
+ "source": "src/components/dnd/index.ts",
1052
+ "target": "{components}/dnd/index.ts"
1053
+ }
1054
+ ],
1055
+ "status": "preview",
1056
+ "distribution": "system"
1057
+ },
728
1058
  "drawer": {
729
1059
  "category": "overlay",
1060
+ "kind": "component",
730
1061
  "dependencies": [
731
1062
  "@base-ui/react"
732
1063
  ],
@@ -742,29 +1073,63 @@
742
1073
  "status": "stable",
743
1074
  "distribution": "source-copy"
744
1075
  },
745
- "state-view": {
746
- "category": "feedback",
1076
+ "dropdown-menu": {
1077
+ "category": "ui",
1078
+ "kind": "component",
747
1079
  "dependencies": [
1080
+ "@base-ui/react",
748
1081
  "lucide-react"
749
1082
  ],
750
1083
  "registryDependencies": [
751
- "button",
752
1084
  "utils"
753
1085
  ],
754
1086
  "files": [
755
1087
  {
756
- "source": "src/components/feedback/state-view.tsx",
757
- "target": "{components}/feedback/state-view.tsx"
1088
+ "source": "src/components/ui/dropdown-menu",
1089
+ "target": "{ui}/dropdown-menu"
758
1090
  }
759
1091
  ],
760
1092
  "status": "stable",
1093
+ "distribution": "foundation"
1094
+ },
1095
+ "dual-list-picker": {
1096
+ "category": "modern",
1097
+ "kind": "component",
1098
+ "registryDependencies": [
1099
+ "utils"
1100
+ ],
1101
+ "files": [
1102
+ {
1103
+ "source": "src/components/modern/dual-list-picker.tsx",
1104
+ "target": "{components}/modern/dual-list-picker.tsx"
1105
+ }
1106
+ ],
1107
+ "status": "preview",
761
1108
  "distribution": "source-copy"
762
1109
  },
1110
+ "empty-state": {
1111
+ "category": "patterns",
1112
+ "kind": "component",
1113
+ "registryDependencies": [
1114
+ "state-view",
1115
+ "button"
1116
+ ],
1117
+ "files": [
1118
+ {
1119
+ "source": "src/components/patterns/empty-state.tsx",
1120
+ "target": "{components}/patterns/empty-state.tsx"
1121
+ }
1122
+ ],
1123
+ "status": "preview",
1124
+ "distribution": "system"
1125
+ },
763
1126
  "feedback": {
764
1127
  "category": "group",
1128
+ "kind": "preset",
765
1129
  "registryDependencies": [
766
1130
  "alert",
767
- "state-view"
1131
+ "state-view",
1132
+ "async-boundary"
768
1133
  ],
769
1134
  "files": [
770
1135
  {
@@ -775,989 +1140,873 @@
775
1140
  "status": "stable",
776
1141
  "distribution": "system"
777
1142
  },
778
- "sidebar-context": {
779
- "category": "layout",
1143
+ "file-dropzone": {
1144
+ "category": "upload",
1145
+ "kind": "alias",
1146
+ "migrationAliasFor": "file-upload",
1147
+ "status": "preview",
1148
+ "distribution": "source-copy"
1149
+ },
1150
+ "file-manager": {
1151
+ "category": "modern",
1152
+ "kind": "component",
780
1153
  "dependencies": [
781
1154
  "lucide-react"
782
1155
  ],
783
1156
  "registryDependencies": [
784
- "button"
1157
+ "badge",
1158
+ "button",
1159
+ "input",
1160
+ "scroll-box",
1161
+ "utils"
785
1162
  ],
786
1163
  "files": [
787
1164
  {
788
- "source": "src/components/layout/sidebar-context.tsx",
789
- "target": "{components}/layout/sidebar-context.tsx"
1165
+ "source": "src/components/modern/file-manager.tsx",
1166
+ "target": "{components}/modern/file-manager.tsx"
790
1167
  }
791
1168
  ],
792
1169
  "status": "preview",
793
1170
  "distribution": "source-copy"
794
1171
  },
795
- "workspace-layout": {
796
- "category": "layout",
797
- "registryDependencies": [
798
- "utils"
799
- ],
1172
+ "file-upload": {
1173
+ "category": "upload",
1174
+ "kind": "component",
800
1175
  "files": [
801
1176
  {
802
- "source": "src/components/layout/workspace-layout.tsx",
803
- "target": "{components}/layout/workspace-layout.tsx"
804
- },
805
- {
806
- "source": "src/components/layout/workspace-header.tsx",
807
- "target": "{components}/layout/workspace-header.tsx"
1177
+ "source": "src/components/upload/file-upload.tsx",
1178
+ "target": "{components}/upload/file-upload.tsx"
808
1179
  }
809
1180
  ],
810
1181
  "status": "preview",
811
1182
  "distribution": "source-copy"
812
1183
  },
813
- "sidebar": {
814
- "category": "layout",
815
- "dependencies": [
816
- "react"
817
- ],
818
- "registryDependencies": [
819
- "tooltip",
820
- "sidebar-context",
821
- "utils"
822
- ],
1184
+ "filter-bar": {
1185
+ "category": "filters",
1186
+ "kind": "component",
823
1187
  "files": [
824
1188
  {
825
- "source": "src/components/layout/sidebar.tsx",
826
- "target": "{components}/layout/sidebar.tsx"
1189
+ "source": "src/components/filters/filter-bar.tsx",
1190
+ "target": "{components}/filters/filter-bar.tsx"
827
1191
  }
828
1192
  ],
829
1193
  "status": "stable",
830
1194
  "distribution": "source-copy"
831
1195
  },
832
- "layout": {
1196
+ "form": {
833
1197
  "category": "group",
1198
+ "kind": "preset",
834
1199
  "registryDependencies": [
835
- "workspace-layout",
836
- "sidebar",
837
- "breadcrumbs",
838
- "section"
1200
+ "form-field-shell",
1201
+ "form-input",
1202
+ "form-select",
1203
+ "form-textarea",
1204
+ "form-switch",
1205
+ "form-date-range-input",
1206
+ "form-date-picker",
1207
+ "form-date-range-picker"
839
1208
  ],
840
1209
  "files": [
841
1210
  {
842
- "source": "src/components/layout/index.ts",
843
- "target": "{components}/layout/index.ts"
1211
+ "source": "src/components/form/index.ts",
1212
+ "target": "{components}/form/index.ts"
844
1213
  }
845
1214
  ],
846
- "status": "stable",
1215
+ "status": "preview",
847
1216
  "distribution": "system"
848
1217
  },
849
- "calendar": {
850
- "category": "calendar",
1218
+ "form-async-select": {
1219
+ "category": "form",
1220
+ "kind": "alias",
1221
+ "migrationAliasFor": "form-select",
1222
+ "status": "preview",
1223
+ "distribution": "source-copy"
1224
+ },
1225
+ "form-date-picker": {
1226
+ "category": "form",
1227
+ "kind": "component",
851
1228
  "dependencies": [
852
- "lucide-react"
1229
+ "react-hook-form"
853
1230
  ],
854
1231
  "registryDependencies": [
855
- "button",
856
- "utils"
1232
+ "date-picker",
1233
+ "form-field-shell"
857
1234
  ],
858
1235
  "files": [
859
1236
  {
860
- "source": "src/components/calendar/calendar.tsx",
861
- "target": "{components}/calendar/calendar.tsx"
862
- },
863
- {
864
- "source": "src/components/calendar/date-utils.ts",
865
- "target": "{components}/calendar/date-utils.ts"
1237
+ "source": "src/components/form/form-date-picker.tsx",
1238
+ "target": "{components}/form/form-date-picker.tsx"
866
1239
  }
867
1240
  ],
868
1241
  "status": "preview",
869
1242
  "distribution": "source-copy"
870
1243
  },
871
- "date-picker": {
872
- "category": "calendar",
1244
+ "form-date-range-input": {
1245
+ "category": "form",
1246
+ "kind": "component",
873
1247
  "dependencies": [
874
- "lucide-react"
1248
+ "react-hook-form"
875
1249
  ],
876
1250
  "registryDependencies": [
877
- "calendar",
878
- "button",
879
- "popover",
880
- "utils"
1251
+ "input",
1252
+ "form-field-shell"
881
1253
  ],
882
1254
  "files": [
883
1255
  {
884
- "source": "src/components/calendar/date-picker.tsx",
885
- "target": "{components}/calendar/date-picker.tsx"
1256
+ "source": "src/components/form/form-date-range-input.tsx",
1257
+ "target": "{components}/form/form-date-range-input.tsx"
886
1258
  }
887
1259
  ],
888
1260
  "status": "preview",
889
1261
  "distribution": "source-copy"
890
1262
  },
891
- "date-range-picker": {
892
- "category": "calendar",
1263
+ "form-date-range-picker": {
1264
+ "category": "form",
1265
+ "kind": "component",
893
1266
  "dependencies": [
894
- "lucide-react"
1267
+ "react-hook-form"
895
1268
  ],
896
1269
  "registryDependencies": [
897
- "calendar",
898
- "button",
899
- "popover",
1270
+ "date-range-picker",
1271
+ "form-field-shell"
1272
+ ],
1273
+ "files": [
1274
+ {
1275
+ "source": "src/components/form/form-date-range-picker.tsx",
1276
+ "target": "{components}/form/form-date-range-picker.tsx"
1277
+ }
1278
+ ],
1279
+ "status": "preview",
1280
+ "distribution": "source-copy"
1281
+ },
1282
+ "form-field-shell": {
1283
+ "category": "form",
1284
+ "kind": "component",
1285
+ "registryDependencies": [
900
1286
  "utils"
901
1287
  ],
902
1288
  "files": [
903
1289
  {
904
- "source": "src/components/calendar/date-range-picker.tsx",
905
- "target": "{components}/calendar/date-range-picker.tsx"
1290
+ "source": "src/components/form/form-field-shell.tsx",
1291
+ "target": "{components}/form/form-field-shell.tsx"
906
1292
  }
907
1293
  ],
908
1294
  "status": "preview",
909
1295
  "distribution": "source-copy"
910
1296
  },
911
- "dashboard": {
912
- "category": "group",
1297
+ "form-input": {
1298
+ "category": "form",
1299
+ "kind": "component",
1300
+ "dependencies": [
1301
+ "react-hook-form"
1302
+ ],
913
1303
  "registryDependencies": [
914
- "layout",
915
- "feedback",
916
1304
  "input",
1305
+ "form-field-shell"
1306
+ ],
1307
+ "files": [
1308
+ {
1309
+ "source": "src/components/form/form-input.tsx",
1310
+ "target": "{components}/form/form-input.tsx"
1311
+ }
1312
+ ],
1313
+ "status": "preview",
1314
+ "distribution": "source-copy"
1315
+ },
1316
+ "form-select": {
1317
+ "category": "form",
1318
+ "kind": "component",
1319
+ "dependencies": [
1320
+ "react-hook-form"
1321
+ ],
1322
+ "registryDependencies": [
1323
+ "select",
917
1324
  "async-select",
918
- "tag-input",
919
- "form"
1325
+ "form-field-shell"
1326
+ ],
1327
+ "files": [
1328
+ {
1329
+ "source": "src/components/form/form-select.tsx",
1330
+ "target": "{components}/form/form-select.tsx"
1331
+ }
920
1332
  ],
921
1333
  "status": "preview",
922
- "distribution": "system"
1334
+ "distribution": "source-copy"
923
1335
  },
924
- "calendar-kit": {
925
- "category": "group",
1336
+ "form-switch": {
1337
+ "category": "form",
1338
+ "kind": "component",
1339
+ "dependencies": [
1340
+ "react-hook-form"
1341
+ ],
926
1342
  "registryDependencies": [
927
- "calendar",
928
- "date-picker",
929
- "date-range-picker"
1343
+ "switch",
1344
+ "form-field-shell",
1345
+ "utils"
1346
+ ],
1347
+ "files": [
1348
+ {
1349
+ "source": "src/components/form/form-switch.tsx",
1350
+ "target": "{components}/form/form-switch.tsx"
1351
+ }
930
1352
  ],
931
1353
  "status": "preview",
932
- "distribution": "system"
1354
+ "distribution": "source-copy"
933
1355
  },
934
- "wizard-kit": {
935
- "category": "group",
1356
+ "form-textarea": {
1357
+ "category": "form",
1358
+ "kind": "component",
1359
+ "dependencies": [
1360
+ "react-hook-form"
1361
+ ],
936
1362
  "registryDependencies": [
937
- "stepper",
938
- "wizard"
1363
+ "textarea",
1364
+ "form-field-shell"
1365
+ ],
1366
+ "files": [
1367
+ {
1368
+ "source": "src/components/form/form-textarea.tsx",
1369
+ "target": "{components}/form/form-textarea.tsx"
1370
+ }
939
1371
  ],
940
1372
  "status": "preview",
1373
+ "distribution": "source-copy"
1374
+ },
1375
+ "horizontal-bar-chart": {
1376
+ "category": "charts",
1377
+ "kind": "alias",
1378
+ "migrationAliasFor": "charts",
1379
+ "status": "preview"
1380
+ },
1381
+ "hover-card": {
1382
+ "category": "ui",
1383
+ "kind": "component",
1384
+ "dependencies": [
1385
+ "@base-ui/react"
1386
+ ],
1387
+ "registryDependencies": [
1388
+ "utils"
1389
+ ],
1390
+ "files": [
1391
+ {
1392
+ "source": "src/components/ui/hover-card",
1393
+ "target": "{ui}/hover-card"
1394
+ }
1395
+ ],
1396
+ "status": "stable",
941
1397
  "distribution": "system"
942
1398
  },
943
- "dnd": {
944
- "category": "group",
1399
+ "image-cropper": {
1400
+ "category": "modern",
1401
+ "kind": "component",
1402
+ "dependencies": [
1403
+ "react-easy-crop",
1404
+ "lucide-react"
1405
+ ],
945
1406
  "registryDependencies": [
946
- "sortable-list"
1407
+ "utils"
947
1408
  ],
948
1409
  "files": [
949
1410
  {
950
- "source": "src/components/dnd/index.ts",
951
- "target": "{components}/dnd/index.ts"
1411
+ "source": "src/components/modern/image-cropper.tsx",
1412
+ "target": "{components}/modern/image-cropper.tsx"
952
1413
  }
953
1414
  ],
954
1415
  "status": "preview",
955
- "distribution": "system"
1416
+ "distribution": "source-copy"
956
1417
  },
957
- "all": {
958
- "category": "group",
1418
+ "image-upload": {
1419
+ "category": "upload",
1420
+ "kind": "component",
1421
+ "files": [
1422
+ {
1423
+ "source": "src/components/upload/image-upload.tsx",
1424
+ "target": "{components}/upload/image-upload.tsx"
1425
+ }
1426
+ ],
1427
+ "status": "preview",
1428
+ "distribution": "source-copy"
1429
+ },
1430
+ "info-card": {
1431
+ "category": "display",
1432
+ "kind": "component",
959
1433
  "registryDependencies": [
960
- "button",
961
- "input",
962
- "textarea",
963
- "checkbox",
964
- "switch",
965
- "badge",
966
1434
  "card",
967
1435
  "skeleton",
968
- "tabs",
969
- "dialog",
970
- "dropdown-menu",
971
- "popover",
972
- "tooltip",
973
- "hover-card",
974
- "menubar",
975
- "navigation-menu",
976
- "select",
977
- "table",
978
- "segmented-control",
979
- "radio-group",
980
- "accordion",
981
- "kbd",
982
- "scroll-box",
983
- "right-click-menu",
984
- "number-field",
985
- "toggle-group",
986
- "toolbar",
987
- "tag-input",
988
- "combobox",
989
- "async-select",
990
- "form-field-shell",
991
- "form-input",
992
- "form-select",
993
- "form-textarea",
994
- "form-switch",
995
- "form-date-range-input",
996
- "form-date-picker",
997
- "form-date-range-picker",
998
- "confirm-dialog",
999
- "alert-dialog",
1000
- "drawer",
1001
- "state-view",
1002
- "sidebar-context",
1003
- "workspace-layout",
1004
- "sidebar",
1005
- "calendar",
1006
- "date-picker",
1007
- "date-range-picker",
1008
- "action-menu",
1009
- "activity-feed",
1010
- "alert",
1011
- "avatar",
1012
- "breadcrumbs",
1013
- "button-group",
1014
- "code-block",
1015
- "collapse",
1016
- "carousel",
1017
- "tag",
1018
- "typography",
1019
- "command",
1020
- "copy-button",
1021
- "data-state",
1022
- "data-table",
1023
- "description-list",
1024
- "divider",
1025
- "file-upload",
1026
- "filter-bar",
1027
- "empty-state",
1028
- "charts",
1029
- "image-upload",
1030
- "kanban",
1031
- "chat",
1032
- "list",
1033
- "otp-input",
1034
- "color-picker",
1035
- "signature-pad",
1036
- "pagination",
1037
- "progress",
1038
- "progress-circle",
1039
- "quick-action-grid",
1040
- "rating",
1041
- "section",
1042
- "slider",
1043
- "info-card",
1044
- "spinner",
1045
- "statistic",
1046
- "status-dot",
1047
- "status-legend",
1048
- "stepper",
1049
- "timeline",
1050
- "toast",
1051
- "tree-view",
1052
- "use-before-unload-when-dirty",
1053
- "use-data-table-view-state",
1054
- "use-debounce",
1055
- "use-disclosure",
1056
- "use-is-mobile",
1057
- "use-session-storage-state",
1058
- "wizard",
1059
- "inline-editable",
1060
- "command-palette",
1061
- "saved-filter-select",
1062
- "notification-center",
1063
- "calendar-scheduler",
1064
- "dual-list-picker",
1065
- "resizable-panel",
1066
- "rich-text-editor",
1067
- "image-cropper",
1068
- "qr-code",
1069
- "json-input",
1070
- "time-picker",
1071
- "sortable-list",
1072
- "virtual-list"
1436
+ "utils"
1073
1437
  ],
1074
- "status": "preview",
1075
- "distribution": "system"
1076
- },
1077
- "action-menu": {
1078
- "category": "actions",
1079
1438
  "files": [
1080
1439
  {
1081
- "source": "src/components/actions/action-menu.tsx",
1082
- "target": "{components}/actions/action-menu.tsx"
1440
+ "source": "src/components/display/info-card.tsx",
1441
+ "target": "{components}/display/info-card.tsx"
1083
1442
  }
1084
1443
  ],
1085
1444
  "status": "stable",
1086
1445
  "distribution": "source-copy"
1087
1446
  },
1088
- "activity-feed": {
1089
- "category": "display",
1447
+ "inline-editable": {
1448
+ "category": "inputs",
1449
+ "kind": "component",
1090
1450
  "files": [
1091
1451
  {
1092
- "source": "src/components/display/activity-feed.tsx",
1093
- "target": "{components}/display/activity-feed.tsx"
1452
+ "source": "src/components/inputs/inline-editable.tsx",
1453
+ "target": "{components}/inputs/inline-editable.tsx"
1094
1454
  }
1095
1455
  ],
1096
- "status": "stable",
1456
+ "status": "preview",
1097
1457
  "distribution": "source-copy"
1098
1458
  },
1099
- "alert": {
1100
- "category": "feedback",
1459
+ "input": {
1460
+ "category": "ui",
1461
+ "kind": "component",
1462
+ "dependencies": [
1463
+ "@base-ui/react",
1464
+ "lucide-react"
1465
+ ],
1466
+ "registryDependencies": [
1467
+ "utils"
1468
+ ],
1101
1469
  "files": [
1102
1470
  {
1103
- "source": "src/components/feedback/alert.tsx",
1104
- "target": "{components}/feedback/alert.tsx"
1471
+ "source": "src/components/ui/input",
1472
+ "target": "{ui}/input"
1105
1473
  }
1106
1474
  ],
1475
+ "status": "stable",
1476
+ "distribution": "foundation"
1477
+ },
1478
+ "input-decorator": {
1479
+ "category": "inputs",
1480
+ "kind": "alias",
1481
+ "migrationAliasFor": "input",
1107
1482
  "status": "preview",
1108
1483
  "distribution": "source-copy"
1109
1484
  },
1110
- "app-header": {
1111
- "category": "layout",
1112
- "migrationAliasFor": "workspace-layout",
1113
- "status": "internal",
1485
+ "input-value": {
1486
+ "category": "inputs",
1487
+ "kind": "alias",
1488
+ "migrationAliasFor": "input",
1489
+ "status": "preview",
1114
1490
  "distribution": "source-copy"
1115
1491
  },
1116
- "avatar": {
1117
- "category": "display",
1118
- "files": [
1119
- {
1120
- "source": "src/components/display/avatar.tsx",
1121
- "target": "{components}/display/avatar.tsx"
1122
- }
1123
- ],
1492
+ "inputs": {
1493
+ "category": "group",
1494
+ "kind": "alias",
1495
+ "migrationAliasFor": "input",
1124
1496
  "status": "preview",
1125
- "distribution": "source-copy"
1497
+ "distribution": "system"
1126
1498
  },
1127
- "breadcrumbs": {
1128
- "category": "layout",
1129
- "files": [
1130
- {
1131
- "source": "src/components/layout/breadcrumbs.tsx",
1132
- "target": "{components}/layout/breadcrumbs.tsx"
1133
- }
1499
+ "json-input": {
1500
+ "category": "inputs",
1501
+ "kind": "component",
1502
+ "registryDependencies": [
1503
+ "utils"
1134
1504
  ],
1135
- "status": "stable",
1136
- "distribution": "source-copy"
1137
- },
1138
- "button-group": {
1139
- "category": "actions",
1140
1505
  "files": [
1141
1506
  {
1142
- "source": "src/components/actions/button-group.tsx",
1143
- "target": "{components}/actions/button-group.tsx"
1507
+ "source": "src/components/inputs/json-input.tsx",
1508
+ "target": "{components}/inputs/json-input.tsx"
1144
1509
  }
1145
1510
  ],
1146
1511
  "status": "preview",
1147
1512
  "distribution": "source-copy"
1148
1513
  },
1149
- "code-block": {
1514
+ "kanban": {
1150
1515
  "category": "display",
1516
+ "kind": "component",
1517
+ "dependencies": [
1518
+ "@dnd-kit/helpers",
1519
+ "@dnd-kit/react",
1520
+ "lucide-react"
1521
+ ],
1522
+ "registryDependencies": [
1523
+ "avatar",
1524
+ "badge",
1525
+ "button",
1526
+ "card",
1527
+ "utils"
1528
+ ],
1151
1529
  "files": [
1152
1530
  {
1153
- "source": "src/components/display/code-block.tsx",
1154
- "target": "{components}/display/code-block.tsx"
1531
+ "source": "src/components/display/kanban.tsx",
1532
+ "target": "{components}/display/kanban.tsx"
1155
1533
  }
1156
1534
  ],
1157
1535
  "status": "preview",
1158
1536
  "distribution": "source-copy"
1159
1537
  },
1160
- "collapse": {
1538
+ "kbd": {
1161
1539
  "category": "ui",
1540
+ "kind": "component",
1162
1541
  "files": [
1163
1542
  {
1164
- "source": "src/components/ui/collapse",
1165
- "target": "{ui}/collapse"
1543
+ "source": "src/components/ui/kbd",
1544
+ "target": "{ui}/kbd"
1166
1545
  }
1167
1546
  ],
1168
- "status": "preview",
1547
+ "status": "stable",
1169
1548
  "distribution": "foundation"
1170
1549
  },
1171
- "carousel": {
1172
- "category": "display",
1550
+ "kpi": {
1551
+ "category": "charts",
1552
+ "kind": "alias",
1553
+ "migrationAliasFor": "statistic",
1554
+ "status": "preview"
1555
+ },
1556
+ "layout": {
1557
+ "category": "group",
1558
+ "kind": "preset",
1559
+ "registryDependencies": [
1560
+ "workspace-layout",
1561
+ "sidebar",
1562
+ "breadcrumbs",
1563
+ "section"
1564
+ ],
1173
1565
  "files": [
1174
1566
  {
1175
- "source": "src/components/display/carousel.tsx",
1176
- "target": "{components}/display/carousel.tsx"
1567
+ "source": "src/components/layout/index.ts",
1568
+ "target": "{components}/layout/index.ts"
1177
1569
  }
1178
1570
  ],
1179
- "status": "preview",
1180
- "distribution": "source-copy"
1571
+ "status": "stable",
1572
+ "distribution": "system"
1181
1573
  },
1182
- "tag": {
1574
+ "list": {
1183
1575
  "category": "display",
1184
- "registryDependencies": [
1185
- "badge",
1186
- "utils"
1187
- ],
1576
+ "kind": "component",
1188
1577
  "files": [
1189
1578
  {
1190
- "source": "src/components/display/tag.tsx",
1191
- "target": "{components}/display/tag.tsx"
1579
+ "source": "src/components/display/list.tsx",
1580
+ "target": "{components}/display/list.tsx"
1192
1581
  }
1193
1582
  ],
1194
1583
  "status": "preview",
1195
1584
  "distribution": "source-copy"
1196
1585
  },
1197
- "typography": {
1198
- "category": "display",
1586
+ "masked-input": {
1587
+ "category": "inputs",
1588
+ "kind": "alias",
1589
+ "migrationAliasFor": "input",
1590
+ "status": "preview",
1591
+ "distribution": "source-copy"
1592
+ },
1593
+ "menubar": {
1594
+ "category": "ui",
1595
+ "kind": "component",
1596
+ "dependencies": [
1597
+ "@base-ui/react",
1598
+ "lucide-react"
1599
+ ],
1199
1600
  "registryDependencies": [
1200
1601
  "utils"
1201
1602
  ],
1202
1603
  "files": [
1203
1604
  {
1204
- "source": "src/components/display/typography.tsx",
1205
- "target": "{components}/display/typography.tsx"
1605
+ "source": "src/components/ui/menubar",
1606
+ "target": "{ui}/menubar"
1206
1607
  }
1207
1608
  ],
1208
1609
  "status": "preview",
1209
- "distribution": "source-copy"
1610
+ "distribution": "system"
1210
1611
  },
1211
- "command": {
1212
- "category": "ui",
1213
- "files": [
1214
- {
1215
- "source": "src/components/ui/command",
1216
- "target": "{ui}/command"
1217
- }
1218
- ],
1219
- "status": "preview",
1220
- "distribution": "foundation"
1221
- },
1222
- "copy-button": {
1223
- "category": "actions",
1224
- "files": [
1225
- {
1226
- "source": "src/components/actions/copy-button.tsx",
1227
- "target": "{components}/actions/copy-button.tsx"
1228
- }
1229
- ],
1230
- "status": "preview",
1231
- "distribution": "source-copy"
1232
- },
1233
- "copy-field": {
1234
- "category": "actions",
1235
- "migrationAliasFor": "copy-button",
1236
- "status": "preview",
1237
- "distribution": "source-copy"
1238
- },
1239
- "clearable-input": {
1240
- "category": "inputs",
1241
- "migrationAliasFor": "input",
1242
- "status": "preview",
1243
- "distribution": "source-copy"
1244
- },
1245
- "search-input": {
1246
- "category": "inputs",
1247
- "migrationAliasFor": "input",
1248
- "status": "preview",
1249
- "distribution": "source-copy"
1250
- },
1251
- "password-input": {
1252
- "category": "inputs",
1253
- "migrationAliasFor": "input",
1254
- "status": "preview",
1255
- "distribution": "source-copy"
1256
- },
1257
- "number-input": {
1258
- "category": "inputs",
1259
- "migrationAliasFor": "input",
1260
- "status": "preview",
1612
+ "modal-shell": {
1613
+ "category": "overlay",
1614
+ "kind": "alias",
1615
+ "migrationAliasFor": "dialog",
1616
+ "status": "internal",
1261
1617
  "distribution": "source-copy"
1262
1618
  },
1263
1619
  "money-input": {
1264
1620
  "category": "inputs",
1621
+ "kind": "alias",
1265
1622
  "migrationAliasFor": "input",
1266
1623
  "status": "preview",
1267
1624
  "distribution": "source-copy"
1268
1625
  },
1269
- "phone-input": {
1626
+ "multi-select": {
1270
1627
  "category": "inputs",
1271
- "migrationAliasFor": "input",
1628
+ "kind": "component",
1629
+ "dependencies": [
1630
+ "lucide-react"
1631
+ ],
1632
+ "registryDependencies": [
1633
+ "badge",
1634
+ "button",
1635
+ "popover",
1636
+ "utils"
1637
+ ],
1638
+ "files": [
1639
+ {
1640
+ "source": "src/components/inputs/multi-select.tsx",
1641
+ "target": "{components}/inputs/multi-select.tsx"
1642
+ }
1643
+ ],
1272
1644
  "status": "preview",
1273
- "distribution": "source-copy"
1645
+ "distribution": "foundation"
1274
1646
  },
1275
- "masked-input": {
1276
- "category": "inputs",
1277
- "migrationAliasFor": "input",
1647
+ "nav-tabs": {
1648
+ "category": "navigation",
1649
+ "kind": "alias",
1650
+ "migrationAliasFor": "tabs",
1278
1651
  "status": "preview",
1279
1652
  "distribution": "source-copy"
1280
1653
  },
1281
- "quantity-input": {
1282
- "category": "inputs",
1283
- "migrationAliasFor": "input",
1654
+ "navigation-menu": {
1655
+ "category": "navigation",
1656
+ "kind": "component",
1657
+ "dependencies": [
1658
+ "@base-ui/react",
1659
+ "lucide-react"
1660
+ ],
1661
+ "registryDependencies": [
1662
+ "utils"
1663
+ ],
1664
+ "files": [
1665
+ {
1666
+ "source": "src/components/ui/navigation-menu",
1667
+ "target": "{ui}/navigation-menu"
1668
+ }
1669
+ ],
1284
1670
  "status": "preview",
1285
- "distribution": "source-copy"
1671
+ "distribution": "system"
1286
1672
  },
1287
- "date-input": {
1288
- "category": "inputs",
1289
- "migrationAliasFor": "input",
1673
+ "notification-center": {
1674
+ "category": "notifications",
1675
+ "kind": "component",
1676
+ "files": [
1677
+ {
1678
+ "source": "src/components/notifications/notification-center.tsx",
1679
+ "target": "{components}/notifications/notification-center.tsx"
1680
+ }
1681
+ ],
1290
1682
  "status": "preview",
1291
1683
  "distribution": "source-copy"
1292
1684
  },
1293
- "date-range-input": {
1685
+ "number-field": {
1294
1686
  "category": "inputs",
1295
- "migrationAliasFor": "input",
1296
- "status": "preview",
1297
- "distribution": "source-copy"
1298
- },
1299
- "form-async-select": {
1300
- "category": "form",
1301
- "migrationAliasFor": "form-select",
1687
+ "kind": "component",
1688
+ "dependencies": [
1689
+ "@base-ui/react",
1690
+ "lucide-react"
1691
+ ],
1692
+ "registryDependencies": [
1693
+ "utils"
1694
+ ],
1695
+ "files": [
1696
+ {
1697
+ "source": "src/components/ui/number-field",
1698
+ "target": "{ui}/number-field"
1699
+ }
1700
+ ],
1302
1701
  "status": "preview",
1303
- "distribution": "source-copy"
1702
+ "distribution": "foundation"
1304
1703
  },
1305
- "input-decorator": {
1704
+ "number-input": {
1306
1705
  "category": "inputs",
1706
+ "kind": "alias",
1307
1707
  "migrationAliasFor": "input",
1308
1708
  "status": "preview",
1309
1709
  "distribution": "source-copy"
1310
1710
  },
1311
- "input-value": {
1711
+ "otp-input": {
1312
1712
  "category": "inputs",
1313
- "migrationAliasFor": "input",
1314
- "status": "preview",
1315
- "distribution": "source-copy"
1316
- },
1317
- "inputs": {
1318
- "category": "group",
1319
- "migrationAliasFor": "input",
1320
- "status": "preview",
1321
- "distribution": "system"
1322
- },
1323
- "app-sidebar": {
1324
- "category": "layout",
1325
- "migrationAliasFor": "sidebar",
1326
- "status": "preview",
1327
- "distribution": "source-copy"
1328
- },
1329
- "stat-card": {
1330
- "category": "layout",
1331
- "migrationAliasFor": "statistic",
1332
- "status": "preview",
1333
- "distribution": "source-copy"
1334
- },
1335
- "smart-card": {
1336
- "category": "display",
1337
- "migrationAliasFor": "info-card",
1338
- "status": "preview",
1339
- "distribution": "source-copy"
1340
- },
1341
- "file-dropzone": {
1342
- "category": "upload",
1343
- "migrationAliasFor": "file-upload",
1344
- "status": "preview",
1345
- "distribution": "source-copy"
1346
- },
1347
- "comparison-card": {
1348
- "category": "display",
1349
- "migrationAliasFor": "card",
1350
- "status": "preview",
1351
- "distribution": "source-copy"
1352
- },
1353
- "delta-badge": {
1354
- "category": "display",
1355
- "migrationAliasFor": "badge",
1356
- "status": "preview",
1357
- "distribution": "source-copy"
1358
- },
1359
- "trend-card": {
1360
- "category": "display",
1361
- "migrationAliasFor": "statistic",
1362
- "status": "preview",
1363
- "distribution": "source-copy"
1364
- },
1365
- "user-card": {
1366
- "category": "display",
1367
- "migrationAliasFor": "avatar",
1368
- "status": "preview",
1369
- "distribution": "source-copy"
1370
- },
1371
- "sheet-shell": {
1372
- "category": "overlay",
1373
- "migrationAliasFor": "drawer",
1374
- "status": "preview",
1375
- "distribution": "source-copy"
1376
- },
1377
- "nav-tabs": {
1378
- "category": "navigation",
1379
- "migrationAliasFor": "tabs",
1713
+ "kind": "component",
1714
+ "files": [
1715
+ {
1716
+ "source": "src/components/inputs/otp-input.tsx",
1717
+ "target": "{components}/inputs/otp-input.tsx"
1718
+ }
1719
+ ],
1380
1720
  "status": "preview",
1381
1721
  "distribution": "source-copy"
1382
1722
  },
1383
1723
  "page-tabs": {
1384
1724
  "category": "navigation",
1725
+ "kind": "alias",
1385
1726
  "migrationAliasFor": "tabs",
1386
1727
  "status": "preview",
1387
1728
  "distribution": "source-copy"
1388
1729
  },
1389
- "stepper-tabs": {
1390
- "category": "navigation",
1391
- "migrationAliasFor": "stepper",
1392
- "status": "preview",
1393
- "distribution": "source-copy"
1394
- },
1395
- "command-bar": {
1730
+ "pagination": {
1396
1731
  "category": "navigation",
1397
- "migrationAliasFor": "command-palette",
1398
- "status": "preview",
1399
- "distribution": "source-copy"
1400
- },
1401
- "data-list": {
1402
- "category": "display",
1403
- "migrationAliasFor": "list",
1404
- "status": "preview",
1732
+ "kind": "component",
1733
+ "files": [
1734
+ {
1735
+ "source": "src/components/navigation/pagination.tsx",
1736
+ "target": "{components}/navigation/pagination.tsx"
1737
+ }
1738
+ ],
1739
+ "status": "stable",
1405
1740
  "distribution": "source-copy"
1406
1741
  },
1407
- "property-grid": {
1408
- "category": "display",
1409
- "migrationAliasFor": "description-list",
1742
+ "password-input": {
1743
+ "category": "inputs",
1744
+ "kind": "alias",
1745
+ "migrationAliasFor": "input",
1410
1746
  "status": "preview",
1411
1747
  "distribution": "source-copy"
1412
1748
  },
1413
- "data-table-bulk-actions": {
1414
- "category": "data-table",
1415
- "migrationAliasFor": "data-table",
1416
- "status": "preview",
1417
- "distribution": "system"
1418
- },
1419
- "data-table-column-visibility-menu": {
1420
- "category": "data-table",
1421
- "migrationAliasFor": "data-table",
1422
- "status": "preview",
1423
- "distribution": "system"
1424
- },
1425
- "data-table-pagination": {
1426
- "category": "data-table",
1427
- "migrationAliasFor": "data-table",
1428
- "status": "preview",
1429
- "distribution": "system"
1430
- },
1431
- "data-table-row-actions": {
1432
- "category": "data-table",
1433
- "migrationAliasFor": "data-table",
1434
- "status": "preview",
1435
- "distribution": "system"
1436
- },
1437
- "data-table-saved-filters": {
1438
- "category": "data-table",
1439
- "migrationAliasFor": "data-table",
1440
- "status": "preview",
1441
- "distribution": "system"
1442
- },
1443
- "data-table-select-column": {
1444
- "category": "data-table",
1445
- "migrationAliasFor": "data-table",
1446
- "status": "preview",
1447
- "distribution": "system"
1448
- },
1449
- "data-table-sortable-header": {
1450
- "category": "data-table",
1451
- "migrationAliasFor": "data-table",
1452
- "status": "preview",
1453
- "distribution": "system"
1454
- },
1455
- "data-table-toolbar": {
1456
- "category": "data-table",
1457
- "migrationAliasFor": "data-table",
1458
- "status": "preview",
1459
- "distribution": "system"
1460
- },
1461
- "data-table-view-presets": {
1462
- "category": "data-table",
1463
- "migrationAliasFor": "data-table",
1464
- "status": "preview",
1465
- "distribution": "system"
1466
- },
1467
- "data-state": {
1468
- "category": "display",
1749
+ "permissions-matrix": {
1750
+ "category": "patterns",
1751
+ "kind": "component",
1469
1752
  "registryDependencies": [
1470
- "state-view"
1753
+ "checkbox",
1754
+ "table",
1755
+ "utils"
1471
1756
  ],
1472
1757
  "files": [
1473
1758
  {
1474
- "source": "src/components/display/data-state.tsx",
1475
- "target": "{components}/display/data-state.tsx"
1759
+ "source": "src/components/patterns/permissions-matrix.tsx",
1760
+ "target": "{components}/patterns/permissions-matrix.tsx"
1476
1761
  }
1477
1762
  ],
1478
1763
  "status": "preview",
1764
+ "distribution": "system"
1765
+ },
1766
+ "phone-input": {
1767
+ "category": "inputs",
1768
+ "kind": "alias",
1769
+ "migrationAliasFor": "input",
1770
+ "status": "preview",
1479
1771
  "distribution": "source-copy"
1480
1772
  },
1481
- "data-table": {
1482
- "category": "data-table",
1773
+ "popover": {
1774
+ "category": "ui",
1775
+ "kind": "component",
1483
1776
  "dependencies": [
1484
- "@tanstack/react-table",
1485
- "@tanstack/react-virtual",
1486
- "lucide-react"
1777
+ "@base-ui/react"
1487
1778
  ],
1488
1779
  "registryDependencies": [
1489
- "button",
1490
- "checkbox",
1491
- "data-state",
1492
- "dropdown-menu",
1493
- "input",
1494
- "pagination",
1495
- "search-input",
1496
- "select",
1497
- "table",
1498
1780
  "utils"
1499
1781
  ],
1500
1782
  "files": [
1501
1783
  {
1502
- "source": "src/components/data-table/data-table.tsx",
1503
- "target": "{components}/data-table/data-table.tsx"
1504
- },
1505
- {
1506
- "source": "src/components/data-table/data-table-actions-column.tsx",
1507
- "target": "{components}/data-table/data-table-actions-column.tsx"
1508
- },
1509
- {
1510
- "source": "src/components/data-table/data-table-bulk-actions.tsx",
1511
- "target": "{components}/data-table/data-table-bulk-actions.tsx"
1512
- },
1513
- {
1514
- "source": "src/components/data-table/data-table-column-visibility-menu.tsx",
1515
- "target": "{components}/data-table/data-table-column-visibility-menu.tsx"
1516
- },
1517
- {
1518
- "source": "src/components/data-table/data-table-pagination.tsx",
1519
- "target": "{components}/data-table/data-table-pagination.tsx"
1520
- },
1521
- {
1522
- "source": "src/components/data-table/data-table-row-actions.tsx",
1523
- "target": "{components}/data-table/data-table-row-actions.tsx"
1524
- },
1525
- {
1526
- "source": "src/components/data-table/data-table-saved-filters.tsx",
1527
- "target": "{components}/data-table/data-table-saved-filters.tsx"
1528
- },
1529
- {
1530
- "source": "src/components/data-table/data-table-select-column.tsx",
1531
- "target": "{components}/data-table/data-table-select-column.tsx"
1532
- },
1533
- {
1534
- "source": "src/components/data-table/data-table-sortable-header.tsx",
1535
- "target": "{components}/data-table/data-table-sortable-header.tsx"
1536
- },
1537
- {
1538
- "source": "src/components/data-table/data-table-toolbar.tsx",
1539
- "target": "{components}/data-table/data-table-toolbar.tsx"
1540
- },
1541
- {
1542
- "source": "src/components/data-table/data-table-view-presets.tsx",
1543
- "target": "{components}/data-table/data-table-view-presets.tsx"
1544
- },
1545
- {
1546
- "source": "src/components/data-table/table-export-menu.tsx",
1547
- "target": "{components}/data-table/table-export-menu.tsx"
1548
- },
1549
- {
1550
- "source": "src/components/data-table/table-import-button.tsx",
1551
- "target": "{components}/data-table/table-import-button.tsx"
1784
+ "source": "src/components/ui/popover",
1785
+ "target": "{ui}/popover"
1552
1786
  }
1553
1787
  ],
1554
- "status": "preview",
1555
- "distribution": "system"
1556
- },
1557
- "data-table-actions-column": {
1558
- "category": "data-table",
1559
- "migrationAliasFor": "data-table",
1560
- "status": "internal",
1561
- "distribution": "system"
1562
- },
1563
- "table-export-menu": {
1564
- "category": "data-table",
1565
- "migrationAliasFor": "data-table",
1566
- "status": "internal",
1567
- "distribution": "system"
1568
- },
1569
- "table-import-button": {
1570
- "category": "data-table",
1571
- "migrationAliasFor": "data-table",
1572
- "status": "internal",
1573
- "distribution": "system"
1788
+ "status": "stable",
1789
+ "distribution": "foundation"
1574
1790
  },
1575
- "description-list": {
1791
+ "progress": {
1576
1792
  "category": "display",
1793
+ "kind": "component",
1577
1794
  "files": [
1578
1795
  {
1579
- "source": "src/components/display/description-list.tsx",
1580
- "target": "{components}/display/description-list.tsx"
1796
+ "source": "src/components/display/progress.tsx",
1797
+ "target": "{components}/display/progress.tsx"
1581
1798
  }
1582
1799
  ],
1583
1800
  "status": "stable",
1584
1801
  "distribution": "source-copy"
1585
1802
  },
1586
- "divider": {
1587
- "category": "ui",
1803
+ "progress-circle": {
1804
+ "category": "charts",
1805
+ "kind": "component",
1588
1806
  "files": [
1589
1807
  {
1590
- "source": "src/components/ui/divider",
1591
- "target": "{ui}/divider"
1808
+ "source": "src/components/charts/progress-circle.tsx",
1809
+ "target": "{components}/charts/progress-circle.tsx"
1592
1810
  }
1593
1811
  ],
1594
- "status": "preview",
1595
- "distribution": "foundation"
1812
+ "status": "stable"
1596
1813
  },
1597
- "file-upload": {
1598
- "category": "upload",
1599
- "files": [
1600
- {
1601
- "source": "src/components/upload/file-upload.tsx",
1602
- "target": "{components}/upload/file-upload.tsx"
1603
- }
1604
- ],
1814
+ "property-grid": {
1815
+ "category": "display",
1816
+ "kind": "alias",
1817
+ "migrationAliasFor": "description-list",
1605
1818
  "status": "preview",
1606
1819
  "distribution": "source-copy"
1607
1820
  },
1608
- "filter-bar": {
1609
- "category": "filters",
1821
+ "qr-code": {
1822
+ "category": "display",
1823
+ "kind": "component",
1824
+ "dependencies": [
1825
+ "qrcode",
1826
+ "@types/qrcode"
1827
+ ],
1828
+ "registryDependencies": [
1829
+ "utils"
1830
+ ],
1610
1831
  "files": [
1611
1832
  {
1612
- "source": "src/components/filters/filter-bar.tsx",
1613
- "target": "{components}/filters/filter-bar.tsx"
1833
+ "source": "src/components/display/qr-code.tsx",
1834
+ "target": "{components}/display/qr-code.tsx"
1614
1835
  }
1615
1836
  ],
1616
1837
  "status": "stable",
1617
1838
  "distribution": "source-copy"
1618
1839
  },
1619
- "empty-state": {
1620
- "category": "patterns",
1621
- "registryDependencies": [
1622
- "state-view",
1623
- "button"
1624
- ],
1840
+ "quantity-input": {
1841
+ "category": "inputs",
1842
+ "kind": "alias",
1843
+ "migrationAliasFor": "input",
1844
+ "status": "preview",
1845
+ "distribution": "source-copy"
1846
+ },
1847
+ "quick-action-grid": {
1848
+ "category": "actions",
1849
+ "kind": "component",
1625
1850
  "files": [
1626
1851
  {
1627
- "source": "src/components/patterns/empty-state.tsx",
1628
- "target": "{components}/patterns/empty-state.tsx"
1852
+ "source": "src/components/actions/quick-action-grid.tsx",
1853
+ "target": "{components}/actions/quick-action-grid.tsx"
1629
1854
  }
1630
1855
  ],
1631
1856
  "status": "preview",
1632
- "distribution": "system"
1857
+ "distribution": "source-copy"
1633
1858
  },
1634
- "charts": {
1635
- "category": "charts",
1636
- "dependencies": [
1637
- "recharts"
1638
- ],
1859
+ "radio-group": {
1860
+ "category": "ui",
1861
+ "kind": "component",
1639
1862
  "registryDependencies": [
1640
- "card",
1641
- "state-view",
1863
+ "button",
1642
1864
  "utils"
1643
1865
  ],
1644
1866
  "files": [
1645
1867
  {
1646
- "source": "src/components/charts/charts.tsx",
1647
- "target": "{components}/charts/charts.tsx"
1648
- },
1649
- {
1650
- "source": "src/components/charts/index.ts",
1651
- "target": "{components}/charts/index.ts"
1868
+ "source": "src/components/ui/radio-group",
1869
+ "target": "{ui}/radio-group"
1652
1870
  }
1653
1871
  ],
1654
- "status": "stable"
1655
- },
1656
- "horizontal-bar-chart": {
1657
- "category": "charts",
1658
- "migrationAliasFor": "charts",
1659
- "status": "preview"
1872
+ "status": "stable",
1873
+ "distribution": "foundation"
1660
1874
  },
1661
- "image-upload": {
1662
- "category": "upload",
1875
+ "rating": {
1876
+ "category": "inputs",
1877
+ "kind": "component",
1663
1878
  "files": [
1664
1879
  {
1665
- "source": "src/components/upload/image-upload.tsx",
1666
- "target": "{components}/upload/image-upload.tsx"
1880
+ "source": "src/components/inputs/rating.tsx",
1881
+ "target": "{components}/inputs/rating.tsx"
1667
1882
  }
1668
1883
  ],
1669
1884
  "status": "preview",
1670
1885
  "distribution": "source-copy"
1671
1886
  },
1672
- "kanban": {
1673
- "category": "display",
1887
+ "resizable-panel": {
1888
+ "category": "modern",
1889
+ "kind": "component",
1674
1890
  "dependencies": [
1675
- "@dnd-kit/helpers",
1676
- "@dnd-kit/react",
1677
1891
  "lucide-react"
1678
1892
  ],
1679
1893
  "registryDependencies": [
1680
- "avatar",
1681
- "badge",
1682
- "button",
1683
- "card",
1684
1894
  "utils"
1685
1895
  ],
1686
1896
  "files": [
1687
1897
  {
1688
- "source": "src/components/display/kanban.tsx",
1689
- "target": "{components}/display/kanban.tsx"
1898
+ "source": "src/components/modern/resizable-panel.tsx",
1899
+ "target": "{components}/modern/resizable-panel.tsx"
1690
1900
  }
1691
1901
  ],
1692
1902
  "status": "preview",
1693
1903
  "distribution": "source-copy"
1694
1904
  },
1695
- "chat": {
1696
- "category": "display",
1905
+ "rich-text-editor": {
1906
+ "category": "modern",
1907
+ "kind": "component",
1697
1908
  "dependencies": [
1909
+ "@tiptap/core",
1910
+ "@tiptap/extensions",
1911
+ "@tiptap/extension-bubble-menu",
1912
+ "@tiptap/extension-floating-menu",
1913
+ "@tiptap/react",
1914
+ "@tiptap/pm",
1915
+ "@tiptap/starter-kit",
1916
+ "@tiptap/extension-link",
1917
+ "@tiptap/extension-placeholder",
1698
1918
  "lucide-react"
1699
1919
  ],
1700
1920
  "registryDependencies": [
1701
- "avatar",
1702
- "badge",
1703
- "button",
1704
- "input",
1705
- "textarea",
1706
1921
  "utils"
1707
1922
  ],
1708
1923
  "files": [
1709
1924
  {
1710
- "source": "src/components/display/chat.tsx",
1711
- "target": "{components}/display/chat.tsx"
1925
+ "source": "src/components/modern/rich-text-editor.tsx",
1926
+ "target": "{components}/modern/rich-text-editor.tsx"
1712
1927
  }
1713
1928
  ],
1714
1929
  "status": "preview",
1715
1930
  "distribution": "source-copy"
1716
1931
  },
1717
- "kpi": {
1718
- "category": "charts",
1719
- "migrationAliasFor": "statistic",
1720
- "status": "preview"
1932
+ "right-click-menu": {
1933
+ "category": "ui",
1934
+ "kind": "component",
1935
+ "dependencies": [
1936
+ "react"
1937
+ ],
1938
+ "files": [
1939
+ {
1940
+ "source": "src/components/ui/right-click-menu",
1941
+ "target": "{ui}/right-click-menu"
1942
+ }
1943
+ ],
1944
+ "status": "stable",
1945
+ "distribution": "foundation"
1721
1946
  },
1722
- "list": {
1723
- "category": "display",
1947
+ "saved-filter-select": {
1948
+ "category": "filters",
1949
+ "kind": "component",
1724
1950
  "files": [
1725
1951
  {
1726
- "source": "src/components/display/list.tsx",
1727
- "target": "{components}/display/list.tsx"
1952
+ "source": "src/components/filters/saved-filter-select.tsx",
1953
+ "target": "{components}/filters/saved-filter-select.tsx"
1728
1954
  }
1729
1955
  ],
1730
1956
  "status": "preview",
1731
1957
  "distribution": "source-copy"
1732
1958
  },
1733
- "otp-input": {
1959
+ "scroll-box": {
1960
+ "category": "ui",
1961
+ "kind": "component",
1962
+ "files": [
1963
+ {
1964
+ "source": "src/components/ui/scroll-box",
1965
+ "target": "{ui}/scroll-box"
1966
+ }
1967
+ ],
1968
+ "status": "stable",
1969
+ "distribution": "foundation"
1970
+ },
1971
+ "search-input": {
1734
1972
  "category": "inputs",
1973
+ "kind": "alias",
1974
+ "migrationAliasFor": "input",
1975
+ "status": "preview",
1976
+ "distribution": "source-copy"
1977
+ },
1978
+ "section": {
1979
+ "category": "layout",
1980
+ "kind": "component",
1735
1981
  "files": [
1736
1982
  {
1737
- "source": "src/components/inputs/otp-input.tsx",
1738
- "target": "{components}/inputs/otp-input.tsx"
1983
+ "source": "src/components/layout/section.tsx",
1984
+ "target": "{components}/layout/section.tsx"
1739
1985
  }
1740
1986
  ],
1741
1987
  "status": "preview",
1742
1988
  "distribution": "source-copy"
1743
1989
  },
1744
- "color-picker": {
1745
- "category": "inputs",
1990
+ "segmented-control": {
1991
+ "category": "ui",
1992
+ "kind": "component",
1746
1993
  "registryDependencies": [
1747
1994
  "utils"
1748
1995
  ],
1749
1996
  "files": [
1750
1997
  {
1751
- "source": "src/components/inputs/color-picker.tsx",
1752
- "target": "{components}/inputs/color-picker.tsx"
1998
+ "source": "src/components/ui/segmented-control",
1999
+ "target": "{ui}/segmented-control"
1753
2000
  }
1754
2001
  ],
1755
- "status": "stable",
1756
- "distribution": "source-copy"
2002
+ "status": "preview",
2003
+ "distribution": "foundation"
1757
2004
  },
1758
- "signature-pad": {
1759
- "category": "inputs",
2005
+ "select": {
2006
+ "category": "ui",
2007
+ "kind": "component",
1760
2008
  "dependencies": [
2009
+ "@base-ui/react",
1761
2010
  "lucide-react"
1762
2011
  ],
1763
2012
  "registryDependencies": [
@@ -1765,80 +2014,101 @@
1765
2014
  ],
1766
2015
  "files": [
1767
2016
  {
1768
- "source": "src/components/inputs/signature-pad.tsx",
1769
- "target": "{components}/inputs/signature-pad.tsx"
2017
+ "source": "src/components/ui/select",
2018
+ "target": "{ui}/select"
1770
2019
  }
1771
2020
  ],
2021
+ "status": "stable",
2022
+ "distribution": "foundation"
2023
+ },
2024
+ "sheet-shell": {
2025
+ "category": "overlay",
2026
+ "kind": "alias",
2027
+ "migrationAliasFor": "drawer",
1772
2028
  "status": "preview",
1773
2029
  "distribution": "source-copy"
1774
2030
  },
1775
- "pagination": {
1776
- "category": "navigation",
1777
- "files": [
1778
- {
1779
- "source": "src/components/navigation/pagination.tsx",
1780
- "target": "{components}/navigation/pagination.tsx"
1781
- }
2031
+ "sidebar": {
2032
+ "category": "layout",
2033
+ "kind": "component",
2034
+ "dependencies": [
2035
+ "react"
2036
+ ],
2037
+ "registryDependencies": [
2038
+ "tooltip",
2039
+ "sidebar-context",
2040
+ "utils"
1782
2041
  ],
1783
- "status": "stable",
1784
- "distribution": "source-copy"
1785
- },
1786
- "progress": {
1787
- "category": "display",
1788
2042
  "files": [
1789
2043
  {
1790
- "source": "src/components/display/progress.tsx",
1791
- "target": "{components}/display/progress.tsx"
2044
+ "source": "src/components/layout/sidebar.tsx",
2045
+ "target": "{components}/layout/sidebar.tsx"
1792
2046
  }
1793
2047
  ],
1794
2048
  "status": "stable",
1795
2049
  "distribution": "source-copy"
1796
2050
  },
1797
- "progress-circle": {
1798
- "category": "charts",
1799
- "files": [
1800
- {
1801
- "source": "src/components/charts/progress-circle.tsx",
1802
- "target": "{components}/charts/progress-circle.tsx"
1803
- }
2051
+ "sidebar-context": {
2052
+ "category": "layout",
2053
+ "kind": "component",
2054
+ "dependencies": [
2055
+ "lucide-react"
2056
+ ],
2057
+ "registryDependencies": [
2058
+ "button"
1804
2059
  ],
1805
- "status": "stable"
1806
- },
1807
- "quick-action-grid": {
1808
- "category": "actions",
1809
2060
  "files": [
1810
2061
  {
1811
- "source": "src/components/actions/quick-action-grid.tsx",
1812
- "target": "{components}/actions/quick-action-grid.tsx"
2062
+ "source": "src/components/layout/sidebar-context.tsx",
2063
+ "target": "{components}/layout/sidebar-context.tsx"
1813
2064
  }
1814
2065
  ],
1815
2066
  "status": "preview",
1816
2067
  "distribution": "source-copy"
1817
2068
  },
1818
- "rating": {
2069
+ "signature-pad": {
1819
2070
  "category": "inputs",
2071
+ "kind": "component",
2072
+ "dependencies": [
2073
+ "lucide-react"
2074
+ ],
2075
+ "registryDependencies": [
2076
+ "utils"
2077
+ ],
1820
2078
  "files": [
1821
2079
  {
1822
- "source": "src/components/inputs/rating.tsx",
1823
- "target": "{components}/inputs/rating.tsx"
2080
+ "source": "src/components/inputs/signature-pad.tsx",
2081
+ "target": "{components}/inputs/signature-pad.tsx"
1824
2082
  }
1825
2083
  ],
1826
2084
  "status": "preview",
1827
2085
  "distribution": "source-copy"
1828
2086
  },
1829
- "section": {
1830
- "category": "layout",
2087
+ "simple-select": {
2088
+ "category": "ui",
2089
+ "kind": "alias",
2090
+ "migrationAliasFor": "select",
2091
+ "status": "internal",
2092
+ "distribution": "foundation"
2093
+ },
2094
+ "skeleton": {
2095
+ "category": "ui",
2096
+ "kind": "component",
2097
+ "registryDependencies": [
2098
+ "utils"
2099
+ ],
1831
2100
  "files": [
1832
2101
  {
1833
- "source": "src/components/layout/section.tsx",
1834
- "target": "{components}/layout/section.tsx"
2102
+ "source": "src/components/ui/skeleton",
2103
+ "target": "{ui}/skeleton"
1835
2104
  }
1836
2105
  ],
1837
2106
  "status": "preview",
1838
- "distribution": "source-copy"
2107
+ "distribution": "foundation"
1839
2108
  },
1840
2109
  "slider": {
1841
2110
  "category": "inputs",
2111
+ "kind": "component",
1842
2112
  "files": [
1843
2113
  {
1844
2114
  "source": "src/components/inputs/slider.tsx",
@@ -1848,24 +2118,36 @@
1848
2118
  "status": "preview",
1849
2119
  "distribution": "source-copy"
1850
2120
  },
1851
- "info-card": {
2121
+ "smart-card": {
1852
2122
  "category": "display",
2123
+ "kind": "alias",
2124
+ "migrationAliasFor": "info-card",
2125
+ "status": "preview",
2126
+ "distribution": "source-copy"
2127
+ },
2128
+ "sortable-list": {
2129
+ "category": "dnd",
2130
+ "kind": "component",
2131
+ "dependencies": [
2132
+ "@dnd-kit/helpers",
2133
+ "@dnd-kit/react",
2134
+ "lucide-react"
2135
+ ],
1853
2136
  "registryDependencies": [
1854
- "card",
1855
- "skeleton",
1856
2137
  "utils"
1857
2138
  ],
1858
2139
  "files": [
1859
2140
  {
1860
- "source": "src/components/display/info-card.tsx",
1861
- "target": "{components}/display/info-card.tsx"
2141
+ "source": "src/components/dnd/sortable-list.tsx",
2142
+ "target": "{components}/dnd/sortable-list.tsx"
1862
2143
  }
1863
2144
  ],
1864
- "status": "stable",
2145
+ "status": "preview",
1865
2146
  "distribution": "source-copy"
1866
2147
  },
1867
2148
  "spinner": {
1868
2149
  "category": "ui",
2150
+ "kind": "component",
1869
2151
  "files": [
1870
2152
  {
1871
2153
  "source": "src/components/ui/spinner",
@@ -1875,8 +2157,35 @@
1875
2157
  "status": "preview",
1876
2158
  "distribution": "foundation"
1877
2159
  },
2160
+ "stat-card": {
2161
+ "category": "layout",
2162
+ "kind": "alias",
2163
+ "migrationAliasFor": "statistic",
2164
+ "status": "preview",
2165
+ "distribution": "source-copy"
2166
+ },
2167
+ "state-view": {
2168
+ "category": "feedback",
2169
+ "kind": "component",
2170
+ "dependencies": [
2171
+ "lucide-react"
2172
+ ],
2173
+ "registryDependencies": [
2174
+ "button",
2175
+ "utils"
2176
+ ],
2177
+ "files": [
2178
+ {
2179
+ "source": "src/components/feedback/state-view.tsx",
2180
+ "target": "{components}/feedback/state-view.tsx"
2181
+ }
2182
+ ],
2183
+ "status": "stable",
2184
+ "distribution": "source-copy"
2185
+ },
1878
2186
  "statistic": {
1879
2187
  "category": "display",
2188
+ "kind": "component",
1880
2189
  "files": [
1881
2190
  {
1882
2191
  "source": "src/components/display/statistic.tsx",
@@ -1888,6 +2197,7 @@
1888
2197
  },
1889
2198
  "status-dot": {
1890
2199
  "category": "display",
2200
+ "kind": "component",
1891
2201
  "files": [
1892
2202
  {
1893
2203
  "source": "src/components/display/status-dot.tsx",
@@ -1899,6 +2209,7 @@
1899
2209
  },
1900
2210
  "status-legend": {
1901
2211
  "category": "display",
2212
+ "kind": "component",
1902
2213
  "registryDependencies": [
1903
2214
  "badge",
1904
2215
  "status-dot",
@@ -1916,6 +2227,7 @@
1916
2227
  },
1917
2228
  "stepper": {
1918
2229
  "category": "wizard",
2230
+ "kind": "component",
1919
2231
  "files": [
1920
2232
  {
1921
2233
  "source": "src/components/wizard/stepper.tsx",
@@ -1925,333 +2237,399 @@
1925
2237
  "status": "preview",
1926
2238
  "distribution": "source-copy"
1927
2239
  },
1928
- "timeline": {
1929
- "category": "display",
2240
+ "stepper-tabs": {
2241
+ "category": "navigation",
2242
+ "kind": "alias",
2243
+ "migrationAliasFor": "stepper",
2244
+ "status": "preview",
2245
+ "distribution": "source-copy"
2246
+ },
2247
+ "switch": {
2248
+ "category": "ui",
2249
+ "kind": "component",
2250
+ "registryDependencies": [
2251
+ "utils"
2252
+ ],
1930
2253
  "files": [
1931
2254
  {
1932
- "source": "src/components/display/timeline.tsx",
1933
- "target": "{components}/display/timeline.tsx"
2255
+ "source": "src/components/ui/switch",
2256
+ "target": "{ui}/switch"
1934
2257
  }
1935
2258
  ],
1936
2259
  "status": "stable",
1937
- "distribution": "source-copy"
2260
+ "distribution": "foundation"
1938
2261
  },
1939
- "toast": {
1940
- "category": "notifications",
2262
+ "table": {
2263
+ "category": "ui",
2264
+ "kind": "component",
2265
+ "registryDependencies": [
2266
+ "utils"
2267
+ ],
1941
2268
  "files": [
1942
2269
  {
1943
- "source": "src/components/notifications/toast.tsx",
1944
- "target": "{components}/notifications/toast.tsx"
2270
+ "source": "src/components/ui/table",
2271
+ "target": "{ui}/table"
2272
+ }
2273
+ ],
2274
+ "status": "stable",
2275
+ "distribution": "foundation"
2276
+ },
2277
+ "table-export-menu": {
2278
+ "category": "data-table",
2279
+ "kind": "alias",
2280
+ "migrationAliasFor": "data-table",
2281
+ "status": "internal",
2282
+ "distribution": "system"
2283
+ },
2284
+ "table-import-button": {
2285
+ "category": "data-table",
2286
+ "kind": "alias",
2287
+ "migrationAliasFor": "data-table",
2288
+ "status": "internal",
2289
+ "distribution": "system"
2290
+ },
2291
+ "tabs": {
2292
+ "category": "ui",
2293
+ "kind": "component",
2294
+ "dependencies": [
2295
+ "@base-ui/react"
2296
+ ],
2297
+ "registryDependencies": [
2298
+ "utils"
2299
+ ],
2300
+ "files": [
2301
+ {
2302
+ "source": "src/components/ui/tabs",
2303
+ "target": "{ui}/tabs"
1945
2304
  }
1946
2305
  ],
1947
2306
  "status": "preview",
1948
- "distribution": "source-copy"
2307
+ "distribution": "foundation"
1949
2308
  },
1950
- "tree-view": {
2309
+ "tag": {
1951
2310
  "category": "display",
2311
+ "kind": "component",
2312
+ "registryDependencies": [
2313
+ "badge",
2314
+ "utils"
2315
+ ],
1952
2316
  "files": [
1953
2317
  {
1954
- "source": "src/components/display/tree-view.tsx",
1955
- "target": "{components}/display/tree-view.tsx"
2318
+ "source": "src/components/display/tag.tsx",
2319
+ "target": "{components}/display/tag.tsx"
1956
2320
  }
1957
2321
  ],
1958
2322
  "status": "preview",
1959
2323
  "distribution": "source-copy"
1960
2324
  },
1961
- "use-before-unload-when-dirty": {
1962
- "category": "hooks",
2325
+ "tag-input": {
2326
+ "category": "inputs",
2327
+ "kind": "component",
2328
+ "dependencies": [
2329
+ "lucide-react"
2330
+ ],
2331
+ "registryDependencies": [
2332
+ "badge",
2333
+ "input",
2334
+ "utils"
2335
+ ],
1963
2336
  "files": [
1964
2337
  {
1965
- "source": "src/hooks/use-before-unload-when-dirty.ts",
1966
- "target": "{hooks}/use-before-unload-when-dirty.ts"
2338
+ "source": "src/components/inputs/tag-input.tsx",
2339
+ "target": "{components}/inputs/tag-input.tsx"
2340
+ }
2341
+ ],
2342
+ "status": "preview",
2343
+ "distribution": "source-copy"
2344
+ },
2345
+ "textarea": {
2346
+ "category": "ui",
2347
+ "kind": "component",
2348
+ "registryDependencies": [
2349
+ "utils"
2350
+ ],
2351
+ "files": [
2352
+ {
2353
+ "source": "src/components/ui/textarea",
2354
+ "target": "{ui}/textarea"
1967
2355
  }
1968
2356
  ],
1969
2357
  "status": "stable",
1970
2358
  "distribution": "foundation"
1971
2359
  },
1972
- "use-data-table-view-state": {
1973
- "category": "hooks",
2360
+ "time-picker": {
2361
+ "category": "inputs",
2362
+ "kind": "component",
2363
+ "registryDependencies": [
2364
+ "utils"
2365
+ ],
1974
2366
  "files": [
1975
2367
  {
1976
- "source": "src/hooks/use-data-table-view-state.ts",
1977
- "target": "{hooks}/use-data-table-view-state.ts"
2368
+ "source": "src/components/inputs/time-picker.tsx",
2369
+ "target": "{components}/inputs/time-picker.tsx"
1978
2370
  }
1979
2371
  ],
1980
2372
  "status": "preview",
1981
- "distribution": "foundation"
2373
+ "distribution": "source-copy"
1982
2374
  },
1983
- "use-debounce": {
1984
- "category": "hooks",
2375
+ "timeline": {
2376
+ "category": "display",
2377
+ "kind": "component",
1985
2378
  "files": [
1986
2379
  {
1987
- "source": "src/hooks/use-debounce.ts",
1988
- "target": "{hooks}/use-debounce.ts"
2380
+ "source": "src/components/display/timeline.tsx",
2381
+ "target": "{components}/display/timeline.tsx"
1989
2382
  }
1990
2383
  ],
1991
2384
  "status": "stable",
1992
- "distribution": "foundation"
2385
+ "distribution": "source-copy"
1993
2386
  },
1994
- "use-disclosure": {
1995
- "category": "hooks",
2387
+ "toast": {
2388
+ "category": "notifications",
2389
+ "kind": "component",
1996
2390
  "files": [
1997
2391
  {
1998
- "source": "src/hooks/use-disclosure.ts",
1999
- "target": "{hooks}/use-disclosure.ts"
2392
+ "source": "src/components/notifications/toast.tsx",
2393
+ "target": "{components}/notifications/toast.tsx"
2000
2394
  }
2001
2395
  ],
2002
- "status": "stable",
2003
- "distribution": "foundation"
2396
+ "status": "preview",
2397
+ "distribution": "source-copy"
2004
2398
  },
2005
- "use-is-mobile": {
2006
- "category": "hooks",
2399
+ "toggle-group": {
2400
+ "category": "ui",
2401
+ "kind": "component",
2402
+ "dependencies": [
2403
+ "@base-ui/react"
2404
+ ],
2405
+ "registryDependencies": [
2406
+ "utils"
2407
+ ],
2007
2408
  "files": [
2008
2409
  {
2009
- "source": "src/hooks/use-is-mobile.ts",
2010
- "target": "{hooks}/use-is-mobile.ts"
2410
+ "source": "src/components/ui/toggle-group",
2411
+ "target": "{ui}/toggle-group"
2011
2412
  }
2012
2413
  ],
2013
- "status": "stable",
2414
+ "status": "preview",
2014
2415
  "distribution": "foundation"
2015
2416
  },
2016
- "use-session-storage-state": {
2017
- "category": "hooks",
2417
+ "toolbar": {
2418
+ "category": "ui",
2419
+ "kind": "component",
2420
+ "dependencies": [
2421
+ "@base-ui/react"
2422
+ ],
2423
+ "registryDependencies": [
2424
+ "utils"
2425
+ ],
2018
2426
  "files": [
2019
2427
  {
2020
- "source": "src/hooks/use-session-storage-state.ts",
2021
- "target": "{hooks}/use-session-storage-state.ts"
2428
+ "source": "src/components/ui/toolbar",
2429
+ "target": "{ui}/toolbar"
2022
2430
  }
2023
2431
  ],
2024
- "status": "stable",
2432
+ "status": "preview",
2025
2433
  "distribution": "foundation"
2026
2434
  },
2027
- "wizard": {
2028
- "category": "wizard",
2435
+ "tooltip": {
2436
+ "category": "ui",
2437
+ "kind": "component",
2438
+ "registryDependencies": [
2439
+ "utils"
2440
+ ],
2029
2441
  "files": [
2030
2442
  {
2031
- "source": "src/components/wizard/wizard.tsx",
2032
- "target": "{components}/wizard/wizard.tsx"
2443
+ "source": "src/components/ui/tooltip",
2444
+ "target": "{ui}/tooltip"
2033
2445
  }
2034
2446
  ],
2035
2447
  "status": "preview",
2036
- "distribution": "source-copy"
2448
+ "distribution": "foundation"
2037
2449
  },
2038
- "inline-editable": {
2039
- "category": "inputs",
2450
+ "tree-view": {
2451
+ "category": "display",
2452
+ "kind": "component",
2040
2453
  "files": [
2041
2454
  {
2042
- "source": "src/components/inputs/inline-editable.tsx",
2043
- "target": "{components}/inputs/inline-editable.tsx"
2455
+ "source": "src/components/display/tree-view.tsx",
2456
+ "target": "{components}/display/tree-view.tsx"
2044
2457
  }
2045
2458
  ],
2046
2459
  "status": "preview",
2047
2460
  "distribution": "source-copy"
2048
2461
  },
2049
- "command-palette": {
2050
- "category": "command",
2051
- "dependencies": [
2052
- "cmdk",
2053
- "lucide-react"
2054
- ],
2462
+ "trend-card": {
2463
+ "category": "display",
2464
+ "kind": "alias",
2465
+ "migrationAliasFor": "statistic",
2466
+ "status": "preview",
2467
+ "distribution": "source-copy"
2468
+ },
2469
+ "typography": {
2470
+ "category": "display",
2471
+ "kind": "component",
2055
2472
  "registryDependencies": [
2056
- "button",
2057
- "dialog",
2058
- "input",
2059
- "kbd",
2060
2473
  "utils"
2061
2474
  ],
2062
2475
  "files": [
2063
2476
  {
2064
- "source": "src/components/command/command-palette.tsx",
2065
- "target": "{components}/command/command-palette.tsx"
2477
+ "source": "src/components/display/typography.tsx",
2478
+ "target": "{components}/display/typography.tsx"
2066
2479
  }
2067
2480
  ],
2068
2481
  "status": "preview",
2069
2482
  "distribution": "source-copy"
2070
2483
  },
2071
- "saved-filter-select": {
2072
- "category": "filters",
2484
+ "use-before-unload-when-dirty": {
2485
+ "category": "hooks",
2486
+ "kind": "hook",
2073
2487
  "files": [
2074
2488
  {
2075
- "source": "src/components/filters/saved-filter-select.tsx",
2076
- "target": "{components}/filters/saved-filter-select.tsx"
2489
+ "source": "src/hooks/use-before-unload-when-dirty.ts",
2490
+ "target": "{hooks}/use-before-unload-when-dirty.ts"
2077
2491
  }
2078
2492
  ],
2079
- "status": "preview",
2080
- "distribution": "source-copy"
2493
+ "status": "stable",
2494
+ "distribution": "foundation"
2081
2495
  },
2082
- "notification-center": {
2083
- "category": "notifications",
2496
+ "use-data-table-view-state": {
2497
+ "category": "hooks",
2498
+ "kind": "hook",
2084
2499
  "files": [
2085
2500
  {
2086
- "source": "src/components/notifications/notification-center.tsx",
2087
- "target": "{components}/notifications/notification-center.tsx"
2501
+ "source": "src/hooks/use-data-table-view-state.ts",
2502
+ "target": "{hooks}/use-data-table-view-state.ts"
2088
2503
  }
2089
2504
  ],
2090
2505
  "status": "preview",
2091
- "distribution": "source-copy"
2506
+ "distribution": "foundation"
2092
2507
  },
2093
- "calendar-scheduler": {
2094
- "category": "modern",
2095
- "registryDependencies": [
2096
- "utils"
2097
- ],
2508
+ "use-debounce": {
2509
+ "category": "hooks",
2510
+ "kind": "hook",
2098
2511
  "files": [
2099
2512
  {
2100
- "source": "src/components/modern/calendar-scheduler.tsx",
2101
- "target": "{components}/modern/calendar-scheduler.tsx"
2513
+ "source": "src/hooks/use-debounce.ts",
2514
+ "target": "{hooks}/use-debounce.ts"
2102
2515
  }
2103
2516
  ],
2104
- "status": "preview",
2105
- "distribution": "source-copy"
2517
+ "status": "stable",
2518
+ "distribution": "foundation"
2106
2519
  },
2107
- "dual-list-picker": {
2108
- "category": "modern",
2109
- "registryDependencies": [
2110
- "utils"
2111
- ],
2520
+ "use-disclosure": {
2521
+ "category": "hooks",
2522
+ "kind": "hook",
2112
2523
  "files": [
2113
2524
  {
2114
- "source": "src/components/modern/dual-list-picker.tsx",
2115
- "target": "{components}/modern/dual-list-picker.tsx"
2525
+ "source": "src/hooks/use-disclosure.ts",
2526
+ "target": "{hooks}/use-disclosure.ts"
2116
2527
  }
2117
2528
  ],
2118
- "status": "preview",
2119
- "distribution": "source-copy"
2529
+ "status": "stable",
2530
+ "distribution": "foundation"
2120
2531
  },
2121
- "resizable-panel": {
2122
- "category": "modern",
2123
- "dependencies": [
2124
- "lucide-react"
2125
- ],
2126
- "registryDependencies": [
2127
- "utils"
2128
- ],
2532
+ "use-is-mobile": {
2533
+ "category": "hooks",
2534
+ "kind": "hook",
2129
2535
  "files": [
2130
2536
  {
2131
- "source": "src/components/modern/resizable-panel.tsx",
2132
- "target": "{components}/modern/resizable-panel.tsx"
2537
+ "source": "src/hooks/use-is-mobile.ts",
2538
+ "target": "{hooks}/use-is-mobile.ts"
2133
2539
  }
2134
2540
  ],
2135
- "status": "preview",
2136
- "distribution": "source-copy"
2541
+ "status": "stable",
2542
+ "distribution": "foundation"
2137
2543
  },
2138
- "rich-text-editor": {
2139
- "category": "modern",
2140
- "dependencies": [
2141
- "@tiptap/react",
2142
- "@tiptap/pm",
2143
- "@tiptap/starter-kit",
2144
- "@tiptap/extension-link",
2145
- "@tiptap/extension-placeholder",
2146
- "lucide-react"
2147
- ],
2148
- "registryDependencies": [
2149
- "utils"
2150
- ],
2544
+ "use-session-storage-state": {
2545
+ "category": "hooks",
2546
+ "kind": "hook",
2151
2547
  "files": [
2152
2548
  {
2153
- "source": "src/components/modern/rich-text-editor.tsx",
2154
- "target": "{components}/modern/rich-text-editor.tsx"
2549
+ "source": "src/hooks/use-session-storage-state.ts",
2550
+ "target": "{hooks}/use-session-storage-state.ts"
2155
2551
  }
2156
2552
  ],
2553
+ "status": "stable",
2554
+ "distribution": "foundation"
2555
+ },
2556
+ "user-card": {
2557
+ "category": "display",
2558
+ "kind": "alias",
2559
+ "migrationAliasFor": "avatar",
2157
2560
  "status": "preview",
2158
2561
  "distribution": "source-copy"
2159
2562
  },
2160
- "image-cropper": {
2161
- "category": "modern",
2563
+ "utils": {
2564
+ "category": "lib",
2565
+ "kind": "utility",
2162
2566
  "dependencies": [
2163
- "react-easy-crop",
2164
- "lucide-react"
2165
- ],
2166
- "registryDependencies": [
2167
- "utils"
2567
+ "clsx",
2568
+ "tailwind-merge"
2168
2569
  ],
2169
2570
  "files": [
2170
2571
  {
2171
- "source": "src/components/modern/image-cropper.tsx",
2172
- "target": "{components}/modern/image-cropper.tsx"
2572
+ "source": "src/lib/utils.ts",
2573
+ "target": "{utils}"
2173
2574
  }
2174
2575
  ],
2175
- "status": "preview",
2176
- "distribution": "source-copy"
2576
+ "status": "internal",
2577
+ "distribution": "foundation"
2177
2578
  },
2178
- "qr-code": {
2579
+ "virtual-list": {
2179
2580
  "category": "display",
2581
+ "kind": "component",
2180
2582
  "dependencies": [
2181
- "qrcode",
2182
- "@types/qrcode"
2183
- ],
2184
- "registryDependencies": [
2185
- "utils"
2186
- ],
2187
- "files": [
2188
- {
2189
- "source": "src/components/display/qr-code.tsx",
2190
- "target": "{components}/display/qr-code.tsx"
2191
- }
2583
+ "@tanstack/react-virtual"
2192
2584
  ],
2193
- "status": "stable",
2194
- "distribution": "source-copy"
2195
- },
2196
- "json-input": {
2197
- "category": "inputs",
2198
2585
  "registryDependencies": [
2199
2586
  "utils"
2200
2587
  ],
2201
2588
  "files": [
2202
2589
  {
2203
- "source": "src/components/inputs/json-input.tsx",
2204
- "target": "{components}/inputs/json-input.tsx"
2590
+ "source": "src/components/display/virtual-list.tsx",
2591
+ "target": "{components}/display/virtual-list.tsx"
2205
2592
  }
2206
2593
  ],
2207
2594
  "status": "preview",
2208
2595
  "distribution": "source-copy"
2209
2596
  },
2210
- "time-picker": {
2211
- "category": "inputs",
2212
- "registryDependencies": [
2213
- "utils"
2214
- ],
2597
+ "wizard": {
2598
+ "category": "wizard",
2599
+ "kind": "component",
2215
2600
  "files": [
2216
2601
  {
2217
- "source": "src/components/inputs/time-picker.tsx",
2218
- "target": "{components}/inputs/time-picker.tsx"
2602
+ "source": "src/components/wizard/wizard.tsx",
2603
+ "target": "{components}/wizard/wizard.tsx"
2219
2604
  }
2220
2605
  ],
2221
2606
  "status": "preview",
2222
2607
  "distribution": "source-copy"
2223
2608
  },
2224
- "sortable-list": {
2225
- "category": "dnd",
2226
- "dependencies": [
2227
- "@dnd-kit/helpers",
2228
- "@dnd-kit/react",
2229
- "lucide-react"
2230
- ],
2609
+ "wizard-kit": {
2610
+ "category": "group",
2611
+ "kind": "preset",
2231
2612
  "registryDependencies": [
2232
- "utils"
2233
- ],
2234
- "files": [
2235
- {
2236
- "source": "src/components/dnd/sortable-list.tsx",
2237
- "target": "{components}/dnd/sortable-list.tsx"
2238
- }
2613
+ "stepper",
2614
+ "wizard"
2239
2615
  ],
2240
2616
  "status": "preview",
2241
- "distribution": "source-copy"
2617
+ "distribution": "system"
2242
2618
  },
2243
- "virtual-list": {
2244
- "category": "display",
2245
- "dependencies": [
2246
- "@tanstack/react-virtual"
2247
- ],
2619
+ "workspace-layout": {
2620
+ "category": "layout",
2621
+ "kind": "component",
2248
2622
  "registryDependencies": [
2249
2623
  "utils"
2250
2624
  ],
2251
2625
  "files": [
2252
2626
  {
2253
- "source": "src/components/display/virtual-list.tsx",
2254
- "target": "{components}/display/virtual-list.tsx"
2627
+ "source": "src/components/layout/workspace-layout.tsx",
2628
+ "target": "{components}/layout/workspace-layout.tsx"
2629
+ },
2630
+ {
2631
+ "source": "src/components/layout/workspace-header.tsx",
2632
+ "target": "{components}/layout/workspace-header.tsx"
2255
2633
  }
2256
2634
  ],
2257
2635
  "status": "preview",
@@ -2680,6 +3058,7 @@
2680
3058
  "switch",
2681
3059
  "radio-group",
2682
3060
  "number-field",
3061
+ "multi-select",
2683
3062
  "toggle-group",
2684
3063
  "toolbar",
2685
3064
  "dialog",
@@ -2697,11 +3076,14 @@
2697
3076
  "alert",
2698
3077
  "toast",
2699
3078
  "notification-center",
3079
+ "action-toast",
2700
3080
  "charts",
3081
+ "chart-card",
2701
3082
  "sidebar",
2702
3083
  "breadcrumbs",
2703
3084
  "workspace-layout",
2704
3085
  "state-view",
3086
+ "async-boundary",
2705
3087
  "file-upload",
2706
3088
  "progress",
2707
3089
  "accordion",
@@ -2710,6 +3092,7 @@
2710
3092
  "skeleton",
2711
3093
  "spinner",
2712
3094
  "command-palette",
3095
+ "advanced-command-menu",
2713
3096
  "inline-editable",
2714
3097
  "avatar",
2715
3098
  "code-block",
@@ -2723,23 +3106,110 @@
2723
3106
  "copy-button",
2724
3107
  "section",
2725
3108
  "empty-state",
3109
+ "permissions-matrix",
2726
3110
  "calendar-scheduler",
3111
+ "calendar-range-scheduler",
2727
3112
  "dual-list-picker",
2728
3113
  "resizable-panel",
3114
+ "file-manager",
2729
3115
  "tag",
2730
3116
  "carousel",
2731
3117
  "typography",
2732
3118
  "json-input",
2733
3119
  "time-picker",
3120
+ "date-time-picker",
2734
3121
  "sortable-list",
2735
3122
  "virtual-list",
2736
3123
  "color-picker",
2737
3124
  "signature-pad",
2738
3125
  "qr-code",
2739
3126
  "rich-text-editor",
2740
- "image-cropper"
3127
+ "image-cropper",
3128
+ "data-grid"
2741
3129
  ],
2742
- "standalone": []
3130
+ "standalone": [],
3131
+ "all": [
3132
+ "button",
3133
+ "input",
3134
+ "textarea",
3135
+ "select",
3136
+ "combobox",
3137
+ "async-select",
3138
+ "card",
3139
+ "badge",
3140
+ "checkbox",
3141
+ "switch",
3142
+ "radio-group",
3143
+ "number-field",
3144
+ "multi-select",
3145
+ "toggle-group",
3146
+ "toolbar",
3147
+ "dialog",
3148
+ "dropdown-menu",
3149
+ "popover",
3150
+ "hover-card",
3151
+ "menubar",
3152
+ "navigation-menu",
3153
+ "tooltip",
3154
+ "data-table",
3155
+ "pagination",
3156
+ "calendar",
3157
+ "date-picker",
3158
+ "date-range-picker",
3159
+ "alert",
3160
+ "toast",
3161
+ "notification-center",
3162
+ "action-toast",
3163
+ "charts",
3164
+ "chart-card",
3165
+ "sidebar",
3166
+ "breadcrumbs",
3167
+ "workspace-layout",
3168
+ "state-view",
3169
+ "async-boundary",
3170
+ "file-upload",
3171
+ "progress",
3172
+ "accordion",
3173
+ "divider",
3174
+ "segmented-control",
3175
+ "skeleton",
3176
+ "spinner",
3177
+ "command-palette",
3178
+ "advanced-command-menu",
3179
+ "inline-editable",
3180
+ "avatar",
3181
+ "code-block",
3182
+ "data-state",
3183
+ "kanban",
3184
+ "chat",
3185
+ "list",
3186
+ "description-list",
3187
+ "statistic",
3188
+ "tree-view",
3189
+ "copy-button",
3190
+ "section",
3191
+ "empty-state",
3192
+ "permissions-matrix",
3193
+ "calendar-scheduler",
3194
+ "calendar-range-scheduler",
3195
+ "dual-list-picker",
3196
+ "resizable-panel",
3197
+ "file-manager",
3198
+ "tag",
3199
+ "carousel",
3200
+ "typography",
3201
+ "json-input",
3202
+ "time-picker",
3203
+ "date-time-picker",
3204
+ "sortable-list",
3205
+ "virtual-list",
3206
+ "color-picker",
3207
+ "signature-pad",
3208
+ "qr-code",
3209
+ "rich-text-editor",
3210
+ "image-cropper",
3211
+ "data-grid"
3212
+ ]
2743
3213
  },
2744
3214
  "migrationAliases": {
2745
3215
  "simple-select": "select",