@rovula/ui 0.0.21 → 0.0.23

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 (314) hide show
  1. package/dist/cjs/bundle.css +185 -495
  2. package/dist/cjs/bundle.js +3 -3
  3. package/dist/cjs/bundle.js.map +1 -1
  4. package/dist/cjs/types/components/ActionButton/ActionButton.stories.d.ts +7 -7
  5. package/dist/cjs/types/components/Button/Button.d.ts +1 -1
  6. package/dist/cjs/types/components/Button/Button.styles.d.ts +1 -1
  7. package/dist/cjs/types/components/Button/Buttons.stories.d.ts +13 -13
  8. package/dist/cjs/types/components/Checkbox/Checkbox.stories.d.ts +60 -60
  9. package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +64 -64
  10. package/dist/cjs/types/components/Icon/Icon.d.ts +11 -0
  11. package/dist/cjs/types/components/Icon/Icon.stories.d.ts +508 -0
  12. package/dist/cjs/types/components/Icon/Icon.styles.d.ts +4 -0
  13. package/dist/cjs/types/components/Input/Input.stories.d.ts +115 -115
  14. package/dist/cjs/types/components/Label/Label.stories.d.ts +51 -51
  15. package/dist/cjs/types/components/RadioGroup/RadioGroup.stories.d.ts +54 -54
  16. package/dist/cjs/types/components/Search/Search.stories.d.ts +64 -64
  17. package/dist/cjs/types/components/Slider/Slider.d.ts +5 -0
  18. package/dist/cjs/types/components/Slider/Slider.stories.d.ts +303 -0
  19. package/dist/cjs/types/components/Switch/Switch.d.ts +4 -0
  20. package/dist/cjs/types/components/Switch/Switch.stories.d.ts +305 -0
  21. package/dist/cjs/types/components/Table/Table.stories.d.ts +7 -7
  22. package/dist/cjs/types/components/Tabs/Tabs.d.ts +12 -3
  23. package/dist/cjs/types/components/Tabs/Tabs.stories.d.ts +18 -0
  24. package/dist/cjs/types/components/Text/Text.d.ts +6 -5
  25. package/dist/cjs/types/components/Text/Text.stories.d.ts +2 -10
  26. package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +62 -62
  27. package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +1 -1
  28. package/dist/cjs/types/icons/heroIconConfig.d.ts +1 -0
  29. package/dist/cjs/types/icons/iconConfig.d.ts +2 -0
  30. package/dist/cjs/types/icons/iconRegistry.d.ts +19 -0
  31. package/dist/cjs/types/icons/index.d.ts +1 -0
  32. package/dist/cjs/types/icons/material-icon/outline/ChevronDownIcon.d.ts +3 -0
  33. package/dist/cjs/types/icons/material-icon/outline/CollapseContentIcon.d.ts +3 -0
  34. package/dist/cjs/types/icons/material-icon/outline/ContentCopyIcon.d.ts +3 -0
  35. package/dist/cjs/types/icons/material-icon/outline/ContentPasteIcon.d.ts +3 -0
  36. package/dist/cjs/types/icons/material-icon/outline/DataTableIcon.d.ts +3 -0
  37. package/dist/cjs/types/icons/material-icon/outline/ExpandCircleDownIcon.d.ts +3 -0
  38. package/dist/cjs/types/icons/material-icon/outline/ExpandCircleRightIcon.d.ts +3 -0
  39. package/dist/cjs/types/icons/material-icon/outline/ExpandCircleUpIcon.d.ts +3 -0
  40. package/dist/cjs/types/icons/material-icon/outline/ExpandContentIcon.d.ts +3 -0
  41. package/dist/cjs/types/icons/material-icon/outline/InterestsIcon.d.ts +3 -0
  42. package/dist/cjs/types/icons/material-icon/outline/SaveIcon.d.ts +3 -0
  43. package/dist/cjs/types/icons/material-icon/outline/TableChartIcon.d.ts +3 -0
  44. package/dist/cjs/types/icons/material-icon/outline/index.d.ts +12 -0
  45. package/dist/cjs/types/icons/material-icon/solid/ChevronDownIcon.d.ts +3 -0
  46. package/dist/cjs/types/icons/material-icon/solid/CollapseContentIcon.d.ts +3 -0
  47. package/dist/cjs/types/icons/material-icon/solid/ContentCopyIcon.d.ts +3 -0
  48. package/dist/cjs/types/icons/material-icon/solid/ContentPasteIcon.d.ts +3 -0
  49. package/dist/cjs/types/icons/material-icon/solid/DataTableIcon.d.ts +3 -0
  50. package/dist/cjs/types/icons/material-icon/solid/ExpandCircleDownIcon.d.ts +3 -0
  51. package/dist/cjs/types/icons/material-icon/solid/ExpandCircleRightIcon.d.ts +3 -0
  52. package/dist/cjs/types/icons/material-icon/solid/ExpandCircleUpIcon.d.ts +3 -0
  53. package/dist/cjs/types/icons/material-icon/solid/ExpandContentIcon.d.ts +3 -0
  54. package/dist/cjs/types/icons/material-icon/solid/InterestsIcon.d.ts +3 -0
  55. package/dist/cjs/types/icons/material-icon/solid/SaveIcon.d.ts +3 -0
  56. package/dist/cjs/types/icons/material-icon/solid/TableChartIcon.d.ts +3 -0
  57. package/dist/cjs/types/icons/material-icon/solid/index.d.ts +12 -0
  58. package/dist/cjs/types/icons/materialIconConfig.d.ts +1 -0
  59. package/dist/cjs/types/icons/type.d.ts +8 -0
  60. package/dist/cjs/types/icons/utils.d.ts +1 -0
  61. package/dist/cjs/types/index.d.ts +4 -0
  62. package/dist/components/ActionButton/ActionButton.js +8 -19
  63. package/dist/components/ActionButton/ActionButton.stories.js +12 -22
  64. package/dist/components/ActionButton/ActionButton.styles.js +33 -8
  65. package/dist/components/AlertDialog/Alert.stories.js +5 -16
  66. package/dist/components/AlertDialog/AlertDialog.js +27 -38
  67. package/dist/components/Avatar/Avatar.js +7 -8
  68. package/dist/components/Avatar/Avatar.stories.js +11 -22
  69. package/dist/components/Avatar/Avatar.styles.js +1 -1
  70. package/dist/components/Avatar/AvatarBase.js +9 -20
  71. package/dist/components/Avatar/AvatarGroup.js +9 -10
  72. package/dist/components/Avatar/AvatarGroup.stories.js +9 -20
  73. package/dist/components/Button/Button.js +4 -15
  74. package/dist/components/Button/Button.styles.js +1 -1
  75. package/dist/components/Button/Buttons.stories.js +18 -29
  76. package/dist/components/Calendar/Calendar.js +3 -14
  77. package/dist/components/Calendar/Calendar.stories.js +6 -17
  78. package/dist/components/Checkbox/Checkbox.js +3 -14
  79. package/dist/components/Checkbox/Checkbox.stories.js +12 -23
  80. package/dist/components/Collapsible/Collapsible.js +14 -17
  81. package/dist/components/Collapsible/Collapsible.stories.js +9 -20
  82. package/dist/components/Collapsible/Collapsible.styles.js +4 -4
  83. package/dist/components/Collapsible/CollapsibleContext.js +9 -10
  84. package/dist/components/DataTable/DataTable.js +25 -26
  85. package/dist/components/DataTable/DataTable.stories.js +10 -21
  86. package/dist/components/DatePicker/DatePicker.js +4 -20
  87. package/dist/components/DatePicker/DatePicker.stories.js +6 -17
  88. package/dist/components/Dialog/Dialog.js +22 -33
  89. package/dist/components/Dialog/Dialog.stories.js +8 -19
  90. package/dist/components/Dropdown/Dropdown.js +26 -37
  91. package/dist/components/Dropdown/Dropdown.stories.js +36 -55
  92. package/dist/components/Dropdown/Dropdown.styles.js +3 -3
  93. package/dist/components/Form/Form.js +26 -87
  94. package/dist/components/Form/Text.js +2 -3
  95. package/dist/components/Form/TextInput.js +2 -3
  96. package/dist/components/Icon/Icon.js +37 -0
  97. package/dist/components/Icon/Icon.stories.js +356 -0
  98. package/dist/components/Icon/Icon.styles.js +25 -0
  99. package/dist/components/Input/Input.js +9 -20
  100. package/dist/components/Input/Input.stories.js +6 -17
  101. package/dist/components/Input/Input.styles.js +1 -1
  102. package/dist/components/Label/Label.js +3 -14
  103. package/dist/components/Label/Label.stories.js +5 -16
  104. package/dist/components/Label/Label.styles.js +1 -1
  105. package/dist/components/Loading/Loading.js +5 -17
  106. package/dist/components/Loading/Loading.stories.js +6 -17
  107. package/dist/components/Navbar/Navbar.js +3 -4
  108. package/dist/components/Navbar/Navbar.stories.js +8 -19
  109. package/dist/components/Popover/Popover.js +5 -16
  110. package/dist/components/Popover/Popover.stories.js +5 -16
  111. package/dist/components/ProgressBar/ProgressBar.js +8 -9
  112. package/dist/components/ProgressBar/ProgressBar.stories.js +14 -27
  113. package/dist/components/RadioGroup/RadioGroup.js +6 -17
  114. package/dist/components/RadioGroup/RadioGroup.stories.js +9 -20
  115. package/dist/components/Search/Search.js +2 -13
  116. package/dist/components/Search/Search.stories.js +10 -21
  117. package/dist/components/Slider/Slider.js +22 -0
  118. package/dist/components/Slider/Slider.stories.js +33 -0
  119. package/dist/components/Switch/Switch.js +22 -0
  120. package/dist/components/Switch/Switch.stories.js +32 -0
  121. package/dist/components/Table/Datagrid.js +2 -3
  122. package/dist/components/Table/Table.js +24 -35
  123. package/dist/components/Table/Table.stories.js +5 -16
  124. package/dist/components/Tabs/Tabs.js +57 -10
  125. package/dist/components/Tabs/Tabs.stories.js +13 -24
  126. package/dist/components/Text/Text.js +19 -6
  127. package/dist/components/Text/Text.stories.js +12 -23
  128. package/dist/components/TextInput/TextInput.js +30 -41
  129. package/dist/components/TextInput/TextInput.stories.js +17 -28
  130. package/dist/components/TextInput/TextInput.styles.js +7 -7
  131. package/dist/components/ThemeToggle.js +3 -3
  132. package/dist/esm/bundle.css +185 -495
  133. package/dist/esm/bundle.js +3 -3
  134. package/dist/esm/bundle.js.map +1 -1
  135. package/dist/esm/types/components/ActionButton/ActionButton.stories.d.ts +7 -7
  136. package/dist/esm/types/components/Button/Button.d.ts +1 -1
  137. package/dist/esm/types/components/Button/Button.styles.d.ts +1 -1
  138. package/dist/esm/types/components/Button/Buttons.stories.d.ts +13 -13
  139. package/dist/esm/types/components/Checkbox/Checkbox.stories.d.ts +60 -60
  140. package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +64 -64
  141. package/dist/esm/types/components/Icon/Icon.d.ts +11 -0
  142. package/dist/esm/types/components/Icon/Icon.stories.d.ts +508 -0
  143. package/dist/esm/types/components/Icon/Icon.styles.d.ts +4 -0
  144. package/dist/esm/types/components/Input/Input.stories.d.ts +115 -115
  145. package/dist/esm/types/components/Label/Label.stories.d.ts +51 -51
  146. package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +54 -54
  147. package/dist/esm/types/components/Search/Search.stories.d.ts +64 -64
  148. package/dist/esm/types/components/Slider/Slider.d.ts +5 -0
  149. package/dist/esm/types/components/Slider/Slider.stories.d.ts +303 -0
  150. package/dist/esm/types/components/Switch/Switch.d.ts +4 -0
  151. package/dist/esm/types/components/Switch/Switch.stories.d.ts +305 -0
  152. package/dist/esm/types/components/Table/Table.stories.d.ts +7 -7
  153. package/dist/esm/types/components/Tabs/Tabs.d.ts +12 -3
  154. package/dist/esm/types/components/Tabs/Tabs.stories.d.ts +18 -0
  155. package/dist/esm/types/components/Text/Text.d.ts +6 -5
  156. package/dist/esm/types/components/Text/Text.stories.d.ts +2 -10
  157. package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +62 -62
  158. package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +1 -1
  159. package/dist/esm/types/icons/heroIconConfig.d.ts +1 -0
  160. package/dist/esm/types/icons/iconConfig.d.ts +2 -0
  161. package/dist/esm/types/icons/iconRegistry.d.ts +19 -0
  162. package/dist/esm/types/icons/index.d.ts +1 -0
  163. package/dist/esm/types/icons/material-icon/outline/ChevronDownIcon.d.ts +3 -0
  164. package/dist/esm/types/icons/material-icon/outline/CollapseContentIcon.d.ts +3 -0
  165. package/dist/esm/types/icons/material-icon/outline/ContentCopyIcon.d.ts +3 -0
  166. package/dist/esm/types/icons/material-icon/outline/ContentPasteIcon.d.ts +3 -0
  167. package/dist/esm/types/icons/material-icon/outline/DataTableIcon.d.ts +3 -0
  168. package/dist/esm/types/icons/material-icon/outline/ExpandCircleDownIcon.d.ts +3 -0
  169. package/dist/esm/types/icons/material-icon/outline/ExpandCircleRightIcon.d.ts +3 -0
  170. package/dist/esm/types/icons/material-icon/outline/ExpandCircleUpIcon.d.ts +3 -0
  171. package/dist/esm/types/icons/material-icon/outline/ExpandContentIcon.d.ts +3 -0
  172. package/dist/esm/types/icons/material-icon/outline/InterestsIcon.d.ts +3 -0
  173. package/dist/esm/types/icons/material-icon/outline/SaveIcon.d.ts +3 -0
  174. package/dist/esm/types/icons/material-icon/outline/TableChartIcon.d.ts +3 -0
  175. package/dist/esm/types/icons/material-icon/outline/index.d.ts +12 -0
  176. package/dist/esm/types/icons/material-icon/solid/ChevronDownIcon.d.ts +3 -0
  177. package/dist/esm/types/icons/material-icon/solid/CollapseContentIcon.d.ts +3 -0
  178. package/dist/esm/types/icons/material-icon/solid/ContentCopyIcon.d.ts +3 -0
  179. package/dist/esm/types/icons/material-icon/solid/ContentPasteIcon.d.ts +3 -0
  180. package/dist/esm/types/icons/material-icon/solid/DataTableIcon.d.ts +3 -0
  181. package/dist/esm/types/icons/material-icon/solid/ExpandCircleDownIcon.d.ts +3 -0
  182. package/dist/esm/types/icons/material-icon/solid/ExpandCircleRightIcon.d.ts +3 -0
  183. package/dist/esm/types/icons/material-icon/solid/ExpandCircleUpIcon.d.ts +3 -0
  184. package/dist/esm/types/icons/material-icon/solid/ExpandContentIcon.d.ts +3 -0
  185. package/dist/esm/types/icons/material-icon/solid/InterestsIcon.d.ts +3 -0
  186. package/dist/esm/types/icons/material-icon/solid/SaveIcon.d.ts +3 -0
  187. package/dist/esm/types/icons/material-icon/solid/TableChartIcon.d.ts +3 -0
  188. package/dist/esm/types/icons/material-icon/solid/index.d.ts +12 -0
  189. package/dist/esm/types/icons/materialIconConfig.d.ts +1 -0
  190. package/dist/esm/types/icons/type.d.ts +8 -0
  191. package/dist/esm/types/icons/utils.d.ts +1 -0
  192. package/dist/esm/types/index.d.ts +4 -0
  193. package/dist/icons/heroIconConfig.js +13 -0
  194. package/dist/icons/iconConfig.js +2 -0
  195. package/dist/icons/iconRegistry.js +47 -0
  196. package/dist/icons/index.js +1 -0
  197. package/dist/icons/material-icon/outline/ChevronDownIcon.js +3 -0
  198. package/dist/icons/material-icon/outline/CollapseContentIcon.js +3 -0
  199. package/dist/icons/material-icon/outline/ContentCopyIcon.js +3 -0
  200. package/dist/icons/material-icon/outline/ContentPasteIcon.js +3 -0
  201. package/dist/icons/material-icon/outline/DataTableIcon.js +3 -0
  202. package/dist/icons/material-icon/outline/ExpandCircleDownIcon.js +3 -0
  203. package/dist/icons/material-icon/outline/ExpandCircleRightIcon.js +3 -0
  204. package/dist/icons/material-icon/outline/ExpandCircleUpIcon.js +3 -0
  205. package/dist/icons/material-icon/outline/ExpandContentIcon.js +3 -0
  206. package/dist/icons/material-icon/outline/InterestsIcon.js +3 -0
  207. package/dist/icons/material-icon/outline/SaveIcon.js +3 -0
  208. package/dist/icons/material-icon/outline/TableChartIcon.js +3 -0
  209. package/dist/icons/material-icon/outline/index.js +12 -0
  210. package/dist/icons/material-icon/solid/ChevronDownIcon.js +3 -0
  211. package/dist/icons/material-icon/solid/CollapseContentIcon.js +3 -0
  212. package/dist/icons/material-icon/solid/ContentCopyIcon.js +3 -0
  213. package/dist/icons/material-icon/solid/ContentPasteIcon.js +3 -0
  214. package/dist/icons/material-icon/solid/DataTableIcon.js +3 -0
  215. package/dist/icons/material-icon/solid/ExpandCircleDownIcon.js +3 -0
  216. package/dist/icons/material-icon/solid/ExpandCircleRightIcon.js +3 -0
  217. package/dist/icons/material-icon/solid/ExpandCircleUpIcon.js +3 -0
  218. package/dist/icons/material-icon/solid/ExpandContentIcon.js +3 -0
  219. package/dist/icons/material-icon/solid/InterestsIcon.js +3 -0
  220. package/dist/icons/material-icon/solid/SaveIcon.js +3 -0
  221. package/dist/icons/material-icon/solid/TableChartIcon.js +3 -0
  222. package/dist/icons/material-icon/solid/index.js +12 -0
  223. package/dist/icons/materialIconConfig.js +13 -0
  224. package/dist/icons/type.js +1 -0
  225. package/dist/icons/utils.js +6 -0
  226. package/dist/index.d.ts +35 -8
  227. package/dist/index.js +4 -0
  228. package/dist/src/theme/global.css +245 -619
  229. package/dist/stories/ColorGroupPreview.js +6 -9
  230. package/dist/stories/ColorPreview.js +1 -2
  231. package/dist/theme/main-preset.js +24 -0
  232. package/dist/theme/plugins/utilities/typography.js +9 -0
  233. package/dist/theme/presets/colors.js +8 -1
  234. package/dist/theme/tokens/color.css +1 -0
  235. package/dist/theme/tokens/typography.css +21 -0
  236. package/dist/utils/cn.js +1 -5
  237. package/dist/utils/datetime.js +12 -12
  238. package/package.json +3 -1
  239. package/src/components/ActionButton/ActionButton.stories.tsx +32 -13
  240. package/src/components/ActionButton/ActionButton.styles.ts +33 -8
  241. package/src/components/Button/Button.tsx +1 -4
  242. package/src/components/Collapsible/Collapsible.tsx +1 -1
  243. package/src/components/DataTable/DataTable.tsx +2 -2
  244. package/src/components/Icon/Icon.stories.tsx +450 -0
  245. package/src/components/Icon/Icon.styles.ts +26 -0
  246. package/src/components/Icon/Icon.tsx +67 -0
  247. package/src/components/Slider/Slider.stories.tsx +47 -0
  248. package/src/components/Slider/Slider.tsx +31 -0
  249. package/src/components/Switch/Switch.stories.tsx +46 -0
  250. package/src/components/Switch/Switch.tsx +32 -0
  251. package/src/components/Table/Table.tsx +2 -2
  252. package/src/components/Tabs/Tabs.tsx +100 -13
  253. package/src/components/Text/Text.tsx +35 -22
  254. package/src/icons/heroIconConfig.ts +23 -0
  255. package/src/icons/iconConfig.ts +2 -0
  256. package/src/icons/iconRegistry.ts +76 -0
  257. package/src/icons/index.ts +1 -0
  258. package/src/icons/material-icon/outline/ChevronDownIcon.tsx +22 -0
  259. package/src/icons/material-icon/outline/CollapseContentIcon.tsx +20 -0
  260. package/src/icons/material-icon/outline/ContentCopyIcon.tsx +20 -0
  261. package/src/icons/material-icon/outline/ContentPasteIcon.tsx +20 -0
  262. package/src/icons/material-icon/outline/DataTableIcon.tsx +20 -0
  263. package/src/icons/material-icon/outline/ExpandCircleDownIcon.tsx +20 -0
  264. package/src/icons/material-icon/outline/ExpandCircleRightIcon.tsx +20 -0
  265. package/src/icons/material-icon/outline/ExpandCircleUpIcon.tsx +20 -0
  266. package/src/icons/material-icon/outline/ExpandContentIcon.tsx +20 -0
  267. package/src/icons/material-icon/outline/InterestsIcon.tsx +20 -0
  268. package/src/icons/material-icon/outline/SaveIcon.tsx +20 -0
  269. package/src/icons/material-icon/outline/TableChartIcon.tsx +20 -0
  270. package/src/icons/material-icon/outline/index.ts +12 -0
  271. package/src/icons/material-icon/solid/ChevronDownIcon.tsx +22 -0
  272. package/src/icons/material-icon/solid/CollapseContentIcon.tsx +20 -0
  273. package/src/icons/material-icon/solid/ContentCopyIcon.tsx +20 -0
  274. package/src/icons/material-icon/solid/ContentPasteIcon.tsx +20 -0
  275. package/src/icons/material-icon/solid/DataTableIcon.tsx +20 -0
  276. package/src/icons/material-icon/solid/ExpandCircleDownIcon.tsx +20 -0
  277. package/src/icons/material-icon/solid/ExpandCircleRightIcon.tsx +20 -0
  278. package/src/icons/material-icon/solid/ExpandCircleUpIcon.tsx +20 -0
  279. package/src/icons/material-icon/solid/ExpandContentIcon.tsx +20 -0
  280. package/src/icons/material-icon/solid/InterestsIcon.tsx +20 -0
  281. package/src/icons/material-icon/solid/SaveIcon.tsx +20 -0
  282. package/src/icons/material-icon/solid/TableChartIcon.tsx +20 -0
  283. package/src/icons/material-icon/solid/index.ts +12 -0
  284. package/src/icons/materialIconConfig.tsx +23 -0
  285. package/src/icons/type.ts +11 -0
  286. package/src/icons/utils.ts +6 -0
  287. package/src/index.ts +5 -0
  288. package/src/theme/main-preset.js +24 -0
  289. package/src/theme/plugins/utilities/typography.js +9 -0
  290. package/src/theme/presets/colors.js +8 -1
  291. package/src/theme/tokens/color.css +1 -0
  292. package/src/theme/tokens/typography.css +21 -0
  293. package/dist/cjs/types/components/ActionButton/ActionButton.styles copy.d.ts +0 -6
  294. package/dist/cjs/types/components/Button/Button.styles copy.d.ts +0 -7
  295. package/dist/components/ActionButton/ActionButton.styles copy.js +0 -90
  296. package/dist/components/Button/Button.styles copy.js +0 -210
  297. package/dist/esm/types/components/ActionButton/ActionButton.styles copy.d.ts +0 -6
  298. package/dist/esm/types/components/Button/Button.styles copy.d.ts +0 -7
  299. package/src/_theme/global copy.css +0 -761
  300. package/src/_theme/global.css +0 -39
  301. package/src/_theme/main-preset.js +0 -239
  302. package/src/_theme/plugins/utilities/typography.js +0 -81
  303. package/src/_theme/presets/colors copy 2.js +0 -319
  304. package/src/_theme/presets/colors copy.js +0 -229
  305. package/src/_theme/presets/colors.js +0 -94
  306. package/src/_theme/theme.d.ts +0 -69
  307. package/src/_theme/variables/base/button.css +0 -334
  308. package/src/_theme/variables/base/components copy.css +0 -19
  309. package/src/_theme/variables/default/colors.css +0 -292
  310. package/src/_theme/variables/default/typography.css +0 -178
  311. package/src/_theme/variables/xspector/colors.css +0 -468
  312. package/src/_theme/variables/xspector/typography.css +0 -178
  313. package/src/components/ActionButton/ActionButton.styles copy.ts +0 -95
  314. package/src/components/Button/Button.styles copy.ts +0 -214
