@ultraviolet/ui 1.51.0 → 1.51.2

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 (440) hide show
  1. package/dist/components/ActionBar/index.d.ts +20 -0
  2. package/dist/components/ActionBar/index.js +40 -0
  3. package/dist/components/Alert/index.d.ts +27 -0
  4. package/dist/components/Alert/index.js +126 -0
  5. package/dist/components/Avatar/index.d.ts +43 -0
  6. package/dist/components/Avatar/index.js +54 -0
  7. package/dist/components/Badge/index.d.ts +31 -0
  8. package/dist/components/Badge/index.js +115 -0
  9. package/dist/components/Banner/assets/default-image-small.svg.js +4 -0
  10. package/dist/components/Banner/assets/default-image.svg.js +4 -0
  11. package/dist/components/Banner/index.d.ts +24 -0
  12. package/dist/components/Banner/index.js +191 -0
  13. package/dist/components/BarChart/Tooltip.d.ts +9 -0
  14. package/dist/components/BarChart/Tooltip.js +36 -0
  15. package/dist/components/BarChart/index.d.ts +27 -0
  16. package/dist/components/BarChart/index.js +82 -0
  17. package/dist/components/BarStack/index.d.ts +36 -0
  18. package/dist/components/BarStack/index.js +188 -0
  19. package/dist/components/Breadcrumbs/index.d.ts +30 -0
  20. package/dist/components/Breadcrumbs/index.js +76 -0
  21. package/dist/components/Bullet/index.d.ts +39 -0
  22. package/dist/components/Bullet/index.js +88 -0
  23. package/dist/components/Button/index.d.ts +120 -0
  24. package/dist/components/Button/index.js +291 -0
  25. package/dist/components/Card/index.d.ts +20 -0
  26. package/dist/components/Card/index.js +59 -0
  27. package/dist/components/Carousel/index.d.ts +19 -0
  28. package/dist/components/Carousel/index.js +147 -0
  29. package/dist/components/Checkbox/index.d.ts +36 -0
  30. package/dist/components/Checkbox/index.js +359 -0
  31. package/dist/components/CheckboxGroup/index.d.ts +24 -0
  32. package/dist/components/CheckboxGroup/index.js +112 -0
  33. package/dist/components/CopyButton/index.d.ts +19 -0
  34. package/dist/components/CopyButton/index.js +37 -0
  35. package/dist/components/DateInput/datepicker.css.js +4 -0
  36. package/dist/components/DateInput/index.d.ts +38 -0
  37. package/dist/components/DateInput/index.js +301 -0
  38. package/dist/components/Dialog/Context.d.ts +7 -0
  39. package/dist/components/Dialog/Context.js +15 -0
  40. package/dist/components/Dialog/constants.d.ts +2 -0
  41. package/dist/components/Dialog/index.d.ts +87 -0
  42. package/dist/components/Dialog/index.js +87 -0
  43. package/dist/components/Dialog/subComponents/Button.d.ts +7 -0
  44. package/dist/components/Dialog/subComponents/Button.js +24 -0
  45. package/dist/components/Dialog/subComponents/Buttons.d.ts +7 -0
  46. package/dist/components/Dialog/subComponents/Buttons.js +12 -0
  47. package/dist/components/Dialog/subComponents/CancelButton.d.ts +8 -0
  48. package/dist/components/Dialog/subComponents/CancelButton.js +9 -0
  49. package/dist/components/Dialog/subComponents/Stack.d.ts +6 -0
  50. package/dist/components/Dialog/subComponents/Stack.js +6 -0
  51. package/dist/components/Dialog/subComponents/Text.d.ts +6 -0
  52. package/dist/components/Dialog/subComponents/Text.js +6 -0
  53. package/dist/components/EmptyState/index.d.ts +38 -0
  54. package/dist/components/EmptyState/index.js +82 -0
  55. package/dist/components/Expandable/index.d.ts +33 -0
  56. package/dist/components/Expandable/index.js +79 -0
  57. package/dist/components/GlobalAlert/GlobalAlertLink.d.ts +3 -0
  58. package/dist/components/GlobalAlert/GlobalAlertLink.js +39 -0
  59. package/dist/components/GlobalAlert/index.d.ts +40 -0
  60. package/dist/components/GlobalAlert/index.js +112 -0
  61. package/dist/components/LineChart/CustomLegend.d.ts +13 -0
  62. package/dist/components/LineChart/CustomLegend.js +109 -0
  63. package/dist/components/LineChart/Tooltip.d.ts +6 -0
  64. package/dist/components/LineChart/Tooltip.js +46 -0
  65. package/dist/components/LineChart/helpers.d.ts +8 -0
  66. package/dist/components/LineChart/helpers.js +50 -0
  67. package/dist/components/LineChart/index.d.ts +25 -0
  68. package/dist/components/LineChart/index.js +118 -0
  69. package/dist/components/Link/index.d.ts +33 -0
  70. package/dist/components/Link/index.js +167 -0
  71. package/dist/components/List/Body.d.ts +6 -0
  72. package/dist/components/List/Body.js +11 -0
  73. package/dist/components/List/Cell.d.ts +12 -0
  74. package/dist/components/List/Cell.js +38 -0
  75. package/dist/components/List/HeaderCell.d.ts +11 -0
  76. package/dist/components/List/HeaderCell.js +96 -0
  77. package/dist/components/List/HeaderRow.d.ts +7 -0
  78. package/dist/components/List/HeaderRow.js +38 -0
  79. package/dist/components/List/ListContext.d.ts +34 -0
  80. package/dist/components/List/ListContext.js +155 -0
  81. package/dist/components/List/Row.d.ts +23 -0
  82. package/dist/components/List/Row.js +194 -0
  83. package/dist/components/List/SelectBar.d.ts +15 -0
  84. package/dist/components/List/SelectBar.js +35 -0
  85. package/dist/components/List/SkeletonRows.d.ts +7 -0
  86. package/dist/components/List/SkeletonRows.js +36 -0
  87. package/dist/components/List/constants.d.ts +2 -0
  88. package/dist/{src/components → components}/List/constants.js +4 -2
  89. package/dist/components/List/index.d.ts +68 -0
  90. package/dist/components/List/index.js +80 -0
  91. package/dist/components/Loader/index.d.ts +22 -0
  92. package/dist/components/Loader/index.js +98 -0
  93. package/dist/components/Menu/Item.d.ts +15 -0
  94. package/dist/components/Menu/Item.js +101 -0
  95. package/dist/components/Menu/index.d.ts +49 -0
  96. package/dist/components/Menu/index.js +182 -0
  97. package/dist/components/MenuV2/Group.d.ts +7 -0
  98. package/dist/components/MenuV2/Group.js +23 -0
  99. package/dist/components/MenuV2/Item.d.ts +16 -0
  100. package/dist/components/MenuV2/Item.js +120 -0
  101. package/dist/components/MenuV2/index.d.ts +90 -0
  102. package/dist/components/MenuV2/index.js +124 -0
  103. package/dist/components/Meter/index.d.ts +26 -0
  104. package/dist/components/Meter/index.js +76 -0
  105. package/dist/components/Modal/Dialog.d.ts +3 -0
  106. package/dist/components/Modal/Dialog.js +197 -0
  107. package/dist/components/Modal/Disclosure.d.ts +3 -0
  108. package/dist/{src/components → components}/Modal/Disclosure.js +12 -12
  109. package/dist/components/Modal/constants.d.ts +3 -0
  110. package/dist/{src/components → components}/Modal/constants.js +8 -6
  111. package/dist/components/Modal/index.d.ts +42 -0
  112. package/dist/components/Modal/index.js +114 -0
  113. package/dist/components/Modal/types.d.ts +48 -0
  114. package/dist/components/Notice/index.d.ts +11 -0
  115. package/dist/components/Notice/index.js +39 -0
  116. package/dist/components/Notification/index.d.ts +36 -0
  117. package/dist/components/Notification/index.js +88 -0
  118. package/dist/components/Notification/react-toastify.css.js +4 -0
  119. package/dist/components/NumberInput/helpers.d.ts +4 -0
  120. package/dist/{src/components → components}/NumberInput/helpers.js +6 -2
  121. package/dist/components/NumberInput/index.d.ts +41 -0
  122. package/dist/components/NumberInput/index.js +349 -0
  123. package/dist/components/NumberInputV2/index.d.ts +27 -0
  124. package/dist/components/NumberInputV2/index.js +370 -0
  125. package/dist/components/Pagination/getPageNumbers.d.ts +8 -0
  126. package/dist/{src/components → components}/Pagination/getPageNumbers.js +4 -12
  127. package/dist/components/Pagination/index.d.ts +30 -0
  128. package/dist/components/Pagination/index.js +124 -0
  129. package/dist/components/PasswordCheck/index.d.ts +20 -0
  130. package/dist/components/PasswordCheck/index.js +29 -0
  131. package/dist/components/PasswordStrengthMeter/index.d.ts +39 -0
  132. package/dist/components/PasswordStrengthMeter/index.js +98 -0
  133. package/dist/components/PieChart/Legends.d.ts +9 -0
  134. package/dist/components/PieChart/Legends.js +120 -0
  135. package/dist/components/PieChart/Tooltip.d.ts +12 -0
  136. package/dist/components/PieChart/Tooltip.js +29 -0
  137. package/dist/components/PieChart/index.d.ts +20 -0
  138. package/dist/components/PieChart/index.js +120 -0
  139. package/dist/components/PieChart/types.d.ts +7 -0
  140. package/dist/components/Popover/index.d.ts +55 -0
  141. package/dist/components/Popover/index.js +149 -0
  142. package/dist/components/Popup/animations.d.ts +11 -0
  143. package/dist/{src/components → components}/Popup/animations.js +7 -6
  144. package/dist/components/Popup/helpers.d.ts +31 -0
  145. package/dist/components/Popup/helpers.js +204 -0
  146. package/dist/components/Popup/index.d.ts +72 -0
  147. package/dist/components/Popup/index.js +385 -0
  148. package/dist/components/ProgressBar/index.d.ts +14 -0
  149. package/dist/components/ProgressBar/index.js +71 -0
  150. package/dist/components/Radio/index.d.ts +21 -0
  151. package/dist/components/Radio/index.js +202 -0
  152. package/dist/components/RadioGroup/index.d.ts +25 -0
  153. package/dist/components/RadioGroup/index.js +104 -0
  154. package/dist/components/Row/index.d.ts +22 -0
  155. package/dist/components/Row/index.js +43 -0
  156. package/dist/components/SelectInput/index.d.ts +75 -0
  157. package/dist/components/SelectInput/index.js +563 -0
  158. package/dist/components/SelectInputV2/Dropdown.d.ts +23 -0
  159. package/dist/components/SelectInputV2/Dropdown.js +669 -0
  160. package/dist/components/SelectInputV2/DropdownOption.d.ts +8 -0
  161. package/dist/components/SelectInputV2/DropdownOption.js +133 -0
  162. package/dist/components/SelectInputV2/SearchBarDropdown.d.ts +9 -0
  163. package/dist/components/SelectInputV2/SearchBarDropdown.js +123 -0
  164. package/dist/components/SelectInputV2/SelectBar.d.ts +14 -0
  165. package/dist/components/SelectInputV2/SelectBar.js +327 -0
  166. package/dist/components/SelectInputV2/SelectInputProvider.d.ts +41 -0
  167. package/dist/components/SelectInputV2/SelectInputProvider.js +203 -0
  168. package/dist/components/SelectInputV2/findOptionInOptions.d.ts +2 -0
  169. package/dist/components/SelectInputV2/findOptionInOptions.js +12 -0
  170. package/dist/components/SelectInputV2/index.d.ts +115 -0
  171. package/dist/components/SelectInputV2/index.js +146 -0
  172. package/dist/components/SelectInputV2/types.d.ts +38 -0
  173. package/dist/{src/components → components}/SelectInputV2/types.js +4 -2
  174. package/dist/components/SelectableCard/index.d.ts +25 -0
  175. package/dist/components/SelectableCard/index.js +193 -0
  176. package/dist/components/SelectableCardGroup/index.d.ts +23 -0
  177. package/dist/components/SelectableCardGroup/index.js +112 -0
  178. package/dist/components/Separator/index.d.ts +17 -0
  179. package/dist/components/Separator/index.js +76 -0
  180. package/dist/components/Skeleton/Block.d.ts +3 -0
  181. package/dist/components/Skeleton/Block.js +30 -0
  182. package/dist/components/Skeleton/Blocks.d.ts +4 -0
  183. package/dist/components/Skeleton/Blocks.js +28 -0
  184. package/dist/components/Skeleton/BoxWithIcon.d.ts +4 -0
  185. package/dist/components/Skeleton/BoxWithIcon.js +29 -0
  186. package/dist/components/Skeleton/Donut.d.ts +1 -0
  187. package/dist/components/Skeleton/Donut.js +36 -0
  188. package/dist/components/Skeleton/IconSkeleton.d.ts +5 -0
  189. package/dist/components/Skeleton/IconSkeleton.js +12 -0
  190. package/dist/components/Skeleton/Line.d.ts +5 -0
  191. package/dist/components/Skeleton/Line.js +13 -0
  192. package/dist/components/Skeleton/List.d.ts +4 -0
  193. package/dist/components/Skeleton/List.js +29 -0
  194. package/dist/components/Skeleton/Slider.d.ts +3 -0
  195. package/dist/components/Skeleton/Slider.js +26 -0
  196. package/dist/components/Skeleton/Square.d.ts +5 -0
  197. package/dist/components/Skeleton/Square.js +10 -0
  198. package/dist/components/Skeleton/index.d.ts +47 -0
  199. package/dist/components/Skeleton/index.js +86 -0
  200. package/dist/components/Snippet/index.d.ts +23 -0
  201. package/dist/components/Snippet/index.js +171 -0
  202. package/dist/components/Stack/index.d.ts +23 -0
  203. package/dist/components/Stack/index.js +36 -0
  204. package/dist/components/Status/index.d.ts +32 -0
  205. package/dist/components/Status/index.js +57 -0
  206. package/dist/components/StepList/index.d.ts +33 -0
  207. package/dist/components/StepList/index.js +69 -0
  208. package/dist/components/Stepper/index.d.ts +15 -0
  209. package/dist/components/Stepper/index.js +153 -0
  210. package/dist/components/SwitchButton/FocusOverlay.d.ts +8 -0
  211. package/dist/components/SwitchButton/FocusOverlay.js +47 -0
  212. package/dist/components/SwitchButton/index.d.ts +26 -0
  213. package/dist/components/SwitchButton/index.js +140 -0
  214. package/dist/components/Table/Body.d.ts +6 -0
  215. package/dist/components/Table/Body.js +5 -0
  216. package/dist/components/Table/Cell.d.ts +9 -0
  217. package/dist/components/Table/Cell.js +10 -0
  218. package/dist/components/Table/Header.d.ts +6 -0
  219. package/dist/components/Table/Header.js +9 -0
  220. package/dist/components/Table/HeaderCell.d.ts +14 -0
  221. package/dist/components/Table/HeaderCell.js +123 -0
  222. package/dist/components/Table/HeaderRow.d.ts +7 -0
  223. package/dist/components/Table/HeaderRow.js +25 -0
  224. package/dist/components/Table/Row.d.ts +14 -0
  225. package/dist/components/Table/Row.js +85 -0
  226. package/dist/components/Table/SelectBar.d.ts +15 -0
  227. package/dist/components/Table/SelectBar.js +35 -0
  228. package/dist/components/Table/SkeletonRows.d.ts +7 -0
  229. package/dist/components/Table/SkeletonRows.js +22 -0
  230. package/dist/components/Table/TableContext.d.ts +27 -0
  231. package/dist/components/Table/TableContext.js +103 -0
  232. package/dist/components/Table/index.d.ts +60 -0
  233. package/dist/components/Table/index.js +81 -0
  234. package/dist/components/Tabs/Tab.d.ts +20 -0
  235. package/dist/components/Tabs/Tab.js +170 -0
  236. package/dist/components/Tabs/TabMenu.d.ts +8 -0
  237. package/dist/components/Tabs/TabMenu.js +63 -0
  238. package/dist/components/Tabs/TabMenuItem.d.ts +20 -0
  239. package/dist/components/Tabs/TabMenuItem.js +39 -0
  240. package/dist/components/Tabs/TabsContext.d.ts +8 -0
  241. package/dist/components/Tabs/TabsContext.js +9 -0
  242. package/dist/components/Tabs/index.d.ts +50 -0
  243. package/dist/components/Tabs/index.js +137 -0
  244. package/dist/components/Tag/index.d.ts +26 -0
  245. package/dist/components/Tag/index.js +153 -0
  246. package/dist/components/TagInput/index.d.ts +55 -0
  247. package/dist/components/TagInput/index.js +316 -0
  248. package/dist/components/TagList/index.d.ts +37 -0
  249. package/dist/components/TagList/index.js +103 -0
  250. package/dist/components/Text/index.d.ts +40 -0
  251. package/dist/components/Text/index.js +107 -0
  252. package/dist/components/TextArea/index.d.ts +50 -0
  253. package/dist/components/TextArea/index.js +226 -0
  254. package/dist/components/TextInput/index.d.ts +75 -0
  255. package/dist/components/TextInput/index.js +472 -0
  256. package/dist/components/TextInputV2/index.d.ts +30 -0
  257. package/dist/components/TextInputV2/index.js +314 -0
  258. package/dist/components/TimeInput/index.d.ts +25 -0
  259. package/dist/components/TimeInput/index.js +199 -0
  260. package/dist/components/Toaster/index.d.ts +46 -0
  261. package/dist/components/Toaster/index.js +131 -0
  262. package/dist/components/Toaster/react-toastify.css.js +4 -0
  263. package/dist/components/Toggle/index.d.ts +34 -0
  264. package/dist/components/Toggle/index.js +196 -0
  265. package/dist/components/ToggleGroup/index.d.ts +24 -0
  266. package/dist/components/ToggleGroup/index.js +87 -0
  267. package/dist/components/Tooltip/index.d.ts +9 -0
  268. package/dist/components/Tooltip/index.js +47 -0
  269. package/dist/components/VerificationCode/index.d.ts +36 -0
  270. package/dist/components/VerificationCode/index.js +222 -0
  271. package/dist/components/index.d.ts +75 -0
  272. package/dist/helpers/isJSON.d.ts +2 -0
  273. package/dist/{src/helpers → helpers}/isJSON.js +4 -3
  274. package/dist/helpers/jestMockMatchMedia.d.ts +6 -0
  275. package/dist/helpers/keycode.d.ts +3 -0
  276. package/dist/helpers/legend.d.ts +2 -0
  277. package/dist/helpers/legend.js +14 -0
  278. package/dist/helpers/numbers.d.ts +2 -0
  279. package/dist/helpers/recursivelyGetChildrenString.d.ts +3 -0
  280. package/dist/helpers/recursivelyGetChildrenString.js +15 -0
  281. package/dist/hooks/useIsOverflowing.d.ts +5 -0
  282. package/dist/hooks/useIsOverflowing.js +23 -0
  283. package/dist/index.d.ts +4 -3693
  284. package/dist/index.js +187 -0
  285. package/dist/mocks/list.d.ts +12 -0
  286. package/dist/theme/index.d.ts +1573 -0
  287. package/dist/theme/index.js +30 -0
  288. package/dist/types.d.ts +6 -0
  289. package/dist/utils/animations.d.ts +27 -0
  290. package/dist/{src/utils → utils}/animations.js +30 -4
  291. package/dist/utils/capitalize.d.ts +2 -0
  292. package/dist/utils/capitalize.js +4 -0
  293. package/dist/utils/ids.d.ts +1 -0
  294. package/dist/utils/ids.js +6 -0
  295. package/dist/utils/index.d.ts +6 -0
  296. package/dist/utils/normalize.d.ts +2 -0
  297. package/dist/{src/utils → utils}/normalize.js +4 -3
  298. package/dist/utils/orderBy.d.ts +2 -0
  299. package/dist/utils/responsive/Breakpoint.d.ts +9 -0
  300. package/dist/utils/responsive/Breakpoint.js +13 -0
  301. package/dist/utils/responsive/index.d.ts +2 -0
  302. package/dist/utils/responsive/utilities.d.ts +3 -0
  303. package/dist/{src/utils → utils}/responsive/utilities.js +9 -6
  304. package/package.json +23 -13
  305. package/dist/react-datepicker/dist/react-datepicker.min.css.js +0 -3
  306. package/dist/react-toastify/dist/ReactToastify.min.css.js +0 -3
  307. package/dist/src/components/ActionBar/index.js +0 -40
  308. package/dist/src/components/Alert/index.js +0 -133
  309. package/dist/src/components/Avatar/index.js +0 -74
  310. package/dist/src/components/Badge/index.js +0 -116
  311. package/dist/src/components/Banner/assets/default-image-small.svg.js +0 -5
  312. package/dist/src/components/Banner/assets/default-image.svg.js +0 -5
  313. package/dist/src/components/Banner/index.js +0 -159
  314. package/dist/src/components/BarChart/Tooltip.js +0 -48
  315. package/dist/src/components/BarChart/index.js +0 -95
  316. package/dist/src/components/BarStack/index.js +0 -136
  317. package/dist/src/components/Breadcrumbs/index.js +0 -82
  318. package/dist/src/components/Bullet/index.js +0 -98
  319. package/dist/src/components/Button/index.js +0 -311
  320. package/dist/src/components/Card/index.js +0 -67
  321. package/dist/src/components/Carousel/index.js +0 -128
  322. package/dist/src/components/Checkbox/index.js +0 -316
  323. package/dist/src/components/CheckboxGroup/index.js +0 -143
  324. package/dist/src/components/CopyButton/index.js +0 -37
  325. package/dist/src/components/DateInput/index.js +0 -242
  326. package/dist/src/components/Dialog/Context.js +0 -12
  327. package/dist/src/components/Dialog/index.js +0 -88
  328. package/dist/src/components/Dialog/subComponents/Button.js +0 -21
  329. package/dist/src/components/Dialog/subComponents/Buttons.js +0 -14
  330. package/dist/src/components/Dialog/subComponents/CancelButton.js +0 -14
  331. package/dist/src/components/Dialog/subComponents/Stack.js +0 -11
  332. package/dist/src/components/Dialog/subComponents/Text.js +0 -12
  333. package/dist/src/components/EmptyState/index.js +0 -112
  334. package/dist/src/components/Expandable/index.js +0 -96
  335. package/dist/src/components/GlobalAlert/GlobalAlertLink.js +0 -38
  336. package/dist/src/components/GlobalAlert/index.js +0 -82
  337. package/dist/src/components/LineChart/CustomLegend.js +0 -138
  338. package/dist/src/components/LineChart/Tooltip.js +0 -43
  339. package/dist/src/components/LineChart/helpers.js +0 -40
  340. package/dist/src/components/LineChart/index.js +0 -131
  341. package/dist/src/components/Link/index.js +0 -147
  342. package/dist/src/components/List/Body.js +0 -16
  343. package/dist/src/components/List/Cell.js +0 -43
  344. package/dist/src/components/List/HeaderCell.js +0 -90
  345. package/dist/src/components/List/HeaderRow.js +0 -43
  346. package/dist/src/components/List/ListContext.js +0 -138
  347. package/dist/src/components/List/Row.js +0 -185
  348. package/dist/src/components/List/SelectBar.js +0 -48
  349. package/dist/src/components/List/SkeletonRows.js +0 -53
  350. package/dist/src/components/List/index.js +0 -75
  351. package/dist/src/components/Loader/index.js +0 -100
  352. package/dist/src/components/Menu/Item.js +0 -112
  353. package/dist/src/components/Menu/index.js +0 -129
  354. package/dist/src/components/MenuV2/Group.js +0 -25
  355. package/dist/src/components/MenuV2/Item.js +0 -139
  356. package/dist/src/components/MenuV2/index.js +0 -116
  357. package/dist/src/components/Meter/index.js +0 -76
  358. package/dist/src/components/Modal/Dialog.js +0 -182
  359. package/dist/src/components/Modal/index.js +0 -113
  360. package/dist/src/components/Notice/index.js +0 -34
  361. package/dist/src/components/Notification/index.js +0 -77
  362. package/dist/src/components/NumberInput/index.js +0 -299
  363. package/dist/src/components/NumberInputV2/index.js +0 -284
  364. package/dist/src/components/Pagination/index.js +0 -117
  365. package/dist/src/components/PasswordCheck/index.js +0 -41
  366. package/dist/src/components/PasswordStrengthMeter/index.js +0 -102
  367. package/dist/src/components/PieChart/Legends.js +0 -138
  368. package/dist/src/components/PieChart/Tooltip.js +0 -61
  369. package/dist/src/components/PieChart/index.js +0 -125
  370. package/dist/src/components/Popover/index.js +0 -144
  371. package/dist/src/components/Popup/helpers.js +0 -252
  372. package/dist/src/components/Popup/index.js +0 -363
  373. package/dist/src/components/ProgressBar/index.js +0 -57
  374. package/dist/src/components/Radio/index.js +0 -157
  375. package/dist/src/components/RadioGroup/index.js +0 -131
  376. package/dist/src/components/Row/index.js +0 -41
  377. package/dist/src/components/SelectInput/index.js +0 -610
  378. package/dist/src/components/SelectInputV2/Dropdown.js +0 -594
  379. package/dist/src/components/SelectInputV2/DropdownOption.js +0 -130
  380. package/dist/src/components/SelectInputV2/SearchBarDropdown.js +0 -128
  381. package/dist/src/components/SelectInputV2/SelectBar.js +0 -282
  382. package/dist/src/components/SelectInputV2/SelectInputProvider.js +0 -169
  383. package/dist/src/components/SelectInputV2/findOptionInOptions.js +0 -11
  384. package/dist/src/components/SelectInputV2/index.js +0 -137
  385. package/dist/src/components/SelectableCard/index.js +0 -175
  386. package/dist/src/components/SelectableCardGroup/index.js +0 -141
  387. package/dist/src/components/Separator/index.js +0 -73
  388. package/dist/src/components/Skeleton/Block.js +0 -35
  389. package/dist/src/components/Skeleton/Blocks.js +0 -34
  390. package/dist/src/components/Skeleton/BoxWithIcon.js +0 -32
  391. package/dist/src/components/Skeleton/Donut.js +0 -55
  392. package/dist/src/components/Skeleton/IconSkeleton.js +0 -19
  393. package/dist/src/components/Skeleton/Line.js +0 -13
  394. package/dist/src/components/Skeleton/List.js +0 -51
  395. package/dist/src/components/Skeleton/Slider.js +0 -36
  396. package/dist/src/components/Skeleton/Square.js +0 -9
  397. package/dist/src/components/Skeleton/index.js +0 -82
  398. package/dist/src/components/Snippet/index.js +0 -200
  399. package/dist/src/components/Stack/index.js +0 -29
  400. package/dist/src/components/Status/index.js +0 -74
  401. package/dist/src/components/StepList/index.js +0 -69
  402. package/dist/src/components/Stepper/index.js +0 -150
  403. package/dist/src/components/SwitchButton/FocusOverlay.js +0 -37
  404. package/dist/src/components/SwitchButton/index.js +0 -108
  405. package/dist/src/components/Table/Body.js +0 -9
  406. package/dist/src/components/Table/Cell.js +0 -21
  407. package/dist/src/components/Table/Header.js +0 -15
  408. package/dist/src/components/Table/HeaderCell.js +0 -103
  409. package/dist/src/components/Table/HeaderRow.js +0 -32
  410. package/dist/src/components/Table/Row.js +0 -89
  411. package/dist/src/components/Table/SelectBar.js +0 -48
  412. package/dist/src/components/Table/SkeletonRows.js +0 -51
  413. package/dist/src/components/Table/TableContext.js +0 -90
  414. package/dist/src/components/Table/index.js +0 -82
  415. package/dist/src/components/Tabs/Tab.js +0 -138
  416. package/dist/src/components/Tabs/TabMenu.js +0 -59
  417. package/dist/src/components/Tabs/TabMenuItem.js +0 -36
  418. package/dist/src/components/Tabs/TabsContext.js +0 -6
  419. package/dist/src/components/Tabs/index.js +0 -117
  420. package/dist/src/components/Tag/index.js +0 -169
  421. package/dist/src/components/TagInput/index.js +0 -309
  422. package/dist/src/components/TagList/index.js +0 -106
  423. package/dist/src/components/Text/index.js +0 -107
  424. package/dist/src/components/TextArea/index.js +0 -210
  425. package/dist/src/components/TextInput/index.js +0 -451
  426. package/dist/src/components/TextInputV2/index.js +0 -289
  427. package/dist/src/components/TimeInput/index.js +0 -37
  428. package/dist/src/components/Toaster/index.js +0 -131
  429. package/dist/src/components/Toggle/index.js +0 -160
  430. package/dist/src/components/ToggleGroup/index.js +0 -122
  431. package/dist/src/components/Tooltip/index.js +0 -55
  432. package/dist/src/components/VerificationCode/index.js +0 -222
  433. package/dist/src/helpers/legend.js +0 -13
  434. package/dist/src/helpers/recursivelyGetChildrenString.js +0 -11
  435. package/dist/src/hooks/useIsOverflowing.js +0 -34
  436. package/dist/src/index.js +0 -77
  437. package/dist/src/theme/index.js +0 -29
  438. package/dist/src/utils/capitalize.js +0 -3
  439. package/dist/src/utils/ids.js +0 -7
  440. package/dist/src/utils/responsive/Breakpoint.js +0 -12
