sh-ui-cli 0.15.0 → 0.21.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/bin/sh-ui.mjs +6 -0
  2. package/data/changelog/versions.json +366 -0
  3. package/data/registry/flutter/foundation/sh_ui_tokens.dart +385 -0
  4. package/data/registry/flutter/registry.json +336 -0
  5. package/data/registry/flutter/widgets/sh_ui_accordion.dart +255 -0
  6. package/data/registry/flutter/widgets/sh_ui_app_shell.dart +267 -0
  7. package/data/registry/flutter/widgets/sh_ui_avatar.dart +95 -0
  8. package/data/registry/flutter/widgets/sh_ui_badge.dart +82 -0
  9. package/data/registry/flutter/widgets/sh_ui_breadcrumb.dart +107 -0
  10. package/data/registry/flutter/widgets/sh_ui_button.dart +201 -0
  11. package/data/registry/flutter/widgets/sh_ui_card.dart +159 -0
  12. package/data/registry/flutter/widgets/sh_ui_carousel.dart +204 -0
  13. package/data/registry/flutter/widgets/sh_ui_checkbox.dart +154 -0
  14. package/data/registry/flutter/widgets/sh_ui_color_picker.dart +264 -0
  15. package/data/registry/flutter/widgets/sh_ui_combobox.dart +614 -0
  16. package/data/registry/flutter/widgets/sh_ui_context_menu.dart +71 -0
  17. package/data/registry/flutter/widgets/sh_ui_date_picker.dart +648 -0
  18. package/data/registry/flutter/widgets/sh_ui_dialog.dart +567 -0
  19. package/data/registry/flutter/widgets/sh_ui_dropdown_menu.dart +251 -0
  20. package/data/registry/flutter/widgets/sh_ui_file_upload.dart +200 -0
  21. package/data/registry/flutter/widgets/sh_ui_header.dart +488 -0
  22. package/data/registry/flutter/widgets/sh_ui_input.dart +664 -0
  23. package/data/registry/flutter/widgets/sh_ui_label.dart +145 -0
  24. package/data/registry/flutter/widgets/sh_ui_menubar.dart +98 -0
  25. package/data/registry/flutter/widgets/sh_ui_pagination.dart +276 -0
  26. package/data/registry/flutter/widgets/sh_ui_popover.dart +248 -0
  27. package/data/registry/flutter/widgets/sh_ui_progress.dart +47 -0
  28. package/data/registry/flutter/widgets/sh_ui_radio.dart +108 -0
  29. package/data/registry/flutter/widgets/sh_ui_select.dart +904 -0
  30. package/data/registry/flutter/widgets/sh_ui_separator.dart +42 -0
  31. package/data/registry/flutter/widgets/sh_ui_sidebar.dart +1116 -0
  32. package/data/registry/flutter/widgets/sh_ui_skeleton.dart +129 -0
  33. package/data/registry/flutter/widgets/sh_ui_slider.dart +147 -0
  34. package/data/registry/flutter/widgets/sh_ui_spinner.dart +56 -0
  35. package/data/registry/flutter/widgets/sh_ui_switch.dart +109 -0
  36. package/data/registry/flutter/widgets/sh_ui_tabs.dart +329 -0
  37. package/data/registry/flutter/widgets/sh_ui_textarea.dart +126 -0
  38. package/data/registry/flutter/widgets/sh_ui_toast.dart +362 -0
  39. package/data/registry/flutter/widgets/sh_ui_toggle.dart +229 -0
  40. package/data/registry/flutter/widgets/sh_ui_tooltip.dart +62 -0
  41. package/data/registry/react/components/accordion/index.tsx +85 -0
  42. package/data/registry/react/components/accordion/styles.css +94 -0
  43. package/data/registry/react/components/animations/animations.css +51 -0
  44. package/data/registry/react/components/avatar/index.tsx +75 -0
  45. package/data/registry/react/components/avatar/styles.css +36 -0
  46. package/data/registry/react/components/badge/index.tsx +42 -0
  47. package/data/registry/react/components/badge/styles.css +57 -0
  48. package/data/registry/react/components/base/base.css +102 -0
  49. package/data/registry/react/components/breadcrumb/index.tsx +154 -0
  50. package/data/registry/react/components/breadcrumb/styles.css +82 -0
  51. package/data/registry/react/components/breakpoints/breakpoints.css +17 -0
  52. package/data/registry/react/components/button/index.tsx +47 -0
  53. package/data/registry/react/components/button/styles.css +93 -0
  54. package/data/registry/react/components/card/index.tsx +86 -0
  55. package/data/registry/react/components/card/styles.css +73 -0
  56. package/data/registry/react/components/carousel/index.tsx +432 -0
  57. package/data/registry/react/components/carousel/styles.css +155 -0
  58. package/data/registry/react/components/checkbox/index.tsx +98 -0
  59. package/data/registry/react/components/checkbox/styles.css +75 -0
  60. package/data/registry/react/components/code-panel/copy.tsx +56 -0
  61. package/data/registry/react/components/code-panel/index.tsx +193 -0
  62. package/data/registry/react/components/code-panel/styles.css +124 -0
  63. package/data/registry/react/components/color-picker/index.tsx +466 -0
  64. package/data/registry/react/components/color-picker/styles.css +166 -0
  65. package/data/registry/react/components/combobox/index.tsx +167 -0
  66. package/data/registry/react/components/combobox/styles.css +151 -0
  67. package/data/registry/react/components/context-menu/index.tsx +253 -0
  68. package/data/registry/react/components/context-menu/styles.css +140 -0
  69. package/data/registry/react/components/date-picker/index.tsx +757 -0
  70. package/data/registry/react/components/date-picker/styles.css +279 -0
  71. package/data/registry/react/components/dialog/index.tsx +97 -0
  72. package/data/registry/react/components/dialog/styles.css +127 -0
  73. package/data/registry/react/components/dropdown-menu/index.tsx +257 -0
  74. package/data/registry/react/components/dropdown-menu/styles.css +150 -0
  75. package/data/registry/react/components/file-upload/index.tsx +489 -0
  76. package/data/registry/react/components/file-upload/styles.css +170 -0
  77. package/data/registry/react/components/focus-ring/focus-ring.css +23 -0
  78. package/data/registry/react/components/form/context.ts +92 -0
  79. package/data/registry/react/components/form/field.test.tsx +230 -0
  80. package/data/registry/react/components/form/field.tsx +236 -0
  81. package/data/registry/react/components/form/focus-first-error.ts +54 -0
  82. package/data/registry/react/components/form/form.section.test.tsx +58 -0
  83. package/data/registry/react/components/form/form.test.tsx +146 -0
  84. package/data/registry/react/components/form/form.tsx +180 -0
  85. package/data/registry/react/components/form/index.tsx +61 -0
  86. package/data/registry/react/components/form/steps.test.tsx +106 -0
  87. package/data/registry/react/components/form/steps.tsx +193 -0
  88. package/data/registry/react/components/form/store.test.ts +206 -0
  89. package/data/registry/react/components/form/store.ts +318 -0
  90. package/data/registry/react/components/form/styles.css +47 -0
  91. package/data/registry/react/components/form/types.ts +104 -0
  92. package/data/registry/react/components/form/use-sh-ui-form.ts +15 -0
  93. package/data/registry/react/components/form/utils.test.ts +44 -0
  94. package/data/registry/react/components/form/utils.ts +49 -0
  95. package/data/registry/react/components/form/validation.test.ts +67 -0
  96. package/data/registry/react/components/form/validation.ts +64 -0
  97. package/data/registry/react/components/form-rhf/README.md +27 -0
  98. package/data/registry/react/components/form-rhf/index.tsx +289 -0
  99. package/data/registry/react/components/form-rhf/rhf.test.tsx +42 -0
  100. package/data/registry/react/components/form-tanstack/README.md +27 -0
  101. package/data/registry/react/components/form-tanstack/index.tsx +352 -0
  102. package/data/registry/react/components/form-tanstack/tanstack.test.tsx +45 -0
  103. package/data/registry/react/components/form-yup/README.md +22 -0
  104. package/data/registry/react/components/form-yup/index.tsx +50 -0
  105. package/data/registry/react/components/form-yup/yup.test.ts +27 -0
  106. package/data/registry/react/components/header/index.tsx +257 -0
  107. package/data/registry/react/components/header/styles.css +190 -0
  108. package/data/registry/react/components/input/index.tsx +517 -0
  109. package/data/registry/react/components/input/styles.css +203 -0
  110. package/data/registry/react/components/label/index.tsx +54 -0
  111. package/data/registry/react/components/label/styles.css +90 -0
  112. package/data/registry/react/components/menubar/index.tsx +34 -0
  113. package/data/registry/react/components/menubar/styles.css +45 -0
  114. package/data/registry/react/components/pagination/index.tsx +271 -0
  115. package/data/registry/react/components/pagination/styles.css +105 -0
  116. package/data/registry/react/components/popover/index.tsx +115 -0
  117. package/data/registry/react/components/popover/styles.css +65 -0
  118. package/data/registry/react/components/progress/index.tsx +56 -0
  119. package/data/registry/react/components/progress/styles.css +41 -0
  120. package/data/registry/react/components/radio/index.tsx +67 -0
  121. package/data/registry/react/components/radio/styles.css +80 -0
  122. package/data/registry/react/components/select/index.tsx +236 -0
  123. package/data/registry/react/components/select/styles.css +193 -0
  124. package/data/registry/react/components/separator/index.tsx +48 -0
  125. package/data/registry/react/components/separator/styles.css +15 -0
  126. package/data/registry/react/components/sidebar/index.tsx +1084 -0
  127. package/data/registry/react/components/sidebar/styles.css +502 -0
  128. package/data/registry/react/components/skeleton/index.tsx +24 -0
  129. package/data/registry/react/components/skeleton/styles.css +24 -0
  130. package/data/registry/react/components/slider/index.tsx +300 -0
  131. package/data/registry/react/components/slider/styles.css +64 -0
  132. package/data/registry/react/components/spinner/index.tsx +40 -0
  133. package/data/registry/react/components/spinner/styles.css +37 -0
  134. package/data/registry/react/components/switch/index.tsx +41 -0
  135. package/data/registry/react/components/switch/styles.css +83 -0
  136. package/data/registry/react/components/tabs/index.tsx +93 -0
  137. package/data/registry/react/components/tabs/styles.css +148 -0
  138. package/data/registry/react/components/textarea/index.tsx +25 -0
  139. package/data/registry/react/components/textarea/styles.css +54 -0
  140. package/data/registry/react/components/theme/index.tsx +91 -0
  141. package/data/registry/react/components/toast/index.tsx +257 -0
  142. package/data/registry/react/components/toast/styles.css +290 -0
  143. package/data/registry/react/components/toggle/index.tsx +133 -0
  144. package/data/registry/react/components/toggle/styles.css +85 -0
  145. package/data/registry/react/components/tooltip/index.tsx +85 -0
  146. package/data/registry/react/components/tooltip/styles.css +44 -0
  147. package/data/registry/react/components/z-index/z-index.css +16 -0
  148. package/data/registry/react/hooks/use-active-section.ts +104 -0
  149. package/data/registry/react/hooks/use-media-query.ts +27 -0
  150. package/data/registry/react/lib/cn.ts +39 -0
  151. package/data/registry/react/peer-versions.json +10 -0
  152. package/data/registry/react/registry.json +835 -0
  153. package/data/summaries/flutter.json +42 -0
  154. package/data/summaries/react.json +50 -0
  155. package/data/tokens/build.mjs +553 -0
  156. package/data/tokens/src/primitives.json +146 -0
  157. package/data/tokens/src/semantic.json +146 -0
  158. package/package.json +9 -2
  159. package/src/add.mjs +41 -15
  160. package/src/list.mjs +3 -11
  161. package/src/mcp.mjs +308 -0
  162. package/src/paths.mjs +59 -0
  163. package/src/remove.mjs +4 -11
