@moduix/solid 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 (810) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +124 -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 +104 -0
  6. package/dist/components/accordion/Accordion.jsx +64 -0
  7. package/dist/components/accordion/Accordion.module.js +18 -0
  8. package/dist/components/accordion/Accordion.module.jsx +18 -0
  9. package/dist/components/accordion/Accordion_module.css +214 -0
  10. package/dist/components/accordion/index.d.ts +1 -0
  11. package/dist/components/accordion/index.js +1 -0
  12. package/dist/components/accordion/index.jsx +1 -0
  13. package/dist/components/alert/Alert.d.ts +20 -0
  14. package/dist/components/alert/Alert.js +101 -0
  15. package/dist/components/alert/Alert.jsx +51 -0
  16. package/dist/components/alert/Alert.module.js +10 -0
  17. package/dist/components/alert/Alert.module.jsx +10 -0
  18. package/dist/components/alert/Alert_module.css +100 -0
  19. package/dist/components/alert/index.d.ts +1 -0
  20. package/dist/components/alert/index.js +1 -0
  21. package/dist/components/alert/index.jsx +1 -0
  22. package/dist/components/angle-slider/AngleSlider.d.ts +37 -0
  23. package/dist/components/angle-slider/AngleSlider.js +161 -0
  24. package/dist/components/angle-slider/AngleSlider.jsx +94 -0
  25. package/dist/components/angle-slider/AngleSlider.module.js +11 -0
  26. package/dist/components/angle-slider/AngleSlider.module.jsx +11 -0
  27. package/dist/components/angle-slider/AngleSlider_module.css +214 -0
  28. package/dist/components/angle-slider/index.d.ts +1 -0
  29. package/dist/components/angle-slider/index.js +1 -0
  30. package/dist/components/angle-slider/index.jsx +1 -0
  31. package/dist/components/aspect-ratio/AspectRatio.d.ts +13 -0
  32. package/dist/components/aspect-ratio/AspectRatio.js +44 -0
  33. package/dist/components/aspect-ratio/AspectRatio.jsx +29 -0
  34. package/dist/components/aspect-ratio/AspectRatio.module.js +5 -0
  35. package/dist/components/aspect-ratio/AspectRatio.module.jsx +5 -0
  36. package/dist/components/aspect-ratio/AspectRatio_module.css +11 -0
  37. package/dist/components/aspect-ratio/index.d.ts +1 -0
  38. package/dist/components/aspect-ratio/index.js +1 -0
  39. package/dist/components/aspect-ratio/index.jsx +1 -0
  40. package/dist/components/avatar/Avatar.d.ts +21 -0
  41. package/dist/components/avatar/Avatar.js +70 -0
  42. package/dist/components/avatar/Avatar.jsx +41 -0
  43. package/dist/components/avatar/Avatar.module.js +7 -0
  44. package/dist/components/avatar/Avatar.module.jsx +7 -0
  45. package/dist/components/avatar/Avatar_module.css +78 -0
  46. package/dist/components/avatar/index.d.ts +1 -0
  47. package/dist/components/avatar/index.js +1 -0
  48. package/dist/components/avatar/index.jsx +1 -0
  49. package/dist/components/badge/Badge.d.ts +23 -0
  50. package/dist/components/badge/Badge.js +66 -0
  51. package/dist/components/badge/Badge.jsx +40 -0
  52. package/dist/components/badge/Badge.module.js +7 -0
  53. package/dist/components/badge/Badge.module.jsx +7 -0
  54. package/dist/components/badge/Badge_module.css +123 -0
  55. package/dist/components/badge/index.d.ts +1 -0
  56. package/dist/components/badge/index.js +1 -0
  57. package/dist/components/badge/index.jsx +1 -0
  58. package/dist/components/bleed/Bleed.d.ts +17 -0
  59. package/dist/components/bleed/Bleed.js +40 -0
  60. package/dist/components/bleed/Bleed.jsx +22 -0
  61. package/dist/components/bleed/Bleed.module.js +5 -0
  62. package/dist/components/bleed/Bleed.module.jsx +5 -0
  63. package/dist/components/bleed/Bleed_module.css +52 -0
  64. package/dist/components/bleed/index.d.ts +1 -0
  65. package/dist/components/bleed/index.js +1 -0
  66. package/dist/components/bleed/index.jsx +1 -0
  67. package/dist/components/breadcrumbs/Breadcrumbs.d.ts +30 -0
  68. package/dist/components/breadcrumbs/Breadcrumbs.js +161 -0
  69. package/dist/components/breadcrumbs/Breadcrumbs.jsx +89 -0
  70. package/dist/components/breadcrumbs/Breadcrumbs.module.js +12 -0
  71. package/dist/components/breadcrumbs/Breadcrumbs.module.jsx +12 -0
  72. package/dist/components/breadcrumbs/Breadcrumbs_module.css +103 -0
  73. package/dist/components/breadcrumbs/index.d.ts +1 -0
  74. package/dist/components/breadcrumbs/index.js +1 -0
  75. package/dist/components/breadcrumbs/index.jsx +1 -0
  76. package/dist/components/button/Button.d.ts +16 -0
  77. package/dist/components/button/Button.js +88 -0
  78. package/dist/components/button/Button.jsx +39 -0
  79. package/dist/components/button/Button.module.js +5 -0
  80. package/dist/components/button/Button.module.jsx +5 -0
  81. package/dist/components/button/Button_module.css +219 -0
  82. package/dist/components/button/index.d.ts +1 -0
  83. package/dist/components/button/index.js +1 -0
  84. package/dist/components/button/index.jsx +1 -0
  85. package/dist/components/card/Card.d.ts +28 -0
  86. package/dist/components/card/Card.js +197 -0
  87. package/dist/components/card/Card.jsx +89 -0
  88. package/dist/components/card/Card.module.js +14 -0
  89. package/dist/components/card/Card.module.jsx +14 -0
  90. package/dist/components/card/Card_module.css +203 -0
  91. package/dist/components/card/index.d.ts +1 -0
  92. package/dist/components/card/index.js +1 -0
  93. package/dist/components/card/index.jsx +1 -0
  94. package/dist/components/carousel/Carousel.d.ts +35 -0
  95. package/dist/components/carousel/Carousel.js +216 -0
  96. package/dist/components/carousel/Carousel.jsx +122 -0
  97. package/dist/components/carousel/Carousel.module.js +16 -0
  98. package/dist/components/carousel/Carousel.module.jsx +16 -0
  99. package/dist/components/carousel/Carousel_module.css +230 -0
  100. package/dist/components/carousel/index.d.ts +1 -0
  101. package/dist/components/carousel/index.js +1 -0
  102. package/dist/components/carousel/index.jsx +1 -0
  103. package/dist/components/chart/Chart.d.ts +34 -0
  104. package/dist/components/chart/Chart.js +453 -0
  105. package/dist/components/chart/Chart.jsx +242 -0
  106. package/dist/components/chart/Chart.module.js +18 -0
  107. package/dist/components/chart/Chart.module.jsx +18 -0
  108. package/dist/components/chart/Chart_module.css +136 -0
  109. package/dist/components/chart/index.d.ts +1 -0
  110. package/dist/components/chart/index.js +1 -0
  111. package/dist/components/chart/index.jsx +1 -0
  112. package/dist/components/checkbox/Checkbox.d.ts +26 -0
  113. package/dist/components/checkbox/Checkbox.js +148 -0
  114. package/dist/components/checkbox/Checkbox.jsx +77 -0
  115. package/dist/components/checkbox/Checkbox.module.js +10 -0
  116. package/dist/components/checkbox/Checkbox.module.jsx +10 -0
  117. package/dist/components/checkbox/Checkbox_module.css +145 -0
  118. package/dist/components/checkbox/index.d.ts +1 -0
  119. package/dist/components/checkbox/index.js +1 -0
  120. package/dist/components/checkbox/index.jsx +1 -0
  121. package/dist/components/clipboard/Clipboard.d.ts +26 -0
  122. package/dist/components/clipboard/Clipboard.js +146 -0
  123. package/dist/components/clipboard/Clipboard.jsx +86 -0
  124. package/dist/components/clipboard/Clipboard.module.js +12 -0
  125. package/dist/components/clipboard/Clipboard.module.jsx +12 -0
  126. package/dist/components/clipboard/Clipboard_module.css +168 -0
  127. package/dist/components/clipboard/index.d.ts +1 -0
  128. package/dist/components/clipboard/index.js +1 -0
  129. package/dist/components/clipboard/index.jsx +1 -0
  130. package/dist/components/close-button/CloseButton.d.ts +14 -0
  131. package/dist/components/close-button/CloseButton.js +88 -0
  132. package/dist/components/close-button/CloseButton.jsx +49 -0
  133. package/dist/components/close-button/CloseButton.module.js +5 -0
  134. package/dist/components/close-button/CloseButton.module.jsx +5 -0
  135. package/dist/components/close-button/CloseButton_module.css +55 -0
  136. package/dist/components/close-button/index.d.ts +1 -0
  137. package/dist/components/close-button/index.js +1 -0
  138. package/dist/components/close-button/index.jsx +1 -0
  139. package/dist/components/collapsible/Collapsible.d.ts +19 -0
  140. package/dist/components/collapsible/Collapsible.js +93 -0
  141. package/dist/components/collapsible/Collapsible.jsx +57 -0
  142. package/dist/components/collapsible/Collapsible.module.js +13 -0
  143. package/dist/components/collapsible/Collapsible.module.jsx +13 -0
  144. package/dist/components/collapsible/Collapsible_module.css +158 -0
  145. package/dist/components/collapsible/index.d.ts +1 -0
  146. package/dist/components/collapsible/index.js +1 -0
  147. package/dist/components/collapsible/index.jsx +1 -0
  148. package/dist/components/color-picker/ColorPicker.d.ts +66 -0
  149. package/dist/components/color-picker/ColorPicker.js +542 -0
  150. package/dist/components/color-picker/ColorPicker.jsx +277 -0
  151. package/dist/components/color-picker/ColorPicker.module.js +36 -0
  152. package/dist/components/color-picker/ColorPicker.module.jsx +36 -0
  153. package/dist/components/color-picker/ColorPicker_module.css +581 -0
  154. package/dist/components/color-picker/index.d.ts +1 -0
  155. package/dist/components/color-picker/index.js +1 -0
  156. package/dist/components/color-picker/index.jsx +1 -0
  157. package/dist/components/combobox/Combobox.d.ts +50 -0
  158. package/dist/components/combobox/Combobox.js +354 -0
  159. package/dist/components/combobox/Combobox.jsx +188 -0
  160. package/dist/components/combobox/Combobox.module.js +24 -0
  161. package/dist/components/combobox/Combobox.module.jsx +24 -0
  162. package/dist/components/combobox/Combobox_module.css +335 -0
  163. package/dist/components/combobox/index.d.ts +1 -0
  164. package/dist/components/combobox/index.js +1 -0
  165. package/dist/components/combobox/index.jsx +1 -0
  166. package/dist/components/command-palette/CommandPalette.d.ts +72 -0
  167. package/dist/components/command-palette/CommandPalette.js +583 -0
  168. package/dist/components/command-palette/CommandPalette.jsx +326 -0
  169. package/dist/components/command-palette/CommandPalette.module.js +41 -0
  170. package/dist/components/command-palette/CommandPalette.module.jsx +41 -0
  171. package/dist/components/command-palette/CommandPalette_module.css +443 -0
  172. package/dist/components/command-palette/index.d.ts +1 -0
  173. package/dist/components/command-palette/index.js +1 -0
  174. package/dist/components/command-palette/index.jsx +1 -0
  175. package/dist/components/container/Container.d.ts +17 -0
  176. package/dist/components/container/Container.js +40 -0
  177. package/dist/components/container/Container.jsx +22 -0
  178. package/dist/components/container/Container.module.js +5 -0
  179. package/dist/components/container/Container.module.jsx +5 -0
  180. package/dist/components/container/Container_module.css +46 -0
  181. package/dist/components/container/index.d.ts +1 -0
  182. package/dist/components/container/index.js +1 -0
  183. package/dist/components/container/index.jsx +1 -0
  184. package/dist/components/date-input/DateInput.d.ts +25 -0
  185. package/dist/components/date-input/DateInput.js +137 -0
  186. package/dist/components/date-input/DateInput.jsx +77 -0
  187. package/dist/components/date-input/DateInput.module.js +10 -0
  188. package/dist/components/date-input/DateInput.module.jsx +10 -0
  189. package/dist/components/date-input/DateInput_module.css +109 -0
  190. package/dist/components/date-input/index.d.ts +1 -0
  191. package/dist/components/date-input/index.js +1 -0
  192. package/dist/components/date-input/index.jsx +1 -0
  193. package/dist/components/date-picker/DatePicker.d.ts +98 -0
  194. package/dist/components/date-picker/DatePicker.js +696 -0
  195. package/dist/components/date-picker/DatePicker.jsx +361 -0
  196. package/dist/components/date-picker/DatePicker.module.js +29 -0
  197. package/dist/components/date-picker/DatePicker.module.jsx +29 -0
  198. package/dist/components/date-picker/DatePicker_module.css +445 -0
  199. package/dist/components/date-picker/index.d.ts +1 -0
  200. package/dist/components/date-picker/index.js +1 -0
  201. package/dist/components/date-picker/index.jsx +1 -0
  202. package/dist/components/dialog/Dialog.d.ts +38 -0
  203. package/dist/components/dialog/Dialog.js +240 -0
  204. package/dist/components/dialog/Dialog.jsx +131 -0
  205. package/dist/components/dialog/Dialog.module.js +23 -0
  206. package/dist/components/dialog/Dialog.module.jsx +23 -0
  207. package/dist/components/dialog/Dialog_module.css +247 -0
  208. package/dist/components/dialog/index.d.ts +2 -0
  209. package/dist/components/dialog/index.js +1 -0
  210. package/dist/components/dialog/index.jsx +1 -0
  211. package/dist/components/drawer/Drawer.d.ts +54 -0
  212. package/dist/components/drawer/Drawer.js +333 -0
  213. package/dist/components/drawer/Drawer.jsx +179 -0
  214. package/dist/components/drawer/Drawer.module.js +40 -0
  215. package/dist/components/drawer/Drawer.module.jsx +40 -0
  216. package/dist/components/drawer/Drawer_module.css +557 -0
  217. package/dist/components/drawer/index.d.ts +1 -0
  218. package/dist/components/drawer/index.js +1 -0
  219. package/dist/components/drawer/index.jsx +1 -0
  220. package/dist/components/editable/Editable.d.ts +29 -0
  221. package/dist/components/editable/Editable.js +182 -0
  222. package/dist/components/editable/Editable.jsx +106 -0
  223. package/dist/components/editable/Editable.module.js +11 -0
  224. package/dist/components/editable/Editable.module.jsx +11 -0
  225. package/dist/components/editable/Editable_module.css +176 -0
  226. package/dist/components/editable/index.d.ts +1 -0
  227. package/dist/components/editable/index.js +1 -0
  228. package/dist/components/editable/index.jsx +1 -0
  229. package/dist/components/empty/Empty.d.ts +16 -0
  230. package/dist/components/empty/Empty.js +122 -0
  231. package/dist/components/empty/Empty.jsx +55 -0
  232. package/dist/components/empty/Empty.module.js +10 -0
  233. package/dist/components/empty/Empty.module.jsx +10 -0
  234. package/dist/components/empty/Empty_module.css +91 -0
  235. package/dist/components/empty/index.d.ts +1 -0
  236. package/dist/components/empty/index.js +1 -0
  237. package/dist/components/empty/index.jsx +1 -0
  238. package/dist/components/field/Field.d.ts +37 -0
  239. package/dist/components/field/Field.js +237 -0
  240. package/dist/components/field/Field.jsx +135 -0
  241. package/dist/components/field/Field.module.js +12 -0
  242. package/dist/components/field/Field.module.jsx +12 -0
  243. package/dist/components/field/Field_module.css +102 -0
  244. package/dist/components/field/index.d.ts +1 -0
  245. package/dist/components/field/index.js +1 -0
  246. package/dist/components/field/index.jsx +1 -0
  247. package/dist/components/fieldset/Fieldset.d.ts +16 -0
  248. package/dist/components/fieldset/Fieldset.js +94 -0
  249. package/dist/components/fieldset/Fieldset.jsx +48 -0
  250. package/dist/components/fieldset/Fieldset.module.js +8 -0
  251. package/dist/components/fieldset/Fieldset.module.jsx +8 -0
  252. package/dist/components/fieldset/Fieldset_module.css +56 -0
  253. package/dist/components/fieldset/index.d.ts +1 -0
  254. package/dist/components/fieldset/index.js +1 -0
  255. package/dist/components/fieldset/index.jsx +1 -0
  256. package/dist/components/file-upload/FileUpload.d.ts +44 -0
  257. package/dist/components/file-upload/FileUpload.js +326 -0
  258. package/dist/components/file-upload/FileUpload.jsx +179 -0
  259. package/dist/components/file-upload/FileUpload.module.js +20 -0
  260. package/dist/components/file-upload/FileUpload.module.jsx +20 -0
  261. package/dist/components/file-upload/FileUpload_module.css +369 -0
  262. package/dist/components/file-upload/index.d.ts +1 -0
  263. package/dist/components/file-upload/index.js +1 -0
  264. package/dist/components/file-upload/index.jsx +1 -0
  265. package/dist/components/floating-panel/FloatingPanel.d.ts +53 -0
  266. package/dist/components/floating-panel/FloatingPanel.js +339 -0
  267. package/dist/components/floating-panel/FloatingPanel.jsx +187 -0
  268. package/dist/components/floating-panel/FloatingPanel.module.js +20 -0
  269. package/dist/components/floating-panel/FloatingPanel.module.jsx +20 -0
  270. package/dist/components/floating-panel/FloatingPanel_module.css +309 -0
  271. package/dist/components/floating-panel/index.d.ts +2 -0
  272. package/dist/components/floating-panel/index.js +1 -0
  273. package/dist/components/floating-panel/index.jsx +1 -0
  274. package/dist/components/heading/Heading.d.ts +19 -0
  275. package/dist/components/heading/Heading.js +53 -0
  276. package/dist/components/heading/Heading.jsx +33 -0
  277. package/dist/components/heading/Heading.module.js +5 -0
  278. package/dist/components/heading/Heading.module.jsx +5 -0
  279. package/dist/components/heading/Heading_module.css +59 -0
  280. package/dist/components/heading/index.d.ts +1 -0
  281. package/dist/components/heading/index.js +1 -0
  282. package/dist/components/heading/index.jsx +1 -0
  283. package/dist/components/highlight/Highlight.d.ts +12 -0
  284. package/dist/components/highlight/Highlight.js +25 -0
  285. package/dist/components/highlight/Highlight.jsx +17 -0
  286. package/dist/components/highlight/Highlight.module.js +5 -0
  287. package/dist/components/highlight/Highlight.module.jsx +5 -0
  288. package/dist/components/highlight/Highlight_module.css +16 -0
  289. package/dist/components/highlight/index.d.ts +1 -0
  290. package/dist/components/highlight/index.js +1 -0
  291. package/dist/components/highlight/index.jsx +1 -0
  292. package/dist/components/hover-card/HoverCard.d.ts +27 -0
  293. package/dist/components/hover-card/HoverCard.js +165 -0
  294. package/dist/components/hover-card/HoverCard.jsx +90 -0
  295. package/dist/components/hover-card/HoverCard.module.js +14 -0
  296. package/dist/components/hover-card/HoverCard.module.jsx +14 -0
  297. package/dist/components/hover-card/HoverCard_module.css +143 -0
  298. package/dist/components/hover-card/index.d.ts +2 -0
  299. package/dist/components/hover-card/index.js +1 -0
  300. package/dist/components/hover-card/index.jsx +1 -0
  301. package/dist/components/image/Image.d.ts +14 -0
  302. package/dist/components/image/Image.js +54 -0
  303. package/dist/components/image/Image.jsx +34 -0
  304. package/dist/components/image/Image.module.js +5 -0
  305. package/dist/components/image/Image.module.jsx +5 -0
  306. package/dist/components/image/Image_module.css +8 -0
  307. package/dist/components/image/index.d.ts +1 -0
  308. package/dist/components/image/index.js +1 -0
  309. package/dist/components/image/index.jsx +1 -0
  310. package/dist/components/image-cropper/ImageCropper.d.ts +27 -0
  311. package/dist/components/image-cropper/ImageCropper.js +132 -0
  312. package/dist/components/image-cropper/ImageCropper.jsx +73 -0
  313. package/dist/components/image-cropper/ImageCropper.module.js +10 -0
  314. package/dist/components/image-cropper/ImageCropper.module.jsx +10 -0
  315. package/dist/components/image-cropper/ImageCropper_module.css +162 -0
  316. package/dist/components/image-cropper/index.d.ts +1 -0
  317. package/dist/components/image-cropper/index.js +1 -0
  318. package/dist/components/image-cropper/index.jsx +1 -0
  319. package/dist/components/input/Input.d.ts +13 -0
  320. package/dist/components/input/Input.js +41 -0
  321. package/dist/components/input/Input.jsx +20 -0
  322. package/dist/components/input/Input.module.js +5 -0
  323. package/dist/components/input/Input.module.jsx +5 -0
  324. package/dist/components/input/Input_module.css +110 -0
  325. package/dist/components/input/index.d.ts +1 -0
  326. package/dist/components/input/index.js +1 -0
  327. package/dist/components/input/index.jsx +1 -0
  328. package/dist/components/input-group/InputGroup.d.ts +27 -0
  329. package/dist/components/input-group/InputGroup.js +134 -0
  330. package/dist/components/input-group/InputGroup.jsx +72 -0
  331. package/dist/components/input-group/InputGroup.module.js +9 -0
  332. package/dist/components/input-group/InputGroup.module.jsx +9 -0
  333. package/dist/components/input-group/InputGroup_module.css +162 -0
  334. package/dist/components/input-group/index.d.ts +1 -0
  335. package/dist/components/input-group/index.js +1 -0
  336. package/dist/components/input-group/index.jsx +1 -0
  337. package/dist/components/json-tree-view/JsonTreeView.d.ts +11 -0
  338. package/dist/components/json-tree-view/JsonTreeView.js +69 -0
  339. package/dist/components/json-tree-view/JsonTreeView.jsx +38 -0
  340. package/dist/components/json-tree-view/JsonTreeView.module.js +6 -0
  341. package/dist/components/json-tree-view/JsonTreeView.module.jsx +6 -0
  342. package/dist/components/json-tree-view/JsonTreeView_module.css +163 -0
  343. package/dist/components/json-tree-view/index.d.ts +1 -0
  344. package/dist/components/json-tree-view/index.js +1 -0
  345. package/dist/components/json-tree-view/index.jsx +1 -0
  346. package/dist/components/kbd/Kbd.d.ts +8 -0
  347. package/dist/components/kbd/Kbd.js +37 -0
  348. package/dist/components/kbd/Kbd.jsx +21 -0
  349. package/dist/components/kbd/Kbd.module.js +6 -0
  350. package/dist/components/kbd/Kbd.module.jsx +6 -0
  351. package/dist/components/kbd/Kbd_module.css +46 -0
  352. package/dist/components/kbd/index.d.ts +1 -0
  353. package/dist/components/kbd/index.js +1 -0
  354. package/dist/components/kbd/index.jsx +1 -0
  355. package/dist/components/lightbox/Lightbox.d.ts +60 -0
  356. package/dist/components/lightbox/Lightbox.js +352 -0
  357. package/dist/components/lightbox/Lightbox.jsx +219 -0
  358. package/dist/components/lightbox/Lightbox.module.js +24 -0
  359. package/dist/components/lightbox/Lightbox.module.jsx +24 -0
  360. package/dist/components/lightbox/Lightbox_module.css +259 -0
  361. package/dist/components/lightbox/index.d.ts +2 -0
  362. package/dist/components/lightbox/index.js +1 -0
  363. package/dist/components/lightbox/index.jsx +1 -0
  364. package/dist/components/list/List.d.ts +36 -0
  365. package/dist/components/list/List.js +136 -0
  366. package/dist/components/list/List.jsx +64 -0
  367. package/dist/components/list/List.module.js +5 -0
  368. package/dist/components/list/List.module.jsx +5 -0
  369. package/dist/components/list/List_module.css +118 -0
  370. package/dist/components/list/index.d.ts +1 -0
  371. package/dist/components/list/index.js +1 -0
  372. package/dist/components/list/index.jsx +1 -0
  373. package/dist/components/listbox/Listbox.d.ts +46 -0
  374. package/dist/components/listbox/Listbox.js +252 -0
  375. package/dist/components/listbox/Listbox.jsx +148 -0
  376. package/dist/components/listbox/Listbox.module.js +21 -0
  377. package/dist/components/listbox/Listbox.module.jsx +21 -0
  378. package/dist/components/listbox/Listbox_module.css +313 -0
  379. package/dist/components/listbox/index.d.ts +1 -0
  380. package/dist/components/listbox/index.js +1 -0
  381. package/dist/components/listbox/index.jsx +1 -0
  382. package/dist/components/marquee/Marquee.d.ts +18 -0
  383. package/dist/components/marquee/Marquee.js +81 -0
  384. package/dist/components/marquee/Marquee.jsx +50 -0
  385. package/dist/components/marquee/Marquee.module.js +13 -0
  386. package/dist/components/marquee/Marquee.module.jsx +13 -0
  387. package/dist/components/marquee/Marquee_module.css +109 -0
  388. package/dist/components/marquee/index.d.ts +1 -0
  389. package/dist/components/marquee/index.js +1 -0
  390. package/dist/components/marquee/index.jsx +1 -0
  391. package/dist/components/menu/Menu.d.ts +74 -0
  392. package/dist/components/menu/Menu.js +465 -0
  393. package/dist/components/menu/Menu.jsx +248 -0
  394. package/dist/components/menu/Menu.module.js +32 -0
  395. package/dist/components/menu/Menu.module.jsx +32 -0
  396. package/dist/components/menu/Menu_module.css +396 -0
  397. package/dist/components/menu/index.d.ts +1 -0
  398. package/dist/components/menu/index.js +1 -0
  399. package/dist/components/menu/index.jsx +1 -0
  400. package/dist/components/native-select/NativeSelect.d.ts +11 -0
  401. package/dist/components/native-select/NativeSelect.js +49 -0
  402. package/dist/components/native-select/NativeSelect.jsx +24 -0
  403. package/dist/components/native-select/NativeSelect.module.js +7 -0
  404. package/dist/components/native-select/NativeSelect.module.jsx +7 -0
  405. package/dist/components/native-select/NativeSelect_module.css +115 -0
  406. package/dist/components/native-select/index.d.ts +1 -0
  407. package/dist/components/native-select/index.js +1 -0
  408. package/dist/components/native-select/index.jsx +1 -0
  409. package/dist/components/navigation-menu/NavigationMenu.d.ts +31 -0
  410. package/dist/components/navigation-menu/NavigationMenu.js +161 -0
  411. package/dist/components/navigation-menu/NavigationMenu.jsx +94 -0
  412. package/dist/components/navigation-menu/NavigationMenu.module.js +35 -0
  413. package/dist/components/navigation-menu/NavigationMenu.module.jsx +35 -0
  414. package/dist/components/navigation-menu/NavigationMenu_module.css +452 -0
  415. package/dist/components/navigation-menu/index.d.ts +1 -0
  416. package/dist/components/navigation-menu/index.js +1 -0
  417. package/dist/components/navigation-menu/index.jsx +1 -0
  418. package/dist/components/number-input/NumberInput.d.ts +27 -0
  419. package/dist/components/number-input/NumberInput.js +168 -0
  420. package/dist/components/number-input/NumberInput.jsx +98 -0
  421. package/dist/components/number-input/NumberInput.module.js +12 -0
  422. package/dist/components/number-input/NumberInput.module.jsx +12 -0
  423. package/dist/components/number-input/NumberInput_module.css +161 -0
  424. package/dist/components/number-input/index.d.ts +1 -0
  425. package/dist/components/number-input/index.js +1 -0
  426. package/dist/components/number-input/index.jsx +1 -0
  427. package/dist/components/pagination/Pagination.d.ts +28 -0
  428. package/dist/components/pagination/Pagination.js +220 -0
  429. package/dist/components/pagination/Pagination.jsx +116 -0
  430. package/dist/components/pagination/Pagination.module.js +10 -0
  431. package/dist/components/pagination/Pagination.module.jsx +10 -0
  432. package/dist/components/pagination/Pagination_module.css +105 -0
  433. package/dist/components/pagination/index.d.ts +1 -0
  434. package/dist/components/pagination/index.js +1 -0
  435. package/dist/components/pagination/index.jsx +1 -0
  436. package/dist/components/password-input/PasswordInput.d.ts +26 -0
  437. package/dist/components/password-input/PasswordInput.js +136 -0
  438. package/dist/components/password-input/PasswordInput.jsx +84 -0
  439. package/dist/components/password-input/PasswordInput.module.js +10 -0
  440. package/dist/components/password-input/PasswordInput.module.jsx +10 -0
  441. package/dist/components/password-input/PasswordInput_module.css +150 -0
  442. package/dist/components/password-input/index.d.ts +1 -0
  443. package/dist/components/password-input/index.js +1 -0
  444. package/dist/components/password-input/index.jsx +1 -0
  445. package/dist/components/pin-input/PinInput.d.ts +24 -0
  446. package/dist/components/pin-input/PinInput.js +145 -0
  447. package/dist/components/pin-input/PinInput.jsx +81 -0
  448. package/dist/components/pin-input/PinInput.module.js +9 -0
  449. package/dist/components/pin-input/PinInput.module.jsx +9 -0
  450. package/dist/components/pin-input/PinInput_module.css +97 -0
  451. package/dist/components/pin-input/index.d.ts +1 -0
  452. package/dist/components/pin-input/index.js +1 -0
  453. package/dist/components/pin-input/index.jsx +1 -0
  454. package/dist/components/popover/Popover.d.ts +46 -0
  455. package/dist/components/popover/Popover.js +289 -0
  456. package/dist/components/popover/Popover.jsx +156 -0
  457. package/dist/components/popover/Popover.module.js +20 -0
  458. package/dist/components/popover/Popover.module.jsx +20 -0
  459. package/dist/components/popover/Popover_module.css +196 -0
  460. package/dist/components/popover/index.d.ts +2 -0
  461. package/dist/components/popover/index.js +1 -0
  462. package/dist/components/popover/index.jsx +1 -0
  463. package/dist/components/progress-circular/ProgressCircular.d.ts +28 -0
  464. package/dist/components/progress-circular/ProgressCircular.js +165 -0
  465. package/dist/components/progress-circular/ProgressCircular.jsx +90 -0
  466. package/dist/components/progress-circular/ProgressCircular.module.js +11 -0
  467. package/dist/components/progress-circular/ProgressCircular.module.jsx +11 -0
  468. package/dist/components/progress-circular/ProgressCircular_module.css +76 -0
  469. package/dist/components/progress-circular/index.d.ts +1 -0
  470. package/dist/components/progress-circular/index.js +1 -0
  471. package/dist/components/progress-circular/index.jsx +1 -0
  472. package/dist/components/progress-linear/ProgressLinear.d.ts +23 -0
  473. package/dist/components/progress-linear/ProgressLinear.js +95 -0
  474. package/dist/components/progress-linear/ProgressLinear.jsx +59 -0
  475. package/dist/components/progress-linear/ProgressLinear.module.js +10 -0
  476. package/dist/components/progress-linear/ProgressLinear.module.jsx +10 -0
  477. package/dist/components/progress-linear/ProgressLinear_module.css +100 -0
  478. package/dist/components/progress-linear/index.d.ts +1 -0
  479. package/dist/components/progress-linear/index.js +1 -0
  480. package/dist/components/progress-linear/index.jsx +1 -0
  481. package/dist/components/qr-code/QrCode.d.ts +19 -0
  482. package/dist/components/qr-code/QrCode.js +130 -0
  483. package/dist/components/qr-code/QrCode.jsx +71 -0
  484. package/dist/components/qr-code/QrCode.module.js +9 -0
  485. package/dist/components/qr-code/QrCode.module.jsx +9 -0
  486. package/dist/components/qr-code/QrCode_module.css +119 -0
  487. package/dist/components/qr-code/index.d.ts +1 -0
  488. package/dist/components/qr-code/index.js +1 -0
  489. package/dist/components/qr-code/index.jsx +1 -0
  490. package/dist/components/radio-group/RadioGroup.d.ts +33 -0
  491. package/dist/components/radio-group/RadioGroup.js +142 -0
  492. package/dist/components/radio-group/RadioGroup.jsx +78 -0
  493. package/dist/components/radio-group/RadioGroup.module.js +10 -0
  494. package/dist/components/radio-group/RadioGroup.module.jsx +10 -0
  495. package/dist/components/radio-group/RadioGroup_module.css +156 -0
  496. package/dist/components/radio-group/index.d.ts +2 -0
  497. package/dist/components/radio-group/index.js +1 -0
  498. package/dist/components/radio-group/index.jsx +1 -0
  499. package/dist/components/rating-group/RatingGroup.d.ts +33 -0
  500. package/dist/components/rating-group/RatingGroup.js +153 -0
  501. package/dist/components/rating-group/RatingGroup.jsx +81 -0
  502. package/dist/components/rating-group/RatingGroup.module.js +11 -0
  503. package/dist/components/rating-group/RatingGroup.module.jsx +11 -0
  504. package/dist/components/rating-group/RatingGroup_module.css +139 -0
  505. package/dist/components/rating-group/index.d.ts +2 -0
  506. package/dist/components/rating-group/index.js +1 -0
  507. package/dist/components/rating-group/index.jsx +1 -0
  508. package/dist/components/scroll-area/ScrollArea.d.ts +30 -0
  509. package/dist/components/scroll-area/ScrollArea.js +110 -0
  510. package/dist/components/scroll-area/ScrollArea.jsx +62 -0
  511. package/dist/components/scroll-area/ScrollArea.module.js +10 -0
  512. package/dist/components/scroll-area/ScrollArea.module.jsx +10 -0
  513. package/dist/components/scroll-area/ScrollArea_module.css +191 -0
  514. package/dist/components/scroll-area/index.d.ts +2 -0
  515. package/dist/components/scroll-area/index.js +1 -0
  516. package/dist/components/scroll-area/index.jsx +1 -0
  517. package/dist/components/segment-group/SegmentGroup.d.ts +33 -0
  518. package/dist/components/segment-group/SegmentGroup.js +206 -0
  519. package/dist/components/segment-group/SegmentGroup.jsx +127 -0
  520. package/dist/components/segment-group/SegmentGroup.module.js +10 -0
  521. package/dist/components/segment-group/SegmentGroup.module.jsx +10 -0
  522. package/dist/components/segment-group/SegmentGroup_module.css +127 -0
  523. package/dist/components/segment-group/index.d.ts +1 -0
  524. package/dist/components/segment-group/index.js +1 -0
  525. package/dist/components/segment-group/index.jsx +1 -0
  526. package/dist/components/select/Select.d.ts +59 -0
  527. package/dist/components/select/Select.js +392 -0
  528. package/dist/components/select/Select.jsx +210 -0
  529. package/dist/components/select/Select.module.js +26 -0
  530. package/dist/components/select/Select.module.jsx +26 -0
  531. package/dist/components/select/Select_module.css +362 -0
  532. package/dist/components/select/index.d.ts +1 -0
  533. package/dist/components/select/index.js +1 -0
  534. package/dist/components/select/index.jsx +1 -0
  535. package/dist/components/separator/Separator.d.ts +17 -0
  536. package/dist/components/separator/Separator.js +55 -0
  537. package/dist/components/separator/Separator.jsx +28 -0
  538. package/dist/components/separator/Separator.module.js +5 -0
  539. package/dist/components/separator/Separator.module.jsx +5 -0
  540. package/dist/components/separator/Separator_module.css +47 -0
  541. package/dist/components/separator/index.d.ts +1 -0
  542. package/dist/components/separator/index.js +1 -0
  543. package/dist/components/separator/index.jsx +1 -0
  544. package/dist/components/sidebar/Sidebar.d.ts +82 -0
  545. package/dist/components/sidebar/Sidebar.js +591 -0
  546. package/dist/components/sidebar/Sidebar.jsx +309 -0
  547. package/dist/components/sidebar/Sidebar.module.js +26 -0
  548. package/dist/components/sidebar/Sidebar.module.jsx +26 -0
  549. package/dist/components/sidebar/Sidebar_module.css +437 -0
  550. package/dist/components/sidebar/index.d.ts +1 -0
  551. package/dist/components/sidebar/index.js +1 -0
  552. package/dist/components/sidebar/index.jsx +1 -0
  553. package/dist/components/signature-pad/SignaturePad.d.ts +30 -0
  554. package/dist/components/signature-pad/SignaturePad.js +206 -0
  555. package/dist/components/signature-pad/SignaturePad.jsx +118 -0
  556. package/dist/components/signature-pad/SignaturePad.module.js +10 -0
  557. package/dist/components/signature-pad/SignaturePad.module.jsx +10 -0
  558. package/dist/components/signature-pad/SignaturePad_module.css +88 -0
  559. package/dist/components/signature-pad/index.d.ts +1 -0
  560. package/dist/components/signature-pad/index.js +1 -0
  561. package/dist/components/signature-pad/index.jsx +1 -0
  562. package/dist/components/simple-grid/SimpleGrid.d.ts +17 -0
  563. package/dist/components/simple-grid/SimpleGrid.js +65 -0
  564. package/dist/components/simple-grid/SimpleGrid.jsx +50 -0
  565. package/dist/components/simple-grid/index.d.ts +1 -0
  566. package/dist/components/simple-grid/index.js +1 -0
  567. package/dist/components/simple-grid/index.jsx +1 -0
  568. package/dist/components/skeleton/Skeleton.d.ts +15 -0
  569. package/dist/components/skeleton/Skeleton.js +75 -0
  570. package/dist/components/skeleton/Skeleton.jsx +48 -0
  571. package/dist/components/skeleton/Skeleton.module.js +5 -0
  572. package/dist/components/skeleton/Skeleton.module.jsx +5 -0
  573. package/dist/components/skeleton/Skeleton_module.css +35 -0
  574. package/dist/components/skeleton/index.d.ts +1 -0
  575. package/dist/components/skeleton/index.js +1 -0
  576. package/dist/components/skeleton/index.jsx +1 -0
  577. package/dist/components/slider/Slider.d.ts +36 -0
  578. package/dist/components/slider/Slider.js +203 -0
  579. package/dist/components/slider/Slider.jsx +110 -0
  580. package/dist/components/slider/Slider.module.js +14 -0
  581. package/dist/components/slider/Slider.module.jsx +14 -0
  582. package/dist/components/slider/Slider_module.css +226 -0
  583. package/dist/components/slider/index.d.ts +1 -0
  584. package/dist/components/slider/index.js +1 -0
  585. package/dist/components/slider/index.jsx +1 -0
  586. package/dist/components/spinner/Spinner.d.ts +10 -0
  587. package/dist/components/spinner/Spinner.js +60 -0
  588. package/dist/components/spinner/Spinner.jsx +26 -0
  589. package/dist/components/spinner/Spinner.module.js +7 -0
  590. package/dist/components/spinner/Spinner.module.jsx +7 -0
  591. package/dist/components/spinner/Spinner_module.css +59 -0
  592. package/dist/components/spinner/index.d.ts +1 -0
  593. package/dist/components/spinner/index.js +1 -0
  594. package/dist/components/spinner/index.jsx +1 -0
  595. package/dist/components/split-button/SplitButton.d.ts +41 -0
  596. package/dist/components/split-button/SplitButton.js +168 -0
  597. package/dist/components/split-button/SplitButton.jsx +88 -0
  598. package/dist/components/split-button/SplitButton.module.js +7 -0
  599. package/dist/components/split-button/SplitButton.module.jsx +7 -0
  600. package/dist/components/split-button/SplitButton_module.css +52 -0
  601. package/dist/components/split-button/index.d.ts +1 -0
  602. package/dist/components/split-button/index.js +1 -0
  603. package/dist/components/split-button/index.jsx +1 -0
  604. package/dist/components/splitter/Splitter.d.ts +18 -0
  605. package/dist/components/splitter/Splitter.js +105 -0
  606. package/dist/components/splitter/Splitter.jsx +62 -0
  607. package/dist/components/splitter/Splitter.module.js +8 -0
  608. package/dist/components/splitter/Splitter.module.jsx +8 -0
  609. package/dist/components/splitter/Splitter_module.css +173 -0
  610. package/dist/components/splitter/index.d.ts +1 -0
  611. package/dist/components/splitter/index.js +1 -0
  612. package/dist/components/splitter/index.jsx +1 -0
  613. package/dist/components/stack/Stack.d.ts +19 -0
  614. package/dist/components/stack/Stack.js +61 -0
  615. package/dist/components/stack/Stack.jsx +46 -0
  616. package/dist/components/stack/Stack.module.js +5 -0
  617. package/dist/components/stack/Stack.module.jsx +5 -0
  618. package/dist/components/stack/Stack_module.css +14 -0
  619. package/dist/components/stack/index.d.ts +1 -0
  620. package/dist/components/stack/index.js +1 -0
  621. package/dist/components/stack/index.jsx +1 -0
  622. package/dist/components/steps/Steps.d.ts +35 -0
  623. package/dist/components/steps/Steps.js +163 -0
  624. package/dist/components/steps/Steps.jsx +100 -0
  625. package/dist/components/steps/Steps.module.js +15 -0
  626. package/dist/components/steps/Steps.module.jsx +15 -0
  627. package/dist/components/steps/Steps_module.css +305 -0
  628. package/dist/components/steps/index.d.ts +1 -0
  629. package/dist/components/steps/index.js +1 -0
  630. package/dist/components/steps/index.jsx +1 -0
  631. package/dist/components/swap/Swap.d.ts +20 -0
  632. package/dist/components/swap/Swap.js +53 -0
  633. package/dist/components/swap/Swap.jsx +31 -0
  634. package/dist/components/swap/Swap.module.js +22 -0
  635. package/dist/components/swap/Swap.module.jsx +22 -0
  636. package/dist/components/swap/Swap_module.css +118 -0
  637. package/dist/components/swap/index.d.ts +1 -0
  638. package/dist/components/swap/index.js +1 -0
  639. package/dist/components/swap/index.jsx +1 -0
  640. package/dist/components/switch/Switch.d.ts +25 -0
  641. package/dist/components/switch/Switch.js +102 -0
  642. package/dist/components/switch/Switch.jsx +58 -0
  643. package/dist/components/switch/Switch.module.js +8 -0
  644. package/dist/components/switch/Switch.module.jsx +8 -0
  645. package/dist/components/switch/Switch_module.css +150 -0
  646. package/dist/components/switch/index.d.ts +2 -0
  647. package/dist/components/switch/index.js +1 -0
  648. package/dist/components/switch/index.jsx +1 -0
  649. package/dist/components/table/Table.d.ts +71 -0
  650. package/dist/components/table/Table.js +342 -0
  651. package/dist/components/table/Table.jsx +166 -0
  652. package/dist/components/table/Table.module.js +15 -0
  653. package/dist/components/table/Table.module.jsx +15 -0
  654. package/dist/components/table/Table_module.css +169 -0
  655. package/dist/components/table/index.d.ts +1 -0
  656. package/dist/components/table/index.js +1 -0
  657. package/dist/components/table/index.jsx +1 -0
  658. package/dist/components/tabs/Tabs.d.ts +25 -0
  659. package/dist/components/tabs/Tabs.js +99 -0
  660. package/dist/components/tabs/Tabs.jsx +56 -0
  661. package/dist/components/tabs/Tabs.module.js +9 -0
  662. package/dist/components/tabs/Tabs.module.jsx +9 -0
  663. package/dist/components/tabs/Tabs_module.css +186 -0
  664. package/dist/components/tabs/index.d.ts +1 -0
  665. package/dist/components/tabs/index.js +1 -0
  666. package/dist/components/tabs/index.jsx +1 -0
  667. package/dist/components/tag/Tag.d.ts +24 -0
  668. package/dist/components/tag/Tag.js +126 -0
  669. package/dist/components/tag/Tag.jsx +57 -0
  670. package/dist/components/tag/Tag.module.js +9 -0
  671. package/dist/components/tag/Tag.module.jsx +9 -0
  672. package/dist/components/tag/Tag_module.css +101 -0
  673. package/dist/components/tag/index.d.ts +1 -0
  674. package/dist/components/tag/index.js +1 -0
  675. package/dist/components/tag/index.jsx +1 -0
  676. package/dist/components/tags-input/TagsInput.d.ts +32 -0
  677. package/dist/components/tags-input/TagsInput.js +242 -0
  678. package/dist/components/tags-input/TagsInput.jsx +129 -0
  679. package/dist/components/tags-input/TagsInput.module.js +14 -0
  680. package/dist/components/tags-input/TagsInput.module.jsx +14 -0
  681. package/dist/components/tags-input/TagsInput_module.css +222 -0
  682. package/dist/components/tags-input/index.d.ts +1 -0
  683. package/dist/components/tags-input/index.js +1 -0
  684. package/dist/components/tags-input/index.jsx +1 -0
  685. package/dist/components/text/Text.d.ts +30 -0
  686. package/dist/components/text/Text.js +89 -0
  687. package/dist/components/text/Text.jsx +54 -0
  688. package/dist/components/text/Text.module.js +5 -0
  689. package/dist/components/text/Text.module.jsx +5 -0
  690. package/dist/components/text/Text_module.css +101 -0
  691. package/dist/components/text/index.d.ts +1 -0
  692. package/dist/components/text/index.js +1 -0
  693. package/dist/components/text/index.jsx +1 -0
  694. package/dist/components/textarea/Textarea.d.ts +9 -0
  695. package/dist/components/textarea/Textarea.js +46 -0
  696. package/dist/components/textarea/Textarea.jsx +27 -0
  697. package/dist/components/textarea/Textarea.module.js +5 -0
  698. package/dist/components/textarea/Textarea.module.jsx +5 -0
  699. package/dist/components/textarea/Textarea_module.css +58 -0
  700. package/dist/components/textarea/index.d.ts +1 -0
  701. package/dist/components/textarea/index.js +1 -0
  702. package/dist/components/textarea/index.jsx +1 -0
  703. package/dist/components/timer/Timer.d.ts +26 -0
  704. package/dist/components/timer/Timer.js +127 -0
  705. package/dist/components/timer/Timer.jsx +78 -0
  706. package/dist/components/timer/Timer.module.js +10 -0
  707. package/dist/components/timer/Timer.module.jsx +10 -0
  708. package/dist/components/timer/Timer_module.css +102 -0
  709. package/dist/components/timer/index.d.ts +2 -0
  710. package/dist/components/timer/index.js +1 -0
  711. package/dist/components/timer/index.jsx +1 -0
  712. package/dist/components/toast/Toast.d.ts +22 -0
  713. package/dist/components/toast/Toast.js +185 -0
  714. package/dist/components/toast/Toast.jsx +95 -0
  715. package/dist/components/toast/Toast.module.js +10 -0
  716. package/dist/components/toast/Toast.module.jsx +10 -0
  717. package/dist/components/toast/Toast_module.css +164 -0
  718. package/dist/components/toast/index.d.ts +1 -0
  719. package/dist/components/toast/index.js +1 -0
  720. package/dist/components/toast/index.jsx +1 -0
  721. package/dist/components/toc/Toc.d.ts +34 -0
  722. package/dist/components/toc/Toc.js +221 -0
  723. package/dist/components/toc/Toc.jsx +130 -0
  724. package/dist/components/toc/Toc.module.js +13 -0
  725. package/dist/components/toc/Toc.module.jsx +13 -0
  726. package/dist/components/toc/Toc_module.css +184 -0
  727. package/dist/components/toc/index.d.ts +1 -0
  728. package/dist/components/toc/index.js +1 -0
  729. package/dist/components/toc/index.jsx +1 -0
  730. package/dist/components/toggle/Toggle.d.ts +17 -0
  731. package/dist/components/toggle/Toggle.js +51 -0
  732. package/dist/components/toggle/Toggle.jsx +26 -0
  733. package/dist/components/toggle/Toggle.module.js +6 -0
  734. package/dist/components/toggle/Toggle.module.jsx +6 -0
  735. package/dist/components/toggle/Toggle_module.css +169 -0
  736. package/dist/components/toggle/index.d.ts +2 -0
  737. package/dist/components/toggle/index.js +1 -0
  738. package/dist/components/toggle/index.jsx +1 -0
  739. package/dist/components/toggle-group/ToggleGroup.d.ts +26 -0
  740. package/dist/components/toggle-group/ToggleGroup.js +125 -0
  741. package/dist/components/toggle-group/ToggleGroup.jsx +70 -0
  742. package/dist/components/toggle-group/ToggleGroup.module.js +6 -0
  743. package/dist/components/toggle-group/ToggleGroup.module.jsx +6 -0
  744. package/dist/components/toggle-group/ToggleGroup_module.css +49 -0
  745. package/dist/components/toggle-group/index.d.ts +2 -0
  746. package/dist/components/toggle-group/index.js +1 -0
  747. package/dist/components/toggle-group/index.jsx +1 -0
  748. package/dist/components/tooltip/Tooltip.d.ts +29 -0
  749. package/dist/components/tooltip/Tooltip.js +193 -0
  750. package/dist/components/tooltip/Tooltip.jsx +109 -0
  751. package/dist/components/tooltip/Tooltip.module.js +14 -0
  752. package/dist/components/tooltip/Tooltip.module.jsx +14 -0
  753. package/dist/components/tooltip/Tooltip_module.css +156 -0
  754. package/dist/components/tooltip/index.d.ts +2 -0
  755. package/dist/components/tooltip/index.js +1 -0
  756. package/dist/components/tooltip/index.jsx +1 -0
  757. package/dist/components/tour/Tour.d.ts +46 -0
  758. package/dist/components/tour/Tour.js +275 -0
  759. package/dist/components/tour/Tour.jsx +156 -0
  760. package/dist/components/tour/Tour.module.js +26 -0
  761. package/dist/components/tour/Tour.module.jsx +26 -0
  762. package/dist/components/tour/Tour_module.css +373 -0
  763. package/dist/components/tour/index.d.ts +2 -0
  764. package/dist/components/tour/index.js +1 -0
  765. package/dist/components/tour/index.jsx +1 -0
  766. package/dist/components/tree-view/TreeView.d.ts +58 -0
  767. package/dist/components/tree-view/TreeView.js +297 -0
  768. package/dist/components/tree-view/TreeView.jsx +174 -0
  769. package/dist/components/tree-view/TreeView.module.js +28 -0
  770. package/dist/components/tree-view/TreeView.module.jsx +28 -0
  771. package/dist/components/tree-view/TreeView_module.css +310 -0
  772. package/dist/components/tree-view/index.d.ts +1 -0
  773. package/dist/components/tree-view/index.js +1 -0
  774. package/dist/components/tree-view/index.jsx +1 -0
  775. package/dist/components/typeset/Typeset.d.ts +15 -0
  776. package/dist/components/typeset/Typeset.js +68 -0
  777. package/dist/components/typeset/Typeset.jsx +33 -0
  778. package/dist/components/typeset/Typeset.module.js +6 -0
  779. package/dist/components/typeset/Typeset.module.jsx +6 -0
  780. package/dist/components/typeset/Typeset_module.css +466 -0
  781. package/dist/components/typeset/index.d.ts +1 -0
  782. package/dist/components/typeset/index.js +1 -0
  783. package/dist/components/typeset/index.jsx +1 -0
  784. package/dist/internal/icons/ui/Icons.d.ts +37 -0
  785. package/dist/internal/icons/ui/Icons.js +115 -0
  786. package/dist/internal/icons/ui/Icons.jsx +93 -0
  787. package/dist/internal/overlayPortal.d.ts +13 -0
  788. package/dist/internal/overlayPortal.js +39 -0
  789. package/dist/internal/overlayPortal.jsx +19 -0
  790. package/dist/locale.d.ts +1 -0
  791. package/dist/locale.js +1 -0
  792. package/dist/locale.jsx +1 -0
  793. package/dist/presets/contrast.css +65 -0
  794. package/dist/presets/dense.css +78 -0
  795. package/dist/presets/soft.css +77 -0
  796. package/dist/styles/animations.css +371 -0
  797. package/dist/styles/borders.css +10 -0
  798. package/dist/styles/colors.css +122 -0
  799. package/dist/styles/opacity.css +5 -0
  800. package/dist/styles/radius.css +11 -0
  801. package/dist/styles/reset.css +367 -0
  802. package/dist/styles/shadows.css +5 -0
  803. package/dist/styles/sizing.css +11 -0
  804. package/dist/styles/spacing.css +26 -0
  805. package/dist/styles/style.css +180 -0
  806. package/dist/styles/transforms.css +4 -0
  807. package/dist/styles/transitions.css +32 -0
  808. package/dist/styles/typography.css +37 -0
  809. package/dist/styles/z-index.css +13 -0
  810. package/package.json +637 -0
