@c9up/nebula 0.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 (327) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +256 -0
  3. package/dist/adapters/css.d.ts +33 -0
  4. package/dist/adapters/css.js +67 -0
  5. package/dist/adapters/index.d.ts +16 -0
  6. package/dist/adapters/index.js +27 -0
  7. package/dist/adapters/tailwind.d.ts +25 -0
  8. package/dist/adapters/tailwind.js +122 -0
  9. package/dist/adapters/types.d.ts +49 -0
  10. package/dist/adapters/types.js +21 -0
  11. package/dist/adapters/unocss.d.ts +17 -0
  12. package/dist/adapters/unocss.js +107 -0
  13. package/dist/atoms/AspectRatio.d.ts +17 -0
  14. package/dist/atoms/AspectRatio.js +19 -0
  15. package/dist/atoms/Avatar.d.ts +23 -0
  16. package/dist/atoms/Avatar.js +46 -0
  17. package/dist/atoms/Badge.d.ts +25 -0
  18. package/dist/atoms/Badge.js +28 -0
  19. package/dist/atoms/Button.d.ts +58 -0
  20. package/dist/atoms/Button.js +67 -0
  21. package/dist/atoms/Checkbox.d.ts +41 -0
  22. package/dist/atoms/Checkbox.js +47 -0
  23. package/dist/atoms/Input.d.ts +36 -0
  24. package/dist/atoms/Input.js +50 -0
  25. package/dist/atoms/Kbd.d.ts +14 -0
  26. package/dist/atoms/Kbd.js +17 -0
  27. package/dist/atoms/Label.d.ts +24 -0
  28. package/dist/atoms/Label.js +26 -0
  29. package/dist/atoms/Marker.d.ts +42 -0
  30. package/dist/atoms/Marker.js +55 -0
  31. package/dist/atoms/NativeSelect.d.ts +43 -0
  32. package/dist/atoms/NativeSelect.js +81 -0
  33. package/dist/atoms/Progress.d.ts +21 -0
  34. package/dist/atoms/Progress.js +48 -0
  35. package/dist/atoms/ScrollArea.d.ts +28 -0
  36. package/dist/atoms/ScrollArea.js +37 -0
  37. package/dist/atoms/Separator.d.ts +16 -0
  38. package/dist/atoms/Separator.js +21 -0
  39. package/dist/atoms/Skeleton.d.ts +13 -0
  40. package/dist/atoms/Skeleton.js +18 -0
  41. package/dist/atoms/Slider.d.ts +30 -0
  42. package/dist/atoms/Slider.js +40 -0
  43. package/dist/atoms/Spinner.d.ts +17 -0
  44. package/dist/atoms/Spinner.js +20 -0
  45. package/dist/atoms/Switch.d.ts +24 -0
  46. package/dist/atoms/Switch.js +41 -0
  47. package/dist/atoms/Textarea.d.ts +28 -0
  48. package/dist/atoms/Textarea.js +36 -0
  49. package/dist/atoms/Toggle.d.ts +38 -0
  50. package/dist/atoms/Toggle.js +45 -0
  51. package/dist/atoms/index.d.ts +32 -0
  52. package/dist/atoms/index.js +32 -0
  53. package/dist/cli/add.d.ts +44 -0
  54. package/dist/cli/add.js +99 -0
  55. package/dist/cli/index.d.ts +10 -0
  56. package/dist/cli/index.js +10 -0
  57. package/dist/cli/registry.d.ts +31 -0
  58. package/dist/cli/registry.js +83 -0
  59. package/dist/config.d.ts +81 -0
  60. package/dist/config.js +43 -0
  61. package/dist/configure.d.ts +34 -0
  62. package/dist/configure.js +85 -0
  63. package/dist/index.d.ts +41 -0
  64. package/dist/index.js +41 -0
  65. package/dist/lib/children.d.ts +28 -0
  66. package/dist/lib/children.js +27 -0
  67. package/dist/lib/cn.d.ts +13 -0
  68. package/dist/lib/cn.js +13 -0
  69. package/dist/lib/cva.d.ts +83 -0
  70. package/dist/lib/cva.js +178 -0
  71. package/dist/lib/icons.d.ts +44 -0
  72. package/dist/lib/icons.js +79 -0
  73. package/dist/lib/id.d.ts +31 -0
  74. package/dist/lib/id.js +41 -0
  75. package/dist/lib/index.d.ts +12 -0
  76. package/dist/lib/index.js +12 -0
  77. package/dist/lib/motion.d.ts +31 -0
  78. package/dist/lib/motion.js +39 -0
  79. package/dist/lib/props.d.ts +48 -0
  80. package/dist/lib/props.js +59 -0
  81. package/dist/lib/styled.d.ts +31 -0
  82. package/dist/lib/styled.js +39 -0
  83. package/dist/molecules/Accordion.d.ts +35 -0
  84. package/dist/molecules/Accordion.js +117 -0
  85. package/dist/molecules/Alert.d.ts +30 -0
  86. package/dist/molecules/Alert.js +35 -0
  87. package/dist/molecules/Attachment.d.ts +39 -0
  88. package/dist/molecules/Attachment.js +103 -0
  89. package/dist/molecules/Breadcrumb.d.ts +29 -0
  90. package/dist/molecules/Breadcrumb.js +73 -0
  91. package/dist/molecules/Bubble.d.ts +56 -0
  92. package/dist/molecules/Bubble.js +92 -0
  93. package/dist/molecules/ButtonGroup.d.ts +23 -0
  94. package/dist/molecules/ButtonGroup.js +30 -0
  95. package/dist/molecules/Card.d.ts +17 -0
  96. package/dist/molecules/Card.js +17 -0
  97. package/dist/molecules/Collapsible.d.ts +40 -0
  98. package/dist/molecules/Collapsible.js +71 -0
  99. package/dist/molecules/Empty.d.ts +16 -0
  100. package/dist/molecules/Empty.js +16 -0
  101. package/dist/molecules/Field.d.ts +54 -0
  102. package/dist/molecules/Field.js +82 -0
  103. package/dist/molecules/InputGroup.d.ts +33 -0
  104. package/dist/molecules/InputGroup.js +35 -0
  105. package/dist/molecules/InputOTP.d.ts +33 -0
  106. package/dist/molecules/InputOTP.js +140 -0
  107. package/dist/molecules/Item.d.ts +41 -0
  108. package/dist/molecules/Item.js +48 -0
  109. package/dist/molecules/Message.d.ts +43 -0
  110. package/dist/molecules/Message.js +82 -0
  111. package/dist/molecules/Pagination.d.ts +41 -0
  112. package/dist/molecules/Pagination.js +144 -0
  113. package/dist/molecules/RadioGroup.d.ts +32 -0
  114. package/dist/molecules/RadioGroup.js +65 -0
  115. package/dist/molecules/Resizable.d.ts +37 -0
  116. package/dist/molecules/Resizable.js +136 -0
  117. package/dist/molecules/Table.d.ts +37 -0
  118. package/dist/molecules/Table.js +78 -0
  119. package/dist/molecules/Tabs.d.ts +37 -0
  120. package/dist/molecules/Tabs.js +109 -0
  121. package/dist/molecules/ToggleGroup.d.ts +37 -0
  122. package/dist/molecules/ToggleGroup.js +68 -0
  123. package/dist/molecules/Typography.d.ts +26 -0
  124. package/dist/molecules/Typography.js +67 -0
  125. package/dist/molecules/index.d.ts +37 -0
  126. package/dist/molecules/index.js +37 -0
  127. package/dist/organisms/AlertDialog.d.ts +40 -0
  128. package/dist/organisms/AlertDialog.js +104 -0
  129. package/dist/organisms/Calendar.d.ts +96 -0
  130. package/dist/organisms/Calendar.js +353 -0
  131. package/dist/organisms/Carousel.d.ts +29 -0
  132. package/dist/organisms/Carousel.js +128 -0
  133. package/dist/organisms/Chart.d.ts +55 -0
  134. package/dist/organisms/Chart.js +189 -0
  135. package/dist/organisms/Combobox.d.ts +41 -0
  136. package/dist/organisms/Combobox.js +102 -0
  137. package/dist/organisms/Command.d.ts +46 -0
  138. package/dist/organisms/Command.js +171 -0
  139. package/dist/organisms/CommandDialog.d.ts +42 -0
  140. package/dist/organisms/CommandDialog.js +116 -0
  141. package/dist/organisms/ContextMenu.d.ts +29 -0
  142. package/dist/organisms/ContextMenu.js +102 -0
  143. package/dist/organisms/DataTable.d.ts +50 -0
  144. package/dist/organisms/DataTable.js +257 -0
  145. package/dist/organisms/DatePicker.d.ts +34 -0
  146. package/dist/organisms/DatePicker.js +115 -0
  147. package/dist/organisms/DateRangePicker.d.ts +34 -0
  148. package/dist/organisms/DateRangePicker.js +122 -0
  149. package/dist/organisms/Dialog.d.ts +50 -0
  150. package/dist/organisms/Dialog.js +116 -0
  151. package/dist/organisms/Drawer.d.ts +40 -0
  152. package/dist/organisms/Drawer.js +131 -0
  153. package/dist/organisms/DropdownMenu.d.ts +30 -0
  154. package/dist/organisms/DropdownMenu.js +91 -0
  155. package/dist/organisms/Form.d.ts +114 -0
  156. package/dist/organisms/Form.js +151 -0
  157. package/dist/organisms/HoverCard.d.ts +30 -0
  158. package/dist/organisms/HoverCard.js +68 -0
  159. package/dist/organisms/Menubar.d.ts +28 -0
  160. package/dist/organisms/Menubar.js +147 -0
  161. package/dist/organisms/MessageScroller.d.ts +36 -0
  162. package/dist/organisms/MessageScroller.js +124 -0
  163. package/dist/organisms/NavigationMenu.d.ts +41 -0
  164. package/dist/organisms/NavigationMenu.js +139 -0
  165. package/dist/organisms/Popover.d.ts +33 -0
  166. package/dist/organisms/Popover.js +58 -0
  167. package/dist/organisms/Questionnaire.d.ts +74 -0
  168. package/dist/organisms/Questionnaire.js +235 -0
  169. package/dist/organisms/Select.d.ts +47 -0
  170. package/dist/organisms/Select.js +250 -0
  171. package/dist/organisms/Sheet.d.ts +34 -0
  172. package/dist/organisms/Sheet.js +107 -0
  173. package/dist/organisms/Sidebar.d.ts +100 -0
  174. package/dist/organisms/Sidebar.js +228 -0
  175. package/dist/organisms/Toaster.d.ts +67 -0
  176. package/dist/organisms/Toaster.js +189 -0
  177. package/dist/organisms/Tooltip.d.ts +39 -0
  178. package/dist/organisms/Tooltip.js +94 -0
  179. package/dist/organisms/index.d.ts +40 -0
  180. package/dist/organisms/index.js +40 -0
  181. package/dist/primitives/controllable.d.ts +38 -0
  182. package/dist/primitives/controllable.js +43 -0
  183. package/dist/primitives/dismissable.d.ts +53 -0
  184. package/dist/primitives/dismissable.js +158 -0
  185. package/dist/primitives/floating.d.ts +116 -0
  186. package/dist/primitives/floating.js +289 -0
  187. package/dist/primitives/floatingSurface.d.ts +56 -0
  188. package/dist/primitives/floatingSurface.js +142 -0
  189. package/dist/primitives/focusTrap.d.ts +47 -0
  190. package/dist/primitives/focusTrap.js +101 -0
  191. package/dist/primitives/focusable.d.ts +53 -0
  192. package/dist/primitives/focusable.js +109 -0
  193. package/dist/primitives/index.d.ts +27 -0
  194. package/dist/primitives/index.js +27 -0
  195. package/dist/primitives/menu.d.ts +102 -0
  196. package/dist/primitives/menu.js +356 -0
  197. package/dist/primitives/modalSurface.d.ts +54 -0
  198. package/dist/primitives/modalSurface.js +146 -0
  199. package/dist/primitives/portal.d.ts +34 -0
  200. package/dist/primitives/portal.js +42 -0
  201. package/dist/primitives/presence.d.ts +45 -0
  202. package/dist/primitives/presence.js +152 -0
  203. package/dist/primitives/rovingFocus.d.ts +47 -0
  204. package/dist/primitives/rovingFocus.js +176 -0
  205. package/dist/primitives/scrollLock.d.ts +21 -0
  206. package/dist/primitives/scrollLock.js +75 -0
  207. package/dist/primitives/typeahead.d.ts +39 -0
  208. package/dist/primitives/typeahead.js +123 -0
  209. package/dist/templates/AppShell.d.ts +30 -0
  210. package/dist/templates/AppShell.js +42 -0
  211. package/dist/templates/AuthLayout.d.ts +23 -0
  212. package/dist/templates/AuthLayout.js +42 -0
  213. package/dist/templates/SettingsLayout.d.ts +27 -0
  214. package/dist/templates/SettingsLayout.js +42 -0
  215. package/dist/templates/index.d.ts +16 -0
  216. package/dist/templates/index.js +16 -0
  217. package/nebula.css +2 -0
  218. package/package.json +92 -0
  219. package/registry.json +1107 -0
  220. package/src/adapters/css.ts +75 -0
  221. package/src/adapters/index.ts +40 -0
  222. package/src/adapters/tailwind.ts +134 -0
  223. package/src/adapters/types.ts +53 -0
  224. package/src/adapters/unocss.ts +116 -0
  225. package/src/atoms/AspectRatio.ts +28 -0
  226. package/src/atoms/Avatar.ts +67 -0
  227. package/src/atoms/Badge.ts +46 -0
  228. package/src/atoms/Button.ts +96 -0
  229. package/src/atoms/Checkbox.ts +76 -0
  230. package/src/atoms/Input.ts +76 -0
  231. package/src/atoms/Kbd.ts +28 -0
  232. package/src/atoms/Label.ts +38 -0
  233. package/src/atoms/Marker.ts +79 -0
  234. package/src/atoms/NativeSelect.ts +115 -0
  235. package/src/atoms/Progress.ts +64 -0
  236. package/src/atoms/ScrollArea.ts +53 -0
  237. package/src/atoms/Separator.ts +36 -0
  238. package/src/atoms/Skeleton.ts +24 -0
  239. package/src/atoms/Slider.ts +65 -0
  240. package/src/atoms/Spinner.ts +28 -0
  241. package/src/atoms/Switch.ts +56 -0
  242. package/src/atoms/Textarea.ts +58 -0
  243. package/src/atoms/Toggle.ts +67 -0
  244. package/src/atoms/index.ts +62 -0
  245. package/src/cli/add.ts +126 -0
  246. package/src/cli/index.ts +22 -0
  247. package/src/cli/registry.ts +116 -0
  248. package/src/config.ts +102 -0
  249. package/src/configure.ts +127 -0
  250. package/src/index.ts +53 -0
  251. package/src/lib/children.ts +43 -0
  252. package/src/lib/cn.ts +14 -0
  253. package/src/lib/cva.ts +249 -0
  254. package/src/lib/icons.ts +138 -0
  255. package/src/lib/id.ts +44 -0
  256. package/src/lib/index.ts +21 -0
  257. package/src/lib/motion.ts +48 -0
  258. package/src/lib/props.ts +83 -0
  259. package/src/lib/styled.ts +60 -0
  260. package/src/molecules/Accordion.ts +161 -0
  261. package/src/molecules/Alert.ts +58 -0
  262. package/src/molecules/Attachment.ts +132 -0
  263. package/src/molecules/Breadcrumb.ts +107 -0
  264. package/src/molecules/Bubble.ts +134 -0
  265. package/src/molecules/ButtonGroup.ts +55 -0
  266. package/src/molecules/Card.ts +42 -0
  267. package/src/molecules/Collapsible.ts +89 -0
  268. package/src/molecules/Empty.ts +43 -0
  269. package/src/molecules/Field.ts +131 -0
  270. package/src/molecules/InputGroup.ts +62 -0
  271. package/src/molecules/InputOTP.ts +166 -0
  272. package/src/molecules/Item.ts +89 -0
  273. package/src/molecules/Message.ts +127 -0
  274. package/src/molecules/Pagination.ts +197 -0
  275. package/src/molecules/RadioGroup.ts +104 -0
  276. package/src/molecules/Resizable.ts +166 -0
  277. package/src/molecules/Table.ts +118 -0
  278. package/src/molecules/Tabs.ts +148 -0
  279. package/src/molecules/ToggleGroup.ts +109 -0
  280. package/src/molecules/Typography.ts +94 -0
  281. package/src/molecules/index.ts +144 -0
  282. package/src/organisms/AlertDialog.ts +133 -0
  283. package/src/organisms/Calendar.ts +470 -0
  284. package/src/organisms/Carousel.ts +161 -0
  285. package/src/organisms/Chart.ts +257 -0
  286. package/src/organisms/Combobox.ts +140 -0
  287. package/src/organisms/Command.ts +211 -0
  288. package/src/organisms/CommandDialog.ts +149 -0
  289. package/src/organisms/ContextMenu.ts +125 -0
  290. package/src/organisms/DataTable.ts +328 -0
  291. package/src/organisms/DatePicker.ts +141 -0
  292. package/src/organisms/DateRangePicker.ts +149 -0
  293. package/src/organisms/Dialog.ts +162 -0
  294. package/src/organisms/Drawer.ts +167 -0
  295. package/src/organisms/DropdownMenu.ts +112 -0
  296. package/src/organisms/Form.ts +217 -0
  297. package/src/organisms/HoverCard.ts +92 -0
  298. package/src/organisms/Menubar.ts +167 -0
  299. package/src/organisms/MessageScroller.ts +145 -0
  300. package/src/organisms/NavigationMenu.ts +184 -0
  301. package/src/organisms/Popover.ts +84 -0
  302. package/src/organisms/Questionnaire.ts +322 -0
  303. package/src/organisms/Select.ts +286 -0
  304. package/src/organisms/Sheet.ts +144 -0
  305. package/src/organisms/Sidebar.ts +336 -0
  306. package/src/organisms/Toaster.ts +246 -0
  307. package/src/organisms/Tooltip.ts +124 -0
  308. package/src/organisms/index.ts +134 -0
  309. package/src/primitives/controllable.ts +64 -0
  310. package/src/primitives/dismissable.ts +195 -0
  311. package/src/primitives/floating.ts +453 -0
  312. package/src/primitives/floatingSurface.ts +209 -0
  313. package/src/primitives/focusTrap.ts +132 -0
  314. package/src/primitives/focusable.ts +108 -0
  315. package/src/primitives/index.ts +88 -0
  316. package/src/primitives/menu.ts +491 -0
  317. package/src/primitives/modalSurface.ts +199 -0
  318. package/src/primitives/portal.ts +61 -0
  319. package/src/primitives/presence.ts +185 -0
  320. package/src/primitives/rovingFocus.ts +212 -0
  321. package/src/primitives/scrollLock.ts +79 -0
  322. package/src/primitives/typeahead.ts +156 -0
  323. package/src/templates/AppShell.ts +56 -0
  324. package/src/templates/AuthLayout.ts +66 -0
  325. package/src/templates/SettingsLayout.ts +63 -0
  326. package/src/templates/index.ts +21 -0
  327. package/theme.css +151 -0
