@moduix/solid-tailwind 1.0.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 (560) hide show
  1. package/LICENSE.md +9 -0
  2. package/README.md +130 -0
  3. package/THIRD_PARTY_NOTICES.md +49 -0
  4. package/dist/components/accordion/Accordion.d.ts +22 -0
  5. package/dist/components/accordion/Accordion.js +103 -0
  6. package/dist/components/accordion/Accordion.jsx +63 -0
  7. package/dist/components/accordion/index.d.ts +1 -0
  8. package/dist/components/accordion/index.js +1 -0
  9. package/dist/components/accordion/index.jsx +1 -0
  10. package/dist/components/alert/Alert.d.ts +20 -0
  11. package/dist/components/alert/Alert.js +116 -0
  12. package/dist/components/alert/Alert.jsx +66 -0
  13. package/dist/components/alert/index.d.ts +1 -0
  14. package/dist/components/alert/index.js +1 -0
  15. package/dist/components/alert/index.jsx +1 -0
  16. package/dist/components/angle-slider/AngleSlider.d.ts +37 -0
  17. package/dist/components/angle-slider/AngleSlider.js +165 -0
  18. package/dist/components/angle-slider/AngleSlider.jsx +97 -0
  19. package/dist/components/angle-slider/index.d.ts +1 -0
  20. package/dist/components/angle-slider/index.js +1 -0
  21. package/dist/components/angle-slider/index.jsx +1 -0
  22. package/dist/components/aspect-ratio/AspectRatio.d.ts +13 -0
  23. package/dist/components/aspect-ratio/AspectRatio.js +43 -0
  24. package/dist/components/aspect-ratio/AspectRatio.jsx +28 -0
  25. package/dist/components/aspect-ratio/index.d.ts +1 -0
  26. package/dist/components/aspect-ratio/index.js +1 -0
  27. package/dist/components/aspect-ratio/index.jsx +1 -0
  28. package/dist/components/avatar/Avatar.d.ts +21 -0
  29. package/dist/components/avatar/Avatar.js +88 -0
  30. package/dist/components/avatar/Avatar.jsx +59 -0
  31. package/dist/components/avatar/index.d.ts +1 -0
  32. package/dist/components/avatar/index.js +1 -0
  33. package/dist/components/avatar/index.jsx +1 -0
  34. package/dist/components/badge/Badge.d.ts +14 -0
  35. package/dist/components/badge/Badge.js +72 -0
  36. package/dist/components/badge/Badge.jsx +46 -0
  37. package/dist/components/badge/index.d.ts +1 -0
  38. package/dist/components/badge/index.js +1 -0
  39. package/dist/components/badge/index.jsx +1 -0
  40. package/dist/components/bleed/Bleed.d.ts +17 -0
  41. package/dist/components/bleed/Bleed.js +68 -0
  42. package/dist/components/bleed/Bleed.jsx +50 -0
  43. package/dist/components/bleed/index.d.ts +1 -0
  44. package/dist/components/bleed/index.js +1 -0
  45. package/dist/components/bleed/index.jsx +1 -0
  46. package/dist/components/breadcrumbs/Breadcrumbs.d.ts +30 -0
  47. package/dist/components/breadcrumbs/Breadcrumbs.js +158 -0
  48. package/dist/components/breadcrumbs/Breadcrumbs.jsx +88 -0
  49. package/dist/components/breadcrumbs/index.d.ts +1 -0
  50. package/dist/components/breadcrumbs/index.js +1 -0
  51. package/dist/components/breadcrumbs/index.jsx +1 -0
  52. package/dist/components/button/Button.d.ts +16 -0
  53. package/dist/components/button/Button.js +124 -0
  54. package/dist/components/button/Button.jsx +75 -0
  55. package/dist/components/button/index.d.ts +1 -0
  56. package/dist/components/button/index.js +1 -0
  57. package/dist/components/button/index.jsx +1 -0
  58. package/dist/components/card/Card.d.ts +28 -0
  59. package/dist/components/card/Card.js +210 -0
  60. package/dist/components/card/Card.jsx +103 -0
  61. package/dist/components/card/index.d.ts +1 -0
  62. package/dist/components/card/index.js +1 -0
  63. package/dist/components/card/index.jsx +1 -0
  64. package/dist/components/carousel/Carousel.d.ts +35 -0
  65. package/dist/components/carousel/Carousel.js +218 -0
  66. package/dist/components/carousel/Carousel.jsx +121 -0
  67. package/dist/components/carousel/index.d.ts +1 -0
  68. package/dist/components/carousel/index.js +1 -0
  69. package/dist/components/carousel/index.jsx +1 -0
  70. package/dist/components/chart/Chart.d.ts +34 -0
  71. package/dist/components/chart/Chart.js +450 -0
  72. package/dist/components/chart/Chart.jsx +265 -0
  73. package/dist/components/chart/index.d.ts +1 -0
  74. package/dist/components/chart/index.js +1 -0
  75. package/dist/components/chart/index.jsx +1 -0
  76. package/dist/components/checkbox/Checkbox.d.ts +26 -0
  77. package/dist/components/checkbox/Checkbox.js +139 -0
  78. package/dist/components/checkbox/Checkbox.jsx +76 -0
  79. package/dist/components/checkbox/index.d.ts +1 -0
  80. package/dist/components/checkbox/index.js +1 -0
  81. package/dist/components/checkbox/index.jsx +1 -0
  82. package/dist/components/clipboard/Clipboard.d.ts +26 -0
  83. package/dist/components/clipboard/Clipboard.js +143 -0
  84. package/dist/components/clipboard/Clipboard.jsx +85 -0
  85. package/dist/components/clipboard/index.d.ts +1 -0
  86. package/dist/components/clipboard/index.js +1 -0
  87. package/dist/components/clipboard/index.jsx +1 -0
  88. package/dist/components/close-button/CloseButton.d.ts +14 -0
  89. package/dist/components/close-button/CloseButton.js +89 -0
  90. package/dist/components/close-button/CloseButton.jsx +48 -0
  91. package/dist/components/close-button/index.d.ts +1 -0
  92. package/dist/components/close-button/index.js +1 -0
  93. package/dist/components/close-button/index.jsx +1 -0
  94. package/dist/components/collapsible/Collapsible.d.ts +19 -0
  95. package/dist/components/collapsible/Collapsible.js +92 -0
  96. package/dist/components/collapsible/Collapsible.jsx +56 -0
  97. package/dist/components/collapsible/index.d.ts +1 -0
  98. package/dist/components/collapsible/index.js +1 -0
  99. package/dist/components/collapsible/index.jsx +1 -0
  100. package/dist/components/color-picker/ColorPicker.d.ts +66 -0
  101. package/dist/components/color-picker/ColorPicker.js +514 -0
  102. package/dist/components/color-picker/ColorPicker.jsx +276 -0
  103. package/dist/components/color-picker/index.d.ts +1 -0
  104. package/dist/components/color-picker/index.js +1 -0
  105. package/dist/components/color-picker/index.jsx +1 -0
  106. package/dist/components/combobox/Combobox.d.ts +50 -0
  107. package/dist/components/combobox/Combobox.js +353 -0
  108. package/dist/components/combobox/Combobox.jsx +187 -0
  109. package/dist/components/combobox/index.d.ts +1 -0
  110. package/dist/components/combobox/index.js +1 -0
  111. package/dist/components/combobox/index.jsx +1 -0
  112. package/dist/components/command-palette/CommandPalette.d.ts +72 -0
  113. package/dist/components/command-palette/CommandPalette.js +575 -0
  114. package/dist/components/command-palette/CommandPalette.jsx +324 -0
  115. package/dist/components/command-palette/index.d.ts +1 -0
  116. package/dist/components/command-palette/index.js +1 -0
  117. package/dist/components/command-palette/index.jsx +1 -0
  118. package/dist/components/container/Container.d.ts +17 -0
  119. package/dist/components/container/Container.js +140 -0
  120. package/dist/components/container/Container.jsx +126 -0
  121. package/dist/components/container/index.d.ts +1 -0
  122. package/dist/components/container/index.js +1 -0
  123. package/dist/components/container/index.jsx +1 -0
  124. package/dist/components/date-input/DateInput.d.ts +25 -0
  125. package/dist/components/date-input/DateInput.js +136 -0
  126. package/dist/components/date-input/DateInput.jsx +76 -0
  127. package/dist/components/date-input/index.d.ts +1 -0
  128. package/dist/components/date-input/index.js +1 -0
  129. package/dist/components/date-input/index.jsx +1 -0
  130. package/dist/components/date-picker/DatePicker.d.ts +98 -0
  131. package/dist/components/date-picker/DatePicker.js +701 -0
  132. package/dist/components/date-picker/DatePicker.jsx +359 -0
  133. package/dist/components/date-picker/index.d.ts +2 -0
  134. package/dist/components/date-picker/index.js +1 -0
  135. package/dist/components/date-picker/index.jsx +1 -0
  136. package/dist/components/dialog/Dialog.d.ts +38 -0
  137. package/dist/components/dialog/Dialog.js +239 -0
  138. package/dist/components/dialog/Dialog.jsx +130 -0
  139. package/dist/components/dialog/index.d.ts +2 -0
  140. package/dist/components/dialog/index.js +1 -0
  141. package/dist/components/dialog/index.jsx +1 -0
  142. package/dist/components/drawer/Drawer.d.ts +54 -0
  143. package/dist/components/drawer/Drawer.js +333 -0
  144. package/dist/components/drawer/Drawer.jsx +179 -0
  145. package/dist/components/drawer/index.d.ts +1 -0
  146. package/dist/components/drawer/index.js +1 -0
  147. package/dist/components/drawer/index.jsx +1 -0
  148. package/dist/components/editable/Editable.d.ts +29 -0
  149. package/dist/components/editable/Editable.js +181 -0
  150. package/dist/components/editable/Editable.jsx +105 -0
  151. package/dist/components/editable/index.d.ts +1 -0
  152. package/dist/components/editable/index.js +1 -0
  153. package/dist/components/editable/index.jsx +1 -0
  154. package/dist/components/empty/Empty.d.ts +16 -0
  155. package/dist/components/empty/Empty.js +121 -0
  156. package/dist/components/empty/Empty.jsx +54 -0
  157. package/dist/components/empty/index.d.ts +1 -0
  158. package/dist/components/empty/index.js +1 -0
  159. package/dist/components/empty/index.jsx +1 -0
  160. package/dist/components/field/Field.d.ts +37 -0
  161. package/dist/components/field/Field.js +236 -0
  162. package/dist/components/field/Field.jsx +134 -0
  163. package/dist/components/field/index.d.ts +1 -0
  164. package/dist/components/field/index.js +1 -0
  165. package/dist/components/field/index.jsx +1 -0
  166. package/dist/components/fieldset/Fieldset.d.ts +16 -0
  167. package/dist/components/fieldset/Fieldset.js +93 -0
  168. package/dist/components/fieldset/Fieldset.jsx +47 -0
  169. package/dist/components/fieldset/index.d.ts +1 -0
  170. package/dist/components/fieldset/index.js +1 -0
  171. package/dist/components/fieldset/index.jsx +1 -0
  172. package/dist/components/file-upload/FileUpload.d.ts +44 -0
  173. package/dist/components/file-upload/FileUpload.js +325 -0
  174. package/dist/components/file-upload/FileUpload.jsx +178 -0
  175. package/dist/components/file-upload/index.d.ts +1 -0
  176. package/dist/components/file-upload/index.js +1 -0
  177. package/dist/components/file-upload/index.jsx +1 -0
  178. package/dist/components/floating-panel/FloatingPanel.d.ts +53 -0
  179. package/dist/components/floating-panel/FloatingPanel.js +338 -0
  180. package/dist/components/floating-panel/FloatingPanel.jsx +186 -0
  181. package/dist/components/floating-panel/index.d.ts +2 -0
  182. package/dist/components/floating-panel/index.js +1 -0
  183. package/dist/components/floating-panel/index.jsx +1 -0
  184. package/dist/components/heading/Heading.d.ts +20 -0
  185. package/dist/components/heading/Heading.js +82 -0
  186. package/dist/components/heading/Heading.jsx +62 -0
  187. package/dist/components/heading/index.d.ts +1 -0
  188. package/dist/components/heading/index.js +1 -0
  189. package/dist/components/heading/index.jsx +1 -0
  190. package/dist/components/highlight/Highlight.d.ts +12 -0
  191. package/dist/components/highlight/Highlight.js +24 -0
  192. package/dist/components/highlight/Highlight.jsx +16 -0
  193. package/dist/components/highlight/index.d.ts +1 -0
  194. package/dist/components/highlight/index.js +1 -0
  195. package/dist/components/highlight/index.jsx +1 -0
  196. package/dist/components/hover-card/HoverCard.d.ts +27 -0
  197. package/dist/components/hover-card/HoverCard.js +164 -0
  198. package/dist/components/hover-card/HoverCard.jsx +89 -0
  199. package/dist/components/hover-card/index.d.ts +1 -0
  200. package/dist/components/hover-card/index.js +1 -0
  201. package/dist/components/hover-card/index.jsx +1 -0
  202. package/dist/components/image/Image.d.ts +14 -0
  203. package/dist/components/image/Image.js +53 -0
  204. package/dist/components/image/Image.jsx +33 -0
  205. package/dist/components/image/index.d.ts +1 -0
  206. package/dist/components/image/index.js +1 -0
  207. package/dist/components/image/index.jsx +1 -0
  208. package/dist/components/image-cropper/ImageCropper.d.ts +27 -0
  209. package/dist/components/image-cropper/ImageCropper.js +131 -0
  210. package/dist/components/image-cropper/ImageCropper.jsx +72 -0
  211. package/dist/components/image-cropper/index.d.ts +1 -0
  212. package/dist/components/image-cropper/index.js +1 -0
  213. package/dist/components/image-cropper/index.jsx +1 -0
  214. package/dist/components/input/Input.d.ts +13 -0
  215. package/dist/components/input/Input.js +57 -0
  216. package/dist/components/input/Input.jsx +36 -0
  217. package/dist/components/input/index.d.ts +1 -0
  218. package/dist/components/input/index.js +1 -0
  219. package/dist/components/input/index.jsx +1 -0
  220. package/dist/components/input-group/InputGroup.d.ts +27 -0
  221. package/dist/components/input-group/InputGroup.js +191 -0
  222. package/dist/components/input-group/InputGroup.jsx +129 -0
  223. package/dist/components/input-group/index.d.ts +1 -0
  224. package/dist/components/input-group/index.js +1 -0
  225. package/dist/components/input-group/index.jsx +1 -0
  226. package/dist/components/json-tree-view/JsonTreeView.d.ts +11 -0
  227. package/dist/components/json-tree-view/JsonTreeView.js +69 -0
  228. package/dist/components/json-tree-view/JsonTreeView.jsx +37 -0
  229. package/dist/components/json-tree-view/index.d.ts +1 -0
  230. package/dist/components/json-tree-view/index.js +1 -0
  231. package/dist/components/json-tree-view/index.jsx +1 -0
  232. package/dist/components/kbd/Kbd.d.ts +8 -0
  233. package/dist/components/kbd/Kbd.js +36 -0
  234. package/dist/components/kbd/Kbd.jsx +20 -0
  235. package/dist/components/kbd/index.d.ts +1 -0
  236. package/dist/components/kbd/index.js +1 -0
  237. package/dist/components/kbd/index.jsx +1 -0
  238. package/dist/components/lightbox/Lightbox.d.ts +60 -0
  239. package/dist/components/lightbox/Lightbox.js +351 -0
  240. package/dist/components/lightbox/Lightbox.jsx +218 -0
  241. package/dist/components/lightbox/index.d.ts +2 -0
  242. package/dist/components/lightbox/index.js +1 -0
  243. package/dist/components/lightbox/index.jsx +1 -0
  244. package/dist/components/list/List.d.ts +36 -0
  245. package/dist/components/list/List.js +201 -0
  246. package/dist/components/list/List.jsx +133 -0
  247. package/dist/components/list/index.d.ts +1 -0
  248. package/dist/components/list/index.js +1 -0
  249. package/dist/components/list/index.jsx +1 -0
  250. package/dist/components/listbox/Listbox.d.ts +46 -0
  251. package/dist/components/listbox/Listbox.js +249 -0
  252. package/dist/components/listbox/Listbox.jsx +147 -0
  253. package/dist/components/listbox/index.d.ts +1 -0
  254. package/dist/components/listbox/index.js +1 -0
  255. package/dist/components/listbox/index.jsx +1 -0
  256. package/dist/components/marquee/Marquee.d.ts +18 -0
  257. package/dist/components/marquee/Marquee.js +120 -0
  258. package/dist/components/marquee/Marquee.jsx +80 -0
  259. package/dist/components/marquee/index.d.ts +1 -0
  260. package/dist/components/marquee/index.js +1 -0
  261. package/dist/components/marquee/index.jsx +1 -0
  262. package/dist/components/menu/Menu.d.ts +74 -0
  263. package/dist/components/menu/Menu.js +476 -0
  264. package/dist/components/menu/Menu.jsx +277 -0
  265. package/dist/components/menu/index.d.ts +1 -0
  266. package/dist/components/menu/index.js +1 -0
  267. package/dist/components/menu/index.jsx +1 -0
  268. package/dist/components/native-select/NativeSelect.d.ts +11 -0
  269. package/dist/components/native-select/NativeSelect.js +49 -0
  270. package/dist/components/native-select/NativeSelect.jsx +24 -0
  271. package/dist/components/native-select/index.d.ts +1 -0
  272. package/dist/components/native-select/index.js +1 -0
  273. package/dist/components/native-select/index.jsx +1 -0
  274. package/dist/components/navigation-menu/NavigationMenu.d.ts +31 -0
  275. package/dist/components/navigation-menu/NavigationMenu.js +156 -0
  276. package/dist/components/navigation-menu/NavigationMenu.jsx +92 -0
  277. package/dist/components/navigation-menu/index.d.ts +1 -0
  278. package/dist/components/navigation-menu/index.js +1 -0
  279. package/dist/components/navigation-menu/index.jsx +1 -0
  280. package/dist/components/number-input/NumberInput.d.ts +27 -0
  281. package/dist/components/number-input/NumberInput.js +167 -0
  282. package/dist/components/number-input/NumberInput.jsx +97 -0
  283. package/dist/components/number-input/index.d.ts +1 -0
  284. package/dist/components/number-input/index.js +1 -0
  285. package/dist/components/number-input/index.jsx +1 -0
  286. package/dist/components/pagination/Pagination.d.ts +28 -0
  287. package/dist/components/pagination/Pagination.js +218 -0
  288. package/dist/components/pagination/Pagination.jsx +115 -0
  289. package/dist/components/pagination/index.d.ts +1 -0
  290. package/dist/components/pagination/index.js +1 -0
  291. package/dist/components/pagination/index.jsx +1 -0
  292. package/dist/components/password-input/PasswordInput.d.ts +26 -0
  293. package/dist/components/password-input/PasswordInput.js +135 -0
  294. package/dist/components/password-input/PasswordInput.jsx +83 -0
  295. package/dist/components/password-input/index.d.ts +1 -0
  296. package/dist/components/password-input/index.js +1 -0
  297. package/dist/components/password-input/index.jsx +1 -0
  298. package/dist/components/pin-input/PinInput.d.ts +24 -0
  299. package/dist/components/pin-input/PinInput.js +144 -0
  300. package/dist/components/pin-input/PinInput.jsx +80 -0
  301. package/dist/components/pin-input/index.d.ts +1 -0
  302. package/dist/components/pin-input/index.js +1 -0
  303. package/dist/components/pin-input/index.jsx +1 -0
  304. package/dist/components/popover/Popover.d.ts +46 -0
  305. package/dist/components/popover/Popover.js +288 -0
  306. package/dist/components/popover/Popover.jsx +155 -0
  307. package/dist/components/popover/index.d.ts +1 -0
  308. package/dist/components/popover/index.js +1 -0
  309. package/dist/components/popover/index.jsx +1 -0
  310. package/dist/components/progress-circular/ProgressCircular.d.ts +28 -0
  311. package/dist/components/progress-circular/ProgressCircular.js +164 -0
  312. package/dist/components/progress-circular/ProgressCircular.jsx +89 -0
  313. package/dist/components/progress-circular/index.d.ts +1 -0
  314. package/dist/components/progress-circular/index.js +1 -0
  315. package/dist/components/progress-circular/index.jsx +1 -0
  316. package/dist/components/progress-linear/ProgressLinear.d.ts +23 -0
  317. package/dist/components/progress-linear/ProgressLinear.js +132 -0
  318. package/dist/components/progress-linear/ProgressLinear.jsx +71 -0
  319. package/dist/components/progress-linear/index.d.ts +1 -0
  320. package/dist/components/progress-linear/index.js +1 -0
  321. package/dist/components/progress-linear/index.jsx +1 -0
  322. package/dist/components/qr-code/QrCode.d.ts +19 -0
  323. package/dist/components/qr-code/QrCode.js +129 -0
  324. package/dist/components/qr-code/QrCode.jsx +70 -0
  325. package/dist/components/qr-code/index.d.ts +1 -0
  326. package/dist/components/qr-code/index.js +1 -0
  327. package/dist/components/qr-code/index.jsx +1 -0
  328. package/dist/components/radio-group/RadioGroup.d.ts +33 -0
  329. package/dist/components/radio-group/RadioGroup.js +158 -0
  330. package/dist/components/radio-group/RadioGroup.jsx +94 -0
  331. package/dist/components/radio-group/index.d.ts +2 -0
  332. package/dist/components/radio-group/index.js +1 -0
  333. package/dist/components/radio-group/index.jsx +1 -0
  334. package/dist/components/rating-group/RatingGroup.d.ts +33 -0
  335. package/dist/components/rating-group/RatingGroup.js +150 -0
  336. package/dist/components/rating-group/RatingGroup.jsx +80 -0
  337. package/dist/components/rating-group/index.d.ts +2 -0
  338. package/dist/components/rating-group/index.js +1 -0
  339. package/dist/components/rating-group/index.jsx +1 -0
  340. package/dist/components/scroll-area/ScrollArea.d.ts +30 -0
  341. package/dist/components/scroll-area/ScrollArea.js +109 -0
  342. package/dist/components/scroll-area/ScrollArea.jsx +61 -0
  343. package/dist/components/scroll-area/index.d.ts +2 -0
  344. package/dist/components/scroll-area/index.js +1 -0
  345. package/dist/components/scroll-area/index.jsx +1 -0
  346. package/dist/components/segment-group/SegmentGroup.d.ts +33 -0
  347. package/dist/components/segment-group/SegmentGroup.js +205 -0
  348. package/dist/components/segment-group/SegmentGroup.jsx +126 -0
  349. package/dist/components/segment-group/index.d.ts +1 -0
  350. package/dist/components/segment-group/index.js +1 -0
  351. package/dist/components/segment-group/index.jsx +1 -0
  352. package/dist/components/select/Select.d.ts +57 -0
  353. package/dist/components/select/Select.js +395 -0
  354. package/dist/components/select/Select.jsx +210 -0
  355. package/dist/components/select/index.d.ts +1 -0
  356. package/dist/components/select/index.js +1 -0
  357. package/dist/components/select/index.jsx +1 -0
  358. package/dist/components/separator/Separator.d.ts +17 -0
  359. package/dist/components/separator/Separator.js +127 -0
  360. package/dist/components/separator/Separator.jsx +100 -0
  361. package/dist/components/separator/index.d.ts +1 -0
  362. package/dist/components/separator/index.js +1 -0
  363. package/dist/components/separator/index.jsx +1 -0
  364. package/dist/components/sidebar/Sidebar.d.ts +82 -0
  365. package/dist/components/sidebar/Sidebar.js +590 -0
  366. package/dist/components/sidebar/Sidebar.jsx +308 -0
  367. package/dist/components/sidebar/index.d.ts +1 -0
  368. package/dist/components/sidebar/index.js +1 -0
  369. package/dist/components/sidebar/index.jsx +1 -0
  370. package/dist/components/signature-pad/SignaturePad.d.ts +30 -0
  371. package/dist/components/signature-pad/SignaturePad.js +211 -0
  372. package/dist/components/signature-pad/SignaturePad.jsx +116 -0
  373. package/dist/components/signature-pad/index.d.ts +1 -0
  374. package/dist/components/signature-pad/index.js +1 -0
  375. package/dist/components/signature-pad/index.jsx +1 -0
  376. package/dist/components/simple-grid/SimpleGrid.d.ts +17 -0
  377. package/dist/components/simple-grid/SimpleGrid.js +74 -0
  378. package/dist/components/simple-grid/SimpleGrid.jsx +59 -0
  379. package/dist/components/simple-grid/index.d.ts +1 -0
  380. package/dist/components/simple-grid/index.js +1 -0
  381. package/dist/components/simple-grid/index.jsx +1 -0
  382. package/dist/components/skeleton/Skeleton.d.ts +15 -0
  383. package/dist/components/skeleton/Skeleton.js +74 -0
  384. package/dist/components/skeleton/Skeleton.jsx +47 -0
  385. package/dist/components/skeleton/index.d.ts +1 -0
  386. package/dist/components/skeleton/index.js +1 -0
  387. package/dist/components/skeleton/index.jsx +1 -0
  388. package/dist/components/slider/Slider.d.ts +36 -0
  389. package/dist/components/slider/Slider.js +202 -0
  390. package/dist/components/slider/Slider.jsx +109 -0
  391. package/dist/components/slider/index.d.ts +1 -0
  392. package/dist/components/slider/index.js +1 -0
  393. package/dist/components/slider/index.jsx +1 -0
  394. package/dist/components/spinner/Spinner.d.ts +11 -0
  395. package/dist/components/spinner/Spinner.js +73 -0
  396. package/dist/components/spinner/Spinner.jsx +44 -0
  397. package/dist/components/spinner/index.d.ts +1 -0
  398. package/dist/components/spinner/index.js +1 -0
  399. package/dist/components/spinner/index.jsx +1 -0
  400. package/dist/components/split-button/SplitButton.d.ts +41 -0
  401. package/dist/components/split-button/SplitButton.js +197 -0
  402. package/dist/components/split-button/SplitButton.jsx +117 -0
  403. package/dist/components/split-button/index.d.ts +1 -0
  404. package/dist/components/split-button/index.js +1 -0
  405. package/dist/components/split-button/index.jsx +1 -0
  406. package/dist/components/splitter/Splitter.d.ts +18 -0
  407. package/dist/components/splitter/Splitter.js +101 -0
  408. package/dist/components/splitter/Splitter.jsx +58 -0
  409. package/dist/components/splitter/index.d.ts +1 -0
  410. package/dist/components/splitter/index.js +1 -0
  411. package/dist/components/splitter/index.jsx +1 -0
  412. package/dist/components/stack/Stack.d.ts +19 -0
  413. package/dist/components/stack/Stack.js +83 -0
  414. package/dist/components/stack/Stack.jsx +68 -0
  415. package/dist/components/stack/index.d.ts +1 -0
  416. package/dist/components/stack/index.js +1 -0
  417. package/dist/components/stack/index.jsx +1 -0
  418. package/dist/components/steps/Steps.d.ts +35 -0
  419. package/dist/components/steps/Steps.js +162 -0
  420. package/dist/components/steps/Steps.jsx +99 -0
  421. package/dist/components/steps/index.d.ts +1 -0
  422. package/dist/components/steps/index.js +1 -0
  423. package/dist/components/steps/index.jsx +1 -0
  424. package/dist/components/swap/Swap.d.ts +20 -0
  425. package/dist/components/swap/Swap.js +52 -0
  426. package/dist/components/swap/Swap.jsx +30 -0
  427. package/dist/components/swap/index.d.ts +1 -0
  428. package/dist/components/swap/index.js +1 -0
  429. package/dist/components/swap/index.jsx +1 -0
  430. package/dist/components/switch/Switch.d.ts +25 -0
  431. package/dist/components/switch/Switch.js +101 -0
  432. package/dist/components/switch/Switch.jsx +57 -0
  433. package/dist/components/switch/index.d.ts +1 -0
  434. package/dist/components/switch/index.js +1 -0
  435. package/dist/components/switch/index.jsx +1 -0
  436. package/dist/components/table/Table.d.ts +71 -0
  437. package/dist/components/table/Table.js +363 -0
  438. package/dist/components/table/Table.jsx +189 -0
  439. package/dist/components/table/index.d.ts +1 -0
  440. package/dist/components/table/index.js +1 -0
  441. package/dist/components/table/index.jsx +1 -0
  442. package/dist/components/tabs/Tabs.d.ts +25 -0
  443. package/dist/components/tabs/Tabs.js +98 -0
  444. package/dist/components/tabs/Tabs.jsx +55 -0
  445. package/dist/components/tabs/index.d.ts +1 -0
  446. package/dist/components/tabs/index.js +1 -0
  447. package/dist/components/tabs/index.jsx +1 -0
  448. package/dist/components/tag/Tag.d.ts +24 -0
  449. package/dist/components/tag/Tag.js +147 -0
  450. package/dist/components/tag/Tag.jsx +78 -0
  451. package/dist/components/tag/index.d.ts +1 -0
  452. package/dist/components/tag/index.js +1 -0
  453. package/dist/components/tag/index.jsx +1 -0
  454. package/dist/components/tags-input/TagsInput.d.ts +32 -0
  455. package/dist/components/tags-input/TagsInput.js +240 -0
  456. package/dist/components/tags-input/TagsInput.jsx +127 -0
  457. package/dist/components/tags-input/index.d.ts +1 -0
  458. package/dist/components/tags-input/index.js +1 -0
  459. package/dist/components/tags-input/index.jsx +1 -0
  460. package/dist/components/text/Text.d.ts +30 -0
  461. package/dist/components/text/Text.js +126 -0
  462. package/dist/components/text/Text.jsx +91 -0
  463. package/dist/components/text/index.d.ts +1 -0
  464. package/dist/components/text/index.js +1 -0
  465. package/dist/components/text/index.jsx +1 -0
  466. package/dist/components/textarea/Textarea.d.ts +9 -0
  467. package/dist/components/textarea/Textarea.js +45 -0
  468. package/dist/components/textarea/Textarea.jsx +26 -0
  469. package/dist/components/textarea/index.d.ts +1 -0
  470. package/dist/components/textarea/index.js +1 -0
  471. package/dist/components/textarea/index.jsx +1 -0
  472. package/dist/components/timer/Timer.d.ts +26 -0
  473. package/dist/components/timer/Timer.js +126 -0
  474. package/dist/components/timer/Timer.jsx +77 -0
  475. package/dist/components/timer/index.d.ts +1 -0
  476. package/dist/components/timer/index.js +1 -0
  477. package/dist/components/timer/index.jsx +1 -0
  478. package/dist/components/toast/Toast.d.ts +22 -0
  479. package/dist/components/toast/Toast.js +184 -0
  480. package/dist/components/toast/Toast.jsx +94 -0
  481. package/dist/components/toast/index.d.ts +1 -0
  482. package/dist/components/toast/index.js +1 -0
  483. package/dist/components/toast/index.jsx +1 -0
  484. package/dist/components/toc/Toc.d.ts +34 -0
  485. package/dist/components/toc/Toc.js +222 -0
  486. package/dist/components/toc/Toc.jsx +129 -0
  487. package/dist/components/toc/index.d.ts +1 -0
  488. package/dist/components/toc/index.js +1 -0
  489. package/dist/components/toc/index.jsx +1 -0
  490. package/dist/components/toggle/Toggle.d.ts +17 -0
  491. package/dist/components/toggle/Toggle.js +76 -0
  492. package/dist/components/toggle/Toggle.jsx +51 -0
  493. package/dist/components/toggle/index.d.ts +2 -0
  494. package/dist/components/toggle/index.js +1 -0
  495. package/dist/components/toggle/index.jsx +1 -0
  496. package/dist/components/toggle-group/ToggleGroup.d.ts +27 -0
  497. package/dist/components/toggle-group/ToggleGroup.js +165 -0
  498. package/dist/components/toggle-group/ToggleGroup.jsx +110 -0
  499. package/dist/components/toggle-group/index.d.ts +2 -0
  500. package/dist/components/toggle-group/index.js +1 -0
  501. package/dist/components/toggle-group/index.jsx +1 -0
  502. package/dist/components/tooltip/Tooltip.d.ts +29 -0
  503. package/dist/components/tooltip/Tooltip.js +192 -0
  504. package/dist/components/tooltip/Tooltip.jsx +108 -0
  505. package/dist/components/tooltip/index.d.ts +1 -0
  506. package/dist/components/tooltip/index.js +1 -0
  507. package/dist/components/tooltip/index.jsx +1 -0
  508. package/dist/components/tour/Tour.d.ts +46 -0
  509. package/dist/components/tour/Tour.js +274 -0
  510. package/dist/components/tour/Tour.jsx +155 -0
  511. package/dist/components/tour/index.d.ts +2 -0
  512. package/dist/components/tour/index.js +1 -0
  513. package/dist/components/tour/index.jsx +1 -0
  514. package/dist/components/tree-view/TreeView.d.ts +58 -0
  515. package/dist/components/tree-view/TreeView.js +296 -0
  516. package/dist/components/tree-view/TreeView.jsx +173 -0
  517. package/dist/components/tree-view/index.d.ts +1 -0
  518. package/dist/components/tree-view/index.js +1 -0
  519. package/dist/components/tree-view/index.jsx +1 -0
  520. package/dist/components/typeset/Typeset.d.ts +15 -0
  521. package/dist/components/typeset/Typeset.js +68 -0
  522. package/dist/components/typeset/Typeset.jsx +33 -0
  523. package/dist/components/typeset/Typeset.module.js +6 -0
  524. package/dist/components/typeset/Typeset.module.jsx +6 -0
  525. package/dist/components/typeset/Typeset_module.css +466 -0
  526. package/dist/components/typeset/index.d.ts +1 -0
  527. package/dist/components/typeset/index.js +1 -0
  528. package/dist/components/typeset/index.jsx +1 -0
  529. package/dist/internal/cn.d.ts +2 -0
  530. package/dist/internal/cn.js +40 -0
  531. package/dist/internal/cn.jsx +40 -0
  532. package/dist/internal/icons/ui/Icons.d.ts +37 -0
  533. package/dist/internal/icons/ui/Icons.js +115 -0
  534. package/dist/internal/icons/ui/Icons.jsx +93 -0
  535. package/dist/internal/icons/ui/index.d.ts +1 -0
  536. package/dist/internal/icons/ui/index.js +1 -0
  537. package/dist/internal/icons/ui/index.jsx +1 -0
  538. package/dist/internal/overlayPortal.d.ts +13 -0
  539. package/dist/internal/overlayPortal.js +39 -0
  540. package/dist/internal/overlayPortal.jsx +19 -0
  541. package/dist/locale.d.ts +1 -0
  542. package/dist/locale.js +1 -0
  543. package/dist/locale.jsx +1 -0
  544. package/dist/presets/contrast.css +65 -0
  545. package/dist/presets/dense.css +78 -0
  546. package/dist/presets/soft.css +77 -0
  547. package/dist/styles/animations.css +371 -0
  548. package/dist/styles/borders.css +10 -0
  549. package/dist/styles/colors.css +122 -0
  550. package/dist/styles/opacity.css +5 -0
  551. package/dist/styles/radius.css +11 -0
  552. package/dist/styles/shadows.css +5 -0
  553. package/dist/styles/sizing.css +11 -0
  554. package/dist/styles/spacing.css +26 -0
  555. package/dist/styles/style.css +180 -0
  556. package/dist/styles/transforms.css +4 -0
  557. package/dist/styles/transitions.css +32 -0
  558. package/dist/styles/typography.css +37 -0
  559. package/dist/styles/z-index.css +13 -0
  560. package/package.json +633 -0