@@ -0,0 +1,367 @@
1
+ /*!
2
+ * moduix reset.css
3
+ *
4
+ * Portions of this file are derived from:
5
+ * - @unocss/reset tailwind-v4.css
6
+ * Copyright (c) 2021-PRESENT Anthony Fu <https://github.com/antfu>
7
+ * https://github.com/unocss/unocss/blob/main/packages-presets/reset/tailwind-v4.css
8
+ * - Tailwind CSS Preflight
9
+ * Copyright (c) Tailwind Labs, Inc.
10
+ * https://github.com/tailwindlabs/tailwindcss/blob/main/packages/tailwindcss/preflight.css
11
+ *
12
+ * Modifications Copyright (c) 2026 Blinks44
13
+ *
14
+ * MIT License
15
+ *
16
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
17
+ * of this software and associated documentation files (the "Software"), to deal
18
+ * in the Software without restriction, including without limitation the rights
19
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
20
+ * copies of the Software, and to permit persons to whom the Software is
21
+ * furnished to do so, subject to the following conditions:
22
+ *
23
+ * The above copyright notice and this permission notice shall be included in all
24
+ * copies or substantial portions of the Software.
25
+ *
26
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
31
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32
+ * SOFTWARE.
33
+ */
34
+ @layer moduix.reset {
35
+ /*
36
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
37
+ 2. Remove default margins and padding
38
+ 3. Reset all borders.
39
+ */
40
+ *,
41
+ ::after,
42
+ ::before,
43
+ ::backdrop,
44
+ ::file-selector-button {
45
+ box-sizing: border-box; /* 1 */
46
+ margin: 0; /* 2 */
47
+ padding: 0; /* 2 */
48
+ border: 0 solid; /* 3 */
49
+ }
50
+
51
+ /*
52
+ 1. Use a consistent sensible line-height in all browsers.
53
+ 2. Prevent adjustments of font size after orientation changes in iOS.
54
+ 3. Use a more readable tab size.
55
+ 4. Use the user's configured `sans` font-family by default.
56
+ 5. Use the user's configured `sans` font-feature-settings by default.
57
+ 6. Use the user's configured `sans` font-variation-settings by default.
58
+ 7. Disable tap highlights on iOS.
59
+ */
60
+ html,
61
+ :host {
62
+ line-height: 1.5; /* 1 */
63
+ -webkit-text-size-adjust: 100%; /* 2 */
64
+ tab-size: 4; /* 3 */
65
+ font-family:
66
+ ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
67
+ 'Segoe UI Symbol', 'Noto Color Emoji'; /* 4 */
68
+ font-feature-settings: normal; /* 5 */
69
+ font-variation-settings: normal; /* 6 */
70
+ -webkit-tap-highlight-color: transparent; /* 7 */
71
+ }
72
+
73
+ /*
74
+ 1. Add the correct height in Firefox.
75
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
76
+ 3. Reset the default border style to a 1px solid border.
77
+ */
78
+ hr {
79
+ height: 0; /* 1 */
80
+ color: inherit; /* 2 */
81
+ border-top-width: 1px; /* 3 */
82
+ }
83
+
84
+ /*
85
+ Add the correct text decoration in Chrome, Edge, and Safari.
86
+ */
87
+ abbr:where([title]) {
88
+ -webkit-text-decoration: underline dotted;
89
+ text-decoration: underline dotted;
90
+ }
91
+
92
+ /*
93
+ Remove the default font size and weight for headings.
94
+ */
95
+ h1,
96
+ h2,
97
+ h3,
98
+ h4,
99
+ h5,
100
+ h6 {
101
+ font-size: inherit;
102
+ font-weight: inherit;
103
+ }
104
+
105
+ /*
106
+ Reset links to optimize for opt-in styling instead of opt-out.
107
+ */
108
+ a {
109
+ color: inherit;
110
+ -webkit-text-decoration: inherit;
111
+ text-decoration: inherit;
112
+ }
113
+
114
+ /*
115
+ Add the correct font weight in Edge and Safari.
116
+ */
117
+ b,
118
+ strong {
119
+ font-weight: bolder;
120
+ }
121
+
122
+ /*
123
+ 1. Use the user's configured `mono` font-family by default.
124
+ 2. Use the user's configured `mono` font-feature-settings by default.
125
+ 3. Use the user's configured `mono` font-variation-settings by default.
126
+ 4. Correct the odd `em` font sizing in all browsers.
127
+ */
128
+ code,
129
+ kbd,
130
+ samp,
131
+ pre {
132
+ font-family:
133
+ ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
134
+ monospace; /* 1 */
135
+ font-feature-settings: normal; /* 2 */
136
+ font-variation-settings: normal; /* 3 */
137
+ font-size: 1em; /* 4 */
138
+ }
139
+
140
+ /*
141
+ Add the correct font size in all browsers.
142
+ */
143
+ small {
144
+ font-size: 80%;
145
+ }
146
+
147
+ /*
148
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
149
+ */
150
+ sub,
151
+ sup {
152
+ font-size: 75%;
153
+ line-height: 0;
154
+ position: relative;
155
+ vertical-align: baseline;
156
+ }
157
+
158
+ sub {
159
+ bottom: -0.25em;
160
+ }
161
+
162
+ sup {
163
+ top: -0.5em;
164
+ }
165
+
166
+ /*
167
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
168
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
169
+ 3. Remove gaps between table borders by default.
170
+ */
171
+ table {
172
+ text-indent: 0; /* 1 */
173
+ border-color: inherit; /* 2 */
174
+ border-collapse: collapse; /* 3 */
175
+ }
176
+
177
+ /*
178
+ Use the modern Firefox focus style for all focusable elements.
179
+ */
180
+ :-moz-focusring {
181
+ outline: auto;
182
+ }
183
+
184
+ /*
185
+ Add the correct vertical alignment in Chrome and Firefox.
186
+ */
187
+ progress {
188
+ vertical-align: baseline;
189
+ }
190
+
191
+ /*
192
+ Add the correct display in Chrome and Safari.
193
+ */
194
+ summary {
195
+ display: list-item;
196
+ }
197
+
198
+ /*
199
+ Make lists unstyled by default.
200
+ */
201
+ ol,
202
+ ul,
203
+ menu {
204
+ list-style: none;
205
+ }
206
+
207
+ /*
208
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
209
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
210
+ This can trigger a poorly considered lint error in some tools but is included by design.
211
+ */
212
+ img,
213
+ svg,
214
+ video,
215
+ canvas,
216
+ audio,
217
+ iframe,
218
+ embed,
219
+ object {
220
+ display: block; /* 1 */
221
+ vertical-align: middle; /* 2 */
222
+ }
223
+
224
+ /*
225
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
226
+ */
227
+ img,
228
+ video {
229
+ max-width: 100%;
230
+ height: auto;
231
+ }
232
+
233
+ /*
234
+ 1. Inherit font styles in all browsers.
235
+ 2. Remove border radius in all browsers.
236
+ 3. Remove background color in all browsers.
237
+ 4. Ensure consistent opacity for disabled states in all browsers.
238
+ */
239
+ button,
240
+ input,
241
+ select,
242
+ optgroup,
243
+ textarea,
244
+ ::file-selector-button {
245
+ font: inherit; /* 1 */
246
+ font-feature-settings: inherit; /* 1 */
247
+ font-variation-settings: inherit; /* 1 */
248
+ letter-spacing: inherit; /* 1 */
249
+ color: inherit; /* 1 */
250
+ border-radius: 0; /* 2 */
251
+ background-color: transparent; /* 3 */
252
+ opacity: 1; /* 4 */
253
+ }
254
+
255
+ /*
256
+ Restore default font weight.
257
+ */
258
+ :where(select:is([multiple], [size])) optgroup {
259
+ font-weight: bolder;
260
+ }
261
+
262
+ /*
263
+ Restore indentation.
264
+ */
265
+ :where(select:is([multiple], [size])) optgroup option {
266
+ padding-inline-start: 20px;
267
+ }
268
+
269
+ /*
270
+ Restore space after button.
271
+ */
272
+ ::file-selector-button {
273
+ margin-inline-end: 4px;
274
+ }
275
+
276
+ /*
277
+ Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
278
+ */
279
+ ::placeholder {
280
+ opacity: 1;
281
+ }
282
+
283
+ /*
284
+ Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
285
+ crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
286
+ */
287
+ @supports (contain-intrinsic-size: 1px) /* Safari 17+ */ {
288
+ ::placeholder {
289
+ color: color-mix(in oklab, currentcolor 50%, transparent);
290
+ }
291
+ }
292
+
293
+ /*
294
+ Prevent resizing textareas horizontally by default.
295
+ */
296
+ textarea {
297
+ resize: vertical;
298
+ }
299
+
300
+ /*
301
+ Remove the inner padding in Chrome and Safari on macOS.
302
+ */
303
+ ::-webkit-search-decoration {
304
+ -webkit-appearance: none;
305
+ }
306
+
307
+ /*
308
+ 1. Ensure date/time inputs have the same height when empty in iOS Safari.
309
+ 2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
310
+ */
311
+ ::-webkit-date-and-time-value {
312
+ min-height: 1lh; /* 1 */
313
+ text-align: inherit; /* 2 */
314
+ }
315
+
316
+ /*
317
+ Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
318
+ */
319
+ ::-webkit-datetime-edit-fields-wrapper {
320
+ padding: 0;
321
+ }
322
+
323
+ ::-webkit-datetime-edit-year-field,
324
+ ::-webkit-datetime-edit-month-field,
325
+ ::-webkit-datetime-edit-day-field,
326
+ ::-webkit-datetime-edit-hour-field {
327
+ padding-block: 0;
328
+ }
329
+
330
+ /*
331
+ Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
332
+ */
333
+ ::-webkit-calendar-picker-indicator {
334
+ line-height: 1;
335
+ }
336
+
337
+ /*
338
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
339
+ */
340
+ :-moz-ui-invalid {
341
+ box-shadow: none;
342
+ }
343
+
344
+ /*
345
+ Correct the inability to style the border radius in iOS Safari.
346
+ */
347
+ button,
348
+ input:where([type='button'], [type='reset'], [type='submit']),
349
+ ::file-selector-button {
350
+ appearance: button;
351
+ }
352
+
353
+ /*
354
+ Correct the cursor style of increment and decrement buttons in Safari.
355
+ */
356
+ ::-webkit-inner-spin-button,
357
+ ::-webkit-outer-spin-button {
358
+ height: auto;
359
+ }
360
+
361
+ /*
362
+ Make elements with the HTML hidden attribute stay hidden by default.
363
+ */
364
+ [hidden]:where(:not([hidden='until-found'])) {
365
+ display: none !important;
366
+ }
367
+ }
@@ -0,0 +1,5 @@
1
+ :root {
2
+ --moduix-shadow-sm: 0 2px 4px 0 #0000001a, 0 1px 2px -1px #0000001a;
3
+ --moduix-shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
4
+ --moduix-shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
5
+ }
@@ -0,0 +1,11 @@
1
+ /*
2
+ * Control sizes (Input, Button, Select, etc.)
3
+ * Keeps elements in the same row at a consistent height.
4
+ */
5
+ :root {
6
+ --moduix-size-xs: 24px;
7
+ --moduix-size-sm: 32px;
8
+ --moduix-size-md: 36px;
9
+ --moduix-size-lg: 40px;
10
+ --moduix-size-xl: 48px;
11
+ }
@@ -0,0 +1,26 @@
1
+ :root {
2
+ /* Primitives */
3
+ --moduix-spacing-0: 0px;
4
+ --moduix-spacing-1: 4px;
5
+ --moduix-spacing-0-5: calc((var(--moduix-spacing-0) + var(--moduix-spacing-1)) / 2);
6
+ --moduix-spacing-2: 8px;
7
+ --moduix-spacing-1-5: calc((var(--moduix-spacing-1) + var(--moduix-spacing-2)) / 2);
8
+ --moduix-spacing-3: 12px;
9
+ --moduix-spacing-2-5: calc((var(--moduix-spacing-2) + var(--moduix-spacing-3)) / 2);
10
+ --moduix-spacing-4: 16px;
11
+ --moduix-spacing-3-5: calc((var(--moduix-spacing-3) + var(--moduix-spacing-4)) / 2);
12
+ --moduix-spacing-5: 20px;
13
+ --moduix-spacing-4-5: calc((var(--moduix-spacing-4) + var(--moduix-spacing-5)) / 2);
14
+ --moduix-spacing-6: 24px;
15
+ --moduix-spacing-7: calc((var(--moduix-spacing-6) + var(--moduix-spacing-8)) / 2);
16
+ --moduix-spacing-8: 32px;
17
+ --moduix-spacing-10: 40px;
18
+
19
+ /* Semantic (for components; use primitives directly for larger values) */
20
+ --moduix-spacing-xs: var(--moduix-spacing-1); /* 4px */
21
+ --moduix-spacing-sm: var(--moduix-spacing-2); /* 8px */
22
+ --moduix-spacing-md: var(--moduix-spacing-3); /* 12px */
23
+ --moduix-spacing-lg: var(--moduix-spacing-4); /* 16px */
24
+ --moduix-spacing-xl: var(--moduix-spacing-5); /* 20px */
25
+ --moduix-spacing-2xl: var(--moduix-spacing-6); /* 24px */
26
+ }
@@ -0,0 +1,180 @@
1
+ @layer theme, base, moduix.reset, moduix.tokens, moduix.base, components, moduix.components, utilities;
2
+
3
+ @import './animations.css' layer(moduix.tokens);
4
+ @import './borders.css' layer(moduix.tokens);
5
+ @import './colors.css' layer(moduix.tokens);
6
+ @import './opacity.css' layer(moduix.tokens);
7
+ @import './radius.css' layer(moduix.tokens);
8
+ @import './shadows.css' layer(moduix.tokens);
9
+ @import './sizing.css' layer(moduix.tokens);
10
+ @import './spacing.css' layer(moduix.tokens);
11
+ @import './transforms.css' layer(moduix.tokens);
12
+ @import './transitions.css' layer(moduix.tokens);
13
+ @import './typography.css' layer(moduix.tokens);
14
+ @import './z-index.css' layer(moduix.tokens);
15
+
16
+ @theme inline {
17
+ --font-sans: var(--moduix-font-sans);
18
+ --font-mono: var(--moduix-font-mono);
19
+ --font-weight-normal: var(--moduix-weight-regular);
20
+ --font-weight-regular: var(--moduix-weight-regular);
21
+ --font-weight-medium: var(--moduix-weight-medium);
22
+ --font-weight-semibold: var(--moduix-weight-semibold);
23
+ --font-weight-bold: var(--moduix-weight-bold);
24
+ --text-xs: var(--moduix-text-xs);
25
+ --text-xs--line-height: var(--moduix-line-height-text-xs);
26
+ --text-sm: var(--moduix-text-sm);
27
+ --text-sm--line-height: var(--moduix-line-height-text-sm);
28
+ --text-base: var(--moduix-text-md);
29
+ --text-base--line-height: var(--moduix-line-height-text-md);
30
+ --text-md: var(--moduix-text-md);
31
+ --text-md--line-height: var(--moduix-line-height-text-md);
32
+ --text-lg: var(--moduix-text-lg);
33
+ --text-lg--line-height: var(--moduix-line-height-text-lg);
34
+ --text-xl: var(--moduix-text-xl);
35
+ --text-xl--line-height: var(--moduix-line-height-text-xl);
36
+ --text-2xl: var(--moduix-text-2xl);
37
+ --text-2xl--line-height: var(--moduix-line-height-text-2xl);
38
+ --text-3xl: var(--moduix-text-3xl);
39
+ --text-3xl--line-height: var(--moduix-line-height-text-3xl);
40
+ --tracking-text-xs: var(--moduix-tracking-text-xs);
41
+ --tracking-text-sm: var(--moduix-tracking-text-sm);
42
+ --spacing-0: var(--moduix-spacing-0);
43
+ --spacing-0_5: var(--moduix-spacing-0-5);
44
+ --spacing-1: var(--moduix-spacing-1);
45
+ --spacing-1_5: var(--moduix-spacing-1-5);
46
+ --spacing-2: var(--moduix-spacing-2);
47
+ --spacing-2_5: var(--moduix-spacing-2-5);
48
+ --spacing-3: var(--moduix-spacing-3);
49
+ --spacing-3_5: var(--moduix-spacing-3-5);
50
+ --spacing-4: var(--moduix-spacing-4);
51
+ --spacing-4_5: var(--moduix-spacing-4-5);
52
+ --spacing-5: var(--moduix-spacing-5);
53
+ --spacing-6: var(--moduix-spacing-6);
54
+ --spacing-7: var(--moduix-spacing-7);
55
+ --spacing-8: var(--moduix-spacing-8);
56
+ --spacing-10: var(--moduix-spacing-10);
57
+ --spacing-space-xs: var(--moduix-spacing-xs);
58
+ --spacing-space-sm: var(--moduix-spacing-sm);
59
+ --spacing-space-md: var(--moduix-spacing-md);
60
+ --spacing-space-lg: var(--moduix-spacing-lg);
61
+ --spacing-space-xl: var(--moduix-spacing-xl);
62
+ --spacing-space-2xl: var(--moduix-spacing-2xl);
63
+ --spacing-control-xs: var(--moduix-size-xs);
64
+ --spacing-control-sm: var(--moduix-size-sm);
65
+ --spacing-control-md: var(--moduix-size-md);
66
+ --spacing-control-lg: var(--moduix-size-lg);
67
+ --spacing-control-xl: var(--moduix-size-xl);
68
+ --radius-none: var(--moduix-radius-none);
69
+ --radius-xs: var(--moduix-radius-xs);
70
+ --radius-sm: var(--moduix-radius-sm);
71
+ --radius-md: var(--moduix-radius-md);
72
+ --radius-lg: var(--moduix-radius-lg);
73
+ --radius-xl: var(--moduix-radius-xl);
74
+ --radius-full: var(--moduix-radius-full);
75
+ --shadow-sm: var(--moduix-shadow-sm);
76
+ --shadow-md: var(--moduix-shadow-md);
77
+ --shadow-lg: var(--moduix-shadow-lg);
78
+ --ease-in: var(--moduix-ease-in);
79
+ --ease-out: var(--moduix-ease-out);
80
+ --ease-in-out: var(--moduix-ease-in-out);
81
+ --ease-standard: var(--moduix-ease-standard);
82
+ --ease-spring: var(--moduix-ease-spring);
83
+ --ease-emphasized: var(--moduix-ease-emphasized);
84
+ --color-background: var(--moduix-color-background);
85
+ --color-foreground: var(--moduix-color-foreground);
86
+ --color-card: var(--moduix-color-card);
87
+ --color-card-foreground: var(--moduix-color-card-foreground);
88
+ --color-popover: var(--moduix-color-popover);
89
+ --color-popover-foreground: var(--moduix-color-popover-foreground);
90
+ --color-primary: var(--moduix-color-primary);
91
+ --color-primary-foreground: var(--moduix-color-primary-foreground);
92
+ --color-secondary: var(--moduix-color-secondary);
93
+ --color-secondary-foreground: var(--moduix-color-secondary-foreground);
94
+ --color-muted: var(--moduix-color-muted);
95
+ --color-muted-foreground: var(--moduix-color-muted-foreground);
96
+ --color-accent: var(--moduix-color-accent);
97
+ --color-accent-foreground: var(--moduix-color-accent-foreground);
98
+ --color-destructive: var(--moduix-color-destructive);
99
+ --color-destructive-foreground: var(--moduix-color-destructive-foreground);
100
+ --color-success: var(--moduix-color-success);
101
+ --color-warning: var(--moduix-color-warning);
102
+ --color-border: var(--moduix-color-border);
103
+ --color-input: var(--moduix-color-input);
104
+ --color-ring: var(--moduix-color-ring);
105
+ --color-overlay: var(--moduix-color-overlay);
106
+ --color-overlay-foreground: var(--moduix-color-overlay-foreground);
107
+ --color-chart-1: var(--moduix-color-chart-1);
108
+ --color-chart-2: var(--moduix-color-chart-2);
109
+ --color-chart-3: var(--moduix-color-chart-3);
110
+ --color-chart-4: var(--moduix-color-chart-4);
111
+ --color-chart-5: var(--moduix-color-chart-5);
112
+ --color-sidebar: var(--moduix-color-sidebar);
113
+ --color-sidebar-foreground: var(--moduix-color-sidebar-foreground);
114
+ --color-sidebar-primary: var(--moduix-color-sidebar-primary);
115
+ --color-sidebar-primary-foreground: var(--moduix-color-sidebar-primary-foreground);
116
+ --color-sidebar-accent: var(--moduix-color-sidebar-accent);
117
+ --color-sidebar-accent-foreground: var(--moduix-color-sidebar-accent-foreground);
118
+ --color-sidebar-border: var(--moduix-color-sidebar-border);
119
+ --color-sidebar-ring: var(--moduix-color-sidebar-ring);
120
+ --animate-moduix-accordion-open: moduix-accordion-item-content-open
121
+ var(--moduix-transition-default);
122
+ --animate-moduix-accordion-closed: moduix-accordion-item-content-closed
123
+ var(--moduix-transition-default);
124
+ --animate-moduix-accordion-open-horizontal: moduix-accordion-item-content-open-horizontal
125
+ var(--moduix-transition-default);
126
+ --animate-moduix-accordion-closed-horizontal: moduix-accordion-item-content-closed-horizontal
127
+ var(--moduix-transition-default);
128
+ --animate-moduix-swap-fade-enter: moduix-fade-in var(--moduix-transition-slow);
129
+ --animate-moduix-swap-fade-exit: moduix-fade-out var(--moduix-transition-slow);
130
+ --animate-moduix-swap-scale-enter: moduix-swap-scale-enter var(--moduix-transition-slow);
131
+ --animate-moduix-swap-scale-exit: moduix-swap-scale-exit var(--moduix-transition-slow);
132
+ --animate-moduix-swap-rotate-enter: moduix-swap-rotate-enter var(--moduix-transition-slow);
133
+ --animate-moduix-swap-rotate-exit: moduix-swap-rotate-exit var(--moduix-transition-slow);
134
+ --animate-moduix-swap-flip-enter: moduix-swap-flip-enter var(--moduix-transition-slow);
135
+ --animate-moduix-swap-flip-exit: moduix-swap-flip-exit var(--moduix-transition-slow);
136
+ --animate-moduix-marquee-x: moduix-marquee-x var(--marquee-duration) linear var(--marquee-delay)
137
+ var(--marquee-loop-count);
138
+ --animate-moduix-marquee-y: moduix-marquee-y var(--marquee-duration) linear var(--marquee-delay)
139
+ var(--marquee-loop-count);
140
+ --animate-moduix-progress-linear-indeterminate: moduix-progress-linear-indeterminate 1.5s
141
+ ease-in-out infinite;
142
+ --animate-moduix-progress-linear-indeterminate-vertical: moduix-progress-linear-indeterminate-vertical
143
+ 1.5s ease-in-out infinite;
144
+ --animate-moduix-collapsible-open: moduix-collapsible-content-open
145
+ var(--moduix-transition-default);
146
+ --animate-moduix-collapsible-closed: moduix-collapsible-content-closed
147
+ var(--moduix-transition-default);
148
+ --animate-moduix-collapsible-open-partial: moduix-collapsible-content-open-partial
149
+ var(--moduix-transition-default);
150
+ --animate-moduix-collapsible-closed-partial: moduix-collapsible-content-closed-partial
151
+ var(--moduix-transition-default);
152
+ --animate-moduix-menu-open: moduix-menu-content-open var(--moduix-transition-default);
153
+ --animate-moduix-menu-closed: moduix-menu-content-closed var(--moduix-transition-default);
154
+ --animate-moduix-navigation-menu-content-from-start: moduix-navigation-menu-content-from-start
155
+ var(--moduix-transition-default) both;
156
+ --animate-moduix-navigation-menu-content-from-end: moduix-navigation-menu-content-from-end
157
+ var(--moduix-transition-default) both;
158
+ --animate-moduix-navigation-menu-content-to-start: moduix-navigation-menu-content-to-start
159
+ var(--moduix-transition-default) both;
160
+ --animate-moduix-navigation-menu-content-to-end: moduix-navigation-menu-content-to-end
161
+ var(--moduix-transition-default) both;
162
+ --animate-moduix-drawer-backdrop-in: moduix-drawer-backdrop-in var(--moduix-transition-spring);
163
+ --animate-moduix-drawer-backdrop-out: moduix-drawer-backdrop-out var(--moduix-transition-spring)
164
+ forwards;
165
+ --animate-moduix-drawer-content-in-down: moduix-drawer-content-in-down
166
+ var(--moduix-transition-spring);
167
+ --animate-moduix-drawer-content-out-down: moduix-drawer-content-out-down
168
+ var(--moduix-transition-spring) forwards;
169
+ --animate-moduix-drawer-content-in-up: moduix-drawer-content-in-up var(--moduix-transition-spring);
170
+ --animate-moduix-drawer-content-out-up: moduix-drawer-content-out-up
171
+ var(--moduix-transition-spring) forwards;
172
+ --animate-moduix-drawer-content-in-left: moduix-drawer-content-in-left
173
+ var(--moduix-transition-spring);
174
+ --animate-moduix-drawer-content-out-left: moduix-drawer-content-out-left
175
+ var(--moduix-transition-spring) forwards;
176
+ --animate-moduix-drawer-content-in-right: moduix-drawer-content-in-right
177
+ var(--moduix-transition-spring);
178
+ --animate-moduix-drawer-content-out-right: moduix-drawer-content-out-right
179
+ var(--moduix-transition-spring) forwards;
180
+ }
@@ -0,0 +1,4 @@
1
+ :root {
2
+ --moduix-scale-popup: 0.9; /* overlays: dialog, popover, tooltip, menu, hover-card, toast, nav-menu */
3
+ --moduix-scale-dropdown: 0.95; /* dropdown lists: select, combobox */
4
+ }
@@ -0,0 +1,32 @@
1
+ :root {
2
+ /* Duration */
3
+ --moduix-duration-fast: 150ms;
4
+ --moduix-duration-normal: 200ms;
5
+ --moduix-duration-slow: 350ms;
6
+ --moduix-duration-slower: 450ms;
7
+
8
+ /* Easing */
9
+ --moduix-ease-in: cubic-bezier(0.4, 0, 1, 1);
10
+ --moduix-ease-out: cubic-bezier(0, 0, 0.2, 1);
11
+ --moduix-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
12
+ --moduix-ease-standard: ease;
13
+ --moduix-ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
14
+ --moduix-ease-emphasized: cubic-bezier(0.22, 1, 0.36, 1);
15
+
16
+ /* Composed (shorthand) */
17
+ --moduix-transition-default: var(--moduix-duration-normal) var(--moduix-ease-in-out);
18
+ --moduix-transition-fast: var(--moduix-duration-fast) var(--moduix-ease-in-out);
19
+ --moduix-transition-slow: var(--moduix-duration-slow) var(--moduix-ease-in-out);
20
+ --moduix-transition-slower: var(--moduix-duration-slower) var(--moduix-ease-in-out);
21
+ --moduix-transition-spring: var(--moduix-duration-slower) var(--moduix-ease-spring);
22
+ --moduix-transition-emphasized: var(--moduix-duration-slower) var(--moduix-ease-emphasized);
23
+ }
24
+
25
+ @media (prefers-reduced-motion: reduce) {
26
+ :root {
27
+ --moduix-duration-fast: 0.01ms;
28
+ --moduix-duration-normal: 0.01ms;
29
+ --moduix-duration-slow: 0.01ms;
30
+ --moduix-duration-slower: 0.01ms;
31
+ }
32
+ }
@@ -0,0 +1,37 @@
1
+ :root {
2
+ /* Font-family */
3
+ --moduix-font-sans:
4
+ 'Noto Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
5
+ 'Segoe UI Symbol', 'Noto Color Emoji';
6
+ --moduix-font-mono:
7
+ ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
8
+ monospace;
9
+
10
+ /* Weight */
11
+ --moduix-weight-regular: 400;
12
+ --moduix-weight-medium: 500;
13
+ --moduix-weight-semibold: 600;
14
+ --moduix-weight-bold: 700;
15
+
16
+ /* Font-size */
17
+ --moduix-text-xs: 12px;
18
+ --moduix-text-sm: 14px;
19
+ --moduix-text-md: 16px;
20
+ --moduix-text-lg: 18px;
21
+ --moduix-text-xl: 20px;
22
+ --moduix-text-2xl: 24px;
23
+ --moduix-text-3xl: 30px;
24
+
25
+ /* Line-height */
26
+ --moduix-line-height-text-xs: 16px;
27
+ --moduix-line-height-text-sm: 20px;
28
+ --moduix-line-height-text-md: 24px;
29
+ --moduix-line-height-text-lg: 28px;
30
+ --moduix-line-height-text-xl: 28px;
31
+ --moduix-line-height-text-2xl: 32px;
32
+ --moduix-line-height-text-3xl: 36px;
33
+
34
+ /* Letter-spacing */
35
+ --moduix-tracking-text-sm: -0.01em; /* -1% */
36
+ --moduix-tracking-text-xs: -0.016em; /* -1.6% */
37
+ }
@@ -0,0 +1,13 @@
1
+ :root {
2
+ --moduix-z-default: 1;
3
+ --moduix-z-xs: 5;
4
+ --moduix-z-sm: 10;
5
+ --moduix-z-md: 20;
6
+ --moduix-z-lg: 30;
7
+ --moduix-z-xl: 40;
8
+
9
+ --moduix-z-backdrop: 40;
10
+ --moduix-z-modal: 50;
11
+ --moduix-z-popup: 60;
12
+ --moduix-z-toast: 70;
13
+ }