package/registry.json ADDED
@@ -0,0 +1,1107 @@
1
+ {
2
+ "$schema": "https://nebula.c9up.dev/registry.schema.json",
3
+ "name": "@c9up/nebula",
4
+ "homepage": "https://github.com/C9up/nebula",
5
+ "layout": "mirror",
6
+ "items": [
7
+ {
8
+ "name": "accordion",
9
+ "title": "Accordion",
10
+ "layer": "molecules",
11
+ "files": [
12
+ "lib/children.ts",
13
+ "lib/cn.ts",
14
+ "lib/icons.ts",
15
+ "lib/id.ts",
16
+ "lib/props.ts",
17
+ "molecules/Accordion.ts",
18
+ "primitives/focusable.ts",
19
+ "primitives/rovingFocus.ts"
20
+ ],
21
+ "dependencies": []
22
+ },
23
+ {
24
+ "name": "alert",
25
+ "title": "Alert",
26
+ "layer": "molecules",
27
+ "files": [
28
+ "lib/children.ts",
29
+ "lib/cn.ts",
30
+ "lib/cva.ts",
31
+ "lib/props.ts",
32
+ "lib/styled.ts",
33
+ "molecules/Alert.ts"
34
+ ],
35
+ "dependencies": []
36
+ },
37
+ {
38
+ "name": "alert-dialog",
39
+ "title": "AlertDialog",
40
+ "layer": "organisms",
41
+ "files": [
42
+ "lib/children.ts",
43
+ "lib/cn.ts",
44
+ "lib/id.ts",
45
+ "lib/motion.ts",
46
+ "lib/props.ts",
47
+ "organisms/AlertDialog.ts",
48
+ "primitives/controllable.ts",
49
+ "primitives/dismissable.ts",
50
+ "primitives/floating.ts",
51
+ "primitives/focusTrap.ts",
52
+ "primitives/focusable.ts",
53
+ "primitives/modalSurface.ts",
54
+ "primitives/portal.ts",
55
+ "primitives/presence.ts",
56
+ "primitives/scrollLock.ts"
57
+ ],
58
+ "dependencies": [
59
+ "button",
60
+ "dialog"
61
+ ]
62
+ },
63
+ {
64
+ "name": "app-shell",
65
+ "title": "AppShell",
66
+ "layer": "templates",
67
+ "files": [
68
+ "lib/children.ts",
69
+ "lib/cn.ts",
70
+ "lib/props.ts",
71
+ "templates/AppShell.ts"
72
+ ],
73
+ "dependencies": []
74
+ },
75
+ {
76
+ "name": "aspect-ratio",
77
+ "title": "AspectRatio",
78
+ "layer": "atoms",
79
+ "files": [
80
+ "atoms/AspectRatio.ts",
81
+ "lib/children.ts",
82
+ "lib/cn.ts",
83
+ "lib/props.ts"
84
+ ],
85
+ "dependencies": []
86
+ },
87
+ {
88
+ "name": "attachment",
89
+ "title": "Attachment",
90
+ "layer": "molecules",
91
+ "files": [
92
+ "lib/cn.ts",
93
+ "lib/icons.ts",
94
+ "lib/props.ts",
95
+ "molecules/Attachment.ts"
96
+ ],
97
+ "dependencies": []
98
+ },
99
+ {
100
+ "name": "auth-layout",
101
+ "title": "AuthLayout",
102
+ "layer": "templates",
103
+ "files": [
104
+ "lib/children.ts",
105
+ "lib/cn.ts",
106
+ "lib/props.ts",
107
+ "templates/AuthLayout.ts"
108
+ ],
109
+ "dependencies": []
110
+ },
111
+ {
112
+ "name": "avatar",
113
+ "title": "Avatar",
114
+ "layer": "atoms",
115
+ "files": [
116
+ "atoms/Avatar.ts",
117
+ "lib/children.ts",
118
+ "lib/cn.ts",
119
+ "lib/props.ts"
120
+ ],
121
+ "dependencies": []
122
+ },
123
+ {
124
+ "name": "badge",
125
+ "title": "Badge",
126
+ "layer": "atoms",
127
+ "files": [
128
+ "atoms/Badge.ts",
129
+ "lib/children.ts",
130
+ "lib/cn.ts",
131
+ "lib/cva.ts",
132
+ "lib/props.ts"
133
+ ],
134
+ "dependencies": []
135
+ },
136
+ {
137
+ "name": "breadcrumb",
138
+ "title": "Breadcrumb",
139
+ "layer": "molecules",
140
+ "files": [
141
+ "lib/children.ts",
142
+ "lib/cn.ts",
143
+ "lib/icons.ts",
144
+ "lib/props.ts",
145
+ "molecules/Breadcrumb.ts"
146
+ ],
147
+ "dependencies": []
148
+ },
149
+ {
150
+ "name": "bubble",
151
+ "title": "Bubble",
152
+ "layer": "molecules",
153
+ "files": [
154
+ "lib/children.ts",
155
+ "lib/cn.ts",
156
+ "lib/cva.ts",
157
+ "lib/props.ts",
158
+ "molecules/Bubble.ts"
159
+ ],
160
+ "dependencies": []
161
+ },
162
+ {
163
+ "name": "button",
164
+ "title": "Button",
165
+ "layer": "atoms",
166
+ "files": [
167
+ "atoms/Button.ts",
168
+ "lib/children.ts",
169
+ "lib/cn.ts",
170
+ "lib/cva.ts",
171
+ "lib/props.ts"
172
+ ],
173
+ "dependencies": []
174
+ },
175
+ {
176
+ "name": "button-group",
177
+ "title": "ButtonGroup",
178
+ "layer": "molecules",
179
+ "files": [
180
+ "lib/children.ts",
181
+ "lib/cn.ts",
182
+ "lib/props.ts",
183
+ "lib/styled.ts",
184
+ "molecules/ButtonGroup.ts"
185
+ ],
186
+ "dependencies": []
187
+ },
188
+ {
189
+ "name": "calendar",
190
+ "title": "Calendar",
191
+ "layer": "organisms",
192
+ "files": [
193
+ "lib/children.ts",
194
+ "lib/cn.ts",
195
+ "lib/icons.ts",
196
+ "lib/id.ts",
197
+ "lib/props.ts",
198
+ "organisms/Calendar.ts"
199
+ ],
200
+ "dependencies": [
201
+ "button"
202
+ ]
203
+ },
204
+ {
205
+ "name": "card",
206
+ "title": "Card",
207
+ "layer": "molecules",
208
+ "files": [
209
+ "lib/children.ts",
210
+ "lib/cn.ts",
211
+ "lib/props.ts",
212
+ "lib/styled.ts",
213
+ "molecules/Card.ts"
214
+ ],
215
+ "dependencies": []
216
+ },
217
+ {
218
+ "name": "carousel",
219
+ "title": "Carousel",
220
+ "layer": "organisms",
221
+ "files": [
222
+ "lib/children.ts",
223
+ "lib/cn.ts",
224
+ "lib/icons.ts",
225
+ "lib/id.ts",
226
+ "lib/props.ts",
227
+ "organisms/Carousel.ts"
228
+ ],
229
+ "dependencies": [
230
+ "button"
231
+ ]
232
+ },
233
+ {
234
+ "name": "chart",
235
+ "title": "Chart",
236
+ "layer": "organisms",
237
+ "files": [
238
+ "lib/cn.ts",
239
+ "lib/id.ts",
240
+ "lib/props.ts",
241
+ "organisms/Chart.ts"
242
+ ],
243
+ "dependencies": []
244
+ },
245
+ {
246
+ "name": "checkbox",
247
+ "title": "Checkbox",
248
+ "layer": "atoms",
249
+ "files": [
250
+ "atoms/Checkbox.ts",
251
+ "lib/cn.ts",
252
+ "lib/icons.ts",
253
+ "lib/props.ts"
254
+ ],
255
+ "dependencies": []
256
+ },
257
+ {
258
+ "name": "collapsible",
259
+ "title": "Collapsible",
260
+ "layer": "molecules",
261
+ "files": [
262
+ "lib/children.ts",
263
+ "lib/cn.ts",
264
+ "lib/id.ts",
265
+ "lib/props.ts",
266
+ "molecules/Collapsible.ts",
267
+ "primitives/controllable.ts"
268
+ ],
269
+ "dependencies": []
270
+ },
271
+ {
272
+ "name": "combobox",
273
+ "title": "Combobox",
274
+ "layer": "organisms",
275
+ "files": [
276
+ "lib/cn.ts",
277
+ "lib/icons.ts",
278
+ "lib/id.ts",
279
+ "lib/motion.ts",
280
+ "lib/props.ts",
281
+ "organisms/Combobox.ts",
282
+ "primitives/controllable.ts",
283
+ "primitives/dismissable.ts",
284
+ "primitives/floating.ts",
285
+ "primitives/floatingSurface.ts",
286
+ "primitives/focusTrap.ts",
287
+ "primitives/focusable.ts",
288
+ "primitives/portal.ts",
289
+ "primitives/presence.ts"
290
+ ],
291
+ "dependencies": [
292
+ "command",
293
+ "select"
294
+ ]
295
+ },
296
+ {
297
+ "name": "command",
298
+ "title": "Command",
299
+ "layer": "organisms",
300
+ "files": [
301
+ "lib/children.ts",
302
+ "lib/cn.ts",
303
+ "lib/icons.ts",
304
+ "lib/id.ts",
305
+ "lib/props.ts",
306
+ "organisms/Command.ts"
307
+ ],
308
+ "dependencies": []
309
+ },
310
+ {
311
+ "name": "command-dialog",
312
+ "title": "CommandDialog",
313
+ "layer": "organisms",
314
+ "files": [
315
+ "lib/children.ts",
316
+ "lib/cn.ts",
317
+ "lib/id.ts",
318
+ "lib/motion.ts",
319
+ "lib/props.ts",
320
+ "organisms/CommandDialog.ts",
321
+ "primitives/controllable.ts",
322
+ "primitives/dismissable.ts",
323
+ "primitives/floating.ts",
324
+ "primitives/focusTrap.ts",
325
+ "primitives/focusable.ts",
326
+ "primitives/modalSurface.ts",
327
+ "primitives/portal.ts",
328
+ "primitives/presence.ts",
329
+ "primitives/scrollLock.ts"
330
+ ],
331
+ "dependencies": [
332
+ "command",
333
+ "dialog"
334
+ ]
335
+ },
336
+ {
337
+ "name": "context-menu",
338
+ "title": "ContextMenu",
339
+ "layer": "organisms",
340
+ "files": [
341
+ "lib/children.ts",
342
+ "lib/cn.ts",
343
+ "lib/icons.ts",
344
+ "lib/id.ts",
345
+ "lib/motion.ts",
346
+ "lib/props.ts",
347
+ "organisms/ContextMenu.ts",
348
+ "primitives/dismissable.ts",
349
+ "primitives/floating.ts",
350
+ "primitives/floatingSurface.ts",
351
+ "primitives/focusTrap.ts",
352
+ "primitives/focusable.ts",
353
+ "primitives/menu.ts",
354
+ "primitives/portal.ts",
355
+ "primitives/presence.ts",
356
+ "primitives/rovingFocus.ts",
357
+ "primitives/typeahead.ts"
358
+ ],
359
+ "dependencies": []
360
+ },
361
+ {
362
+ "name": "data-table",
363
+ "title": "DataTable",
364
+ "layer": "organisms",
365
+ "files": [
366
+ "lib/children.ts",
367
+ "lib/cn.ts",
368
+ "lib/icons.ts",
369
+ "lib/props.ts",
370
+ "organisms/DataTable.ts"
371
+ ],
372
+ "dependencies": [
373
+ "checkbox",
374
+ "input",
375
+ "pagination",
376
+ "table"
377
+ ]
378
+ },
379
+ {
380
+ "name": "date-picker",
381
+ "title": "DatePicker",
382
+ "layer": "organisms",
383
+ "files": [
384
+ "lib/cn.ts",
385
+ "lib/icons.ts",
386
+ "lib/id.ts",
387
+ "lib/motion.ts",
388
+ "lib/props.ts",
389
+ "organisms/DatePicker.ts",
390
+ "primitives/controllable.ts",
391
+ "primitives/dismissable.ts",
392
+ "primitives/floating.ts",
393
+ "primitives/floatingSurface.ts",
394
+ "primitives/focusTrap.ts",
395
+ "primitives/focusable.ts",
396
+ "primitives/portal.ts",
397
+ "primitives/presence.ts"
398
+ ],
399
+ "dependencies": [
400
+ "button",
401
+ "calendar"
402
+ ]
403
+ },
404
+ {
405
+ "name": "date-range-picker",
406
+ "title": "DateRangePicker",
407
+ "layer": "organisms",
408
+ "files": [
409
+ "lib/cn.ts",
410
+ "lib/icons.ts",
411
+ "lib/id.ts",
412
+ "lib/motion.ts",
413
+ "lib/props.ts",
414
+ "organisms/DateRangePicker.ts",
415
+ "primitives/controllable.ts",
416
+ "primitives/dismissable.ts",
417
+ "primitives/floating.ts",
418
+ "primitives/floatingSurface.ts",
419
+ "primitives/focusTrap.ts",
420
+ "primitives/focusable.ts",
421
+ "primitives/portal.ts",
422
+ "primitives/presence.ts"
423
+ ],
424
+ "dependencies": [
425
+ "button",
426
+ "calendar",
427
+ "date-picker"
428
+ ]
429
+ },
430
+ {
431
+ "name": "dialog",
432
+ "title": "Dialog",
433
+ "layer": "organisms",
434
+ "files": [
435
+ "lib/children.ts",
436
+ "lib/cn.ts",
437
+ "lib/icons.ts",
438
+ "lib/id.ts",
439
+ "lib/motion.ts",
440
+ "lib/props.ts",
441
+ "organisms/Dialog.ts",
442
+ "primitives/controllable.ts",
443
+ "primitives/dismissable.ts",
444
+ "primitives/floating.ts",
445
+ "primitives/focusTrap.ts",
446
+ "primitives/focusable.ts",
447
+ "primitives/modalSurface.ts",
448
+ "primitives/portal.ts",
449
+ "primitives/presence.ts",
450
+ "primitives/scrollLock.ts"
451
+ ],
452
+ "dependencies": []
453
+ },
454
+ {
455
+ "name": "drawer",
456
+ "title": "Drawer",
457
+ "layer": "organisms",
458
+ "files": [
459
+ "lib/children.ts",
460
+ "lib/cn.ts",
461
+ "lib/id.ts",
462
+ "lib/motion.ts",
463
+ "lib/props.ts",
464
+ "organisms/Drawer.ts",
465
+ "primitives/controllable.ts",
466
+ "primitives/dismissable.ts",
467
+ "primitives/floating.ts",
468
+ "primitives/focusTrap.ts",
469
+ "primitives/focusable.ts",
470
+ "primitives/modalSurface.ts",
471
+ "primitives/portal.ts",
472
+ "primitives/presence.ts",
473
+ "primitives/scrollLock.ts"
474
+ ],
475
+ "dependencies": [
476
+ "dialog"
477
+ ]
478
+ },
479
+ {
480
+ "name": "dropdown-menu",
481
+ "title": "DropdownMenu",
482
+ "layer": "organisms",
483
+ "files": [
484
+ "lib/children.ts",
485
+ "lib/cn.ts",
486
+ "lib/icons.ts",
487
+ "lib/id.ts",
488
+ "lib/motion.ts",
489
+ "lib/props.ts",
490
+ "organisms/DropdownMenu.ts",
491
+ "primitives/controllable.ts",
492
+ "primitives/dismissable.ts",
493
+ "primitives/floating.ts",
494
+ "primitives/floatingSurface.ts",
495
+ "primitives/focusTrap.ts",
496
+ "primitives/focusable.ts",
497
+ "primitives/menu.ts",
498
+ "primitives/portal.ts",
499
+ "primitives/presence.ts",
500
+ "primitives/rovingFocus.ts",
501
+ "primitives/typeahead.ts"
502
+ ],
503
+ "dependencies": []
504
+ },
505
+ {
506
+ "name": "empty",
507
+ "title": "Empty",
508
+ "layer": "molecules",
509
+ "files": [
510
+ "lib/children.ts",
511
+ "lib/cn.ts",
512
+ "lib/props.ts",
513
+ "lib/styled.ts",
514
+ "molecules/Empty.ts"
515
+ ],
516
+ "dependencies": []
517
+ },
518
+ {
519
+ "name": "field",
520
+ "title": "Field",
521
+ "layer": "molecules",
522
+ "files": [
523
+ "lib/children.ts",
524
+ "lib/cn.ts",
525
+ "lib/id.ts",
526
+ "lib/props.ts",
527
+ "lib/styled.ts",
528
+ "molecules/Field.ts"
529
+ ],
530
+ "dependencies": [
531
+ "label"
532
+ ]
533
+ },
534
+ {
535
+ "name": "form",
536
+ "title": "Form",
537
+ "layer": "organisms",
538
+ "files": [
539
+ "lib/children.ts",
540
+ "lib/cn.ts",
541
+ "lib/props.ts",
542
+ "organisms/Form.ts"
543
+ ],
544
+ "dependencies": [
545
+ "button",
546
+ "field",
547
+ "input",
548
+ "spinner",
549
+ "textarea"
550
+ ]
551
+ },
552
+ {
553
+ "name": "hover-card",
554
+ "title": "HoverCard",
555
+ "layer": "organisms",
556
+ "files": [
557
+ "lib/children.ts",
558
+ "lib/cn.ts",
559
+ "lib/id.ts",
560
+ "lib/motion.ts",
561
+ "lib/props.ts",
562
+ "organisms/HoverCard.ts",
563
+ "primitives/dismissable.ts",
564
+ "primitives/floating.ts",
565
+ "primitives/floatingSurface.ts",
566
+ "primitives/focusTrap.ts",
567
+ "primitives/focusable.ts",
568
+ "primitives/portal.ts",
569
+ "primitives/presence.ts"
570
+ ],
571
+ "dependencies": []
572
+ },
573
+ {
574
+ "name": "input",
575
+ "title": "Input",
576
+ "layer": "atoms",
577
+ "files": [
578
+ "atoms/Input.ts",
579
+ "lib/cn.ts",
580
+ "lib/props.ts"
581
+ ],
582
+ "dependencies": []
583
+ },
584
+ {
585
+ "name": "input-group",
586
+ "title": "InputGroup",
587
+ "layer": "molecules",
588
+ "files": [
589
+ "lib/children.ts",
590
+ "lib/cn.ts",
591
+ "lib/props.ts",
592
+ "lib/styled.ts",
593
+ "molecules/InputGroup.ts"
594
+ ],
595
+ "dependencies": []
596
+ },
597
+ {
598
+ "name": "input-otp",
599
+ "title": "InputOTP",
600
+ "layer": "molecules",
601
+ "files": [
602
+ "lib/cn.ts",
603
+ "lib/id.ts",
604
+ "lib/props.ts",
605
+ "molecules/InputOTP.ts"
606
+ ],
607
+ "dependencies": []
608
+ },
609
+ {
610
+ "name": "item",
611
+ "title": "Item",
612
+ "layer": "molecules",
613
+ "files": [
614
+ "lib/children.ts",
615
+ "lib/cn.ts",
616
+ "lib/cva.ts",
617
+ "lib/props.ts",
618
+ "lib/styled.ts",
619
+ "molecules/Item.ts"
620
+ ],
621
+ "dependencies": []
622
+ },
623
+ {
624
+ "name": "kbd",
625
+ "title": "Kbd",
626
+ "layer": "atoms",
627
+ "files": [
628
+ "atoms/Kbd.ts",
629
+ "lib/children.ts",
630
+ "lib/cn.ts",
631
+ "lib/props.ts"
632
+ ],
633
+ "dependencies": []
634
+ },
635
+ {
636
+ "name": "label",
637
+ "title": "Label",
638
+ "layer": "atoms",
639
+ "files": [
640
+ "atoms/Label.ts",
641
+ "lib/children.ts",
642
+ "lib/cn.ts",
643
+ "lib/props.ts"
644
+ ],
645
+ "dependencies": []
646
+ },
647
+ {
648
+ "name": "marker",
649
+ "title": "Marker",
650
+ "layer": "atoms",
651
+ "files": [
652
+ "atoms/Marker.ts",
653
+ "lib/children.ts",
654
+ "lib/cn.ts",
655
+ "lib/cva.ts",
656
+ "lib/props.ts"
657
+ ],
658
+ "dependencies": []
659
+ },
660
+ {
661
+ "name": "menubar",
662
+ "title": "Menubar",
663
+ "layer": "organisms",
664
+ "files": [
665
+ "lib/children.ts",
666
+ "lib/cn.ts",
667
+ "lib/icons.ts",
668
+ "lib/id.ts",
669
+ "lib/motion.ts",
670
+ "lib/props.ts",
671
+ "organisms/Menubar.ts",
672
+ "primitives/dismissable.ts",
673
+ "primitives/floating.ts",
674
+ "primitives/floatingSurface.ts",
675
+ "primitives/focusTrap.ts",
676
+ "primitives/focusable.ts",
677
+ "primitives/menu.ts",
678
+ "primitives/portal.ts",
679
+ "primitives/presence.ts",
680
+ "primitives/rovingFocus.ts",
681
+ "primitives/typeahead.ts"
682
+ ],
683
+ "dependencies": []
684
+ },
685
+ {
686
+ "name": "message",
687
+ "title": "Message",
688
+ "layer": "molecules",
689
+ "files": [
690
+ "lib/children.ts",
691
+ "lib/cn.ts",
692
+ "lib/props.ts",
693
+ "molecules/Message.ts"
694
+ ],
695
+ "dependencies": [
696
+ "avatar",
697
+ "bubble"
698
+ ]
699
+ },
700
+ {
701
+ "name": "message-scroller",
702
+ "title": "MessageScroller",
703
+ "layer": "organisms",
704
+ "files": [
705
+ "lib/children.ts",
706
+ "lib/cn.ts",
707
+ "lib/icons.ts",
708
+ "lib/id.ts",
709
+ "lib/props.ts",
710
+ "organisms/MessageScroller.ts"
711
+ ],
712
+ "dependencies": [
713
+ "button"
714
+ ]
715
+ },
716
+ {
717
+ "name": "native-select",
718
+ "title": "NativeSelect",
719
+ "layer": "atoms",
720
+ "files": [
721
+ "atoms/NativeSelect.ts",
722
+ "lib/cn.ts",
723
+ "lib/props.ts"
724
+ ],
725
+ "dependencies": []
726
+ },
727
+ {
728
+ "name": "navigation-menu",
729
+ "title": "NavigationMenu",
730
+ "layer": "organisms",
731
+ "files": [
732
+ "lib/children.ts",
733
+ "lib/cn.ts",
734
+ "lib/icons.ts",
735
+ "lib/id.ts",
736
+ "lib/motion.ts",
737
+ "lib/props.ts",
738
+ "organisms/NavigationMenu.ts",
739
+ "primitives/dismissable.ts",
740
+ "primitives/floating.ts",
741
+ "primitives/floatingSurface.ts",
742
+ "primitives/focusTrap.ts",
743
+ "primitives/focusable.ts",
744
+ "primitives/portal.ts",
745
+ "primitives/presence.ts"
746
+ ],
747
+ "dependencies": []
748
+ },
749
+ {
750
+ "name": "pagination",
751
+ "title": "Pagination",
752
+ "layer": "molecules",
753
+ "files": [
754
+ "lib/children.ts",
755
+ "lib/cn.ts",
756
+ "lib/icons.ts",
757
+ "lib/props.ts",
758
+ "molecules/Pagination.ts"
759
+ ],
760
+ "dependencies": [
761
+ "button"
762
+ ]
763
+ },
764
+ {
765
+ "name": "popover",
766
+ "title": "Popover",
767
+ "layer": "organisms",
768
+ "files": [
769
+ "lib/children.ts",
770
+ "lib/cn.ts",
771
+ "lib/id.ts",
772
+ "lib/motion.ts",
773
+ "lib/props.ts",
774
+ "organisms/Popover.ts",
775
+ "primitives/controllable.ts",
776
+ "primitives/dismissable.ts",
777
+ "primitives/floating.ts",
778
+ "primitives/floatingSurface.ts",
779
+ "primitives/focusTrap.ts",
780
+ "primitives/focusable.ts",
781
+ "primitives/portal.ts",
782
+ "primitives/presence.ts"
783
+ ],
784
+ "dependencies": []
785
+ },
786
+ {
787
+ "name": "progress",
788
+ "title": "Progress",
789
+ "layer": "atoms",
790
+ "files": [
791
+ "atoms/Progress.ts",
792
+ "lib/cn.ts",
793
+ "lib/props.ts"
794
+ ],
795
+ "dependencies": []
796
+ },
797
+ {
798
+ "name": "questionnaire",
799
+ "title": "Questionnaire",
800
+ "layer": "organisms",
801
+ "files": [
802
+ "lib/children.ts",
803
+ "lib/cn.ts",
804
+ "lib/id.ts",
805
+ "lib/props.ts",
806
+ "organisms/Questionnaire.ts"
807
+ ],
808
+ "dependencies": [
809
+ "button",
810
+ "checkbox",
811
+ "input",
812
+ "progress",
813
+ "radio-group",
814
+ "textarea"
815
+ ]
816
+ },
817
+ {
818
+ "name": "radio-group",
819
+ "title": "RadioGroup",
820
+ "layer": "molecules",
821
+ "files": [
822
+ "lib/children.ts",
823
+ "lib/cn.ts",
824
+ "lib/id.ts",
825
+ "lib/props.ts",
826
+ "molecules/RadioGroup.ts"
827
+ ],
828
+ "dependencies": []
829
+ },
830
+ {
831
+ "name": "resizable",
832
+ "title": "Resizable",
833
+ "layer": "molecules",
834
+ "files": [
835
+ "lib/children.ts",
836
+ "lib/cn.ts",
837
+ "lib/icons.ts",
838
+ "lib/id.ts",
839
+ "lib/props.ts",
840
+ "molecules/Resizable.ts"
841
+ ],
842
+ "dependencies": []
843
+ },
844
+ {
845
+ "name": "scroll-area",
846
+ "title": "ScrollArea",
847
+ "layer": "atoms",
848
+ "files": [
849
+ "atoms/ScrollArea.ts",
850
+ "lib/children.ts",
851
+ "lib/cn.ts",
852
+ "lib/props.ts"
853
+ ],
854
+ "dependencies": []
855
+ },
856
+ {
857
+ "name": "select",
858
+ "title": "Select",
859
+ "layer": "organisms",
860
+ "files": [
861
+ "lib/children.ts",
862
+ "lib/cn.ts",
863
+ "lib/icons.ts",
864
+ "lib/id.ts",
865
+ "lib/motion.ts",
866
+ "lib/props.ts",
867
+ "organisms/Select.ts",
868
+ "primitives/controllable.ts",
869
+ "primitives/dismissable.ts",
870
+ "primitives/floating.ts",
871
+ "primitives/floatingSurface.ts",
872
+ "primitives/focusTrap.ts",
873
+ "primitives/focusable.ts",
874
+ "primitives/portal.ts",
875
+ "primitives/presence.ts"
876
+ ],
877
+ "dependencies": []
878
+ },
879
+ {
880
+ "name": "separator",
881
+ "title": "Separator",
882
+ "layer": "atoms",
883
+ "files": [
884
+ "atoms/Separator.ts",
885
+ "lib/cn.ts",
886
+ "lib/props.ts"
887
+ ],
888
+ "dependencies": []
889
+ },
890
+ {
891
+ "name": "settings-layout",
892
+ "title": "SettingsLayout",
893
+ "layer": "templates",
894
+ "files": [
895
+ "lib/children.ts",
896
+ "lib/cn.ts",
897
+ "lib/props.ts",
898
+ "templates/SettingsLayout.ts"
899
+ ],
900
+ "dependencies": []
901
+ },
902
+ {
903
+ "name": "sheet",
904
+ "title": "Sheet",
905
+ "layer": "organisms",
906
+ "files": [
907
+ "lib/children.ts",
908
+ "lib/cn.ts",
909
+ "lib/icons.ts",
910
+ "lib/id.ts",
911
+ "lib/motion.ts",
912
+ "lib/props.ts",
913
+ "organisms/Sheet.ts",
914
+ "primitives/controllable.ts",
915
+ "primitives/dismissable.ts",
916
+ "primitives/floating.ts",
917
+ "primitives/focusTrap.ts",
918
+ "primitives/focusable.ts",
919
+ "primitives/modalSurface.ts",
920
+ "primitives/portal.ts",
921
+ "primitives/presence.ts",
922
+ "primitives/scrollLock.ts"
923
+ ],
924
+ "dependencies": [
925
+ "dialog"
926
+ ]
927
+ },
928
+ {
929
+ "name": "sidebar",
930
+ "title": "Sidebar",
931
+ "layer": "organisms",
932
+ "files": [
933
+ "lib/children.ts",
934
+ "lib/cn.ts",
935
+ "lib/icons.ts",
936
+ "lib/props.ts",
937
+ "lib/styled.ts",
938
+ "organisms/Sidebar.ts"
939
+ ],
940
+ "dependencies": [
941
+ "button",
942
+ "sheet",
943
+ "tooltip"
944
+ ]
945
+ },
946
+ {
947
+ "name": "skeleton",
948
+ "title": "Skeleton",
949
+ "layer": "atoms",
950
+ "files": [
951
+ "atoms/Skeleton.ts",
952
+ "lib/cn.ts",
953
+ "lib/props.ts"
954
+ ],
955
+ "dependencies": []
956
+ },
957
+ {
958
+ "name": "slider",
959
+ "title": "Slider",
960
+ "layer": "atoms",
961
+ "files": [
962
+ "atoms/Slider.ts",
963
+ "lib/cn.ts",
964
+ "lib/props.ts"
965
+ ],
966
+ "dependencies": []
967
+ },
968
+ {
969
+ "name": "spinner",
970
+ "title": "Spinner",
971
+ "layer": "atoms",
972
+ "files": [
973
+ "atoms/Spinner.ts",
974
+ "lib/cn.ts",
975
+ "lib/icons.ts",
976
+ "lib/props.ts"
977
+ ],
978
+ "dependencies": []
979
+ },
980
+ {
981
+ "name": "switch",
982
+ "title": "Switch",
983
+ "layer": "atoms",
984
+ "files": [
985
+ "atoms/Switch.ts",
986
+ "lib/cn.ts",
987
+ "lib/props.ts"
988
+ ],
989
+ "dependencies": []
990
+ },
991
+ {
992
+ "name": "table",
993
+ "title": "Table",
994
+ "layer": "molecules",
995
+ "files": [
996
+ "lib/children.ts",
997
+ "lib/cn.ts",
998
+ "lib/props.ts",
999
+ "lib/styled.ts",
1000
+ "molecules/Table.ts"
1001
+ ],
1002
+ "dependencies": []
1003
+ },
1004
+ {
1005
+ "name": "tabs",
1006
+ "title": "Tabs",
1007
+ "layer": "molecules",
1008
+ "files": [
1009
+ "lib/children.ts",
1010
+ "lib/cn.ts",
1011
+ "lib/id.ts",
1012
+ "lib/props.ts",
1013
+ "molecules/Tabs.ts",
1014
+ "primitives/focusable.ts",
1015
+ "primitives/rovingFocus.ts"
1016
+ ],
1017
+ "dependencies": []
1018
+ },
1019
+ {
1020
+ "name": "textarea",
1021
+ "title": "Textarea",
1022
+ "layer": "atoms",
1023
+ "files": [
1024
+ "atoms/Textarea.ts",
1025
+ "lib/cn.ts",
1026
+ "lib/props.ts"
1027
+ ],
1028
+ "dependencies": []
1029
+ },
1030
+ {
1031
+ "name": "toaster",
1032
+ "title": "Toaster",
1033
+ "layer": "organisms",
1034
+ "files": [
1035
+ "lib/children.ts",
1036
+ "lib/cn.ts",
1037
+ "lib/icons.ts",
1038
+ "lib/motion.ts",
1039
+ "lib/props.ts",
1040
+ "organisms/Toaster.ts",
1041
+ "primitives/floating.ts"
1042
+ ],
1043
+ "dependencies": []
1044
+ },
1045
+ {
1046
+ "name": "toggle",
1047
+ "title": "Toggle",
1048
+ "layer": "atoms",
1049
+ "files": [
1050
+ "atoms/Toggle.ts",
1051
+ "lib/children.ts",
1052
+ "lib/cn.ts",
1053
+ "lib/cva.ts",
1054
+ "lib/props.ts"
1055
+ ],
1056
+ "dependencies": []
1057
+ },
1058
+ {
1059
+ "name": "toggle-group",
1060
+ "title": "ToggleGroup",
1061
+ "layer": "molecules",
1062
+ "files": [
1063
+ "lib/children.ts",
1064
+ "lib/cn.ts",
1065
+ "lib/props.ts",
1066
+ "molecules/ToggleGroup.ts"
1067
+ ],
1068
+ "dependencies": [
1069
+ "toggle"
1070
+ ]
1071
+ },
1072
+ {
1073
+ "name": "tooltip",
1074
+ "title": "Tooltip",
1075
+ "layer": "organisms",
1076
+ "files": [
1077
+ "lib/children.ts",
1078
+ "lib/cn.ts",
1079
+ "lib/id.ts",
1080
+ "lib/motion.ts",
1081
+ "lib/props.ts",
1082
+ "organisms/Tooltip.ts",
1083
+ "primitives/dismissable.ts",
1084
+ "primitives/floating.ts",
1085
+ "primitives/floatingSurface.ts",
1086
+ "primitives/focusTrap.ts",
1087
+ "primitives/focusable.ts",
1088
+ "primitives/portal.ts",
1089
+ "primitives/presence.ts"
1090
+ ],
1091
+ "dependencies": []
1092
+ },
1093
+ {
1094
+ "name": "typography",
1095
+ "title": "Typography",
1096
+ "layer": "molecules",
1097
+ "files": [
1098
+ "lib/children.ts",
1099
+ "lib/cn.ts",
1100
+ "lib/props.ts",
1101
+ "lib/styled.ts",
1102
+ "molecules/Typography.ts"
1103
+ ],
1104
+ "dependencies": []
1105
+ }
1106
+ ]
1107
+ }