@@ -0,0 +1,1573 @@
1
+ import { consoleDarkTheme, consoleLightTheme } from '@ultraviolet/themes';
2
+ export type ScreenSize = keyof typeof consoleLightTheme.screens;
3
+ /**
4
+ * @deprecated use UltravioletUITheme instead
5
+ */
6
+ type SCWUITheme = typeof consoleLightTheme;
7
+ type UltravioletUITheme = typeof consoleLightTheme;
8
+ declare const colors: {
9
+ danger: {
10
+ background: string;
11
+ backgroundDisabled: string;
12
+ backgroundHover: string;
13
+ backgroundStrong: string;
14
+ backgroundStrongDisabled: string;
15
+ backgroundStrongHover: string;
16
+ border: string;
17
+ borderDisabled: string;
18
+ borderHover: string;
19
+ borderStrong: string;
20
+ borderStrongDisabled: string;
21
+ borderStrongHover: string;
22
+ icon: string;
23
+ iconDisabled: string;
24
+ iconHover: string;
25
+ iconStrong: string;
26
+ iconStrongDisabled: string;
27
+ iconStrongHover: string;
28
+ text: string;
29
+ textDisabled: string;
30
+ textHover: string;
31
+ textStrong: string;
32
+ textStrongDisabled: string;
33
+ textStrongHover: string;
34
+ };
35
+ info: {
36
+ background: string;
37
+ backgroundDisabled: string;
38
+ backgroundHover: string;
39
+ backgroundStrong: string;
40
+ backgroundStrongDisabled: string;
41
+ backgroundStrongHover: string;
42
+ border: string;
43
+ borderDisabled: string;
44
+ borderHover: string;
45
+ borderStrong: string;
46
+ borderStrongDisabled: string;
47
+ borderStrongHover: string;
48
+ icon: string;
49
+ iconDisabled: string;
50
+ iconHover: string;
51
+ iconStrong: string;
52
+ iconStrongDisabled: string;
53
+ iconStrongHover: string;
54
+ text: string;
55
+ textDisabled: string;
56
+ textHover: string;
57
+ textStrong: string;
58
+ textStrongDisabled: string;
59
+ textStrongHover: string;
60
+ };
61
+ neutral: {
62
+ background: string;
63
+ backgroundDisabled: string;
64
+ backgroundHover: string;
65
+ backgroundStrong: string;
66
+ backgroundStrongDisabled: string;
67
+ backgroundStrongHover: string;
68
+ backgroundStronger: string;
69
+ backgroundStrongerDisabled: string;
70
+ backgroundStrongerHover: string;
71
+ backgroundWeak: string;
72
+ backgroundWeakDisabled: string;
73
+ backgroundWeakElevated: string;
74
+ backgroundWeakHover: string;
75
+ border: string;
76
+ borderDisabled: string;
77
+ borderHover: string;
78
+ borderStrong: string;
79
+ borderStrongDisabled: string;
80
+ borderStrongHover: string;
81
+ borderStronger: string;
82
+ borderStrongerDisabled: string;
83
+ borderStrongerHover: string;
84
+ borderWeak: string;
85
+ borderWeakDisabled: string;
86
+ borderWeakHover: string;
87
+ icon: string;
88
+ iconDisabled: string;
89
+ iconHover: string;
90
+ iconStrong: string;
91
+ iconStrongDisabled: string;
92
+ iconStrongHover: string;
93
+ iconStronger: string;
94
+ iconStrongerDisabled: string;
95
+ iconStrongerHover: string;
96
+ iconWeak: string;
97
+ iconWeakDisabled: string;
98
+ iconWeakHover: string;
99
+ text: string;
100
+ textDisabled: string;
101
+ textHover: string;
102
+ textStrong: string;
103
+ textStrongDisabled: string;
104
+ textStrongHover: string;
105
+ textStronger: string;
106
+ textStrongerDisabled: string;
107
+ textStrongerHover: string;
108
+ textWeak: string;
109
+ textWeakDisabled: string;
110
+ textWeakHover: string;
111
+ };
112
+ other: {
113
+ data: {
114
+ charts: {
115
+ danger: string;
116
+ data1: string;
117
+ data10: string;
118
+ data11: string;
119
+ data12: string;
120
+ data13: string;
121
+ data14: string;
122
+ data2: string;
123
+ data3: string;
124
+ data4: string;
125
+ data5: string;
126
+ data6: string;
127
+ data7: string;
128
+ data8: string;
129
+ data9: string;
130
+ success: string;
131
+ };
132
+ };
133
+ gradients: {
134
+ background: {
135
+ linear: {
136
+ accent: string;
137
+ aqua: string;
138
+ blue: string;
139
+ emerald: string;
140
+ fuschia: string;
141
+ magenta: string;
142
+ primary: string;
143
+ };
144
+ radial: {
145
+ aquaFuschia: string;
146
+ aquaPurple: string;
147
+ fuschiaPurple: string;
148
+ lime: string;
149
+ magenta: string;
150
+ purple: string;
151
+ };
152
+ };
153
+ text: {
154
+ dark: string;
155
+ light: string;
156
+ };
157
+ };
158
+ icon: {
159
+ category: {
160
+ neutral: {
161
+ fill: string;
162
+ fillDisabled: string;
163
+ fillStrong: string;
164
+ fillStrongDisabled: string;
165
+ };
166
+ primary: {
167
+ fill: string;
168
+ fillDisabled: string;
169
+ fillStrong: string;
170
+ fillStrongDisabled: string;
171
+ };
172
+ };
173
+ product: {
174
+ danger: {
175
+ fill: string;
176
+ fillDisabled: string;
177
+ fillStrong: string;
178
+ fillStrongDisabled: string;
179
+ fillWeak: string;
180
+ fillWeakDisabled: string;
181
+ };
182
+ original: {
183
+ fill: string;
184
+ fillDisabled: string;
185
+ fillStrong: string;
186
+ fillStrongDisabled: string;
187
+ fillWeak: string;
188
+ fillWeakDisabled: string;
189
+ };
190
+ primary: {
191
+ fill: string;
192
+ fillDisabled: string;
193
+ fillStrong: string;
194
+ fillStrongDisabled: string;
195
+ fillWeak: string;
196
+ fillWeakDisabled: string;
197
+ };
198
+ warning: {
199
+ fill: string;
200
+ fillDisabled: string;
201
+ fillStrong: string;
202
+ fillStrongDisabled: string;
203
+ fillWeak: string;
204
+ fillWeakDisabled: string;
205
+ };
206
+ };
207
+ };
208
+ };
209
+ overlay: string;
210
+ primary: {
211
+ background: string;
212
+ backgroundDisabled: string;
213
+ backgroundHover: string;
214
+ backgroundStrong: string;
215
+ backgroundStrongDisabled: string;
216
+ backgroundStrongHover: string;
217
+ border: string;
218
+ borderDisabled: string;
219
+ borderHover: string;
220
+ borderStrong: string;
221
+ borderStrongDisabled: string;
222
+ borderStrongHover: string;
223
+ icon: string;
224
+ iconDisabled: string;
225
+ iconHover: string;
226
+ iconStrong: string;
227
+ iconStrongDisabled: string;
228
+ iconStrongHover: string;
229
+ text: string;
230
+ textDisabled: string;
231
+ textHover: string;
232
+ textStrong: string;
233
+ textStrongDisabled: string;
234
+ textStrongHover: string;
235
+ };
236
+ secondary: {
237
+ background: string;
238
+ backgroundDisabled: string;
239
+ backgroundHover: string;
240
+ backgroundStrong: string;
241
+ backgroundStrongDisabled: string;
242
+ backgroundStrongHover: string;
243
+ border: string;
244
+ borderDisabled: string;
245
+ borderHover: string;
246
+ borderStrong: string;
247
+ borderStrongDisabled: string;
248
+ borderStrongHover: string;
249
+ icon: string;
250
+ iconDisabled: string;
251
+ iconHover: string;
252
+ iconStrong: string;
253
+ iconStrongDisabled: string;
254
+ iconStrongHover: string;
255
+ text: string;
256
+ textDisabled: string;
257
+ textHover: string;
258
+ textStrong: string;
259
+ textStrongDisabled: string;
260
+ textStrongHover: string;
261
+ };
262
+ success: {
263
+ background: string;
264
+ backgroundDisabled: string;
265
+ backgroundHover: string;
266
+ backgroundStrong: string;
267
+ backgroundStrongDisabled: string;
268
+ backgroundStrongHover: string;
269
+ border: string;
270
+ borderDisabled: string;
271
+ borderHover: string;
272
+ borderStrong: string;
273
+ borderStrongDisabled: string;
274
+ borderStrongHover: string;
275
+ icon: string;
276
+ iconDisabled: string;
277
+ iconHover: string;
278
+ iconStrong: string;
279
+ iconStrongDisabled: string;
280
+ iconStrongHover: string;
281
+ text: string;
282
+ textDisabled: string;
283
+ textHover: string;
284
+ textStrong: string;
285
+ textStrongDisabled: string;
286
+ textStrongHover: string;
287
+ };
288
+ warning: {
289
+ background: string;
290
+ backgroundDisabled: string;
291
+ backgroundHover: string;
292
+ backgroundStrong: string;
293
+ backgroundStrongDisabled: string;
294
+ backgroundStrongHover: string;
295
+ border: string;
296
+ borderDisabled: string;
297
+ borderHover: string;
298
+ borderStrong: string;
299
+ borderStrongDisabled: string;
300
+ borderStrongHover: string;
301
+ icon: string;
302
+ iconDisabled: string;
303
+ iconHover: string;
304
+ iconStrong: string;
305
+ iconStrongDisabled: string;
306
+ iconStrongHover: string;
307
+ text: string;
308
+ textDisabled: string;
309
+ textHover: string;
310
+ textStrong: string;
311
+ textStrongDisabled: string;
312
+ textStrongHover: string;
313
+ };
314
+ } & {
315
+ danger: {
316
+ backgroundWeak: string;
317
+ backgroundWeakDisabled: string;
318
+ backgroundWeakHover: string;
319
+ borderWeak: string;
320
+ borderWeakDisabled: string;
321
+ borderWeakHover: string;
322
+ iconWeak: string;
323
+ iconWeakDisabled: string;
324
+ iconWeakHover: string;
325
+ textWeak: string;
326
+ textWeakDisabled: string;
327
+ textWeakHover: string;
328
+ };
329
+ info: {
330
+ backgroundWeak: string;
331
+ backgroundWeakDisabled: string;
332
+ backgroundWeakHover: string;
333
+ borderWeak: string;
334
+ borderWeakDisabled: string;
335
+ borderWeakHover: string;
336
+ iconWeak: string;
337
+ iconWeakDisabled: string;
338
+ iconWeakHover: string;
339
+ textWeak: string;
340
+ textWeakDisabled: string;
341
+ textWeakHover: string;
342
+ };
343
+ primary: {
344
+ backgroundWeak: string;
345
+ backgroundWeakDisabled: string;
346
+ backgroundWeakHover: string;
347
+ borderWeak: string;
348
+ borderWeakDisabled: string;
349
+ borderWeakHover: string;
350
+ iconWeak: string;
351
+ iconWeakDisabled: string;
352
+ iconWeakHover: string;
353
+ textWeak: string;
354
+ textWeakDisabled: string;
355
+ textWeakHover: string;
356
+ };
357
+ secondary: {
358
+ backgroundWeak: string;
359
+ backgroundWeakDisabled: string;
360
+ backgroundWeakHover: string;
361
+ borderWeak: string;
362
+ borderWeakDisabled: string;
363
+ borderWeakHover: string;
364
+ iconWeak: string;
365
+ iconWeakDisabled: string;
366
+ iconWeakHover: string;
367
+ textWeak: string;
368
+ textWeakDisabled: string;
369
+ textWeakHover: string;
370
+ };
371
+ success: {
372
+ backgroundWeak: string;
373
+ backgroundWeakDisabled: string;
374
+ backgroundWeakHover: string;
375
+ borderWeak: string;
376
+ borderWeakDisabled: string;
377
+ borderWeakHover: string;
378
+ iconWeak: string;
379
+ iconWeakDisabled: string;
380
+ iconWeakHover: string;
381
+ textWeak: string;
382
+ textWeakDisabled: string;
383
+ textWeakHover: string;
384
+ };
385
+ warning: {
386
+ backgroundWeak: string;
387
+ backgroundWeakDisabled: string;
388
+ backgroundWeakHover: string;
389
+ borderWeak: string;
390
+ borderWeakDisabled: string;
391
+ borderWeakHover: string;
392
+ iconWeak: string;
393
+ iconWeakDisabled: string;
394
+ iconWeakHover: string;
395
+ textWeak: string;
396
+ textWeakDisabled: string;
397
+ textWeakHover: string;
398
+ };
399
+ other: {
400
+ gradients: {
401
+ background: {
402
+ gold: string;
403
+ purple: string;
404
+ strong: string;
405
+ accent: string;
406
+ aqua: string;
407
+ blue: string;
408
+ emerald: string;
409
+ fuschia: string;
410
+ magenta: string;
411
+ primary: string;
412
+ };
413
+ };
414
+ };
415
+ }, shadows: {
416
+ bulk: string;
417
+ defaultShadow: string;
418
+ drawer: string;
419
+ dropdown: string;
420
+ focusDanger: string;
421
+ focusInfo: string;
422
+ focusNeutral: string;
423
+ focusPrimary: string;
424
+ focusSuccess: string;
425
+ focusWarning: string;
426
+ hoverDanger: string;
427
+ hoverInfo: string;
428
+ hoverNeutral: string;
429
+ hoverPrimary: string;
430
+ hoverSuccess: string;
431
+ hoverWarning: string;
432
+ menu: string;
433
+ modal: string;
434
+ popover: string;
435
+ tabBar: {
436
+ active: string;
437
+ off: string;
438
+ };
439
+ tooltip: string;
440
+ }, typography: {
441
+ body: {
442
+ fontFamily: string;
443
+ fontSize: string;
444
+ fontWeight: string;
445
+ letterSpacing: string;
446
+ lineHeight: string;
447
+ paragraphSpacing: string;
448
+ textCase: string;
449
+ textDecoration: string;
450
+ weight: string;
451
+ };
452
+ bodySmall: {
453
+ fontFamily: string;
454
+ fontSize: string;
455
+ fontWeight: string;
456
+ letterSpacing: string;
457
+ lineHeight: string;
458
+ paragraphSpacing: string;
459
+ textCase: string;
460
+ textDecoration: string;
461
+ weight: string;
462
+ };
463
+ bodySmallStrong: {
464
+ fontFamily: string;
465
+ fontSize: string;
466
+ fontWeight: string;
467
+ letterSpacing: string;
468
+ lineHeight: string;
469
+ paragraphSpacing: string;
470
+ textCase: string;
471
+ textDecoration: string;
472
+ weight: string;
473
+ };
474
+ bodySmallStronger: {
475
+ fontFamily: string;
476
+ fontSize: string;
477
+ fontWeight: string;
478
+ letterSpacing: string;
479
+ lineHeight: string;
480
+ paragraphSpacing: string;
481
+ textCase: string;
482
+ textDecoration: string;
483
+ weight: string;
484
+ };
485
+ bodyStrong: {
486
+ fontFamily: string;
487
+ fontSize: string;
488
+ fontWeight: string;
489
+ letterSpacing: string;
490
+ lineHeight: string;
491
+ paragraphSpacing: string;
492
+ textCase: string;
493
+ textDecoration: string;
494
+ weight: string;
495
+ };
496
+ bodyStronger: {
497
+ fontFamily: string;
498
+ fontSize: string;
499
+ fontWeight: string;
500
+ letterSpacing: string;
501
+ lineHeight: string;
502
+ paragraphSpacing: string;
503
+ textCase: string;
504
+ textDecoration: string;
505
+ weight: string;
506
+ };
507
+ caption: {
508
+ fontFamily: string;
509
+ fontSize: string;
510
+ fontWeight: string;
511
+ letterSpacing: string;
512
+ lineHeight: string;
513
+ paragraphSpacing: string;
514
+ textCase: string;
515
+ textDecoration: string;
516
+ weight: string;
517
+ };
518
+ captionSmall: {
519
+ fontFamily: string;
520
+ fontSize: string;
521
+ fontWeight: string;
522
+ letterSpacing: string;
523
+ lineHeight: string;
524
+ paragraphSpacing: string;
525
+ textCase: string;
526
+ textDecoration: string;
527
+ weight: string;
528
+ };
529
+ captionSmallStrong: {
530
+ fontFamily: string;
531
+ fontSize: string;
532
+ fontWeight: string;
533
+ letterSpacing: string;
534
+ lineHeight: string;
535
+ paragraphSpacing: string;
536
+ textCase: string;
537
+ textDecoration: string;
538
+ weight: string;
539
+ };
540
+ captionSmallStronger: {
541
+ fontFamily: string;
542
+ fontSize: string;
543
+ fontWeight: string;
544
+ letterSpacing: string;
545
+ lineHeight: string;
546
+ paragraphSpacing: string;
547
+ textCase: string;
548
+ textDecoration: string;
549
+ weight: string;
550
+ };
551
+ captionStrong: {
552
+ fontFamily: string;
553
+ fontSize: string;
554
+ fontWeight: string;
555
+ letterSpacing: string;
556
+ lineHeight: string;
557
+ paragraphSpacing: string;
558
+ textCase: string;
559
+ textDecoration: string;
560
+ weight: string;
561
+ };
562
+ captionStronger: {
563
+ fontFamily: string;
564
+ fontSize: string;
565
+ fontWeight: string;
566
+ letterSpacing: string;
567
+ lineHeight: string;
568
+ paragraphSpacing: string;
569
+ textCase: string;
570
+ textDecoration: string;
571
+ weight: string;
572
+ };
573
+ code: {
574
+ fontFamily: string;
575
+ fontSize: string;
576
+ fontWeight: string;
577
+ letterSpacing: string;
578
+ lineHeight: string;
579
+ paragraphSpacing: string;
580
+ textCase: string;
581
+ textDecoration: string;
582
+ weight: string;
583
+ };
584
+ codeStrong: {
585
+ fontFamily: string;
586
+ fontSize: string;
587
+ fontWeight: string;
588
+ letterSpacing: string;
589
+ lineHeight: string;
590
+ paragraphSpacing: string;
591
+ textCase: string;
592
+ textDecoration: string;
593
+ weight: string;
594
+ };
595
+ codeStronger: {
596
+ fontFamily: string;
597
+ fontSize: string;
598
+ fontWeight: string;
599
+ letterSpacing: string;
600
+ lineHeight: string;
601
+ paragraphSpacing: string;
602
+ textCase: string;
603
+ textDecoration: string;
604
+ weight: string;
605
+ };
606
+ heading: {
607
+ fontFamily: string;
608
+ fontSize: string;
609
+ fontWeight: string;
610
+ letterSpacing: string;
611
+ lineHeight: string;
612
+ paragraphSpacing: string;
613
+ textCase: string;
614
+ textDecoration: string;
615
+ weight: string;
616
+ };
617
+ headingLarge: {
618
+ fontFamily: string;
619
+ fontSize: string;
620
+ fontWeight: string;
621
+ letterSpacing: string;
622
+ lineHeight: string;
623
+ paragraphSpacing: string;
624
+ textCase: string;
625
+ textDecoration: string;
626
+ weight: string;
627
+ };
628
+ headingLargeStrong: {
629
+ fontFamily: string;
630
+ fontSize: string;
631
+ fontWeight: string;
632
+ letterSpacing: string;
633
+ lineHeight: string;
634
+ paragraphSpacing: string;
635
+ textCase: string;
636
+ textDecoration: string;
637
+ weight: string;
638
+ };
639
+ headingLargeStronger: {
640
+ fontFamily: string;
641
+ fontSize: string;
642
+ fontWeight: string;
643
+ letterSpacing: string;
644
+ lineHeight: string;
645
+ paragraphSpacing: string;
646
+ textCase: string;
647
+ textDecoration: string;
648
+ weight: string;
649
+ };
650
+ headingSmall: {
651
+ fontFamily: string;
652
+ fontSize: string;
653
+ fontWeight: string;
654
+ letterSpacing: string;
655
+ lineHeight: string;
656
+ paragraphSpacing: string;
657
+ textCase: string;
658
+ textDecoration: string;
659
+ weight: string;
660
+ };
661
+ headingSmallStrong: {
662
+ fontFamily: string;
663
+ fontSize: string;
664
+ fontWeight: string;
665
+ letterSpacing: string;
666
+ lineHeight: string;
667
+ paragraphSpacing: string;
668
+ textCase: string;
669
+ textDecoration: string;
670
+ weight: string;
671
+ };
672
+ headingSmallStronger: {
673
+ fontFamily: string;
674
+ fontSize: string;
675
+ fontWeight: string;
676
+ letterSpacing: string;
677
+ lineHeight: string;
678
+ paragraphSpacing: string;
679
+ textCase: string;
680
+ textDecoration: string;
681
+ weight: string;
682
+ };
683
+ headingStrong: {
684
+ fontFamily: string;
685
+ fontSize: string;
686
+ fontWeight: string;
687
+ letterSpacing: string;
688
+ lineHeight: string;
689
+ paragraphSpacing: string;
690
+ textCase: string;
691
+ textDecoration: string;
692
+ weight: string;
693
+ };
694
+ headingStronger: {
695
+ fontFamily: string;
696
+ fontSize: string;
697
+ fontWeight: string;
698
+ letterSpacing: string;
699
+ lineHeight: string;
700
+ paragraphSpacing: string;
701
+ textCase: string;
702
+ textDecoration: string;
703
+ weight: string;
704
+ };
705
+ } & {
706
+ body: {
707
+ fontFamily: string;
708
+ };
709
+ bodySmall: {
710
+ fontFamily: string;
711
+ };
712
+ bodySmallStrong: {
713
+ fontFamily: string;
714
+ };
715
+ bodySmallStronger: {
716
+ fontFamily: string;
717
+ };
718
+ bodyStrong: {
719
+ fontFamily: string;
720
+ };
721
+ bodyStronger: {
722
+ fontFamily: string;
723
+ };
724
+ caption: {
725
+ fontFamily: string;
726
+ };
727
+ captionSmall: {
728
+ fontFamily: string;
729
+ };
730
+ captionSmallStrong: {
731
+ fontFamily: string;
732
+ };
733
+ captionSmallStronger: {
734
+ fontFamily: string;
735
+ };
736
+ captionStrong: {
737
+ fontFamily: string;
738
+ };
739
+ captionStronger: {
740
+ fontFamily: string;
741
+ };
742
+ heading: {
743
+ fontFamily: string;
744
+ };
745
+ headingLarge: {
746
+ fontFamily: string;
747
+ };
748
+ headingSmall: {
749
+ fontFamily: string;
750
+ };
751
+ }, space: {
752
+ '0': string;
753
+ '1': string;
754
+ '2': string;
755
+ '3': string;
756
+ '4': string;
757
+ '5': string;
758
+ '6': string;
759
+ '7': string;
760
+ '8': string;
761
+ '9': string;
762
+ '10': string;
763
+ '0.25': string;
764
+ '0.5': string;
765
+ '1.5': string;
766
+ }, radii: {
767
+ circle: string;
768
+ default: string;
769
+ large: string;
770
+ none: string;
771
+ small: string;
772
+ xlarge: string;
773
+ }, screens: {
774
+ xsmall: number;
775
+ small: number;
776
+ medium: number;
777
+ large: number;
778
+ xlarge: number;
779
+ };
780
+ type RecursivePartial<T> = {
781
+ [P in keyof T]?: RecursivePartial<T[P]>;
782
+ };
783
+ /**
784
+ * Will extend theme with new theme properties
785
+ * @param {UltravioletUITheme} baseTheme the theme you want to extend from, by default it is set to light theme
786
+ * @param {RecursivePartial<UltravioletUITheme>} extendedTheme the properties of a new theme you want to apply from baseTheme
787
+ */
788
+ declare const extendTheme: (extendedTheme: RecursivePartial<UltravioletUITheme>) => {
789
+ colors: {
790
+ danger: {
791
+ background: string;
792
+ backgroundDisabled: string;
793
+ backgroundHover: string;
794
+ backgroundStrong: string;
795
+ backgroundStrongDisabled: string;
796
+ backgroundStrongHover: string;
797
+ border: string;
798
+ borderDisabled: string;
799
+ borderHover: string;
800
+ borderStrong: string;
801
+ borderStrongDisabled: string;
802
+ borderStrongHover: string;
803
+ icon: string;
804
+ iconDisabled: string;
805
+ iconHover: string;
806
+ iconStrong: string;
807
+ iconStrongDisabled: string;
808
+ iconStrongHover: string;
809
+ text: string;
810
+ textDisabled: string;
811
+ textHover: string;
812
+ textStrong: string;
813
+ textStrongDisabled: string;
814
+ textStrongHover: string;
815
+ };
816
+ info: {
817
+ background: string;
818
+ backgroundDisabled: string;
819
+ backgroundHover: string;
820
+ backgroundStrong: string;
821
+ backgroundStrongDisabled: string;
822
+ backgroundStrongHover: string;
823
+ border: string;
824
+ borderDisabled: string;
825
+ borderHover: string;
826
+ borderStrong: string;
827
+ borderStrongDisabled: string;
828
+ borderStrongHover: string;
829
+ icon: string;
830
+ iconDisabled: string;
831
+ iconHover: string;
832
+ iconStrong: string;
833
+ iconStrongDisabled: string;
834
+ iconStrongHover: string;
835
+ text: string;
836
+ textDisabled: string;
837
+ textHover: string;
838
+ textStrong: string;
839
+ textStrongDisabled: string;
840
+ textStrongHover: string;
841
+ };
842
+ neutral: {
843
+ background: string;
844
+ backgroundDisabled: string;
845
+ backgroundHover: string;
846
+ backgroundStrong: string;
847
+ backgroundStrongDisabled: string;
848
+ backgroundStrongHover: string;
849
+ backgroundStronger: string;
850
+ backgroundStrongerDisabled: string;
851
+ backgroundStrongerHover: string;
852
+ backgroundWeak: string;
853
+ backgroundWeakDisabled: string;
854
+ backgroundWeakElevated: string;
855
+ backgroundWeakHover: string;
856
+ border: string;
857
+ borderDisabled: string;
858
+ borderHover: string;
859
+ borderStrong: string;
860
+ borderStrongDisabled: string;
861
+ borderStrongHover: string;
862
+ borderStronger: string;
863
+ borderStrongerDisabled: string;
864
+ borderStrongerHover: string;
865
+ borderWeak: string;
866
+ borderWeakDisabled: string;
867
+ borderWeakHover: string;
868
+ icon: string;
869
+ iconDisabled: string;
870
+ iconHover: string;
871
+ iconStrong: string;
872
+ iconStrongDisabled: string;
873
+ iconStrongHover: string;
874
+ iconStronger: string;
875
+ iconStrongerDisabled: string;
876
+ iconStrongerHover: string;
877
+ iconWeak: string;
878
+ iconWeakDisabled: string;
879
+ iconWeakHover: string;
880
+ text: string;
881
+ textDisabled: string;
882
+ textHover: string;
883
+ textStrong: string;
884
+ textStrongDisabled: string;
885
+ textStrongHover: string;
886
+ textStronger: string;
887
+ textStrongerDisabled: string;
888
+ textStrongerHover: string;
889
+ textWeak: string;
890
+ textWeakDisabled: string;
891
+ textWeakHover: string;
892
+ };
893
+ other: {
894
+ data: {
895
+ charts: {
896
+ danger: string;
897
+ data1: string;
898
+ data10: string;
899
+ data11: string;
900
+ data12: string;
901
+ data13: string;
902
+ data14: string;
903
+ data2: string;
904
+ data3: string;
905
+ data4: string;
906
+ data5: string;
907
+ data6: string;
908
+ data7: string;
909
+ data8: string;
910
+ data9: string;
911
+ success: string;
912
+ };
913
+ };
914
+ gradients: {
915
+ background: {
916
+ linear: {
917
+ accent: string;
918
+ aqua: string;
919
+ blue: string;
920
+ emerald: string;
921
+ fuschia: string;
922
+ magenta: string;
923
+ primary: string;
924
+ };
925
+ radial: {
926
+ aquaFuschia: string;
927
+ aquaPurple: string;
928
+ fuschiaPurple: string;
929
+ lime: string;
930
+ magenta: string;
931
+ purple: string;
932
+ };
933
+ };
934
+ text: {
935
+ dark: string;
936
+ light: string;
937
+ };
938
+ };
939
+ icon: {
940
+ category: {
941
+ neutral: {
942
+ fill: string;
943
+ fillDisabled: string;
944
+ fillStrong: string;
945
+ fillStrongDisabled: string;
946
+ };
947
+ primary: {
948
+ fill: string;
949
+ fillDisabled: string;
950
+ fillStrong: string;
951
+ fillStrongDisabled: string;
952
+ };
953
+ };
954
+ product: {
955
+ danger: {
956
+ fill: string;
957
+ fillDisabled: string;
958
+ fillStrong: string;
959
+ fillStrongDisabled: string;
960
+ fillWeak: string;
961
+ fillWeakDisabled: string;
962
+ };
963
+ original: {
964
+ fill: string;
965
+ fillDisabled: string;
966
+ fillStrong: string;
967
+ fillStrongDisabled: string;
968
+ fillWeak: string;
969
+ fillWeakDisabled: string;
970
+ };
971
+ primary: {
972
+ fill: string;
973
+ fillDisabled: string;
974
+ fillStrong: string;
975
+ fillStrongDisabled: string;
976
+ fillWeak: string;
977
+ fillWeakDisabled: string;
978
+ };
979
+ warning: {
980
+ fill: string;
981
+ fillDisabled: string;
982
+ fillStrong: string;
983
+ fillStrongDisabled: string;
984
+ fillWeak: string;
985
+ fillWeakDisabled: string;
986
+ };
987
+ };
988
+ };
989
+ };
990
+ overlay: string;
991
+ primary: {
992
+ background: string;
993
+ backgroundDisabled: string;
994
+ backgroundHover: string;
995
+ backgroundStrong: string;
996
+ backgroundStrongDisabled: string;
997
+ backgroundStrongHover: string;
998
+ border: string;
999
+ borderDisabled: string;
1000
+ borderHover: string;
1001
+ borderStrong: string;
1002
+ borderStrongDisabled: string;
1003
+ borderStrongHover: string;
1004
+ icon: string;
1005
+ iconDisabled: string;
1006
+ iconHover: string;
1007
+ iconStrong: string;
1008
+ iconStrongDisabled: string;
1009
+ iconStrongHover: string;
1010
+ text: string;
1011
+ textDisabled: string;
1012
+ textHover: string;
1013
+ textStrong: string;
1014
+ textStrongDisabled: string;
1015
+ textStrongHover: string;
1016
+ };
1017
+ secondary: {
1018
+ background: string;
1019
+ backgroundDisabled: string;
1020
+ backgroundHover: string;
1021
+ backgroundStrong: string;
1022
+ backgroundStrongDisabled: string;
1023
+ backgroundStrongHover: string;
1024
+ border: string;
1025
+ borderDisabled: string;
1026
+ borderHover: string;
1027
+ borderStrong: string;
1028
+ borderStrongDisabled: string;
1029
+ borderStrongHover: string;
1030
+ icon: string;
1031
+ iconDisabled: string;
1032
+ iconHover: string;
1033
+ iconStrong: string;
1034
+ iconStrongDisabled: string;
1035
+ iconStrongHover: string;
1036
+ text: string;
1037
+ textDisabled: string;
1038
+ textHover: string;
1039
+ textStrong: string;
1040
+ textStrongDisabled: string;
1041
+ textStrongHover: string;
1042
+ };
1043
+ success: {
1044
+ background: string;
1045
+ backgroundDisabled: string;
1046
+ backgroundHover: string;
1047
+ backgroundStrong: string;
1048
+ backgroundStrongDisabled: string;
1049
+ backgroundStrongHover: string;
1050
+ border: string;
1051
+ borderDisabled: string;
1052
+ borderHover: string;
1053
+ borderStrong: string;
1054
+ borderStrongDisabled: string;
1055
+ borderStrongHover: string;
1056
+ icon: string;
1057
+ iconDisabled: string;
1058
+ iconHover: string;
1059
+ iconStrong: string;
1060
+ iconStrongDisabled: string;
1061
+ iconStrongHover: string;
1062
+ text: string;
1063
+ textDisabled: string;
1064
+ textHover: string;
1065
+ textStrong: string;
1066
+ textStrongDisabled: string;
1067
+ textStrongHover: string;
1068
+ };
1069
+ warning: {
1070
+ background: string;
1071
+ backgroundDisabled: string;
1072
+ backgroundHover: string;
1073
+ backgroundStrong: string;
1074
+ backgroundStrongDisabled: string;
1075
+ backgroundStrongHover: string;
1076
+ border: string;
1077
+ borderDisabled: string;
1078
+ borderHover: string;
1079
+ borderStrong: string;
1080
+ borderStrongDisabled: string;
1081
+ borderStrongHover: string;
1082
+ icon: string;
1083
+ iconDisabled: string;
1084
+ iconHover: string;
1085
+ iconStrong: string;
1086
+ iconStrongDisabled: string;
1087
+ iconStrongHover: string;
1088
+ text: string;
1089
+ textDisabled: string;
1090
+ textHover: string;
1091
+ textStrong: string;
1092
+ textStrongDisabled: string;
1093
+ textStrongHover: string;
1094
+ };
1095
+ } & {
1096
+ danger: {
1097
+ backgroundWeak: string;
1098
+ backgroundWeakDisabled: string;
1099
+ backgroundWeakHover: string;
1100
+ borderWeak: string;
1101
+ borderWeakDisabled: string;
1102
+ borderWeakHover: string;
1103
+ iconWeak: string;
1104
+ iconWeakDisabled: string;
1105
+ iconWeakHover: string;
1106
+ textWeak: string;
1107
+ textWeakDisabled: string;
1108
+ textWeakHover: string;
1109
+ };
1110
+ info: {
1111
+ backgroundWeak: string;
1112
+ backgroundWeakDisabled: string;
1113
+ backgroundWeakHover: string;
1114
+ borderWeak: string;
1115
+ borderWeakDisabled: string;
1116
+ borderWeakHover: string;
1117
+ iconWeak: string;
1118
+ iconWeakDisabled: string;
1119
+ iconWeakHover: string;
1120
+ textWeak: string;
1121
+ textWeakDisabled: string;
1122
+ textWeakHover: string;
1123
+ };
1124
+ primary: {
1125
+ backgroundWeak: string;
1126
+ backgroundWeakDisabled: string;
1127
+ backgroundWeakHover: string;
1128
+ borderWeak: string;
1129
+ borderWeakDisabled: string;
1130
+ borderWeakHover: string;
1131
+ iconWeak: string;
1132
+ iconWeakDisabled: string;
1133
+ iconWeakHover: string;
1134
+ textWeak: string;
1135
+ textWeakDisabled: string;
1136
+ textWeakHover: string;
1137
+ };
1138
+ secondary: {
1139
+ backgroundWeak: string;
1140
+ backgroundWeakDisabled: string;
1141
+ backgroundWeakHover: string;
1142
+ borderWeak: string;
1143
+ borderWeakDisabled: string;
1144
+ borderWeakHover: string;
1145
+ iconWeak: string;
1146
+ iconWeakDisabled: string;
1147
+ iconWeakHover: string;
1148
+ textWeak: string;
1149
+ textWeakDisabled: string;
1150
+ textWeakHover: string;
1151
+ };
1152
+ success: {
1153
+ backgroundWeak: string;
1154
+ backgroundWeakDisabled: string;
1155
+ backgroundWeakHover: string;
1156
+ borderWeak: string;
1157
+ borderWeakDisabled: string;
1158
+ borderWeakHover: string;
1159
+ iconWeak: string;
1160
+ iconWeakDisabled: string;
1161
+ iconWeakHover: string;
1162
+ textWeak: string;
1163
+ textWeakDisabled: string;
1164
+ textWeakHover: string;
1165
+ };
1166
+ warning: {
1167
+ backgroundWeak: string;
1168
+ backgroundWeakDisabled: string;
1169
+ backgroundWeakHover: string;
1170
+ borderWeak: string;
1171
+ borderWeakDisabled: string;
1172
+ borderWeakHover: string;
1173
+ iconWeak: string;
1174
+ iconWeakDisabled: string;
1175
+ iconWeakHover: string;
1176
+ textWeak: string;
1177
+ textWeakDisabled: string;
1178
+ textWeakHover: string;
1179
+ };
1180
+ other: {
1181
+ gradients: {
1182
+ background: {
1183
+ gold: string;
1184
+ purple: string;
1185
+ strong: string;
1186
+ accent: string;
1187
+ aqua: string;
1188
+ blue: string;
1189
+ emerald: string;
1190
+ fuschia: string;
1191
+ magenta: string;
1192
+ primary: string;
1193
+ };
1194
+ };
1195
+ };
1196
+ };
1197
+ radii: {
1198
+ circle: string;
1199
+ default: string;
1200
+ large: string;
1201
+ none: string;
1202
+ small: string;
1203
+ xlarge: string;
1204
+ };
1205
+ shadows: {
1206
+ bulk: string;
1207
+ defaultShadow: string;
1208
+ drawer: string;
1209
+ dropdown: string;
1210
+ focusDanger: string;
1211
+ focusInfo: string;
1212
+ focusNeutral: string;
1213
+ focusPrimary: string;
1214
+ focusSuccess: string;
1215
+ focusWarning: string;
1216
+ hoverDanger: string;
1217
+ hoverInfo: string;
1218
+ hoverNeutral: string;
1219
+ hoverPrimary: string;
1220
+ hoverSuccess: string;
1221
+ hoverWarning: string;
1222
+ menu: string;
1223
+ modal: string;
1224
+ popover: string;
1225
+ tabBar: {
1226
+ active: string;
1227
+ off: string;
1228
+ };
1229
+ tooltip: string;
1230
+ };
1231
+ space: {
1232
+ '0': string;
1233
+ '1': string;
1234
+ '2': string;
1235
+ '3': string;
1236
+ '4': string;
1237
+ '5': string;
1238
+ '6': string;
1239
+ '7': string;
1240
+ '8': string;
1241
+ '9': string;
1242
+ '10': string;
1243
+ '0.25': string;
1244
+ '0.5': string;
1245
+ '1.5': string;
1246
+ };
1247
+ theme: string;
1248
+ typography: {
1249
+ body: {
1250
+ fontFamily: string;
1251
+ fontSize: string;
1252
+ fontWeight: string;
1253
+ letterSpacing: string;
1254
+ lineHeight: string;
1255
+ paragraphSpacing: string;
1256
+ textCase: string;
1257
+ textDecoration: string;
1258
+ weight: string;
1259
+ };
1260
+ bodySmall: {
1261
+ fontFamily: string;
1262
+ fontSize: string;
1263
+ fontWeight: string;
1264
+ letterSpacing: string;
1265
+ lineHeight: string;
1266
+ paragraphSpacing: string;
1267
+ textCase: string;
1268
+ textDecoration: string;
1269
+ weight: string;
1270
+ };
1271
+ bodySmallStrong: {
1272
+ fontFamily: string;
1273
+ fontSize: string;
1274
+ fontWeight: string;
1275
+ letterSpacing: string;
1276
+ lineHeight: string;
1277
+ paragraphSpacing: string;
1278
+ textCase: string;
1279
+ textDecoration: string;
1280
+ weight: string;
1281
+ };
1282
+ bodySmallStronger: {
1283
+ fontFamily: string;
1284
+ fontSize: string;
1285
+ fontWeight: string;
1286
+ letterSpacing: string;
1287
+ lineHeight: string;
1288
+ paragraphSpacing: string;
1289
+ textCase: string;
1290
+ textDecoration: string;
1291
+ weight: string;
1292
+ };
1293
+ bodyStrong: {
1294
+ fontFamily: string;
1295
+ fontSize: string;
1296
+ fontWeight: string;
1297
+ letterSpacing: string;
1298
+ lineHeight: string;
1299
+ paragraphSpacing: string;
1300
+ textCase: string;
1301
+ textDecoration: string;
1302
+ weight: string;
1303
+ };
1304
+ bodyStronger: {
1305
+ fontFamily: string;
1306
+ fontSize: string;
1307
+ fontWeight: string;
1308
+ letterSpacing: string;
1309
+ lineHeight: string;
1310
+ paragraphSpacing: string;
1311
+ textCase: string;
1312
+ textDecoration: string;
1313
+ weight: string;
1314
+ };
1315
+ caption: {
1316
+ fontFamily: string;
1317
+ fontSize: string;
1318
+ fontWeight: string;
1319
+ letterSpacing: string;
1320
+ lineHeight: string;
1321
+ paragraphSpacing: string;
1322
+ textCase: string;
1323
+ textDecoration: string;
1324
+ weight: string;
1325
+ };
1326
+ captionSmall: {
1327
+ fontFamily: string;
1328
+ fontSize: string;
1329
+ fontWeight: string;
1330
+ letterSpacing: string;
1331
+ lineHeight: string;
1332
+ paragraphSpacing: string;
1333
+ textCase: string;
1334
+ textDecoration: string;
1335
+ weight: string;
1336
+ };
1337
+ captionSmallStrong: {
1338
+ fontFamily: string;
1339
+ fontSize: string;
1340
+ fontWeight: string;
1341
+ letterSpacing: string;
1342
+ lineHeight: string;
1343
+ paragraphSpacing: string;
1344
+ textCase: string;
1345
+ textDecoration: string;
1346
+ weight: string;
1347
+ };
1348
+ captionSmallStronger: {
1349
+ fontFamily: string;
1350
+ fontSize: string;
1351
+ fontWeight: string;
1352
+ letterSpacing: string;
1353
+ lineHeight: string;
1354
+ paragraphSpacing: string;
1355
+ textCase: string;
1356
+ textDecoration: string;
1357
+ weight: string;
1358
+ };
1359
+ captionStrong: {
1360
+ fontFamily: string;
1361
+ fontSize: string;
1362
+ fontWeight: string;
1363
+ letterSpacing: string;
1364
+ lineHeight: string;
1365
+ paragraphSpacing: string;
1366
+ textCase: string;
1367
+ textDecoration: string;
1368
+ weight: string;
1369
+ };
1370
+ captionStronger: {
1371
+ fontFamily: string;
1372
+ fontSize: string;
1373
+ fontWeight: string;
1374
+ letterSpacing: string;
1375
+ lineHeight: string;
1376
+ paragraphSpacing: string;
1377
+ textCase: string;
1378
+ textDecoration: string;
1379
+ weight: string;
1380
+ };
1381
+ code: {
1382
+ fontFamily: string;
1383
+ fontSize: string;
1384
+ fontWeight: string;
1385
+ letterSpacing: string;
1386
+ lineHeight: string;
1387
+ paragraphSpacing: string;
1388
+ textCase: string;
1389
+ textDecoration: string;
1390
+ weight: string;
1391
+ };
1392
+ codeStrong: {
1393
+ fontFamily: string;
1394
+ fontSize: string;
1395
+ fontWeight: string;
1396
+ letterSpacing: string;
1397
+ lineHeight: string;
1398
+ paragraphSpacing: string;
1399
+ textCase: string;
1400
+ textDecoration: string;
1401
+ weight: string;
1402
+ };
1403
+ codeStronger: {
1404
+ fontFamily: string;
1405
+ fontSize: string;
1406
+ fontWeight: string;
1407
+ letterSpacing: string;
1408
+ lineHeight: string;
1409
+ paragraphSpacing: string;
1410
+ textCase: string;
1411
+ textDecoration: string;
1412
+ weight: string;
1413
+ };
1414
+ heading: {
1415
+ fontFamily: string;
1416
+ fontSize: string;
1417
+ fontWeight: string;
1418
+ letterSpacing: string;
1419
+ lineHeight: string;
1420
+ paragraphSpacing: string;
1421
+ textCase: string;
1422
+ textDecoration: string;
1423
+ weight: string;
1424
+ };
1425
+ headingLarge: {
1426
+ fontFamily: string;
1427
+ fontSize: string;
1428
+ fontWeight: string;
1429
+ letterSpacing: string;
1430
+ lineHeight: string;
1431
+ paragraphSpacing: string;
1432
+ textCase: string;
1433
+ textDecoration: string;
1434
+ weight: string;
1435
+ };
1436
+ headingLargeStrong: {
1437
+ fontFamily: string;
1438
+ fontSize: string;
1439
+ fontWeight: string;
1440
+ letterSpacing: string;
1441
+ lineHeight: string;
1442
+ paragraphSpacing: string;
1443
+ textCase: string;
1444
+ textDecoration: string;
1445
+ weight: string;
1446
+ };
1447
+ headingLargeStronger: {
1448
+ fontFamily: string;
1449
+ fontSize: string;
1450
+ fontWeight: string;
1451
+ letterSpacing: string;
1452
+ lineHeight: string;
1453
+ paragraphSpacing: string;
1454
+ textCase: string;
1455
+ textDecoration: string;
1456
+ weight: string;
1457
+ };
1458
+ headingSmall: {
1459
+ fontFamily: string;
1460
+ fontSize: string;
1461
+ fontWeight: string;
1462
+ letterSpacing: string;
1463
+ lineHeight: string;
1464
+ paragraphSpacing: string;
1465
+ textCase: string;
1466
+ textDecoration: string;
1467
+ weight: string;
1468
+ };
1469
+ headingSmallStrong: {
1470
+ fontFamily: string;
1471
+ fontSize: string;
1472
+ fontWeight: string;
1473
+ letterSpacing: string;
1474
+ lineHeight: string;
1475
+ paragraphSpacing: string;
1476
+ textCase: string;
1477
+ textDecoration: string;
1478
+ weight: string;
1479
+ };
1480
+ headingSmallStronger: {
1481
+ fontFamily: string;
1482
+ fontSize: string;
1483
+ fontWeight: string;
1484
+ letterSpacing: string;
1485
+ lineHeight: string;
1486
+ paragraphSpacing: string;
1487
+ textCase: string;
1488
+ textDecoration: string;
1489
+ weight: string;
1490
+ };
1491
+ headingStrong: {
1492
+ fontFamily: string;
1493
+ fontSize: string;
1494
+ fontWeight: string;
1495
+ letterSpacing: string;
1496
+ lineHeight: string;
1497
+ paragraphSpacing: string;
1498
+ textCase: string;
1499
+ textDecoration: string;
1500
+ weight: string;
1501
+ };
1502
+ headingStronger: {
1503
+ fontFamily: string;
1504
+ fontSize: string;
1505
+ fontWeight: string;
1506
+ letterSpacing: string;
1507
+ lineHeight: string;
1508
+ paragraphSpacing: string;
1509
+ textCase: string;
1510
+ textDecoration: string;
1511
+ weight: string;
1512
+ };
1513
+ } & {
1514
+ body: {
1515
+ fontFamily: string;
1516
+ };
1517
+ bodySmall: {
1518
+ fontFamily: string;
1519
+ };
1520
+ bodySmallStrong: {
1521
+ fontFamily: string;
1522
+ };
1523
+ bodySmallStronger: {
1524
+ fontFamily: string;
1525
+ };
1526
+ bodyStrong: {
1527
+ fontFamily: string;
1528
+ };
1529
+ bodyStronger: {
1530
+ fontFamily: string;
1531
+ };
1532
+ caption: {
1533
+ fontFamily: string;
1534
+ };
1535
+ captionSmall: {
1536
+ fontFamily: string;
1537
+ };
1538
+ captionSmallStrong: {
1539
+ fontFamily: string;
1540
+ };
1541
+ captionSmallStronger: {
1542
+ fontFamily: string;
1543
+ };
1544
+ captionStrong: {
1545
+ fontFamily: string;
1546
+ };
1547
+ captionStronger: {
1548
+ fontFamily: string;
1549
+ };
1550
+ heading: {
1551
+ fontFamily: string;
1552
+ };
1553
+ headingLarge: {
1554
+ fontFamily: string;
1555
+ };
1556
+ headingSmall: {
1557
+ fontFamily: string;
1558
+ };
1559
+ };
1560
+ screens: {
1561
+ xsmall: number;
1562
+ small: number;
1563
+ medium: number;
1564
+ large: number;
1565
+ xlarge: number;
1566
+ };
1567
+ };
1568
+ type Color = Extract<keyof typeof consoleLightTheme.colors, 'primary' | 'secondary' | 'neutral' | 'success' | 'danger' | 'warning' | 'info'>;
1569
+ declare const SENTIMENTS: readonly ["primary", "secondary", "neutral", "success", "danger", "warning", "info"];
1570
+ declare const SENTIMENTS_WITHOUT_NEUTRAL: ("primary" | "secondary" | "neutral" | "success" | "danger" | "warning" | "info")[];
1571
+ export type { SCWUITheme, UltravioletUITheme, Color };
1572
+ export { colors, shadows, space, radii, screens, consoleDarkTheme as darkTheme, extendTheme, SENTIMENTS, SENTIMENTS_WITHOUT_NEUTRAL, typography, };
1573
+ export default consoleLightTheme;