@@ -0,0 +1,835 @@
1
+ {
2
+ "$description": "React 레지스트리 매니페스트 — CLI가 각 컴포넌트 name으로 조회해 files를 사용자 프로젝트로 복사한다.",
3
+ "components": {
4
+ "button": {
5
+ "name": "button",
6
+ "type": "component",
7
+ "files": [
8
+ {
9
+ "src": "components/button/index.tsx",
10
+ "dest": "{components}/button/index.tsx"
11
+ },
12
+ {
13
+ "src": "components/button/styles.css",
14
+ "dest": "{components}/button/styles.css"
15
+ }
16
+ ],
17
+ "dependencies": [],
18
+ "registryDependencies": []
19
+ },
20
+ "card": {
21
+ "name": "card",
22
+ "type": "component",
23
+ "files": [
24
+ {
25
+ "src": "components/card/index.tsx",
26
+ "dest": "{components}/card/index.tsx"
27
+ },
28
+ {
29
+ "src": "components/card/styles.css",
30
+ "dest": "{components}/card/styles.css"
31
+ }
32
+ ],
33
+ "dependencies": [],
34
+ "registryDependencies": []
35
+ },
36
+ "input": {
37
+ "name": "input",
38
+ "type": "component",
39
+ "files": [
40
+ {
41
+ "src": "components/input/index.tsx",
42
+ "dest": "{components}/input/index.tsx"
43
+ },
44
+ {
45
+ "src": "components/input/styles.css",
46
+ "dest": "{components}/input/styles.css"
47
+ }
48
+ ],
49
+ "dependencies": [],
50
+ "registryDependencies": []
51
+ },
52
+ "file-upload": {
53
+ "name": "file-upload",
54
+ "type": "component",
55
+ "files": [
56
+ {
57
+ "src": "components/file-upload/index.tsx",
58
+ "dest": "{components}/file-upload/index.tsx"
59
+ },
60
+ {
61
+ "src": "components/file-upload/styles.css",
62
+ "dest": "{components}/file-upload/styles.css"
63
+ }
64
+ ],
65
+ "dependencies": [],
66
+ "registryDependencies": []
67
+ },
68
+ "form": {
69
+ "name": "form",
70
+ "type": "component",
71
+ "files": [
72
+ {
73
+ "src": "components/form/index.tsx",
74
+ "dest": "{components}/form/index.tsx"
75
+ },
76
+ {
77
+ "src": "components/form/form.tsx",
78
+ "dest": "{components}/form/form.tsx"
79
+ },
80
+ {
81
+ "src": "components/form/field.tsx",
82
+ "dest": "{components}/form/field.tsx"
83
+ },
84
+ {
85
+ "src": "components/form/steps.tsx",
86
+ "dest": "{components}/form/steps.tsx"
87
+ },
88
+ {
89
+ "src": "components/form/store.ts",
90
+ "dest": "{components}/form/store.ts"
91
+ },
92
+ {
93
+ "src": "components/form/use-sh-ui-form.ts",
94
+ "dest": "{components}/form/use-sh-ui-form.ts"
95
+ },
96
+ {
97
+ "src": "components/form/context.ts",
98
+ "dest": "{components}/form/context.ts"
99
+ },
100
+ {
101
+ "src": "components/form/validation.ts",
102
+ "dest": "{components}/form/validation.ts"
103
+ },
104
+ {
105
+ "src": "components/form/utils.ts",
106
+ "dest": "{components}/form/utils.ts"
107
+ },
108
+ {
109
+ "src": "components/form/types.ts",
110
+ "dest": "{components}/form/types.ts"
111
+ },
112
+ {
113
+ "src": "components/form/focus-first-error.ts",
114
+ "dest": "{components}/form/focus-first-error.ts"
115
+ },
116
+ {
117
+ "src": "components/form/styles.css",
118
+ "dest": "{components}/form/styles.css"
119
+ }
120
+ ],
121
+ "dependencies": [],
122
+ "registryDependencies": []
123
+ },
124
+ "form-yup": {
125
+ "name": "form-yup",
126
+ "type": "component",
127
+ "files": [
128
+ {
129
+ "src": "components/form-yup/index.tsx",
130
+ "dest": "{components}/form-yup/index.tsx"
131
+ }
132
+ ],
133
+ "dependencies": [],
134
+ "registryDependencies": [
135
+ "form"
136
+ ]
137
+ },
138
+ "code-panel": {
139
+ "name": "code-panel",
140
+ "type": "component",
141
+ "files": [
142
+ {
143
+ "src": "components/code-panel/index.tsx",
144
+ "dest": "{components}/code-panel/index.tsx"
145
+ },
146
+ {
147
+ "src": "components/code-panel/copy.tsx",
148
+ "dest": "{components}/code-panel/copy.tsx"
149
+ },
150
+ {
151
+ "src": "components/code-panel/styles.css",
152
+ "dest": "{components}/code-panel/styles.css"
153
+ }
154
+ ],
155
+ "dependencies": [
156
+ "shiki"
157
+ ],
158
+ "registryDependencies": []
159
+ },
160
+ "select": {
161
+ "name": "select",
162
+ "type": "component",
163
+ "files": [
164
+ {
165
+ "src": "components/select/index.tsx",
166
+ "dest": "{components}/select/index.tsx"
167
+ },
168
+ {
169
+ "src": "components/select/styles.css",
170
+ "dest": "{components}/select/styles.css"
171
+ }
172
+ ],
173
+ "dependencies": [
174
+ "@base-ui-components/react"
175
+ ],
176
+ "registryDependencies": []
177
+ },
178
+ "sidebar": {
179
+ "name": "sidebar",
180
+ "type": "component",
181
+ "files": [
182
+ {
183
+ "src": "components/sidebar/index.tsx",
184
+ "dest": "{components}/sidebar/index.tsx"
185
+ },
186
+ {
187
+ "src": "components/sidebar/styles.css",
188
+ "dest": "{components}/sidebar/styles.css"
189
+ }
190
+ ],
191
+ "dependencies": [
192
+ "lucide-react"
193
+ ],
194
+ "registryDependencies": [
195
+ "popover"
196
+ ]
197
+ },
198
+ "header": {
199
+ "name": "header",
200
+ "type": "component",
201
+ "files": [
202
+ {
203
+ "src": "components/header/index.tsx",
204
+ "dest": "{components}/header/index.tsx"
205
+ },
206
+ {
207
+ "src": "components/header/styles.css",
208
+ "dest": "{components}/header/styles.css"
209
+ }
210
+ ],
211
+ "dependencies": [],
212
+ "registryDependencies": []
213
+ },
214
+ "base": {
215
+ "name": "base",
216
+ "type": "utility",
217
+ "files": [
218
+ {
219
+ "src": "components/base/base.css",
220
+ "dest": "{styles}/base.css"
221
+ }
222
+ ],
223
+ "dependencies": [],
224
+ "registryDependencies": []
225
+ },
226
+ "breakpoints": {
227
+ "name": "breakpoints",
228
+ "type": "utility",
229
+ "files": [
230
+ {
231
+ "src": "components/breakpoints/breakpoints.css",
232
+ "dest": "{styles}/breakpoints.css"
233
+ }
234
+ ],
235
+ "dependencies": [],
236
+ "registryDependencies": []
237
+ },
238
+ "focus-ring": {
239
+ "name": "focus-ring",
240
+ "type": "utility",
241
+ "files": [
242
+ {
243
+ "src": "components/focus-ring/focus-ring.css",
244
+ "dest": "{styles}/focus-ring.css"
245
+ }
246
+ ],
247
+ "dependencies": [],
248
+ "registryDependencies": []
249
+ },
250
+ "z-index": {
251
+ "name": "z-index",
252
+ "type": "utility",
253
+ "files": [
254
+ {
255
+ "src": "components/z-index/z-index.css",
256
+ "dest": "{styles}/z-index.css"
257
+ }
258
+ ],
259
+ "dependencies": [],
260
+ "registryDependencies": []
261
+ },
262
+ "animations": {
263
+ "name": "animations",
264
+ "type": "utility",
265
+ "files": [
266
+ {
267
+ "src": "components/animations/animations.css",
268
+ "dest": "{styles}/animations.css"
269
+ }
270
+ ],
271
+ "dependencies": [],
272
+ "registryDependencies": []
273
+ },
274
+ "cn": {
275
+ "name": "cn",
276
+ "type": "lib",
277
+ "files": [
278
+ {
279
+ "src": "lib/cn.ts",
280
+ "dest": "{lib}/cn.ts"
281
+ }
282
+ ],
283
+ "dependencies": [],
284
+ "registryDependencies": []
285
+ },
286
+ "use-media-query": {
287
+ "name": "use-media-query",
288
+ "type": "hook",
289
+ "files": [
290
+ {
291
+ "src": "hooks/use-media-query.ts",
292
+ "dest": "{hooks}/use-media-query.ts"
293
+ }
294
+ ],
295
+ "dependencies": [],
296
+ "registryDependencies": []
297
+ },
298
+ "use-active-section": {
299
+ "name": "use-active-section",
300
+ "type": "hook",
301
+ "files": [
302
+ {
303
+ "src": "hooks/use-active-section.ts",
304
+ "dest": "{hooks}/use-active-section.ts"
305
+ }
306
+ ],
307
+ "dependencies": [],
308
+ "registryDependencies": []
309
+ },
310
+ "label": {
311
+ "name": "label",
312
+ "type": "component",
313
+ "files": [
314
+ {
315
+ "src": "components/label/index.tsx",
316
+ "dest": "{components}/label/index.tsx"
317
+ },
318
+ {
319
+ "src": "components/label/styles.css",
320
+ "dest": "{components}/label/styles.css"
321
+ }
322
+ ],
323
+ "dependencies": [],
324
+ "registryDependencies": []
325
+ },
326
+ "color-picker": {
327
+ "name": "color-picker",
328
+ "type": "component",
329
+ "files": [
330
+ {
331
+ "src": "components/color-picker/index.tsx",
332
+ "dest": "{components}/color-picker/index.tsx"
333
+ },
334
+ {
335
+ "src": "components/color-picker/styles.css",
336
+ "dest": "{components}/color-picker/styles.css"
337
+ }
338
+ ],
339
+ "dependencies": [],
340
+ "registryDependencies": []
341
+ },
342
+ "slider": {
343
+ "name": "slider",
344
+ "type": "component",
345
+ "files": [
346
+ {
347
+ "src": "components/slider/index.tsx",
348
+ "dest": "{components}/slider/index.tsx"
349
+ },
350
+ {
351
+ "src": "components/slider/styles.css",
352
+ "dest": "{components}/slider/styles.css"
353
+ }
354
+ ],
355
+ "dependencies": [],
356
+ "registryDependencies": []
357
+ },
358
+ "tabs": {
359
+ "name": "tabs",
360
+ "type": "component",
361
+ "files": [
362
+ {
363
+ "src": "components/tabs/index.tsx",
364
+ "dest": "{components}/tabs/index.tsx"
365
+ },
366
+ {
367
+ "src": "components/tabs/styles.css",
368
+ "dest": "{components}/tabs/styles.css"
369
+ }
370
+ ],
371
+ "dependencies": [
372
+ "@base-ui-components/react"
373
+ ],
374
+ "registryDependencies": []
375
+ },
376
+ "combobox": {
377
+ "name": "combobox",
378
+ "type": "component",
379
+ "files": [
380
+ {
381
+ "src": "components/combobox/index.tsx",
382
+ "dest": "{components}/combobox/index.tsx"
383
+ },
384
+ {
385
+ "src": "components/combobox/styles.css",
386
+ "dest": "{components}/combobox/styles.css"
387
+ }
388
+ ],
389
+ "dependencies": [
390
+ "@base-ui-components/react"
391
+ ],
392
+ "registryDependencies": []
393
+ },
394
+ "popover": {
395
+ "name": "popover",
396
+ "type": "component",
397
+ "files": [
398
+ {
399
+ "src": "components/popover/index.tsx",
400
+ "dest": "{components}/popover/index.tsx"
401
+ },
402
+ {
403
+ "src": "components/popover/styles.css",
404
+ "dest": "{components}/popover/styles.css"
405
+ }
406
+ ],
407
+ "dependencies": [
408
+ "@base-ui-components/react"
409
+ ],
410
+ "registryDependencies": []
411
+ },
412
+ "dialog": {
413
+ "name": "dialog",
414
+ "type": "component",
415
+ "files": [
416
+ {
417
+ "src": "components/dialog/index.tsx",
418
+ "dest": "{components}/dialog/index.tsx"
419
+ },
420
+ {
421
+ "src": "components/dialog/styles.css",
422
+ "dest": "{components}/dialog/styles.css"
423
+ }
424
+ ],
425
+ "dependencies": [
426
+ "@base-ui-components/react"
427
+ ],
428
+ "registryDependencies": []
429
+ },
430
+ "dropdown-menu": {
431
+ "name": "dropdown-menu",
432
+ "type": "component",
433
+ "files": [
434
+ {
435
+ "src": "components/dropdown-menu/index.tsx",
436
+ "dest": "{components}/dropdown-menu/index.tsx"
437
+ },
438
+ {
439
+ "src": "components/dropdown-menu/styles.css",
440
+ "dest": "{components}/dropdown-menu/styles.css"
441
+ }
442
+ ],
443
+ "dependencies": [
444
+ "@base-ui-components/react"
445
+ ],
446
+ "registryDependencies": []
447
+ },
448
+ "context-menu": {
449
+ "name": "context-menu",
450
+ "type": "component",
451
+ "files": [
452
+ {
453
+ "src": "components/context-menu/index.tsx",
454
+ "dest": "{components}/context-menu/index.tsx"
455
+ },
456
+ {
457
+ "src": "components/context-menu/styles.css",
458
+ "dest": "{components}/context-menu/styles.css"
459
+ }
460
+ ],
461
+ "dependencies": [
462
+ "@base-ui-components/react"
463
+ ],
464
+ "registryDependencies": []
465
+ },
466
+ "menubar": {
467
+ "name": "menubar",
468
+ "type": "component",
469
+ "files": [
470
+ {
471
+ "src": "components/menubar/index.tsx",
472
+ "dest": "{components}/menubar/index.tsx"
473
+ },
474
+ {
475
+ "src": "components/menubar/styles.css",
476
+ "dest": "{components}/menubar/styles.css"
477
+ }
478
+ ],
479
+ "dependencies": [
480
+ "@base-ui-components/react"
481
+ ],
482
+ "registryDependencies": [
483
+ "dropdown-menu"
484
+ ]
485
+ },
486
+ "tooltip": {
487
+ "name": "tooltip",
488
+ "type": "component",
489
+ "files": [
490
+ {
491
+ "src": "components/tooltip/index.tsx",
492
+ "dest": "{components}/tooltip/index.tsx"
493
+ },
494
+ {
495
+ "src": "components/tooltip/styles.css",
496
+ "dest": "{components}/tooltip/styles.css"
497
+ }
498
+ ],
499
+ "dependencies": [
500
+ "@base-ui-components/react"
501
+ ],
502
+ "registryDependencies": []
503
+ },
504
+ "breadcrumb": {
505
+ "name": "breadcrumb",
506
+ "type": "component",
507
+ "files": [
508
+ {
509
+ "src": "components/breadcrumb/index.tsx",
510
+ "dest": "{components}/breadcrumb/index.tsx"
511
+ },
512
+ {
513
+ "src": "components/breadcrumb/styles.css",
514
+ "dest": "{components}/breadcrumb/styles.css"
515
+ }
516
+ ],
517
+ "dependencies": [],
518
+ "registryDependencies": []
519
+ },
520
+ "pagination": {
521
+ "name": "pagination",
522
+ "type": "component",
523
+ "files": [
524
+ {
525
+ "src": "components/pagination/index.tsx",
526
+ "dest": "{components}/pagination/index.tsx"
527
+ },
528
+ {
529
+ "src": "components/pagination/styles.css",
530
+ "dest": "{components}/pagination/styles.css"
531
+ }
532
+ ],
533
+ "dependencies": [],
534
+ "registryDependencies": []
535
+ },
536
+ "avatar": {
537
+ "name": "avatar",
538
+ "type": "component",
539
+ "files": [
540
+ {
541
+ "src": "components/avatar/index.tsx",
542
+ "dest": "{components}/avatar/index.tsx"
543
+ },
544
+ {
545
+ "src": "components/avatar/styles.css",
546
+ "dest": "{components}/avatar/styles.css"
547
+ }
548
+ ],
549
+ "dependencies": [
550
+ "@base-ui-components/react"
551
+ ],
552
+ "registryDependencies": []
553
+ },
554
+ "badge": {
555
+ "name": "badge",
556
+ "type": "component",
557
+ "files": [
558
+ {
559
+ "src": "components/badge/index.tsx",
560
+ "dest": "{components}/badge/index.tsx"
561
+ },
562
+ {
563
+ "src": "components/badge/styles.css",
564
+ "dest": "{components}/badge/styles.css"
565
+ }
566
+ ],
567
+ "dependencies": [],
568
+ "registryDependencies": []
569
+ },
570
+ "progress": {
571
+ "name": "progress",
572
+ "type": "component",
573
+ "files": [
574
+ {
575
+ "src": "components/progress/index.tsx",
576
+ "dest": "{components}/progress/index.tsx"
577
+ },
578
+ {
579
+ "src": "components/progress/styles.css",
580
+ "dest": "{components}/progress/styles.css"
581
+ }
582
+ ],
583
+ "dependencies": [],
584
+ "registryDependencies": []
585
+ },
586
+ "spinner": {
587
+ "name": "spinner",
588
+ "type": "component",
589
+ "files": [
590
+ {
591
+ "src": "components/spinner/index.tsx",
592
+ "dest": "{components}/spinner/index.tsx"
593
+ },
594
+ {
595
+ "src": "components/spinner/styles.css",
596
+ "dest": "{components}/spinner/styles.css"
597
+ }
598
+ ],
599
+ "dependencies": [],
600
+ "registryDependencies": []
601
+ },
602
+ "separator": {
603
+ "name": "separator",
604
+ "type": "component",
605
+ "files": [
606
+ {
607
+ "src": "components/separator/index.tsx",
608
+ "dest": "{components}/separator/index.tsx"
609
+ },
610
+ {
611
+ "src": "components/separator/styles.css",
612
+ "dest": "{components}/separator/styles.css"
613
+ }
614
+ ],
615
+ "dependencies": [],
616
+ "registryDependencies": []
617
+ },
618
+ "theme": {
619
+ "name": "theme",
620
+ "type": "component",
621
+ "files": [
622
+ {
623
+ "src": "components/theme/index.tsx",
624
+ "dest": "{components}/theme/index.tsx"
625
+ }
626
+ ],
627
+ "dependencies": [],
628
+ "registryDependencies": []
629
+ },
630
+ "checkbox": {
631
+ "name": "checkbox",
632
+ "type": "component",
633
+ "files": [
634
+ {
635
+ "src": "components/checkbox/index.tsx",
636
+ "dest": "{components}/checkbox/index.tsx"
637
+ },
638
+ {
639
+ "src": "components/checkbox/styles.css",
640
+ "dest": "{components}/checkbox/styles.css"
641
+ }
642
+ ],
643
+ "dependencies": [
644
+ "@base-ui-components/react"
645
+ ],
646
+ "registryDependencies": []
647
+ },
648
+ "radio": {
649
+ "name": "radio",
650
+ "type": "component",
651
+ "files": [
652
+ {
653
+ "src": "components/radio/index.tsx",
654
+ "dest": "{components}/radio/index.tsx"
655
+ },
656
+ {
657
+ "src": "components/radio/styles.css",
658
+ "dest": "{components}/radio/styles.css"
659
+ }
660
+ ],
661
+ "dependencies": [
662
+ "@base-ui-components/react"
663
+ ],
664
+ "registryDependencies": []
665
+ },
666
+ "switch": {
667
+ "name": "switch",
668
+ "type": "component",
669
+ "files": [
670
+ {
671
+ "src": "components/switch/index.tsx",
672
+ "dest": "{components}/switch/index.tsx"
673
+ },
674
+ {
675
+ "src": "components/switch/styles.css",
676
+ "dest": "{components}/switch/styles.css"
677
+ }
678
+ ],
679
+ "dependencies": [
680
+ "@base-ui-components/react"
681
+ ],
682
+ "registryDependencies": []
683
+ },
684
+ "toggle": {
685
+ "name": "toggle",
686
+ "type": "component",
687
+ "files": [
688
+ {
689
+ "src": "components/toggle/index.tsx",
690
+ "dest": "{components}/toggle/index.tsx"
691
+ },
692
+ {
693
+ "src": "components/toggle/styles.css",
694
+ "dest": "{components}/toggle/styles.css"
695
+ }
696
+ ],
697
+ "dependencies": [
698
+ "@base-ui-components/react"
699
+ ],
700
+ "registryDependencies": []
701
+ },
702
+ "textarea": {
703
+ "name": "textarea",
704
+ "type": "component",
705
+ "files": [
706
+ {
707
+ "src": "components/textarea/index.tsx",
708
+ "dest": "{components}/textarea/index.tsx"
709
+ },
710
+ {
711
+ "src": "components/textarea/styles.css",
712
+ "dest": "{components}/textarea/styles.css"
713
+ }
714
+ ],
715
+ "dependencies": [],
716
+ "registryDependencies": []
717
+ },
718
+ "toast": {
719
+ "name": "toast",
720
+ "type": "component",
721
+ "files": [
722
+ {
723
+ "src": "components/toast/index.tsx",
724
+ "dest": "{components}/toast/index.tsx"
725
+ },
726
+ {
727
+ "src": "components/toast/styles.css",
728
+ "dest": "{components}/toast/styles.css"
729
+ }
730
+ ],
731
+ "dependencies": [],
732
+ "registryDependencies": []
733
+ },
734
+ "date-picker": {
735
+ "name": "date-picker",
736
+ "type": "component",
737
+ "files": [
738
+ {
739
+ "src": "components/date-picker/index.tsx",
740
+ "dest": "{components}/date-picker/index.tsx"
741
+ },
742
+ {
743
+ "src": "components/date-picker/styles.css",
744
+ "dest": "{components}/date-picker/styles.css"
745
+ }
746
+ ],
747
+ "dependencies": [
748
+ "@base-ui-components/react"
749
+ ],
750
+ "registryDependencies": []
751
+ },
752
+ "skeleton": {
753
+ "name": "skeleton",
754
+ "type": "component",
755
+ "files": [
756
+ {
757
+ "src": "components/skeleton/index.tsx",
758
+ "dest": "{components}/skeleton/index.tsx"
759
+ },
760
+ {
761
+ "src": "components/skeleton/styles.css",
762
+ "dest": "{components}/skeleton/styles.css"
763
+ }
764
+ ],
765
+ "dependencies": [],
766
+ "registryDependencies": []
767
+ },
768
+ "accordion": {
769
+ "name": "accordion",
770
+ "type": "component",
771
+ "files": [
772
+ {
773
+ "src": "components/accordion/index.tsx",
774
+ "dest": "{components}/accordion/index.tsx"
775
+ },
776
+ {
777
+ "src": "components/accordion/styles.css",
778
+ "dest": "{components}/accordion/styles.css"
779
+ }
780
+ ],
781
+ "dependencies": [
782
+ "@base-ui-components/react"
783
+ ],
784
+ "registryDependencies": []
785
+ },
786
+ "carousel": {
787
+ "name": "carousel",
788
+ "type": "component",
789
+ "files": [
790
+ {
791
+ "src": "components/carousel/index.tsx",
792
+ "dest": "{components}/carousel/index.tsx"
793
+ },
794
+ {
795
+ "src": "components/carousel/styles.css",
796
+ "dest": "{components}/carousel/styles.css"
797
+ }
798
+ ],
799
+ "dependencies": [],
800
+ "registryDependencies": []
801
+ },
802
+ "form-rhf": {
803
+ "name": "form-rhf",
804
+ "type": "component",
805
+ "files": [
806
+ {
807
+ "src": "components/form-rhf/index.tsx",
808
+ "dest": "{components}/form-rhf/index.tsx"
809
+ }
810
+ ],
811
+ "dependencies": [
812
+ "react-hook-form"
813
+ ],
814
+ "registryDependencies": [
815
+ "form"
816
+ ]
817
+ },
818
+ "form-tanstack": {
819
+ "name": "form-tanstack",
820
+ "type": "component",
821
+ "files": [
822
+ {
823
+ "src": "components/form-tanstack/index.tsx",
824
+ "dest": "{components}/form-tanstack/index.tsx"
825
+ }
826
+ ],
827
+ "dependencies": [
828
+ "@tanstack/react-form"
829
+ ],
830
+ "registryDependencies": [
831
+ "form"
832
+ ]
833
+ }
834
+ }
835
+ }