@@ -0,0 +1,143 @@
1
+ import { createComponent, insert, memo, mergeProps, template } from "solid-js/web";
2
+ import { Clipboard, useClipboard, useClipboardContext } from "@ark-ui/solid/clipboard";
3
+ import { children, splitProps } from "solid-js";
4
+ import { cn } from "../../internal/cn.js";
5
+ import { CheckIcon, CopyIcon } from "../../internal/icons/ui/Icons.js";
6
+ var _tmpl$ = /*#__PURE__*/ template('<span aria-hidden=true data-slot=clipboard-indicator-copied-icon class="inline-flex shrink-0 items-center justify-center">'), _tmpl$2 = /*#__PURE__*/ template('<span aria-hidden=true data-slot=clipboard-indicator-idle-icon class="inline-flex shrink-0 items-center justify-center">');
7
+ function ClipboardRoot(props) {
8
+ const [local, others] = splitProps(props, [
9
+ 'class'
10
+ ]);
11
+ return createComponent(Clipboard.Root, mergeProps({
12
+ "data-slot": "clipboard-root",
13
+ get ["class"] () {
14
+ return cn('flex w-full flex-col gap-1.5 text-foreground', local.class);
15
+ }
16
+ }, others));
17
+ }
18
+ function ClipboardRootProvider(props) {
19
+ const [local, others] = splitProps(props, [
20
+ 'class'
21
+ ]);
22
+ return createComponent(Clipboard.RootProvider, mergeProps({
23
+ "data-slot": "clipboard-root-provider",
24
+ get ["class"] () {
25
+ return cn('flex w-full flex-col gap-1.5 text-foreground', local.class);
26
+ }
27
+ }, others));
28
+ }
29
+ function ClipboardLabel(props) {
30
+ const [local, others] = splitProps(props, [
31
+ 'class'
32
+ ]);
33
+ return createComponent(Clipboard.Label, mergeProps({
34
+ "data-slot": "clipboard-label",
35
+ get ["class"] () {
36
+ return cn('text-sm leading-5 font-medium', local.class);
37
+ }
38
+ }, others));
39
+ }
40
+ function ClipboardControl(props) {
41
+ const [local, others] = splitProps(props, [
42
+ 'class'
43
+ ]);
44
+ return createComponent(Clipboard.Control, mergeProps({
45
+ "data-slot": "clipboard-control",
46
+ get ["class"] () {
47
+ return cn('flex w-full items-center gap-2', local.class);
48
+ }
49
+ }, others));
50
+ }
51
+ function ClipboardInput(props) {
52
+ const [local, others] = splitProps(props, [
53
+ 'class'
54
+ ]);
55
+ return createComponent(Clipboard.Input, mergeProps({
56
+ "data-slot": "clipboard-input",
57
+ get ["class"] () {
58
+ return cn('box-border min-h-control-md w-full min-w-0 rounded-md border border-border bg-background px-3.5 py-1 text-md leading-6 text-foreground outline-1 -outline-offset-1 outline-transparent transition duration-200 ease-in-out placeholder:text-muted-foreground focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 data-disabled:pointer-events-none data-disabled:opacity-50', local.class);
59
+ }
60
+ }, others));
61
+ }
62
+ function ClipboardTrigger(props) {
63
+ const [local, others] = splitProps(props, [
64
+ 'class'
65
+ ]);
66
+ return createComponent(Clipboard.Trigger, mergeProps({
67
+ "data-slot": "clipboard-trigger",
68
+ get ["class"] () {
69
+ return cn('box-border inline-flex min-h-control-md shrink-0 cursor-pointer appearance-none items-center justify-center gap-2 rounded-md border border-border bg-background px-4 text-sm leading-5 font-medium whitespace-nowrap text-foreground transition duration-200 ease-in-out select-none focus-visible:outline-2 focus-visible:-outline-offset-1 focus-visible:outline-ring disabled:pointer-events-none disabled:cursor-default disabled:opacity-50 data-disabled:pointer-events-none data-disabled:cursor-default data-disabled:opacity-50 motion-reduce:transition-none [&_svg]:size-4 [&_svg]:shrink-0 [&:active:not(:disabled):not([data-disabled])]:opacity-[0.94] motion-safe:[&:active:not(:disabled):not([data-disabled])]:translate-y-px motion-safe:[&:active:not(:disabled):not([data-disabled])]:scale-[0.985] [@media(hover:hover)]:[&:not(:disabled):not([data-disabled]):hover]:bg-accent', local.class);
70
+ }
71
+ }, others));
72
+ }
73
+ function ClipboardIndicator(props) {
74
+ const [local, others] = splitProps(props, [
75
+ 'children',
76
+ 'class',
77
+ 'copied'
78
+ ]);
79
+ const resolvedChildren = children(()=>local.children);
80
+ return createComponent(Clipboard.Indicator, mergeProps({
81
+ "data-slot": "clipboard-indicator",
82
+ get ["class"] () {
83
+ return cn('inline-flex shrink-0 items-center justify-center', local.class);
84
+ },
85
+ get copied () {
86
+ return local.copied ?? (()=>{
87
+ var _el$ = _tmpl$();
88
+ insert(_el$, createComponent(CheckIcon, {}));
89
+ return _el$;
90
+ })();
91
+ }
92
+ }, others, {
93
+ get children () {
94
+ return resolvedChildren() ?? (()=>{
95
+ var _el$2 = _tmpl$2();
96
+ insert(_el$2, createComponent(CopyIcon, {}));
97
+ return _el$2;
98
+ })();
99
+ }
100
+ }));
101
+ }
102
+ function ClipboardValueText(props) {
103
+ const [local, others] = splitProps(props, [
104
+ 'class'
105
+ ]);
106
+ return createComponent(Clipboard.ValueText, mergeProps({
107
+ "data-slot": "clipboard-value-text",
108
+ get ["class"] () {
109
+ return cn('min-w-0 overflow-hidden text-ellipsis whitespace-nowrap', local.class);
110
+ }
111
+ }, others));
112
+ }
113
+ function ClipboardCopyText(props) {
114
+ const [local, others] = splitProps(props, [
115
+ 'children',
116
+ 'copied'
117
+ ]);
118
+ const resolvedChildren = children(()=>local.children);
119
+ return createComponent(ClipboardIndicator, mergeProps({
120
+ "data-slot": "clipboard-copy-text",
121
+ get copied () {
122
+ return memo(()=>void 0 === local.copied)() ? 'Copied' : local.copied;
123
+ }
124
+ }, others, {
125
+ get children () {
126
+ return memo(()=>void 0 === resolvedChildren())() ? 'Copy' : resolvedChildren();
127
+ }
128
+ }));
129
+ }
130
+ const Clipboard_Clipboard = Object.assign(ClipboardRoot, {
131
+ Root: ClipboardRoot,
132
+ RootProvider: ClipboardRootProvider,
133
+ Context: Clipboard.Context,
134
+ Label: ClipboardLabel,
135
+ Control: ClipboardControl,
136
+ Input: ClipboardInput,
137
+ Trigger: ClipboardTrigger,
138
+ Indicator: ClipboardIndicator,
139
+ CopyText: ClipboardCopyText,
140
+ ValueText: ClipboardValueText,
141
+ useClipboard: useClipboard
142
+ });
143
+ export { Clipboard_Clipboard as Clipboard, useClipboard, useClipboardContext };
@@ -0,0 +1,85 @@
1
+ import { Clipboard, useClipboard, useClipboardContext } from "@ark-ui/solid/clipboard";
2
+ import { children, splitProps } from "solid-js";
3
+ import { cn } from "../../internal/cn.jsx";
4
+ import { CheckIcon, CopyIcon } from "../../internal/icons/ui/Icons.jsx";
5
+ function ClipboardRoot(props) {
6
+ const [local, others] = splitProps(props, [
7
+ 'class'
8
+ ]);
9
+ return <Clipboard.Root data-slot="clipboard-root" class={cn('flex w-full flex-col gap-1.5 text-foreground', local.class)} {...others}/>;
10
+ }
11
+ function ClipboardRootProvider(props) {
12
+ const [local, others] = splitProps(props, [
13
+ 'class'
14
+ ]);
15
+ return <Clipboard.RootProvider data-slot="clipboard-root-provider" class={cn('flex w-full flex-col gap-1.5 text-foreground', local.class)} {...others}/>;
16
+ }
17
+ function ClipboardLabel(props) {
18
+ const [local, others] = splitProps(props, [
19
+ 'class'
20
+ ]);
21
+ return <Clipboard.Label data-slot="clipboard-label" class={cn('text-sm leading-5 font-medium', local.class)} {...others}/>;
22
+ }
23
+ function ClipboardControl(props) {
24
+ const [local, others] = splitProps(props, [
25
+ 'class'
26
+ ]);
27
+ return <Clipboard.Control data-slot="clipboard-control" class={cn('flex w-full items-center gap-2', local.class)} {...others}/>;
28
+ }
29
+ function ClipboardInput(props) {
30
+ const [local, others] = splitProps(props, [
31
+ 'class'
32
+ ]);
33
+ return <Clipboard.Input data-slot="clipboard-input" class={cn('box-border min-h-control-md w-full min-w-0 rounded-md border border-border bg-background px-3.5 py-1 text-md leading-6 text-foreground outline-1 -outline-offset-1 outline-transparent transition duration-200 ease-in-out placeholder:text-muted-foreground focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 data-disabled:pointer-events-none data-disabled:opacity-50', local.class)} {...others}/>;
34
+ }
35
+ function ClipboardTrigger(props) {
36
+ const [local, others] = splitProps(props, [
37
+ 'class'
38
+ ]);
39
+ return <Clipboard.Trigger data-slot="clipboard-trigger" class={cn('box-border inline-flex min-h-control-md shrink-0 cursor-pointer appearance-none items-center justify-center gap-2 rounded-md border border-border bg-background px-4 text-sm leading-5 font-medium whitespace-nowrap text-foreground transition duration-200 ease-in-out select-none focus-visible:outline-2 focus-visible:-outline-offset-1 focus-visible:outline-ring disabled:pointer-events-none disabled:cursor-default disabled:opacity-50 data-disabled:pointer-events-none data-disabled:cursor-default data-disabled:opacity-50 motion-reduce:transition-none [&_svg]:size-4 [&_svg]:shrink-0 [&:active:not(:disabled):not([data-disabled])]:opacity-[0.94] motion-safe:[&:active:not(:disabled):not([data-disabled])]:translate-y-px motion-safe:[&:active:not(:disabled):not([data-disabled])]:scale-[0.985] [@media(hover:hover)]:[&:not(:disabled):not([data-disabled]):hover]:bg-accent', local.class)} {...others}/>;
40
+ }
41
+ function ClipboardIndicator(props) {
42
+ const [local, others] = splitProps(props, [
43
+ 'children',
44
+ 'class',
45
+ 'copied'
46
+ ]);
47
+ const resolvedChildren = children(()=>local.children);
48
+ return <Clipboard.Indicator data-slot="clipboard-indicator" class={cn('inline-flex shrink-0 items-center justify-center', local.class)} copied={local.copied ?? <span aria-hidden="true" data-slot="clipboard-indicator-copied-icon" class="inline-flex shrink-0 items-center justify-center">
49
+ <CheckIcon/>
50
+ </span>} {...others}>
51
+ {resolvedChildren() ?? <span aria-hidden="true" data-slot="clipboard-indicator-idle-icon" class="inline-flex shrink-0 items-center justify-center">
52
+ <CopyIcon/>
53
+ </span>}
54
+ </Clipboard.Indicator>;
55
+ }
56
+ function ClipboardValueText(props) {
57
+ const [local, others] = splitProps(props, [
58
+ 'class'
59
+ ]);
60
+ return <Clipboard.ValueText data-slot="clipboard-value-text" class={cn('min-w-0 overflow-hidden text-ellipsis whitespace-nowrap', local.class)} {...others}/>;
61
+ }
62
+ function ClipboardCopyText(props) {
63
+ const [local, others] = splitProps(props, [
64
+ 'children',
65
+ 'copied'
66
+ ]);
67
+ const resolvedChildren = children(()=>local.children);
68
+ return <ClipboardIndicator data-slot="clipboard-copy-text" copied={void 0 === local.copied ? 'Copied' : local.copied} {...others}>
69
+ {void 0 === resolvedChildren() ? 'Copy' : resolvedChildren()}
70
+ </ClipboardIndicator>;
71
+ }
72
+ const Clipboard_Clipboard = Object.assign(ClipboardRoot, {
73
+ Root: ClipboardRoot,
74
+ RootProvider: ClipboardRootProvider,
75
+ Context: Clipboard.Context,
76
+ Label: ClipboardLabel,
77
+ Control: ClipboardControl,
78
+ Input: ClipboardInput,
79
+ Trigger: ClipboardTrigger,
80
+ Indicator: ClipboardIndicator,
81
+ CopyText: ClipboardCopyText,
82
+ ValueText: ClipboardValueText,
83
+ useClipboard: useClipboard
84
+ });
85
+ export { Clipboard_Clipboard as Clipboard, useClipboard, useClipboardContext };
@@ -0,0 +1 @@
1
+ export { Clipboard, useClipboard, useClipboardContext } from './Clipboard.js';
@@ -0,0 +1 @@
1
+ export { Clipboard, useClipboard, useClipboardContext } from "./Clipboard.js";
@@ -0,0 +1 @@
1
+ export { Clipboard, useClipboard, useClipboardContext } from "./Clipboard.jsx";
@@ -0,0 +1,14 @@
1
+ import type { HTMLArkProps } from '@ark-ui/solid/factory';
2
+ import type { JSX } from 'solid-js';
3
+ type CloseButtonRootProps = HTMLArkProps<'button'> & {
4
+ 'data-disabled'?: string;
5
+ 'data-part'?: string;
6
+ 'data-scope'?: string;
7
+ 'data-slot'?: string;
8
+ onClickCapture?: (event: MouseEvent) => void;
9
+ };
10
+ declare function CloseButtonRoot(props: CloseButtonRootProps): JSX.Element;
11
+ declare const CloseButton: typeof CloseButtonRoot & {
12
+ Root: typeof CloseButtonRoot;
13
+ };
14
+ export { CloseButton };
@@ -0,0 +1,89 @@
1
+ import { createComponent, memo, mergeProps } from "solid-js/web";
2
+ import { ark } from "@ark-ui/solid/factory";
3
+ import { children, splitProps } from "solid-js";
4
+ import { cn } from "../../internal/cn.js";
5
+ import { CloseIcon } from "../../internal/icons/ui/Icons.js";
6
+ const ArkButton = ark.button;
7
+ function CloseButtonRoot(props) {
8
+ const [local, others] = splitProps(props, [
9
+ 'asChild',
10
+ 'aria-disabled',
11
+ 'aria-label',
12
+ 'aria-labelledby',
13
+ 'children',
14
+ 'class',
15
+ 'data-disabled',
16
+ 'data-part',
17
+ 'data-scope',
18
+ 'data-slot',
19
+ 'disabled',
20
+ 'onClick',
21
+ 'onClickCapture',
22
+ 'type'
23
+ ]);
24
+ const resolvedChildren = children(()=>local.children);
25
+ const isDisabled = ()=>local.disabled || true === local['aria-disabled'] || 'true' === local['aria-disabled'] || void 0 !== local['data-disabled'];
26
+ const handleClickCapture = (event)=>{
27
+ if (isDisabled()) {
28
+ event.preventDefault();
29
+ event.stopPropagation();
30
+ return;
31
+ }
32
+ local.onClickCapture?.(event);
33
+ };
34
+ const handleClick = (event)=>{
35
+ if (isDisabled()) {
36
+ event.preventDefault();
37
+ event.stopPropagation();
38
+ return;
39
+ }
40
+ local.onClick?.(event);
41
+ };
42
+ return createComponent(ArkButton, mergeProps({
43
+ get asChild () {
44
+ return local.asChild;
45
+ }
46
+ }, others, {
47
+ get type () {
48
+ return memo(()=>!!local.asChild)() ? local.type : local.type ?? 'button';
49
+ },
50
+ get disabled () {
51
+ return memo(()=>!!local.asChild)() ? void 0 : local.disabled;
52
+ },
53
+ get ["data-scope"] () {
54
+ return local['data-scope'] ?? 'close-button';
55
+ },
56
+ get ["data-part"] () {
57
+ return local['data-part'] ?? 'root';
58
+ },
59
+ get ["data-slot"] () {
60
+ return local['data-slot'] ?? 'close-button-root';
61
+ },
62
+ get ["data-disabled"] () {
63
+ return local['data-disabled'] ?? (isDisabled() ? '' : void 0);
64
+ },
65
+ get ["class"] () {
66
+ return cn("m-0 box-border inline-flex size-7 shrink-0 cursor-pointer appearance-none items-center justify-center rounded-sm border-0 bg-transparent p-0 text-muted-foreground transition-[background-color,color,opacity] duration-200 ease-in-out select-none focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring data-disabled:pointer-events-none data-disabled:cursor-default data-disabled:opacity-50 [&:active:not([data-disabled])]:opacity-[0.94] [&>svg]:shrink-0 [&>svg:not([class*='size-'])]:size-3 [@media(hover:hover)]:[&:not([data-disabled]):hover]:bg-muted [@media(hover:hover)]:[&:not([data-disabled]):hover]:text-foreground", local.class);
67
+ },
68
+ get ["aria-disabled"] () {
69
+ return memo(()=>!!(local.asChild && local.disabled))() ? true : local['aria-disabled'];
70
+ },
71
+ get ["aria-label"] () {
72
+ return local['aria-label'] ?? (null == local['aria-labelledby'] ? 'Close' : void 0);
73
+ },
74
+ get ["aria-labelledby"] () {
75
+ return local['aria-labelledby'];
76
+ },
77
+ "oncapture:click": handleClickCapture,
78
+ onClick: handleClick,
79
+ get children () {
80
+ return memo(()=>!!local.asChild)() ? void 0 : resolvedChildren() || createComponent(CloseIcon, {
81
+ class: "size-3 shrink-0"
82
+ });
83
+ }
84
+ }));
85
+ }
86
+ const CloseButton = Object.assign(CloseButtonRoot, {
87
+ Root: CloseButtonRoot
88
+ });
89
+ export { CloseButton };
@@ -0,0 +1,48 @@
1
+ import { ark } from "@ark-ui/solid/factory";
2
+ import { children, splitProps } from "solid-js";
3
+ import { cn } from "../../internal/cn.jsx";
4
+ import { CloseIcon } from "../../internal/icons/ui/Icons.jsx";
5
+ const ArkButton = ark.button;
6
+ function CloseButtonRoot(props) {
7
+ const [local, others] = splitProps(props, [
8
+ 'asChild',
9
+ 'aria-disabled',
10
+ 'aria-label',
11
+ 'aria-labelledby',
12
+ 'children',
13
+ 'class',
14
+ 'data-disabled',
15
+ 'data-part',
16
+ 'data-scope',
17
+ 'data-slot',
18
+ 'disabled',
19
+ 'onClick',
20
+ 'onClickCapture',
21
+ 'type'
22
+ ]);
23
+ const resolvedChildren = children(()=>local.children);
24
+ const isDisabled = ()=>local.disabled || true === local['aria-disabled'] || 'true' === local['aria-disabled'] || void 0 !== local['data-disabled'];
25
+ const handleClickCapture = (event)=>{
26
+ if (isDisabled()) {
27
+ event.preventDefault();
28
+ event.stopPropagation();
29
+ return;
30
+ }
31
+ local.onClickCapture?.(event);
32
+ };
33
+ const handleClick = (event)=>{
34
+ if (isDisabled()) {
35
+ event.preventDefault();
36
+ event.stopPropagation();
37
+ return;
38
+ }
39
+ local.onClick?.(event);
40
+ };
41
+ return <ArkButton asChild={local.asChild} {...others} type={local.asChild ? local.type : local.type ?? 'button'} disabled={local.asChild ? void 0 : local.disabled} data-scope={local['data-scope'] ?? 'close-button'} data-part={local['data-part'] ?? 'root'} data-slot={local['data-slot'] ?? 'close-button-root'} data-disabled={local['data-disabled'] ?? (isDisabled() ? '' : void 0)} class={cn("m-0 box-border inline-flex size-7 shrink-0 cursor-pointer appearance-none items-center justify-center rounded-sm border-0 bg-transparent p-0 text-muted-foreground transition-[background-color,color,opacity] duration-200 ease-in-out select-none focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring data-disabled:pointer-events-none data-disabled:cursor-default data-disabled:opacity-50 [&:active:not([data-disabled])]:opacity-[0.94] [&>svg]:shrink-0 [&>svg:not([class*='size-'])]:size-3 [@media(hover:hover)]:[&:not([data-disabled]):hover]:bg-muted [@media(hover:hover)]:[&:not([data-disabled]):hover]:text-foreground", local.class)} aria-disabled={local.asChild && local.disabled ? true : local['aria-disabled']} aria-label={local['aria-label'] ?? (null == local['aria-labelledby'] ? 'Close' : void 0)} aria-labelledby={local['aria-labelledby']} oncapture:click={handleClickCapture} onClick={handleClick}>
42
+ {local.asChild ? void 0 : resolvedChildren() || <CloseIcon class="size-3 shrink-0"/>}
43
+ </ArkButton>;
44
+ }
45
+ const CloseButton = Object.assign(CloseButtonRoot, {
46
+ Root: CloseButtonRoot
47
+ });
48
+ export { CloseButton };
@@ -0,0 +1 @@
1
+ export { CloseButton } from './CloseButton.js';
@@ -0,0 +1 @@
1
+ export { CloseButton } from "./CloseButton.js";
@@ -0,0 +1 @@
1
+ export { CloseButton } from "./CloseButton.jsx";
@@ -0,0 +1,19 @@
1
+ import { Collapsible as CollapsiblePrimitive, useCollapsible, useCollapsibleContext } from '@ark-ui/solid/collapsible';
2
+ import type { HTMLArkProps } from '@ark-ui/solid/factory';
3
+ import type { ComponentProps } from 'solid-js';
4
+ declare function CollapsibleRoot(props: ComponentProps<typeof CollapsiblePrimitive.Root>): import("solid-js").JSX.Element;
5
+ declare function CollapsibleRootProvider(props: ComponentProps<typeof CollapsiblePrimitive.RootProvider>): import("solid-js").JSX.Element;
6
+ declare function CollapsibleTrigger(props: ComponentProps<typeof CollapsiblePrimitive.Trigger>): import("solid-js").JSX.Element;
7
+ declare function CollapsibleIndicator(props: ComponentProps<typeof CollapsiblePrimitive.Indicator>): import("solid-js").JSX.Element;
8
+ declare function CollapsibleContent(props: ComponentProps<typeof CollapsiblePrimitive.Content>): import("solid-js").JSX.Element;
9
+ declare function CollapsibleBody(props: HTMLArkProps<'div'>): import("solid-js").JSX.Element;
10
+ declare const Collapsible: typeof CollapsibleRoot & {
11
+ Root: typeof CollapsibleRoot;
12
+ RootProvider: typeof CollapsibleRootProvider;
13
+ Context: (props: CollapsiblePrimitive.ContextProps) => import("solid-js").JSX.Element;
14
+ Trigger: typeof CollapsibleTrigger;
15
+ Indicator: typeof CollapsibleIndicator;
16
+ Content: typeof CollapsibleContent;
17
+ Body: typeof CollapsibleBody;
18
+ };
19
+ export { Collapsible, useCollapsible, useCollapsibleContext };
@@ -0,0 +1,92 @@
1
+ import { createComponent, mergeProps } from "solid-js/web";
2
+ import { Collapsible, useCollapsible, useCollapsibleContext } from "@ark-ui/solid/collapsible";
3
+ import { ark } from "@ark-ui/solid/factory";
4
+ import { children, splitProps } from "solid-js";
5
+ import { cn } from "../../internal/cn.js";
6
+ import { ChevronDownIcon } from "../../internal/icons/ui/Icons.js";
7
+ function CollapsibleRoot(props) {
8
+ const [local, others] = splitProps(props, [
9
+ 'class'
10
+ ]);
11
+ return createComponent(Collapsible.Root, mergeProps({
12
+ "data-slot": "collapsible-root",
13
+ get ["class"] () {
14
+ return cn('box-border flex w-full max-w-full min-w-0 flex-col text-foreground', local.class);
15
+ }
16
+ }, others));
17
+ }
18
+ function CollapsibleRootProvider(props) {
19
+ const [local, others] = splitProps(props, [
20
+ 'class'
21
+ ]);
22
+ return createComponent(Collapsible.RootProvider, mergeProps({
23
+ "data-slot": "collapsible-root-provider",
24
+ get ["class"] () {
25
+ return cn('box-border flex w-full max-w-full min-w-0 flex-col text-foreground', local.class);
26
+ }
27
+ }, others));
28
+ }
29
+ function CollapsibleTrigger(props) {
30
+ const [local, others] = splitProps(props, [
31
+ 'asChild',
32
+ 'class'
33
+ ]);
34
+ return createComponent(Collapsible.Trigger, mergeProps({
35
+ get asChild () {
36
+ return local.asChild;
37
+ },
38
+ "data-slot": "collapsible-trigger",
39
+ get ["class"] () {
40
+ return cn(!local.asChild && 'box-border flex w-full cursor-pointer items-center justify-between gap-2 bg-transparent px-0 py-1 text-start text-sm outline-0 transition-colors duration-200 select-none focus-visible:relative focus-visible:z-1 focus-visible:outline-2 focus-visible:-outline-offset-1 focus-visible:outline-ring disabled:cursor-default disabled:opacity-50 data-disabled:cursor-default data-disabled:opacity-50 motion-reduce:transition-none', local.class);
41
+ }
42
+ }, others));
43
+ }
44
+ function CollapsibleIndicator(props) {
45
+ const [local, others] = splitProps(props, [
46
+ 'children',
47
+ 'class'
48
+ ]);
49
+ const resolvedChildren = children(()=>local.children);
50
+ return createComponent(Collapsible.Indicator, mergeProps({
51
+ "data-slot": "collapsible-indicator",
52
+ get ["class"] () {
53
+ return cn('inline-flex size-3 shrink-0 items-center justify-center transition-transform duration-200 data-disabled:opacity-50 data-[state=open]:rotate-180 motion-reduce:transition-none [&_svg]:size-full', local.class);
54
+ }
55
+ }, others, {
56
+ get children () {
57
+ return resolvedChildren() ?? createComponent(ChevronDownIcon, {});
58
+ }
59
+ }));
60
+ }
61
+ function CollapsibleContent(props) {
62
+ const [local, others] = splitProps(props, [
63
+ 'class'
64
+ ]);
65
+ return createComponent(Collapsible.Content, mergeProps({
66
+ "data-slot": "collapsible-content",
67
+ get ["class"] () {
68
+ return cn('box-border overflow-hidden text-sm text-muted-foreground data-[state=closed]:animate-moduix-collapsible-closed data-[has-collapsed-size]:data-[state=closed]:animate-moduix-collapsible-closed-partial data-[state=open]:animate-moduix-collapsible-open data-[has-collapsed-size]:data-[state=open]:animate-moduix-collapsible-open-partial motion-reduce:[animation-delay:0ms] motion-reduce:[animation-duration:1ms]', local.class);
69
+ }
70
+ }, others));
71
+ }
72
+ function CollapsibleBody(props) {
73
+ const [local, others] = splitProps(props, [
74
+ 'class'
75
+ ]);
76
+ return createComponent(ark.div, mergeProps({
77
+ "data-slot": "collapsible-body",
78
+ get ["class"] () {
79
+ return cn('grid min-w-0 gap-2', local.class);
80
+ }
81
+ }, others));
82
+ }
83
+ const Collapsible_Collapsible = Object.assign(CollapsibleRoot, {
84
+ Root: CollapsibleRoot,
85
+ RootProvider: CollapsibleRootProvider,
86
+ Context: Collapsible.Context,
87
+ Trigger: CollapsibleTrigger,
88
+ Indicator: CollapsibleIndicator,
89
+ Content: CollapsibleContent,
90
+ Body: CollapsibleBody
91
+ });
92
+ export { Collapsible_Collapsible as Collapsible, useCollapsible, useCollapsibleContext };
@@ -0,0 +1,56 @@
1
+ import { Collapsible, useCollapsible, useCollapsibleContext } from "@ark-ui/solid/collapsible";
2
+ import { ark } from "@ark-ui/solid/factory";
3
+ import { children, splitProps } from "solid-js";
4
+ import { cn } from "../../internal/cn.jsx";
5
+ import { ChevronDownIcon } from "../../internal/icons/ui/Icons.jsx";
6
+ function CollapsibleRoot(props) {
7
+ const [local, others] = splitProps(props, [
8
+ 'class'
9
+ ]);
10
+ return <Collapsible.Root data-slot="collapsible-root" class={cn('box-border flex w-full max-w-full min-w-0 flex-col text-foreground', local.class)} {...others}/>;
11
+ }
12
+ function CollapsibleRootProvider(props) {
13
+ const [local, others] = splitProps(props, [
14
+ 'class'
15
+ ]);
16
+ return <Collapsible.RootProvider data-slot="collapsible-root-provider" class={cn('box-border flex w-full max-w-full min-w-0 flex-col text-foreground', local.class)} {...others}/>;
17
+ }
18
+ function CollapsibleTrigger(props) {
19
+ const [local, others] = splitProps(props, [
20
+ 'asChild',
21
+ 'class'
22
+ ]);
23
+ return <Collapsible.Trigger asChild={local.asChild} data-slot="collapsible-trigger" class={cn(!local.asChild && 'box-border flex w-full cursor-pointer items-center justify-between gap-2 bg-transparent px-0 py-1 text-start text-sm outline-0 transition-colors duration-200 select-none focus-visible:relative focus-visible:z-1 focus-visible:outline-2 focus-visible:-outline-offset-1 focus-visible:outline-ring disabled:cursor-default disabled:opacity-50 data-disabled:cursor-default data-disabled:opacity-50 motion-reduce:transition-none', local.class)} {...others}/>;
24
+ }
25
+ function CollapsibleIndicator(props) {
26
+ const [local, others] = splitProps(props, [
27
+ 'children',
28
+ 'class'
29
+ ]);
30
+ const resolvedChildren = children(()=>local.children);
31
+ return <Collapsible.Indicator data-slot="collapsible-indicator" class={cn('inline-flex size-3 shrink-0 items-center justify-center transition-transform duration-200 data-disabled:opacity-50 data-[state=open]:rotate-180 motion-reduce:transition-none [&_svg]:size-full', local.class)} {...others}>
32
+ {resolvedChildren() ?? <ChevronDownIcon/>}
33
+ </Collapsible.Indicator>;
34
+ }
35
+ function CollapsibleContent(props) {
36
+ const [local, others] = splitProps(props, [
37
+ 'class'
38
+ ]);
39
+ return <Collapsible.Content data-slot="collapsible-content" class={cn('box-border overflow-hidden text-sm text-muted-foreground data-[state=closed]:animate-moduix-collapsible-closed data-[has-collapsed-size]:data-[state=closed]:animate-moduix-collapsible-closed-partial data-[state=open]:animate-moduix-collapsible-open data-[has-collapsed-size]:data-[state=open]:animate-moduix-collapsible-open-partial motion-reduce:[animation-delay:0ms] motion-reduce:[animation-duration:1ms]', local.class)} {...others}/>;
40
+ }
41
+ function CollapsibleBody(props) {
42
+ const [local, others] = splitProps(props, [
43
+ 'class'
44
+ ]);
45
+ return <ark.div data-slot="collapsible-body" class={cn('grid min-w-0 gap-2', local.class)} {...others}/>;
46
+ }
47
+ const Collapsible_Collapsible = Object.assign(CollapsibleRoot, {
48
+ Root: CollapsibleRoot,
49
+ RootProvider: CollapsibleRootProvider,
50
+ Context: Collapsible.Context,
51
+ Trigger: CollapsibleTrigger,
52
+ Indicator: CollapsibleIndicator,
53
+ Content: CollapsibleContent,
54
+ Body: CollapsibleBody
55
+ });
56
+ export { Collapsible_Collapsible as Collapsible, useCollapsible, useCollapsibleContext };
@@ -0,0 +1 @@
1
+ export { Collapsible, useCollapsible, useCollapsibleContext } from './Collapsible.js';
@@ -0,0 +1 @@
1
+ export { Collapsible, useCollapsible, useCollapsibleContext } from "./Collapsible.js";
@@ -0,0 +1 @@
1
+ export { Collapsible, useCollapsible, useCollapsibleContext } from "./Collapsible.jsx";
@@ -0,0 +1,66 @@
1
+ import { ColorPicker as ColorPickerPrimitive, parseColor, useColorPicker, useColorPickerContext } from '@ark-ui/solid/color-picker';
2
+ import { type ComponentProps } from 'solid-js';
3
+ import { type OverlayPortalProps } from '../../internal/overlayPortal.js';
4
+ type ColorPickerRootProps = ComponentProps<typeof ColorPickerPrimitive.Root> & OverlayPortalProps;
5
+ type ColorPickerRootProviderProps = ComponentProps<typeof ColorPickerPrimitive.RootProvider> & OverlayPortalProps;
6
+ declare function ColorPickerRoot(props: ColorPickerRootProps): import("solid-js").JSX.Element;
7
+ declare function ColorPickerRootProvider(props: ColorPickerRootProviderProps): import("solid-js").JSX.Element;
8
+ declare function ColorPickerLabel(props: ComponentProps<typeof ColorPickerPrimitive.Label>): import("solid-js").JSX.Element;
9
+ declare function ColorPickerControl(props: ComponentProps<typeof ColorPickerPrimitive.Control>): import("solid-js").JSX.Element;
10
+ declare function ColorPickerTrigger(props: ComponentProps<typeof ColorPickerPrimitive.Trigger>): import("solid-js").JSX.Element;
11
+ declare function ColorPickerPositioner(props: ComponentProps<typeof ColorPickerPrimitive.Positioner>): import("solid-js").JSX.Element;
12
+ declare function ColorPickerContent(props: ComponentProps<typeof ColorPickerPrimitive.Content>): import("solid-js").JSX.Element;
13
+ declare function ColorPickerArea(props: ComponentProps<typeof ColorPickerPrimitive.Area>): import("solid-js").JSX.Element;
14
+ declare function ColorPickerAreaBackground(props: ComponentProps<typeof ColorPickerPrimitive.AreaBackground>): import("solid-js").JSX.Element;
15
+ declare function ColorPickerAreaThumb(props: ComponentProps<typeof ColorPickerPrimitive.AreaThumb>): import("solid-js").JSX.Element;
16
+ declare function ColorPickerChannelSlider(props: ComponentProps<typeof ColorPickerPrimitive.ChannelSlider>): import("solid-js").JSX.Element;
17
+ declare function ColorPickerSliders(props: ComponentProps<'div'>): import("solid-js").JSX.Element;
18
+ declare function ColorPickerChannelSliderTrack(props: ComponentProps<typeof ColorPickerPrimitive.ChannelSliderTrack>): import("solid-js").JSX.Element;
19
+ declare function ColorPickerChannelSliderThumb(props: ComponentProps<typeof ColorPickerPrimitive.ChannelSliderThumb>): import("solid-js").JSX.Element;
20
+ declare function ColorPickerChannelSliderLabel(props: ComponentProps<typeof ColorPickerPrimitive.ChannelSliderLabel>): import("solid-js").JSX.Element;
21
+ declare function ColorPickerChannelSliderValueText(props: ComponentProps<typeof ColorPickerPrimitive.ChannelSliderValueText>): import("solid-js").JSX.Element;
22
+ declare function ColorPickerChannelInput(props: ComponentProps<typeof ColorPickerPrimitive.ChannelInput>): import("solid-js").JSX.Element;
23
+ declare function ColorPickerEyeDropperTrigger(props: ComponentProps<typeof ColorPickerPrimitive.EyeDropperTrigger>): import("solid-js").JSX.Element;
24
+ declare function ColorPickerFormatSelect(props: ComponentProps<typeof ColorPickerPrimitive.FormatSelect>): import("solid-js").JSX.Element;
25
+ declare function ColorPickerFormatTrigger(props: ComponentProps<typeof ColorPickerPrimitive.FormatTrigger>): import("solid-js").JSX.Element;
26
+ declare function ColorPickerSwatchGroup(props: ComponentProps<typeof ColorPickerPrimitive.SwatchGroup>): import("solid-js").JSX.Element;
27
+ declare function ColorPickerSwatchTrigger(props: ComponentProps<typeof ColorPickerPrimitive.SwatchTrigger>): import("solid-js").JSX.Element;
28
+ declare function ColorPickerSwatch(props: ComponentProps<typeof ColorPickerPrimitive.Swatch>): import("solid-js").JSX.Element;
29
+ declare function ColorPickerSwatchIndicator(props: ComponentProps<typeof ColorPickerPrimitive.SwatchIndicator>): import("solid-js").JSX.Element;
30
+ declare function ColorPickerTransparencyGrid(props: ComponentProps<typeof ColorPickerPrimitive.TransparencyGrid>): import("solid-js").JSX.Element;
31
+ declare function ColorPickerValueSwatch(props: ComponentProps<typeof ColorPickerPrimitive.ValueSwatch>): import("solid-js").JSX.Element;
32
+ declare function ColorPickerValueText(props: ComponentProps<typeof ColorPickerPrimitive.ValueText>): import("solid-js").JSX.Element;
33
+ declare function ColorPickerView(props: ComponentProps<typeof ColorPickerPrimitive.View>): import("solid-js").JSX.Element;
34
+ declare const ColorPicker: typeof ColorPickerRoot & {
35
+ Root: typeof ColorPickerRoot;
36
+ RootProvider: typeof ColorPickerRootProvider;
37
+ Context: (props: ColorPickerPrimitive.ContextProps) => import("solid-js").JSX.Element;
38
+ HiddenInput: (props: ColorPickerPrimitive.HiddenInputProps) => import("solid-js").JSX.Element;
39
+ Label: typeof ColorPickerLabel;
40
+ Control: typeof ColorPickerControl;
41
+ Trigger: typeof ColorPickerTrigger;
42
+ Positioner: typeof ColorPickerPositioner;
43
+ Content: typeof ColorPickerContent;
44
+ Area: typeof ColorPickerArea;
45
+ AreaBackground: typeof ColorPickerAreaBackground;
46
+ AreaThumb: typeof ColorPickerAreaThumb;
47
+ ChannelSlider: typeof ColorPickerChannelSlider;
48
+ Sliders: typeof ColorPickerSliders;
49
+ ChannelSliderTrack: typeof ColorPickerChannelSliderTrack;
50
+ ChannelSliderThumb: typeof ColorPickerChannelSliderThumb;
51
+ ChannelSliderLabel: typeof ColorPickerChannelSliderLabel;
52
+ ChannelSliderValueText: typeof ColorPickerChannelSliderValueText;
53
+ ChannelInput: typeof ColorPickerChannelInput;
54
+ EyeDropperTrigger: typeof ColorPickerEyeDropperTrigger;
55
+ FormatSelect: typeof ColorPickerFormatSelect;
56
+ FormatTrigger: typeof ColorPickerFormatTrigger;
57
+ SwatchGroup: typeof ColorPickerSwatchGroup;
58
+ SwatchTrigger: typeof ColorPickerSwatchTrigger;
59
+ Swatch: typeof ColorPickerSwatch;
60
+ SwatchIndicator: typeof ColorPickerSwatchIndicator;
61
+ TransparencyGrid: typeof ColorPickerTransparencyGrid;
62
+ ValueSwatch: typeof ColorPickerValueSwatch;
63
+ ValueText: typeof ColorPickerValueText;
64
+ View: typeof ColorPickerView;
65
+ };
66
+ export { ColorPicker, parseColor, useColorPicker, useColorPickerContext };