@@ -49,7 +49,7 @@ declare const meta: {
49
49
  spellCheck?: (boolean | "true" | "false") | undefined;
50
50
  style?: React.CSSProperties | undefined;
51
51
  tabIndex?: number | undefined;
52
- translate?: "yes" | "no" | undefined;
52
+ translate?: "no" | "yes" | undefined;
53
53
  radioGroup?: string | undefined;
54
54
  role?: React.AriaRole | undefined;
55
55
  about?: string | undefined;
@@ -75,11 +75,11 @@ declare const meta: {
75
75
  results?: number | undefined;
76
76
  security?: string | undefined;
77
77
  unselectable?: "off" | "on" | undefined;
78
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
78
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
79
79
  is?: string | undefined;
80
80
  "aria-activedescendant"?: string | undefined;
81
81
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
82
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
82
+ "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
83
83
  "aria-braillelabel"?: string | undefined;
84
84
  "aria-brailleroledescription"?: string | undefined;
85
85
  "aria-busy"?: (boolean | "true" | "false") | undefined;
@@ -89,7 +89,7 @@ declare const meta: {
89
89
  "aria-colindextext"?: string | undefined;
90
90
  "aria-colspan"?: number | undefined;
91
91
  "aria-controls"?: string | undefined;
92
- "aria-current"?: boolean | "true" | "false" | "date" | "time" | "step" | "page" | "location" | undefined;
92
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
93
93
  "aria-describedby"?: string | undefined;
94
94
  "aria-description"?: string | undefined;
95
95
  "aria-details"?: string | undefined;
@@ -99,14 +99,14 @@ declare const meta: {
99
99
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
100
100
  "aria-flowto"?: string | undefined;
101
101
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
102
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
102
+ "aria-haspopup"?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "true" | "false" | undefined;
103
103
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
104
104
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
105
105
  "aria-keyshortcuts"?: string | undefined;
106
106
  "aria-label"?: string | undefined;
107
107
  "aria-labelledby"?: string | undefined;
108
108
  "aria-level"?: number | undefined;
109
- "aria-live"?: "polite" | "off" | "assertive" | undefined;
109
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
110
110
  "aria-modal"?: (boolean | "true" | "false") | undefined;
111
111
  "aria-multiline"?: (boolean | "true" | "false") | undefined;
112
112
  "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
@@ -116,7 +116,7 @@ declare const meta: {
116
116
  "aria-posinset"?: number | undefined;
117
117
  "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
118
118
  "aria-readonly"?: (boolean | "true" | "false") | undefined;
119
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
119
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
120
120
  "aria-required"?: (boolean | "true" | "false") | undefined;
121
121
  "aria-roledescription"?: string | undefined;
122
122
  "aria-rowcount"?: number | undefined;
@@ -15,7 +15,7 @@ declare const Button: React.ForwardRefExoticComponent<{
15
15
  title?: string | undefined;
16
16
  size?: "sm" | "md" | "lg" | undefined;
17
17
  color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | undefined;
18
- variant?: "solid" | "outline" | "flat" | "link" | undefined;
18
+ variant?: "solid" | "outline" | "link" | "flat" | undefined;
19
19
  disabled?: boolean | undefined;
20
20
  isLoading?: boolean | undefined;
21
21
  fullwidth?: boolean | undefined;
@@ -1,7 +1,7 @@
1
1
  export declare const buttonVariants: (props?: ({
2
2
  color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | null | undefined;
3
3
  size?: "sm" | "md" | "lg" | null | undefined;
4
- variant?: "solid" | "outline" | "flat" | "link" | null | undefined;
4
+ variant?: "solid" | "outline" | "link" | "flat" | null | undefined;
5
5
  disabled?: boolean | null | undefined;
6
6
  fullwidth?: boolean | null | undefined;
7
7
  icon?: "sm" | "md" | "lg" | null | undefined;
@@ -5,7 +5,7 @@ declare const meta: {
5
5
  title?: string | undefined;
6
6
  size?: "sm" | "md" | "lg" | undefined;
7
7
  color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | undefined;
8
- variant?: "solid" | "outline" | "flat" | "link" | undefined;
8
+ variant?: "solid" | "outline" | "link" | "flat" | undefined;
9
9
  disabled?: boolean | undefined;
10
10
  isLoading?: boolean | undefined;
11
11
  fullwidth?: boolean | undefined;
@@ -21,7 +21,7 @@ declare const meta: {
21
21
  title?: string | undefined;
22
22
  size?: "sm" | "md" | "lg" | undefined;
23
23
  color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | undefined;
24
- variant?: "solid" | "outline" | "flat" | "link" | undefined;
24
+ variant?: "solid" | "outline" | "link" | "flat" | undefined;
25
25
  disabled?: boolean | undefined;
26
26
  isLoading?: boolean | undefined;
27
27
  fullwidth?: boolean | undefined;
@@ -56,7 +56,7 @@ declare const meta: {
56
56
  spellCheck?: (boolean | "true" | "false") | undefined;
57
57
  style?: React.CSSProperties | undefined;
58
58
  tabIndex?: number | undefined;
59
- translate?: "yes" | "no" | undefined;
59
+ translate?: "no" | "yes" | undefined;
60
60
  radioGroup?: string | undefined;
61
61
  role?: React.AriaRole | undefined;
62
62
  about?: string | undefined;
@@ -81,11 +81,11 @@ declare const meta: {
81
81
  results?: number | undefined;
82
82
  security?: string | undefined;
83
83
  unselectable?: "off" | "on" | undefined;
84
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
84
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
85
85
  is?: string | undefined;
86
86
  "aria-activedescendant"?: string | undefined;
87
87
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
88
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
88
+ "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
89
89
  "aria-braillelabel"?: string | undefined;
90
90
  "aria-brailleroledescription"?: string | undefined;
91
91
  "aria-busy"?: (boolean | "true" | "false") | undefined;
@@ -95,7 +95,7 @@ declare const meta: {
95
95
  "aria-colindextext"?: string | undefined;
96
96
  "aria-colspan"?: number | undefined;
97
97
  "aria-controls"?: string | undefined;
98
- "aria-current"?: boolean | "true" | "false" | "date" | "time" | "step" | "page" | "location" | undefined;
98
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
99
99
  "aria-describedby"?: string | undefined;
100
100
  "aria-description"?: string | undefined;
101
101
  "aria-details"?: string | undefined;
@@ -105,14 +105,14 @@ declare const meta: {
105
105
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
106
106
  "aria-flowto"?: string | undefined;
107
107
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
108
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
108
+ "aria-haspopup"?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "true" | "false" | undefined;
109
109
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
110
110
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
111
111
  "aria-keyshortcuts"?: string | undefined;
112
112
  "aria-label"?: string | undefined;
113
113
  "aria-labelledby"?: string | undefined;
114
114
  "aria-level"?: number | undefined;
115
- "aria-live"?: "polite" | "off" | "assertive" | undefined;
115
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
116
116
  "aria-modal"?: (boolean | "true" | "false") | undefined;
117
117
  "aria-multiline"?: (boolean | "true" | "false") | undefined;
118
118
  "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
@@ -122,7 +122,7 @@ declare const meta: {
122
122
  "aria-posinset"?: number | undefined;
123
123
  "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
124
124
  "aria-readonly"?: (boolean | "true" | "false") | undefined;
125
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
125
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
126
126
  "aria-required"?: (boolean | "true" | "false") | undefined;
127
127
  "aria-roledescription"?: string | undefined;
128
128
  "aria-rowcount"?: number | undefined;
@@ -314,7 +314,7 @@ export declare const Solid: {
314
314
  title?: string | undefined;
315
315
  size?: "sm" | "md" | "lg" | undefined;
316
316
  color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | undefined;
317
- variant?: "solid" | "outline" | "flat" | "link" | undefined;
317
+ variant?: "solid" | "outline" | "link" | "flat" | undefined;
318
318
  disabled?: boolean | undefined;
319
319
  isLoading?: boolean | undefined;
320
320
  fullwidth?: boolean | undefined;
@@ -334,7 +334,7 @@ export declare const Outline: {
334
334
  title?: string | undefined;
335
335
  size?: "sm" | "md" | "lg" | undefined;
336
336
  color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | undefined;
337
- variant?: "solid" | "outline" | "flat" | "link" | undefined;
337
+ variant?: "solid" | "outline" | "link" | "flat" | undefined;
338
338
  disabled?: boolean | undefined;
339
339
  isLoading?: boolean | undefined;
340
340
  fullwidth?: boolean | undefined;
@@ -354,7 +354,7 @@ export declare const Flat: {
354
354
  title?: string | undefined;
355
355
  size?: "sm" | "md" | "lg" | undefined;
356
356
  color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | undefined;
357
- variant?: "solid" | "outline" | "flat" | "link" | undefined;
357
+ variant?: "solid" | "outline" | "link" | "flat" | undefined;
358
358
  disabled?: boolean | undefined;
359
359
  isLoading?: boolean | undefined;
360
360
  fullwidth?: boolean | undefined;
@@ -374,7 +374,7 @@ export declare const Link: {
374
374
  title?: string | undefined;
375
375
  size?: "sm" | "md" | "lg" | undefined;
376
376
  color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | undefined;
377
- variant?: "solid" | "outline" | "flat" | "link" | undefined;
377
+ variant?: "solid" | "outline" | "link" | "flat" | undefined;
378
378
  disabled?: boolean | undefined;
379
379
  isLoading?: boolean | undefined;
380
380
  fullwidth?: boolean | undefined;
@@ -7,68 +7,19 @@ declare const meta: {
7
7
  layout: string;
8
8
  };
9
9
  decorators: ((Story: import("@storybook/types").PartialStoryFn<import("@storybook/react").ReactRenderer, {
10
- color?: string | undefined;
11
- disabled?: boolean | undefined;
12
- className?: string | undefined;
13
- form?: string | undefined;
14
- title?: string | undefined;
15
- children?: React.ReactNode;
16
- formAction?: string | undefined;
17
- formEncType?: string | undefined;
18
- formMethod?: string | undefined;
19
- formNoValidate?: boolean | undefined;
20
- formTarget?: string | undefined;
21
- name?: string | undefined;
22
- type?: "button" | "submit" | "reset" | undefined;
23
- value?: string | number | readonly string[] | undefined;
24
- defaultChecked?: import("@radix-ui/react-checkbox").CheckedState | undefined;
25
- defaultValue?: string | number | readonly string[] | undefined;
26
- suppressContentEditableWarning?: boolean | undefined;
27
10
  suppressHydrationWarning?: boolean | undefined;
28
- accessKey?: string | undefined;
29
- autoFocus?: boolean | undefined;
30
- contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
31
- contextMenu?: string | undefined;
32
- dir?: string | undefined;
33
- draggable?: (boolean | "true" | "false") | undefined;
34
- hidden?: boolean | undefined;
11
+ className?: string | undefined;
12
+ color?: string | undefined;
35
13
  id?: string | undefined;
36
14
  lang?: string | undefined;
37
- nonce?: string | undefined;
38
- slot?: string | undefined;
39
- spellCheck?: (boolean | "true" | "false") | undefined;
15
+ name?: string | undefined;
40
16
  style?: React.CSSProperties | undefined;
41
- tabIndex?: number | undefined;
42
- translate?: "yes" | "no" | undefined;
43
- radioGroup?: string | undefined;
17
+ type?: "button" | "submit" | "reset" | undefined;
44
18
  role?: React.AriaRole | undefined;
45
- about?: string | undefined;
46
- content?: string | undefined;
47
- datatype?: string | undefined;
48
- inlist?: any;
49
- prefix?: string | undefined;
50
- property?: string | undefined;
51
- rel?: string | undefined;
52
- resource?: string | undefined;
53
- rev?: string | undefined;
54
- typeof?: string | undefined;
55
- vocab?: string | undefined;
56
- autoCapitalize?: string | undefined;
57
- autoCorrect?: string | undefined;
58
- autoSave?: string | undefined;
59
- itemProp?: string | undefined;
60
- itemScope?: boolean | undefined;
61
- itemType?: string | undefined;
62
- itemID?: string | undefined;
63
- itemRef?: string | undefined;
64
- results?: number | undefined;
65
- security?: string | undefined;
66
- unselectable?: "off" | "on" | undefined;
67
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
68
- is?: string | undefined;
19
+ tabIndex?: number | undefined;
69
20
  "aria-activedescendant"?: string | undefined;
70
21
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
71
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
22
+ "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
72
23
  "aria-braillelabel"?: string | undefined;
73
24
  "aria-brailleroledescription"?: string | undefined;
74
25
  "aria-busy"?: (boolean | "true" | "false") | undefined;
@@ -78,7 +29,7 @@ declare const meta: {
78
29
  "aria-colindextext"?: string | undefined;
79
30
  "aria-colspan"?: number | undefined;
80
31
  "aria-controls"?: string | undefined;
81
- "aria-current"?: boolean | "true" | "false" | "date" | "time" | "step" | "page" | "location" | undefined;
32
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
82
33
  "aria-describedby"?: string | undefined;
83
34
  "aria-description"?: string | undefined;
84
35
  "aria-details"?: string | undefined;
@@ -88,14 +39,14 @@ declare const meta: {
88
39
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
89
40
  "aria-flowto"?: string | undefined;
90
41
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
91
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
42
+ "aria-haspopup"?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "true" | "false" | undefined;
92
43
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
93
44
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
94
45
  "aria-keyshortcuts"?: string | undefined;
95
46
  "aria-label"?: string | undefined;
96
47
  "aria-labelledby"?: string | undefined;
97
48
  "aria-level"?: number | undefined;
98
- "aria-live"?: "polite" | "off" | "assertive" | undefined;
49
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
99
50
  "aria-modal"?: (boolean | "true" | "false") | undefined;
100
51
  "aria-multiline"?: (boolean | "true" | "false") | undefined;
101
52
  "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
@@ -105,7 +56,7 @@ declare const meta: {
105
56
  "aria-posinset"?: number | undefined;
106
57
  "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
107
58
  "aria-readonly"?: (boolean | "true" | "false") | undefined;
108
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
59
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
109
60
  "aria-required"?: (boolean | "true" | "false") | undefined;
110
61
  "aria-roledescription"?: string | undefined;
111
62
  "aria-rowcount"?: number | undefined;
@@ -119,6 +70,7 @@ declare const meta: {
119
70
  "aria-valuemin"?: number | undefined;
120
71
  "aria-valuenow"?: number | undefined;
121
72
  "aria-valuetext"?: string | undefined;
73
+ children?: React.ReactNode;
122
74
  dangerouslySetInnerHTML?: {
123
75
  __html: string | TrustedHTML;
124
76
  } | undefined;
@@ -282,9 +234,57 @@ declare const meta: {
282
234
  onAnimationIterationCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
283
235
  onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
284
236
  onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
237
+ key?: React.Key | null | undefined;
238
+ form?: string | undefined;
239
+ disabled?: boolean | undefined;
240
+ title?: string | undefined;
241
+ formAction?: string | undefined;
242
+ formEncType?: string | undefined;
243
+ formMethod?: string | undefined;
244
+ formNoValidate?: boolean | undefined;
245
+ formTarget?: string | undefined;
246
+ value?: string | number | readonly string[] | undefined;
247
+ defaultChecked?: import("@radix-ui/react-checkbox").CheckedState | undefined;
248
+ defaultValue?: string | number | readonly string[] | undefined;
249
+ suppressContentEditableWarning?: boolean | undefined;
250
+ accessKey?: string | undefined;
251
+ autoFocus?: boolean | undefined;
252
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
253
+ contextMenu?: string | undefined;
254
+ dir?: string | undefined;
255
+ draggable?: (boolean | "true" | "false") | undefined;
256
+ hidden?: boolean | undefined;
257
+ nonce?: string | undefined;
258
+ slot?: string | undefined;
259
+ spellCheck?: (boolean | "true" | "false") | undefined;
260
+ translate?: "no" | "yes" | undefined;
261
+ radioGroup?: string | undefined;
262
+ about?: string | undefined;
263
+ content?: string | undefined;
264
+ datatype?: string | undefined;
265
+ inlist?: any;
266
+ prefix?: string | undefined;
267
+ property?: string | undefined;
268
+ rel?: string | undefined;
269
+ resource?: string | undefined;
270
+ rev?: string | undefined;
271
+ typeof?: string | undefined;
272
+ vocab?: string | undefined;
273
+ autoCapitalize?: string | undefined;
274
+ autoCorrect?: string | undefined;
275
+ autoSave?: string | undefined;
276
+ itemProp?: string | undefined;
277
+ itemScope?: boolean | undefined;
278
+ itemType?: string | undefined;
279
+ itemID?: string | undefined;
280
+ itemRef?: string | undefined;
281
+ results?: number | undefined;
282
+ security?: string | undefined;
283
+ unselectable?: "off" | "on" | undefined;
284
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
285
+ is?: string | undefined;
285
286
  checked?: import("@radix-ui/react-checkbox").CheckedState | undefined;
286
287
  required?: boolean | undefined;
287
- key?: React.Key | null | undefined;
288
288
  asChild?: boolean | undefined;
289
289
  onCheckedChange?: ((checked: import("@radix-ui/react-checkbox").CheckedState) => void) | undefined;
290
290
  ref?: React.LegacyRef<HTMLButtonElement> | undefined;
@@ -43,67 +43,21 @@ declare const meta: {
43
43
  value?: Options | undefined;
44
44
  onChangeText?: React.ChangeEventHandler<HTMLInputElement> | undefined;
45
45
  onSelect?: (((value: Options) => void) & React.ReactEventHandler<HTMLInputElement>) | undefined;
46
- color?: string | undefined;
47
- form?: string | undefined;
48
- list?: string | undefined;
49
- title?: string | undefined;
50
- children?: React.ReactNode;
51
- startIcon?: React.ReactNode;
52
- endIcon?: React.ReactNode;
53
- formAction?: string | undefined;
54
- formEncType?: string | undefined;
55
- formMethod?: string | undefined;
56
- formNoValidate?: boolean | undefined;
57
- formTarget?: string | undefined;
58
- name?: string | undefined;
59
- type?: React.HTMLInputTypeAttribute | undefined;
60
- defaultChecked?: boolean | undefined;
61
- defaultValue?: string | number | readonly string[] | undefined;
62
- suppressContentEditableWarning?: boolean | undefined;
63
46
  suppressHydrationWarning?: boolean | undefined;
64
- accessKey?: string | undefined;
65
- autoFocus?: boolean | undefined;
66
- contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
67
- contextMenu?: string | undefined;
68
- dir?: string | undefined;
69
- draggable?: (boolean | "true" | "false") | undefined;
70
- hidden?: boolean | undefined;
47
+ color?: string | undefined;
48
+ height?: string | number | undefined;
71
49
  lang?: string | undefined;
72
- nonce?: string | undefined;
73
- slot?: string | undefined;
74
- spellCheck?: (boolean | "true" | "false") | undefined;
50
+ max?: string | number | undefined;
51
+ min?: string | number | undefined;
52
+ name?: string | undefined;
75
53
  style?: React.CSSProperties | undefined;
76
- tabIndex?: number | undefined;
77
- translate?: "yes" | "no" | undefined;
78
- radioGroup?: string | undefined;
54
+ type?: React.HTMLInputTypeAttribute | undefined;
55
+ width?: string | number | undefined;
79
56
  role?: React.AriaRole | undefined;
80
- about?: string | undefined;
81
- content?: string | undefined;
82
- datatype?: string | undefined;
83
- inlist?: any;
84
- prefix?: string | undefined;
85
- property?: string | undefined;
86
- rel?: string | undefined;
87
- resource?: string | undefined;
88
- rev?: string | undefined;
89
- typeof?: string | undefined;
90
- vocab?: string | undefined;
91
- autoCapitalize?: string | undefined;
92
- autoCorrect?: string | undefined;
93
- autoSave?: string | undefined;
94
- itemProp?: string | undefined;
95
- itemScope?: boolean | undefined;
96
- itemType?: string | undefined;
97
- itemID?: string | undefined;
98
- itemRef?: string | undefined;
99
- results?: number | undefined;
100
- security?: string | undefined;
101
- unselectable?: "off" | "on" | undefined;
102
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
103
- is?: string | undefined;
57
+ tabIndex?: number | undefined;
104
58
  "aria-activedescendant"?: string | undefined;
105
59
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
106
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
60
+ "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
107
61
  "aria-braillelabel"?: string | undefined;
108
62
  "aria-brailleroledescription"?: string | undefined;
109
63
  "aria-busy"?: (boolean | "true" | "false") | undefined;
@@ -113,7 +67,7 @@ declare const meta: {
113
67
  "aria-colindextext"?: string | undefined;
114
68
  "aria-colspan"?: number | undefined;
115
69
  "aria-controls"?: string | undefined;
116
- "aria-current"?: boolean | "true" | "false" | "date" | "time" | "step" | "page" | "location" | undefined;
70
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
117
71
  "aria-describedby"?: string | undefined;
118
72
  "aria-description"?: string | undefined;
119
73
  "aria-details"?: string | undefined;
@@ -123,14 +77,14 @@ declare const meta: {
123
77
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
124
78
  "aria-flowto"?: string | undefined;
125
79
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
126
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
80
+ "aria-haspopup"?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "true" | "false" | undefined;
127
81
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
128
82
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
129
83
  "aria-keyshortcuts"?: string | undefined;
130
84
  "aria-label"?: string | undefined;
131
85
  "aria-labelledby"?: string | undefined;
132
86
  "aria-level"?: number | undefined;
133
- "aria-live"?: "polite" | "off" | "assertive" | undefined;
87
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
134
88
  "aria-modal"?: (boolean | "true" | "false") | undefined;
135
89
  "aria-multiline"?: (boolean | "true" | "false") | undefined;
136
90
  "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
@@ -140,7 +94,7 @@ declare const meta: {
140
94
  "aria-posinset"?: number | undefined;
141
95
  "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
142
96
  "aria-readonly"?: (boolean | "true" | "false") | undefined;
143
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
97
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
144
98
  "aria-required"?: (boolean | "true" | "false") | undefined;
145
99
  "aria-roledescription"?: string | undefined;
146
100
  "aria-rowcount"?: number | undefined;
@@ -154,6 +108,7 @@ declare const meta: {
154
108
  "aria-valuemin"?: number | undefined;
155
109
  "aria-valuenow"?: number | undefined;
156
110
  "aria-valuetext"?: string | undefined;
111
+ children?: React.ReactNode;
157
112
  dangerouslySetInnerHTML?: {
158
113
  __html: string | TrustedHTML;
159
114
  } | undefined;
@@ -316,6 +271,56 @@ declare const meta: {
316
271
  onAnimationIterationCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
317
272
  onTransitionEnd?: React.TransitionEventHandler<HTMLInputElement> | undefined;
318
273
  onTransitionEndCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
274
+ form?: string | undefined;
275
+ list?: string | undefined;
276
+ step?: string | number | undefined;
277
+ title?: string | undefined;
278
+ startIcon?: React.ReactNode;
279
+ endIcon?: React.ReactNode;
280
+ formAction?: string | undefined;
281
+ formEncType?: string | undefined;
282
+ formMethod?: string | undefined;
283
+ formNoValidate?: boolean | undefined;
284
+ formTarget?: string | undefined;
285
+ defaultChecked?: boolean | undefined;
286
+ defaultValue?: string | number | readonly string[] | undefined;
287
+ suppressContentEditableWarning?: boolean | undefined;
288
+ accessKey?: string | undefined;
289
+ autoFocus?: boolean | undefined;
290
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
291
+ contextMenu?: string | undefined;
292
+ dir?: string | undefined;
293
+ draggable?: (boolean | "true" | "false") | undefined;
294
+ hidden?: boolean | undefined;
295
+ nonce?: string | undefined;
296
+ slot?: string | undefined;
297
+ spellCheck?: (boolean | "true" | "false") | undefined;
298
+ translate?: "no" | "yes" | undefined;
299
+ radioGroup?: string | undefined;
300
+ about?: string | undefined;
301
+ content?: string | undefined;
302
+ datatype?: string | undefined;
303
+ inlist?: any;
304
+ prefix?: string | undefined;
305
+ property?: string | undefined;
306
+ rel?: string | undefined;
307
+ resource?: string | undefined;
308
+ rev?: string | undefined;
309
+ typeof?: string | undefined;
310
+ vocab?: string | undefined;
311
+ autoCapitalize?: string | undefined;
312
+ autoCorrect?: string | undefined;
313
+ autoSave?: string | undefined;
314
+ itemProp?: string | undefined;
315
+ itemScope?: boolean | undefined;
316
+ itemType?: string | undefined;
317
+ itemID?: string | undefined;
318
+ itemRef?: string | undefined;
319
+ results?: number | undefined;
320
+ security?: string | undefined;
321
+ unselectable?: "off" | "on" | undefined;
322
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
323
+ is?: string | undefined;
319
324
  hasClearIcon?: boolean | undefined;
320
325
  hasSearchIcon?: boolean | undefined;
321
326
  accept?: string | undefined;
@@ -324,18 +329,13 @@ declare const meta: {
324
329
  capture?: boolean | "user" | "environment" | undefined;
325
330
  checked?: boolean | undefined;
326
331
  enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
327
- height?: string | number | undefined;
328
- max?: string | number | undefined;
329
332
  maxLength?: number | undefined;
330
- min?: string | number | undefined;
331
333
  minLength?: number | undefined;
332
334
  multiple?: boolean | undefined;
333
335
  pattern?: string | undefined;
334
336
  placeholder?: string | undefined;
335
337
  readOnly?: boolean | undefined;
336
338
  src?: string | undefined;
337
- step?: string | number | undefined;
338
- width?: string | number | undefined;
339
339
  labelClassName?: string | undefined;
340
340
  ref?: React.LegacyRef<HTMLInputElement> | undefined;
341
341
  key?: React.Key | null | undefined;
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ export type IconProps = {
3
+ name: string;
4
+ type?: "heroicons" | "material" | "custom";
5
+ color?: "primary" | "secondary" | "success" | "tertiary" | "info" | "warning" | "error" | "inherit";
6
+ variant?: "solid" | "outline";
7
+ size?: "sm" | "md" | "lg" | "inherit";
8
+ className?: string;
9
+ } & React.SVGProps<SVGSVGElement>;
10
+ declare const Icon: React.FC<IconProps>;
11
+ export default Icon;