@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
@@ -1,178 +0,0 @@
1
- :root[data-theme="xspector"] {
2
- /* TYPE */
3
- --h1-family: "Poppins";
4
- --h1-size: 64px;
5
- --h1-size-rem: 4rem;
6
- --h1-weight: 700;
7
- --h1-style: normal;
8
- --h1-line-height: 80px;
9
- --h1-line-height-rem: 5rem;
10
- --h2-family: "Poppins";
11
- --h2-size: 48px;
12
- --h2-size-rem: 3rem;
13
- --h2-weight: 700;
14
- --h2-style: normal;
15
- --h2-line-height: 60px;
16
- --h2-line-height-rem: 3.75rem;
17
- --h3-family: "Poppins";
18
- --h3-size: 32px;
19
- --h3-size-rem: 2rem;
20
- --h3-weight: 700;
21
- --h3-style: normal;
22
- --h3-line-height: 48px;
23
- --h3-line-height-rem: 3rem;
24
- --h4-family: "Poppins";
25
- --h4-size: 24px;
26
- --h4-size-rem: 1.5rem;
27
- --h4-weight: 700;
28
- --h4-style: normal;
29
- --h4-line-height: 32px;
30
- --h4-line-height-rem: 2rem;
31
- --h5-family: "Poppins";
32
- --h5-size: 20px;
33
- --h5-size-rem: 1.25rem;
34
- --h5-weight: 700;
35
- --h5-style: normal;
36
- --h5-line-height: 28px;
37
- --h5-line-height-rem: 1.75rem;
38
- --h6-family: "Poppins";
39
- --h6-size: 18px;
40
- --h6-size-rem: 1.125rem;
41
- --h6-weight: 700;
42
- --h6-style: normal;
43
- --h6-line-height: 24px;
44
- --h6-line-height-rem: 1.5rem;
45
- --subtitle1-family: "Poppins";
46
- --subtitle1-size: 16px;
47
- --subtitle1-size-rem: 1rem;
48
- --subtitle1-weight: 400;
49
- --subtitle1-style: normal;
50
- --subtitle1-line-height: 24px;
51
- --subtitle1-line-height-rem: 1.5rem;
52
- --subtitle2-family: "Poppins";
53
- --subtitle2-size: 16px;
54
- --subtitle2-size-rem: 1rem;
55
- --subtitle2-weight: 500;
56
- --subtitle2-style: normal;
57
- --subtitle2-line-height: 24px;
58
- --subtitle2-line-height-rem: 1.5rem;
59
- --subtitle3-family: "Poppins";
60
- --subtitle3-size: 16px;
61
- --subtitle3-size-rem: 1rem;
62
- --subtitle3-weight: 600;
63
- --subtitle3-style: normal;
64
- --subtitle3-line-height: 24px;
65
- --subtitle3-line-height-rem: 1.5rem;
66
- --subtitle4-family: "Poppins";
67
- --subtitle4-size: 14px;
68
- --subtitle4-size-rem: 0.875rem;
69
- --subtitle4-weight: 400;
70
- --subtitle4-style: normal;
71
- --subtitle4-line-height: 22px;
72
- --subtitle4-line-height-rem: 1.375rem;
73
- --subtitle5-family: "Poppins";
74
- --subtitle5-size: 14px;
75
- --subtitle5-size-rem: 0.875rem;
76
- --subtitle5-weight: 500;
77
- --subtitle5-style: normal;
78
- --subtitle5-line-height: 22px;
79
- --subtitle5-line-height-rem: 1.375rem;
80
- --subtitle6-family: "Poppins";
81
- --subtitle6-size: 14px;
82
- --subtitle6-size-rem: 0.875rem;
83
- --subtitle6-weight: 600;
84
- --subtitle6-style: normal;
85
- --subtitle6-line-height: 22px;
86
- --subtitle6-line-height-rem: 1.375rem;
87
- --body1-family: "Poppins";
88
- --body1-size: 16px;
89
- --body1-size-rem: 1rem;
90
- --body1-weight: 400;
91
- --body1-style: normal;
92
- --body1-line-height: 20px;
93
- --body1-line-height-rem: 1.25rem;
94
- --body2-family: "Poppins";
95
- --body2-size: 16px;
96
- --body2-size-rem: 1rem;
97
- --body2-weight: 500;
98
- --body2-style: normal;
99
- --body2-line-height: 20px;
100
- --body2-line-height-rem: 1.25rem;
101
- --body3-family: "Poppins";
102
- --body3-size: 14px;
103
- --body3-size-rem: 0.875rem;
104
- --body3-weight: 400;
105
- --body3-style: normal;
106
- --body3-line-height: 18px;
107
- --body3-line-height-rem: 1.125rem;
108
- --body4-family: "Poppins";
109
- --body4-size: 14px;
110
- --body4-size-rem: 0.875rem;
111
- --body4-weight: 500;
112
- --body4-style: normal;
113
- --body4-line-height: 18px;
114
- --body4-line-height-rem: 1.125rem;
115
- --small1-family: "Poppins";
116
- --small1-size: 12px;
117
- --small1-size-rem: 0.75rem;
118
- --small1-weight: 400;
119
- --small1-style: normal;
120
- --small1-line-height: 14px;
121
- --small1-line-height-rem: 0.875rem;
122
- --small2-family: "Poppins";
123
- --small2-size: 12px;
124
- --small2-size-rem: 0.75rem;
125
- --small2-weight: 500;
126
- --small2-style: normal;
127
- --small2-line-height: 14px;
128
- --small2-line-height-rem: 0.875rem;
129
- --small3-family: "Poppins";
130
- --small3-size: 12px;
131
- --small3-size-rem: 0.75rem;
132
- --small3-weight: 600;
133
- --small3-style: normal;
134
- --small3-line-height: 14px;
135
- --small3-line-height-rem: 0.875rem;
136
- --small4-family: "Poppins";
137
- --small4-size: 10px;
138
- --small4-size-rem: 0.625rem;
139
- --small4-weight: 400;
140
- --small4-style: normal;
141
- --small4-line-height: 12px;
142
- --small4-line-height-rem: 0.75rem;
143
- --small5-family: "Poppins";
144
- --small5-size: 10px;
145
- --small5-size-rem: 0.625rem;
146
- --small5-weight: 500;
147
- --small5-style: normal;
148
- --small5-line-height: 12px;
149
- --small5-line-height-rem: 0.75rem;
150
- --label-label1-family: "Poppins";
151
- --label-label1-size: 12px;
152
- --label-label1-size-rem: 0.75rem;
153
- --label-label1-weight: 400;
154
- --label-label1-style: normal;
155
- --label-label1-line-height: 12px;
156
- --label-label1-line-height-rem: 0.75rem;
157
- --label-label2-family: "Poppins";
158
- --label-label2-size: 10px;
159
- --label-label2-size-rem: 0.625rem;
160
- --label-label2-weight: 400;
161
- --label-label2-style: normal;
162
- --label-label2-line-height: 10px;
163
- --label-label2-line-height-rem: 0.625rem;
164
- --button-button-l-family: "Poppins";
165
- --button-button-l-size: 16px;
166
- --button-button-l-size-rem: 1rem;
167
- --button-button-l-weight: 700;
168
- --button-button-l-style: normal;
169
- --button-button-l-line-height: 24px;
170
- --button-button-l-line-height-rem: 1.5rem;
171
- --button-button-ms-family: "Poppins";
172
- --button-button-ms-size: 14px;
173
- --button-button-ms-size-rem: 0.875rem;
174
- --button-button-ms-weight: 700;
175
- --button-button-ms-style: normal;
176
- --button-button-ms-line-height: 22px;
177
- --button-button-ms-line-height-rem: 1.375rem;
178
- }
@@ -1,95 +0,0 @@
1
- import { cva } from "class-variance-authority";
2
-
3
- export const actionButtonVariants = cva(
4
- ["rounded box-border flex items-center justify-center"],
5
- {
6
- variants: {
7
- variant: {
8
- solid: [
9
- "bg-secondary-default border-secondary-default text-secondary-foreground fill-secondary-foreground",
10
- "hover:bg-secondary-hover hover:border-secondary-hover",
11
- "active:bg-secondary-pressed active:border-secondary-pressed",
12
- ],
13
- outline: [
14
- "border bg-transparent disabled:bg-transparent disabled:border-disable-outline",
15
- "text-secondary-default fill-secondary-default border-secondary-stroke",
16
- "hover:bg-secondary-hover-bg hover:border-secondary-hover hover:text-secondary-hover hover:fill-secondary-hover",
17
- "active:bg-secondary-hover-bg active:border-secondary-pressed active:text-secondary-pressed active:fill-secondary-pressed",
18
- ],
19
- icon: [
20
- "bg-transparent disabled:bg-transparent rounded-full",
21
- "text-secondary-default fill-secondary-default",
22
- "hover:bg-secondary-hover-bg hover:text-secondary-hover hover:fill-secondary-hover",
23
- "active:text-secondary-pressed active:fill-secondary-pressed",
24
- ],
25
- },
26
- size: {
27
- xs: "p-[2px] w-[18px] h-[18px]",
28
- sm: "px-2 py-1 w-[38px] h-[30px]",
29
- md: "px-3 py-2 w-[46px] h-[38px]",
30
- lg: "px-4 py-3 w-[64px] h-[56px]",
31
- },
32
- disabled: {
33
- false: "",
34
- },
35
- active: {
36
- false: "",
37
- },
38
- },
39
- compoundVariants: [
40
- {
41
- variant: "solid",
42
- active: true,
43
- className: [
44
- "bg-primary-default border-primary-default text-primary-foreground fill-primary-foreground",
45
- "hover:bg-primary-hover hover:border-primary-hover",
46
- "active:bg-primary-pressed active:border-primary-pressed",
47
- ],
48
- },
49
- {
50
- variant: "outline",
51
- active: true,
52
- className: [
53
- "text-primary-default fill-primary-default border-primary-stroke",
54
- "hover:bg-primary-hover-bg hover:border-primary-hover hover:text-primary-hover hover:fill-primary-hover",
55
- "active:bg-primary-hover-bg active:border-primary-pressed active:text-primary-pressed active:fill-primary-pressed",
56
- ],
57
- },
58
- {
59
- variant: "icon",
60
- active: true,
61
- className: [
62
- "text-primary-default fill-primary-default",
63
- "hover:bg-primary-hover-bg hover:text-primary-hover hover:fill-primary-hover",
64
- "active:text-primary-pressed active:fill-primary-pressed",
65
- ],
66
- },
67
- {
68
- size: "lg",
69
- variant: "icon",
70
- className: "w-[56px] h-[56px]",
71
- },
72
- {
73
- size: "md",
74
- variant: "icon",
75
- className: "w-[38px] h-[38px]",
76
- },
77
- {
78
- size: "sm",
79
- variant: "icon",
80
- className: "w-[30px] h-[30px]",
81
- },
82
- {
83
- disabled: true,
84
- className:
85
- "pointer-events-none border-transparent bg-disable-solid text-disable-outline fill-disable-outline",
86
- },
87
- ],
88
- defaultVariants: {
89
- size: "md",
90
- variant: "solid",
91
- disabled: false,
92
- active: false,
93
- },
94
- }
95
- );
@@ -1,214 +0,0 @@
1
- import { cva } from "class-variance-authority";
2
-
3
- export const buttonVariants = cva(
4
- [
5
- // "inline-flex items-center justify-center align-middle no-underline transition-colors ease-in-out duration-300",
6
- // "font-sans appearance-none select-none rounded-sm border font-medium tracking-[.02857em]",
7
- // "aria-disabled:pointer-events-none aria-disabled:opacity-50 aria-disabled:cursor-not-allowed",
8
- // "gap-2 font-bold text-white hover:bg-opacity-90 active:scale-[98%]",
9
- "gap-2 font-bold text-white outline-none",
10
- "transition ease-in-out duration-45",
11
- ],
12
- {
13
- variants: {
14
- color: {
15
- primary: [
16
- "bg-primary-default border-primary-default text-primary-foreground fill-primary-foreground",
17
- "hover:bg-primary-hover hover:border-primary-hover",
18
- "active:bg-primary-pressed active:border-primary-pressed",
19
- ],
20
- secondary: [
21
- "bg-secondary-default border-secondary-default text-secondary-foreground fill-secondary-foreground",
22
- "hover:bg-secondary-hover hover:border-secondary-hover",
23
- "active:bg-secondary-pressed active:border-secondary-pressed",
24
- ],
25
- tertiary: [
26
- "bg-tertiary-default border-tertiary-default text-tertiary-foreground fill-tertiary-foreground",
27
- "hover:bg-tertiary-hover hover:border-tertiary-hover",
28
- "active:bg-tertiary-pressed active:border-tertiary-pressed",
29
- ],
30
- success: [
31
- "bg-success-default border-success-default text-success-foreground fill-success-foreground",
32
- "hover:bg-success-hover hover:border-success-hover",
33
- "active:bg-success-pressed active:border-success-pressed",
34
- ],
35
- info: [
36
- "bg-info-default border-info-default text-info-foreground fill-info-foreground",
37
- "hover:bg-info-hover hover:border-info-hover",
38
- "active:bg-info-pressed active:border-info-pressed",
39
- ],
40
- warning: [
41
- "bg-warning-default border-warning-default text-warning-foreground fill-warning-foreground",
42
- "hover:bg-warning-hover hover:border-warning-hover",
43
- "active:bg-warning-pressed active:border-warning-pressed",
44
- ],
45
- error: [
46
- "bg-error-default border-error-default text-error-foreground fill-error-foreground",
47
- "hover:bg-error-hover hover:border-error-hover",
48
- "active:bg-error-pressed active:border-error-pressed",
49
- ],
50
- },
51
- size: {
52
- sm: "px-3 py-1 text-sm rounded-sm",
53
- md: "px-4 py-2 text-sm rounded-md",
54
- lg: "px-6 py-4 text-base rounded-lg",
55
- },
56
- variant: {
57
- solid: "border",
58
- outline: "border bg-transparent disabled:border-disable-outline",
59
- flat: "bg-transparent",
60
- link: "bg-transparent underline underline-offset-4",
61
- },
62
- disabled: {
63
- true: "pointer-events-none border-transparent bg-disable-solid text-disable-outline fill-disable-outline",
64
- },
65
- fullwidth: {
66
- true: "w-full",
67
- },
68
- },
69
- compoundVariants: [
70
- // --- Outline ---
71
- {
72
- variant: "outline",
73
- color: "primary",
74
- className: [
75
- "text-primary-default fill-primary-default border-primary-stroke",
76
- "hover:bg-primary-hover-bg hover:border-primary-hover hover:text-primary-hover hover:fill-primary-hover",
77
- "active:bg-primary-hover-bg active:border-primary-pressed active:text-primary-pressed active:fill-primary-pressed",
78
- ],
79
- },
80
- {
81
- variant: "outline",
82
- color: "secondary",
83
- className: [
84
- "text-secondary-default fill-secondary-default border-secondary-stroke",
85
- "hover:bg-secondary-hover-bg hover:border-secondary-hover hover:text-secondary-hover hover:fill-secondary-hover",
86
- "active:bg-secondary-hover-bg active:border-secondary-pressed active:text-secondary-pressed active:fill-secondary-pressed",
87
- ],
88
- },
89
- {
90
- variant: "outline",
91
- color: "tertiary",
92
- className: [
93
- "text-tertiary-default fill-tertiary-default border-tertiary-stroke",
94
- "hover:bg-tertiary-hover-bg hover:border-tertiary-hover hover:text-tertiary-hover hover:fill-tertiary-hover",
95
- "active:bg-tertiary-hover-bg active:border-tertiary-pressed active:text-tertiary-pressed active:fill-tertiary-pressed",
96
- ],
97
- },
98
- {
99
- variant: "outline",
100
- color: "success",
101
- className: [
102
- "text-success-default fill-success-default border-success-stroke",
103
- "hover:bg-success-hover-bg hover:border-success-hover hover:text-success-hover hover:fill-success-hover",
104
- "active:bg-success-hover-bg active:border-success-pressed active:text-success-pressed active:fill-success-pressed",
105
- ],
106
- },
107
- {
108
- variant: "outline",
109
- color: "info",
110
- className: [
111
- "text-info-default fill-info-default border-info-stroke",
112
- "hover:bg-info-hover-bg hover:border-info-hover hover:text-info-hover hover:fill-info-hover",
113
- "active:bg-info-hover-bg active:border-info-pressed active:text-info-pressed active:fill-info-pressed",
114
- ],
115
- },
116
- {
117
- variant: "outline",
118
- color: "warning",
119
- className: [
120
- "text-warning-default fill-warning-default border-warning-stroke",
121
- "hover:bg-warning-hover-bg hover:border-warning-hover hover:text-warning-hover hover:fill-warning-hover",
122
- "active:bg-warning-hover-bg active:border-warning-pressed active:text-warning-pressed active:fill-warning-pressed",
123
- ],
124
- },
125
- {
126
- variant: "outline",
127
- color: "error",
128
- className: [
129
- "text-error-default fill-error-default border-error-stroke",
130
- "hover:bg-error-hover-bg hover:border-error-hover hover:text-error-hover hover:fill-error-hover",
131
- "active:bg-error-hover-bg active:border-error-pressed active:text-error-pressed active:fill-error-pressed",
132
- ],
133
- },
134
- // --- Flat, link ---
135
- {
136
- variant: ["flat", "link"],
137
- color: "primary",
138
- className: [
139
- "text-primary-default fill-primary-default",
140
- "hover:bg-primary-hover-bg hover:text-primary-hover hover:fill-primary-hover",
141
- "active:bg-transparent active:text-primary-pressed active:fill-primary-pressed",
142
- ],
143
- },
144
- {
145
- variant: ["flat", "link"],
146
- color: "secondary",
147
- className: [
148
- "text-secondary-default fill-secondary-default",
149
- "hover:bg-secondary-hover-bg hover:text-secondary-hover hover:fill-secondary-hover",
150
- "active:bg-transparent active:text-secondary-pressed active:fill-secondary-pressed",
151
- ],
152
- },
153
- {
154
- variant: ["flat", "link"],
155
- color: "tertiary",
156
- className: [
157
- "text-tertiary-default fill-tertiary-default",
158
- "hover:bg-tertiary-hover-bg hover:text-tertiary-hover hover:fill-tertiary-hover",
159
- "active:bg-transparent active:text-tertiary-pressed active:fill-tertiary-pressed",
160
- ],
161
- },
162
- {
163
- variant: ["flat", "link"],
164
- color: "success",
165
- className: [
166
- "text-success-default fill-success-default",
167
- "hover:bg-success-hover-bg hover:text-success-hover hover:fill-success-hover",
168
- "active:bg-transparent active:text-success-pressed active:fill-success-pressed",
169
- ],
170
- },
171
- {
172
- variant: ["flat", "link"],
173
- color: "info",
174
- className: [
175
- "text-info-default fill-info-default",
176
- "hover:bg-info-hover-bg hover:text-info-hover hover:fill-info-hover",
177
- "active:bg-transparent active:text-info-pressed active:fill-info-pressed",
178
- ],
179
- },
180
- {
181
- variant: ["flat", "link"],
182
- color: "warning",
183
- className: [
184
- "text-warning-default fill-warning-default",
185
- "hover:bg-warning-hover-bg hover:text-warning-hover hover:fill-warning-hover",
186
- "active:bg-transparent active:text-warning-pressed active:fill-warning-pressed",
187
- ],
188
- },
189
- {
190
- variant: ["flat", "link"],
191
- color: "error",
192
- className: [
193
- "text-error-default fill-error-default",
194
- "hover:bg-error-hover-bg hover:text-error-hover hover:fill-error-hover",
195
- "active:bg-transparent active:text-error-pressed active:fill-error-pressed",
196
- ],
197
- },
198
- // --- Disabled --
199
- {
200
- variant: ["outline", "flat", "link"],
201
- disabled: true,
202
- className: [
203
- "bg-transtarent border-disabled-outline text-disable-outline fill-disable-outline",
204
- ],
205
- },
206
- ],
207
- defaultVariants: {
208
- size: "md",
209
- color: "primary",
210
- variant: "solid",
211
- fullwidth: true,
212
- },
213
- }
214
- );