@dxc-technology/halstack-react 0.0.0-efa7c74 → 0.0.0-eff2879

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 (434) hide show
  1. package/BackgroundColorContext.d.ts +1 -0
  2. package/BackgroundColorContext.js +6 -26
  3. package/HalstackContext.d.ts +1248 -0
  4. package/HalstackContext.js +310 -0
  5. package/README.md +47 -0
  6. package/accordion/Accordion.accessibility.test.js +71 -0
  7. package/accordion/Accordion.d.ts +1 -1
  8. package/accordion/Accordion.js +106 -193
  9. package/accordion/Accordion.stories.tsx +251 -0
  10. package/accordion/Accordion.test.js +56 -0
  11. package/accordion/types.d.ts +12 -23
  12. package/accordion-group/AccordionGroup.accessibility.test.js +88 -0
  13. package/accordion-group/AccordionGroup.d.ts +3 -3
  14. package/accordion-group/AccordionGroup.js +39 -108
  15. package/accordion-group/AccordionGroup.stories.tsx +252 -0
  16. package/accordion-group/AccordionGroup.test.js +98 -0
  17. package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
  18. package/accordion-group/AccordionGroupAccordion.js +31 -0
  19. package/accordion-group/AccordionGroupContext.d.ts +3 -0
  20. package/accordion-group/AccordionGroupContext.js +8 -0
  21. package/accordion-group/types.d.ts +18 -23
  22. package/action-icon/ActionIcon.accessibility.test.js +63 -0
  23. package/action-icon/ActionIcon.d.ts +4 -0
  24. package/action-icon/ActionIcon.js +48 -0
  25. package/action-icon/ActionIcon.stories.tsx +41 -0
  26. package/action-icon/ActionIcon.test.js +64 -0
  27. package/action-icon/types.d.ts +26 -0
  28. package/alert/Alert.accessibility.test.js +95 -0
  29. package/alert/Alert.js +36 -126
  30. package/alert/Alert.stories.tsx +28 -0
  31. package/alert/Alert.test.js +75 -0
  32. package/alert/types.d.ts +5 -5
  33. package/badge/Badge.accessibility.test.js +129 -0
  34. package/badge/Badge.d.ts +4 -0
  35. package/badge/Badge.js +142 -40
  36. package/badge/Badge.stories.tsx +210 -0
  37. package/badge/Badge.test.js +30 -0
  38. package/badge/types.d.ts +54 -0
  39. package/bleed/Bleed.d.ts +3 -0
  40. package/bleed/Bleed.js +43 -0
  41. package/bleed/Bleed.stories.tsx +342 -0
  42. package/bleed/types.d.ts +37 -0
  43. package/box/Box.accessibility.test.js +33 -0
  44. package/box/Box.d.ts +1 -1
  45. package/box/Box.js +31 -82
  46. package/box/Box.stories.tsx +38 -51
  47. package/box/Box.test.js +13 -0
  48. package/box/types.d.ts +3 -14
  49. package/bulleted-list/BulletedList.accessibility.test.js +107 -0
  50. package/bulleted-list/BulletedList.d.ts +7 -0
  51. package/bulleted-list/BulletedList.js +92 -0
  52. package/bulleted-list/BulletedList.stories.tsx +115 -0
  53. package/bulleted-list/types.d.ts +38 -0
  54. package/bulleted-list/types.js +5 -0
  55. package/button/Button.accessibility.test.js +127 -0
  56. package/button/Button.d.ts +1 -1
  57. package/button/Button.js +65 -123
  58. package/button/Button.stories.tsx +155 -106
  59. package/button/Button.test.js +38 -0
  60. package/button/types.d.ts +12 -12
  61. package/card/Card.accessibility.test.js +36 -0
  62. package/card/Card.d.ts +1 -1
  63. package/card/Card.js +59 -103
  64. package/card/Card.stories.tsx +13 -43
  65. package/card/Card.test.js +39 -0
  66. package/card/types.d.ts +6 -11
  67. package/checkbox/Checkbox.accessibility.test.js +87 -0
  68. package/checkbox/Checkbox.d.ts +2 -2
  69. package/checkbox/Checkbox.js +145 -183
  70. package/checkbox/Checkbox.stories.tsx +166 -136
  71. package/checkbox/Checkbox.test.js +199 -0
  72. package/checkbox/types.d.ts +19 -7
  73. package/chip/Chip.accessibility.test.js +67 -0
  74. package/chip/Chip.d.ts +4 -0
  75. package/chip/Chip.js +49 -146
  76. package/chip/Chip.stories.tsx +104 -30
  77. package/chip/Chip.test.js +41 -0
  78. package/chip/types.d.ts +45 -0
  79. package/chip/types.js +5 -0
  80. package/common/coreTokens.d.ts +237 -0
  81. package/common/coreTokens.js +184 -0
  82. package/common/utils.d.ts +1 -0
  83. package/common/utils.js +6 -12
  84. package/common/variables.d.ts +1394 -0
  85. package/common/variables.js +1035 -1346
  86. package/container/Container.d.ts +4 -0
  87. package/container/Container.js +194 -0
  88. package/container/Container.stories.tsx +214 -0
  89. package/container/types.d.ts +74 -0
  90. package/container/types.js +5 -0
  91. package/contextual-menu/ContextualMenu.accessibility.test.js +86 -0
  92. package/contextual-menu/ContextualMenu.d.ts +5 -0
  93. package/contextual-menu/ContextualMenu.js +88 -0
  94. package/contextual-menu/ContextualMenu.stories.tsx +219 -0
  95. package/contextual-menu/ContextualMenu.test.js +205 -0
  96. package/contextual-menu/GroupItem.d.ts +4 -0
  97. package/contextual-menu/GroupItem.js +67 -0
  98. package/contextual-menu/ItemAction.d.ts +4 -0
  99. package/contextual-menu/ItemAction.js +52 -0
  100. package/contextual-menu/MenuItem.d.ts +4 -0
  101. package/contextual-menu/MenuItem.js +29 -0
  102. package/contextual-menu/SingleItem.d.ts +4 -0
  103. package/contextual-menu/SingleItem.js +38 -0
  104. package/contextual-menu/types.d.ts +58 -0
  105. package/contextual-menu/types.js +5 -0
  106. package/date-input/Calendar.d.ts +4 -0
  107. package/date-input/Calendar.js +214 -0
  108. package/date-input/DateInput.accessibility.test.js +216 -0
  109. package/date-input/DateInput.js +174 -313
  110. package/date-input/DateInput.stories.tsx +203 -56
  111. package/date-input/DateInput.test.js +808 -0
  112. package/date-input/DatePicker.d.ts +4 -0
  113. package/date-input/DatePicker.js +121 -0
  114. package/date-input/YearPicker.d.ts +4 -0
  115. package/date-input/YearPicker.js +100 -0
  116. package/date-input/types.d.ts +86 -22
  117. package/dialog/Dialog.accessibility.test.js +69 -0
  118. package/dialog/Dialog.d.ts +1 -1
  119. package/dialog/Dialog.js +57 -130
  120. package/dialog/Dialog.stories.tsx +320 -167
  121. package/dialog/Dialog.test.js +307 -0
  122. package/dialog/types.d.ts +18 -25
  123. package/divider/Divider.accessibility.test.js +33 -0
  124. package/divider/Divider.d.ts +4 -0
  125. package/divider/Divider.js +36 -0
  126. package/divider/Divider.stories.tsx +223 -0
  127. package/divider/Divider.test.js +38 -0
  128. package/divider/types.d.ts +21 -0
  129. package/divider/types.js +5 -0
  130. package/dropdown/Dropdown.accessibility.test.js +180 -0
  131. package/dropdown/Dropdown.d.ts +1 -1
  132. package/dropdown/Dropdown.js +232 -330
  133. package/dropdown/Dropdown.stories.tsx +427 -0
  134. package/dropdown/Dropdown.test.js +599 -0
  135. package/dropdown/DropdownMenu.d.ts +4 -0
  136. package/dropdown/DropdownMenu.js +63 -0
  137. package/dropdown/DropdownMenuItem.d.ts +4 -0
  138. package/dropdown/DropdownMenuItem.js +70 -0
  139. package/dropdown/types.d.ts +38 -31
  140. package/file-input/FileInput.accessibility.test.js +160 -0
  141. package/file-input/FileInput.d.ts +2 -2
  142. package/file-input/FileInput.js +272 -340
  143. package/file-input/FileInput.stories.tsx +618 -0
  144. package/file-input/FileInput.test.js +382 -0
  145. package/file-input/FileItem.d.ts +4 -14
  146. package/file-input/FileItem.js +60 -121
  147. package/file-input/types.d.ts +53 -11
  148. package/flex/Flex.d.ts +4 -0
  149. package/flex/Flex.js +57 -0
  150. package/flex/Flex.stories.tsx +112 -0
  151. package/flex/types.d.ts +97 -0
  152. package/flex/types.js +5 -0
  153. package/footer/Footer.accessibility.test.js +117 -0
  154. package/footer/Footer.d.ts +1 -1
  155. package/footer/Footer.js +74 -200
  156. package/footer/{Footer.stories.jsx → Footer.stories.tsx} +84 -39
  157. package/footer/Footer.test.js +85 -0
  158. package/footer/Icons.d.ts +3 -0
  159. package/footer/Icons.js +67 -8
  160. package/footer/types.d.ts +40 -37
  161. package/grid/Grid.d.ts +7 -0
  162. package/grid/Grid.js +76 -0
  163. package/grid/Grid.stories.tsx +219 -0
  164. package/grid/types.d.ts +115 -0
  165. package/grid/types.js +5 -0
  166. package/header/Header.accessibility.test.js +84 -0
  167. package/header/Header.d.ts +4 -3
  168. package/header/Header.js +103 -218
  169. package/header/Header.stories.tsx +152 -63
  170. package/header/Header.test.js +66 -0
  171. package/header/Icons.d.ts +2 -0
  172. package/header/Icons.js +4 -9
  173. package/header/types.d.ts +7 -21
  174. package/heading/Heading.accessibility.test.js +33 -0
  175. package/heading/Heading.js +11 -33
  176. package/heading/Heading.stories.tsx +3 -2
  177. package/heading/Heading.test.js +169 -0
  178. package/heading/types.d.ts +7 -7
  179. package/icon/Icon.accessibility.test.js +30 -0
  180. package/icon/Icon.d.ts +4 -0
  181. package/icon/Icon.js +33 -0
  182. package/icon/Icon.stories.tsx +28 -0
  183. package/icon/types.d.ts +4 -0
  184. package/icon/types.js +5 -0
  185. package/image/Image.accessibility.test.js +56 -0
  186. package/image/Image.d.ts +4 -0
  187. package/image/Image.js +70 -0
  188. package/image/Image.stories.tsx +129 -0
  189. package/image/types.d.ts +72 -0
  190. package/image/types.js +5 -0
  191. package/inset/Inset.d.ts +3 -0
  192. package/inset/Inset.js +43 -0
  193. package/inset/Inset.stories.tsx +230 -0
  194. package/inset/types.d.ts +37 -0
  195. package/inset/types.js +5 -0
  196. package/layout/ApplicationLayout.d.ts +20 -0
  197. package/layout/ApplicationLayout.js +86 -184
  198. package/layout/ApplicationLayout.stories.tsx +162 -0
  199. package/layout/Icons.d.ts +7 -0
  200. package/layout/Icons.js +41 -48
  201. package/layout/types.d.ts +41 -0
  202. package/layout/types.js +5 -0
  203. package/link/Link.accessibility.test.js +112 -0
  204. package/link/Link.d.ts +3 -2
  205. package/link/Link.js +65 -109
  206. package/link/Link.stories.tsx +159 -52
  207. package/link/Link.test.js +63 -0
  208. package/link/types.d.ts +15 -35
  209. package/main.d.ts +19 -14
  210. package/main.js +92 -98
  211. package/nav-tabs/NavTabs.accessibility.test.js +44 -0
  212. package/nav-tabs/NavTabs.d.ts +7 -0
  213. package/nav-tabs/NavTabs.js +93 -0
  214. package/nav-tabs/NavTabs.stories.tsx +279 -0
  215. package/nav-tabs/NavTabs.test.js +75 -0
  216. package/nav-tabs/NavTabsContext.d.ts +3 -0
  217. package/nav-tabs/NavTabsContext.js +8 -0
  218. package/nav-tabs/Tab.d.ts +4 -0
  219. package/nav-tabs/Tab.js +117 -0
  220. package/nav-tabs/types.d.ts +52 -0
  221. package/nav-tabs/types.js +5 -0
  222. package/number-input/NumberInput.accessibility.test.js +228 -0
  223. package/number-input/NumberInput.js +48 -48
  224. package/number-input/NumberInput.stories.tsx +44 -28
  225. package/number-input/NumberInput.test.js +989 -0
  226. package/number-input/NumberInputContext.d.ts +3 -4
  227. package/number-input/NumberInputContext.js +3 -14
  228. package/number-input/types.d.ts +34 -15
  229. package/package.json +52 -51
  230. package/paginator/Paginator.accessibility.test.js +79 -0
  231. package/paginator/Paginator.js +39 -103
  232. package/paginator/Paginator.stories.tsx +24 -0
  233. package/paginator/Paginator.test.js +335 -0
  234. package/paginator/types.d.ts +3 -3
  235. package/paragraph/Paragraph.accessibility.test.js +28 -0
  236. package/paragraph/Paragraph.d.ts +5 -0
  237. package/paragraph/Paragraph.js +22 -0
  238. package/paragraph/Paragraph.stories.tsx +27 -0
  239. package/password-input/PasswordInput.accessibility.test.js +153 -0
  240. package/password-input/PasswordInput.js +59 -125
  241. package/password-input/PasswordInput.stories.tsx +3 -35
  242. package/password-input/PasswordInput.test.js +198 -0
  243. package/password-input/types.d.ts +32 -26
  244. package/progress-bar/ProgressBar.accessibility.test.js +35 -0
  245. package/progress-bar/ProgressBar.js +66 -92
  246. package/progress-bar/ProgressBar.stories.tsx +93 -0
  247. package/progress-bar/ProgressBar.test.js +93 -0
  248. package/progress-bar/types.d.ts +3 -3
  249. package/quick-nav/QuickNav.accessibility.test.js +57 -0
  250. package/quick-nav/QuickNav.d.ts +4 -0
  251. package/quick-nav/QuickNav.js +94 -0
  252. package/quick-nav/QuickNav.stories.tsx +356 -0
  253. package/quick-nav/types.d.ts +21 -0
  254. package/quick-nav/types.js +5 -0
  255. package/radio-group/Radio.d.ts +4 -0
  256. package/radio-group/Radio.js +124 -0
  257. package/radio-group/RadioGroup.accessibility.test.js +97 -0
  258. package/radio-group/RadioGroup.d.ts +4 -0
  259. package/radio-group/RadioGroup.js +235 -0
  260. package/radio-group/RadioGroup.stories.tsx +214 -0
  261. package/radio-group/RadioGroup.test.js +756 -0
  262. package/radio-group/types.d.ts +114 -0
  263. package/radio-group/types.js +5 -0
  264. package/resultset-table/Icons.d.ts +7 -0
  265. package/resultset-table/Icons.js +47 -0
  266. package/resultset-table/ResultsetTable.accessibility.test.js +274 -0
  267. package/resultset-table/ResultsetTable.d.ts +7 -0
  268. package/resultset-table/ResultsetTable.js +170 -0
  269. package/resultset-table/ResultsetTable.stories.tsx +401 -0
  270. package/resultset-table/ResultsetTable.test.js +381 -0
  271. package/resultset-table/types.d.ts +100 -0
  272. package/resultset-table/types.js +5 -0
  273. package/select/Listbox.d.ts +4 -0
  274. package/select/Listbox.js +145 -0
  275. package/select/Option.d.ts +4 -0
  276. package/select/Option.js +88 -0
  277. package/select/Select.accessibility.test.js +217 -0
  278. package/select/Select.d.ts +4 -0
  279. package/select/Select.js +248 -515
  280. package/select/Select.stories.tsx +590 -255
  281. package/select/Select.test.js +2276 -0
  282. package/select/types.d.ts +209 -0
  283. package/select/types.js +5 -0
  284. package/sidenav/Sidenav.accessibility.test.js +59 -0
  285. package/sidenav/Sidenav.d.ts +6 -5
  286. package/sidenav/Sidenav.js +137 -72
  287. package/sidenav/Sidenav.stories.tsx +246 -134
  288. package/sidenav/Sidenav.test.js +37 -0
  289. package/sidenav/SidenavContext.d.ts +5 -0
  290. package/sidenav/SidenavContext.js +13 -0
  291. package/sidenav/types.d.ts +52 -26
  292. package/slider/Slider.accessibility.test.js +104 -0
  293. package/slider/Slider.d.ts +2 -2
  294. package/slider/Slider.js +149 -181
  295. package/slider/Slider.test.js +254 -0
  296. package/slider/types.d.ts +11 -3
  297. package/spinner/Spinner.accessibility.test.js +96 -0
  298. package/spinner/Spinner.js +32 -76
  299. package/spinner/{Spinner.stories.jsx → Spinner.stories.tsx} +53 -26
  300. package/spinner/Spinner.test.js +55 -0
  301. package/spinner/types.d.ts +3 -3
  302. package/status-light/StatusLight.accessibility.test.js +157 -0
  303. package/status-light/StatusLight.d.ts +4 -0
  304. package/status-light/StatusLight.js +51 -0
  305. package/status-light/StatusLight.stories.tsx +74 -0
  306. package/status-light/StatusLight.test.js +25 -0
  307. package/status-light/types.d.ts +17 -0
  308. package/status-light/types.js +5 -0
  309. package/switch/Switch.accessibility.test.js +89 -0
  310. package/switch/Switch.d.ts +2 -2
  311. package/switch/Switch.js +150 -115
  312. package/switch/Switch.stories.tsx +45 -68
  313. package/switch/Switch.test.js +180 -0
  314. package/switch/types.d.ts +13 -5
  315. package/table/DropdownTheme.js +62 -0
  316. package/table/Table.accessibility.test.js +82 -0
  317. package/table/Table.d.ts +6 -2
  318. package/table/Table.js +79 -36
  319. package/table/Table.stories.tsx +651 -0
  320. package/table/Table.test.js +113 -0
  321. package/table/types.d.ts +34 -6
  322. package/tabs/Tab.d.ts +4 -0
  323. package/tabs/Tab.js +117 -0
  324. package/tabs/Tabs.accessibility.test.js +56 -0
  325. package/tabs/Tabs.d.ts +1 -1
  326. package/tabs/Tabs.js +307 -147
  327. package/tabs/Tabs.stories.tsx +121 -18
  328. package/tabs/Tabs.test.js +276 -0
  329. package/tabs/types.d.ts +46 -24
  330. package/tag/Tag.accessibility.test.js +69 -0
  331. package/tag/Tag.d.ts +1 -1
  332. package/tag/Tag.js +44 -86
  333. package/tag/Tag.stories.tsx +37 -30
  334. package/tag/Tag.test.js +41 -0
  335. package/tag/types.d.ts +25 -16
  336. package/text-input/Suggestion.d.ts +4 -0
  337. package/text-input/Suggestion.js +67 -0
  338. package/text-input/Suggestions.d.ts +4 -0
  339. package/text-input/Suggestions.js +86 -0
  340. package/text-input/TextInput.accessibility.test.js +321 -0
  341. package/text-input/TextInput.js +335 -553
  342. package/text-input/TextInput.stories.tsx +465 -0
  343. package/text-input/TextInput.test.js +1756 -0
  344. package/text-input/types.d.ts +82 -34
  345. package/textarea/Textarea.accessibility.test.js +155 -0
  346. package/textarea/Textarea.d.ts +4 -0
  347. package/textarea/Textarea.js +98 -181
  348. package/textarea/Textarea.stories.tsx +174 -0
  349. package/textarea/Textarea.test.js +406 -0
  350. package/textarea/types.d.ts +141 -0
  351. package/textarea/types.js +5 -0
  352. package/toggle-group/ToggleGroup.accessibility.test.js +107 -0
  353. package/toggle-group/ToggleGroup.d.ts +2 -2
  354. package/toggle-group/ToggleGroup.js +98 -113
  355. package/toggle-group/ToggleGroup.stories.tsx +79 -39
  356. package/toggle-group/ToggleGroup.test.js +137 -0
  357. package/toggle-group/types.d.ts +68 -38
  358. package/typography/Typography.accessibility.test.js +339 -0
  359. package/typography/Typography.d.ts +4 -0
  360. package/typography/Typography.js +23 -0
  361. package/typography/Typography.stories.tsx +198 -0
  362. package/typography/types.d.ts +18 -0
  363. package/typography/types.js +5 -0
  364. package/useTheme.d.ts +1147 -0
  365. package/useTheme.js +4 -11
  366. package/useTranslatedLabels.d.ts +85 -0
  367. package/useTranslatedLabels.js +14 -0
  368. package/utils/BaseTypography.d.ts +21 -0
  369. package/utils/BaseTypography.js +94 -0
  370. package/utils/FocusLock.d.ts +13 -0
  371. package/utils/FocusLock.js +124 -0
  372. package/wizard/Wizard.accessibility.test.js +55 -0
  373. package/wizard/Wizard.d.ts +1 -1
  374. package/wizard/Wizard.js +130 -114
  375. package/wizard/{Wizard.stories.jsx → Wizard.stories.tsx} +67 -19
  376. package/wizard/Wizard.test.js +114 -0
  377. package/wizard/types.d.ts +15 -15
  378. package/ThemeContext.js +0 -246
  379. package/V3Select/V3Select.js +0 -455
  380. package/V3Select/index.d.ts +0 -27
  381. package/V3Textarea/V3Textarea.js +0 -260
  382. package/V3Textarea/index.d.ts +0 -27
  383. package/card/ice-cream.jpg +0 -0
  384. package/chip/index.d.ts +0 -22
  385. package/common/OpenSans.css +0 -81
  386. package/common/RequiredComponent.js +0 -32
  387. package/common/fonts/OpenSans-Bold.ttf +0 -0
  388. package/common/fonts/OpenSans-BoldItalic.ttf +0 -0
  389. package/common/fonts/OpenSans-ExtraBold.ttf +0 -0
  390. package/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  391. package/common/fonts/OpenSans-Italic.ttf +0 -0
  392. package/common/fonts/OpenSans-Light.ttf +0 -0
  393. package/common/fonts/OpenSans-LightItalic.ttf +0 -0
  394. package/common/fonts/OpenSans-Regular.ttf +0 -0
  395. package/common/fonts/OpenSans-SemiBold.ttf +0 -0
  396. package/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
  397. package/date/Date.js +0 -373
  398. package/date/index.d.ts +0 -27
  399. package/input-text/Icons.js +0 -22
  400. package/input-text/InputText.js +0 -611
  401. package/input-text/index.d.ts +0 -36
  402. package/number-input/numberInputContextTypes.d.ts +0 -19
  403. package/paginator/Icons.js +0 -66
  404. package/progress-bar/ProgressBar.stories.jsx +0 -58
  405. package/radio/Radio.d.ts +0 -4
  406. package/radio/Radio.js +0 -174
  407. package/radio/Radio.stories.tsx +0 -192
  408. package/radio/types.d.ts +0 -54
  409. package/resultsetTable/ResultsetTable.d.ts +0 -4
  410. package/resultsetTable/ResultsetTable.js +0 -249
  411. package/resultsetTable/types.d.ts +0 -63
  412. package/select/index.d.ts +0 -131
  413. package/slider/Slider.stories.tsx +0 -177
  414. package/table/Table.stories.jsx +0 -276
  415. package/textarea/Textarea.stories.jsx +0 -135
  416. package/textarea/index.d.ts +0 -117
  417. package/toggle/Toggle.js +0 -186
  418. package/toggle/index.d.ts +0 -21
  419. package/upload/Upload.js +0 -201
  420. package/upload/buttons-upload/ButtonsUpload.js +0 -111
  421. package/upload/buttons-upload/Icons.js +0 -40
  422. package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
  423. package/upload/dragAndDropArea/Icons.js +0 -39
  424. package/upload/file-upload/FileToUpload.js +0 -115
  425. package/upload/file-upload/Icons.js +0 -66
  426. package/upload/files-upload/FilesToUpload.js +0 -109
  427. package/upload/index.d.ts +0 -15
  428. package/upload/transaction/Icons.js +0 -160
  429. package/upload/transaction/Transaction.js +0 -104
  430. package/upload/transactions/Transactions.js +0 -94
  431. package/wizard/Icons.js +0 -65
  432. /package/{radio → action-icon}/types.js +0 -0
  433. /package/{resultsetTable → badge}/types.js +0 -0
  434. /package/{number-input/numberInputContextTypes.js → bleed/types.js} +0 -0
package/useTheme.d.ts ADDED
@@ -0,0 +1,1147 @@
1
+ declare const useTheme: () => {
2
+ accordion?: Partial<{
3
+ backgroundColor: string;
4
+ hoverBackgroundColor: string;
5
+ arrowColor: string;
6
+ disabledArrowColor: string;
7
+ assistiveTextFontFamily: string;
8
+ assistiveTextFontSize: string;
9
+ assistiveTextFontWeight: string;
10
+ assistiveTextFontStyle: string;
11
+ assistiveTextLetterSpacing: string;
12
+ assistiveTextFontColor: string;
13
+ disabledAssistiveTextFontColor: string;
14
+ assistiveTextMinWidth: string;
15
+ assistiveTextPaddingRight: string;
16
+ assistiveTextPaddingLeft: string;
17
+ titleLabelFontFamily: string;
18
+ titleLabelFontSize: string;
19
+ titleLabelFontWeight: string;
20
+ titleLabelFontStyle: string;
21
+ titleLabelFontColor: string;
22
+ disabledTitleLabelFontColor: string;
23
+ titleLabelPaddingTop: string;
24
+ titleLabelPaddingBottom: string;
25
+ titleLabelPaddingLeft: string;
26
+ titleLabelPaddingRight: string;
27
+ focusBorderColor: string;
28
+ focusBorderStyle: string;
29
+ focusBorderThickness: string;
30
+ borderRadius: string;
31
+ boxShadowOffsetX: string;
32
+ boxShadowOffsetY: string;
33
+ boxShadowBlur: string;
34
+ boxShadowColor: string;
35
+ iconColor: string;
36
+ disabledIconColor: string;
37
+ iconSize: string;
38
+ iconMarginLeft: string;
39
+ iconMarginRight: string;
40
+ accordionGroupSeparatorBorderColor: string;
41
+ accordionGroupSeparatorBorderThickness: string;
42
+ accordionGroupSeparatorBorderRadius: string;
43
+ accordionGroupSeparatorBorderStyle: string;
44
+ }>;
45
+ alert?: Partial<{
46
+ titleFontFamily: string;
47
+ titleFontColor: string;
48
+ titleFontSize: string;
49
+ titleFontStyle: string;
50
+ titleFontWeight: string;
51
+ titleTextTransform: string;
52
+ titlePaddingRight: string;
53
+ titlePaddingLeft: string;
54
+ inlineTextFontFamily: string;
55
+ inlineTextFontColor: string;
56
+ inlineTextFontSize: string;
57
+ inlineTextFontStyle: string;
58
+ inlineTextFontWeight: string;
59
+ inlineTextPaddingLeft: string;
60
+ inlineTextPaddingRight: string;
61
+ contentPaddingLeft: string;
62
+ contentPaddingRight: string;
63
+ contentPaddingTop: string;
64
+ contentPaddingBottom: string;
65
+ borderRadius: string;
66
+ borderStyle: string;
67
+ borderThickness: string;
68
+ infoBorderColor: string;
69
+ successBorderColor: string;
70
+ warningBorderColor: string;
71
+ errorBorderColor: string;
72
+ iconSize: string;
73
+ iconPaddingLeft: string;
74
+ iconPaddingRight: string;
75
+ infoIconColor: string;
76
+ successIconColor: string;
77
+ warningIconColor: string;
78
+ errorIconColor: string;
79
+ infoBackgroundColor: string;
80
+ successBackgroundColor: string;
81
+ warningBackgroundColor: string;
82
+ errorBackgroundColor: string;
83
+ hoverActionBackgroundColor: string;
84
+ activeActionBackgroundColor: string;
85
+ focusActionBorderColor: string;
86
+ overlayColor: string;
87
+ }>;
88
+ box?: Partial<{
89
+ backgroundColor: string;
90
+ borderRadius: string;
91
+ borderThickness: string;
92
+ borderStyle: string;
93
+ borderColor: string;
94
+ noneShadowDepthShadowOffsetX: string;
95
+ noneShadowDepthShadowOffsetY: string;
96
+ noneShadowDepthShadowBlur: string;
97
+ noneShadowDepthShadowSpread: string;
98
+ noneShadowDepthShadowColor: string;
99
+ oneShadowDepthShadowOffsetX: string;
100
+ oneShadowDepthShadowOffsetY: string;
101
+ oneShadowDepthShadowBlur: string;
102
+ oneShadowDepthShadowSpread: string;
103
+ oneShadowDepthShadowColor: string;
104
+ twoShadowDepthShadowOffsetX: string;
105
+ twoShadowDepthShadowOffsetY: string;
106
+ twoShadowDepthShadowBlur: string;
107
+ twoShadowDepthShadowSpread: string;
108
+ twoShadowDepthShadowColor: string;
109
+ }>;
110
+ bulletedList?: Partial<{
111
+ fontColor: string;
112
+ bulletIconHeight: string;
113
+ bulletIconWidth: string;
114
+ bulletHeight: string;
115
+ bulletWidth: string;
116
+ bulletMarginRight: string;
117
+ }>;
118
+ button?: Partial<{
119
+ labelFontLineHeight: string;
120
+ labelLetterSpacing: string;
121
+ paddingLeft: string;
122
+ paddingRight: string;
123
+ paddingTop: string;
124
+ paddingBottom: string;
125
+ focusBorderColor: string;
126
+ primaryBackgroundColor: string;
127
+ primaryFontColor: string;
128
+ primaryHoverBackgroundColor: string;
129
+ primaryActiveBackgroundColor: string;
130
+ primaryDisabledBackgroundColor: string;
131
+ primaryDisabledFontColor: string;
132
+ primaryBorderThickness: string;
133
+ primaryBorderStyle: string;
134
+ primaryBorderRadius: string;
135
+ primaryFontFamily: string;
136
+ primaryFontSize: string;
137
+ primaryFontWeight: string;
138
+ secondaryBackgroundColor: string;
139
+ secondaryFontColor: string;
140
+ secondaryHoverFontColor: string;
141
+ secondaryBorderColor: string;
142
+ secondaryHoverBackgroundColor: string;
143
+ secondaryActiveBackgroundColor: string;
144
+ secondaryDisabledBackgroundColor: string;
145
+ secondaryDisabledFontColor: string;
146
+ secondaryDisabledBorderColor: string;
147
+ secondaryBorderThickness: string;
148
+ secondaryBorderStyle: string;
149
+ secondaryBorderRadius: string;
150
+ secondaryFontFamily: string;
151
+ secondaryFontSize: string;
152
+ secondaryFontWeight: string;
153
+ textBackgroundColor: string;
154
+ textFontColor: string;
155
+ textHoverBackgroundColor: string;
156
+ textActiveBackgroundColor: string;
157
+ textDisabledBackgroundColor: string;
158
+ textDisabledFontColor: string;
159
+ textBorderThickness: string;
160
+ textBorderStyle: string;
161
+ textBorderRadius: string;
162
+ textFontFamily: string;
163
+ textFontSize: string;
164
+ textFontWeight: string;
165
+ }>;
166
+ card?: Partial<{
167
+ height: string;
168
+ width: string;
169
+ }>;
170
+ checkbox?: Partial<{
171
+ backgroundColorChecked: string;
172
+ hoverBackgroundColorChecked: string;
173
+ disabledBackgroundColorChecked: string;
174
+ readOnlyBackgroundColorChecked: string;
175
+ hoverReadOnlyBackgroundColorChecked: string;
176
+ borderColor: string;
177
+ hoverBorderColor: string;
178
+ disabledBorderColor: string;
179
+ readOnlyBorderColor: string;
180
+ hoverReadOnlyBorderColor: string;
181
+ checkColor: string;
182
+ disabledCheckColor: string;
183
+ readOnlyCheckColor: string;
184
+ fontFamily: string;
185
+ fontSize: string;
186
+ fontWeight: string;
187
+ fontColor: string;
188
+ disabledFontColor: string;
189
+ focusColor: string;
190
+ checkLabelSpacing: string;
191
+ }>;
192
+ chip?: Partial<{
193
+ backgroundColor: string;
194
+ disabledBackgroundColor: string;
195
+ fontFamily: string;
196
+ fontSize: string;
197
+ fontStyle: string;
198
+ fontWeight: string;
199
+ fontColor: string;
200
+ disabledFontColor: string;
201
+ borderColor: string;
202
+ borderRadius: string;
203
+ borderThickness: string;
204
+ borderStyle: string;
205
+ contentPaddingLeft: string;
206
+ contentPaddingRight: string;
207
+ contentPaddingTop: string;
208
+ contentPaddingBottom: string;
209
+ iconSize: string;
210
+ iconSpacing: string;
211
+ iconColor: string;
212
+ hoverIconColor: string;
213
+ activeIconColor: string;
214
+ disabledIconColor: string;
215
+ focusColor: string;
216
+ focusBorderStyle: string;
217
+ focusBorderThickness: string;
218
+ focusBorderRadius: string;
219
+ }>;
220
+ dateInput?: Partial<{
221
+ pickerBackgroundColor: string;
222
+ pickerFontColor: string;
223
+ pickerBorderColor: string;
224
+ pickerSelectedBackgroundColor: string;
225
+ pickerSelectedFontColor: string;
226
+ pickerHoverBackgroundColor: string;
227
+ pickerHoverFontColor: string;
228
+ pickerActiveBackgroundColor: string;
229
+ pickerActiveFontColor: string;
230
+ pickerNonCurrentMonthFontColor: string;
231
+ pickerCurrentDateBorderColor: string;
232
+ pickerCurrentDateFontColor: string;
233
+ pickerCurrentYearFontColor: string;
234
+ pickerHeaderBackgroundColor: string;
235
+ pickerHeaderFontColor: string;
236
+ pickerHeaderHoverBackgroundColor: string;
237
+ pickerHeaderHoverFontColor: string;
238
+ pickerHeaderActiveBackgroundColor: string;
239
+ pickerHeaderActiveFontColor: string;
240
+ pickerFocusColor: string;
241
+ pickerBorderWidth: string;
242
+ pickerBorderStyle: string;
243
+ pickerFocusWidth: string;
244
+ pickerCurrentDateBorderWidth: string;
245
+ pickerFontFamily: string;
246
+ pickerFontSize: string;
247
+ pickerFontWeight: string;
248
+ pickerInteractedYearFontSize: string;
249
+ pickerHeaderFontSize: string;
250
+ }>;
251
+ dialog?: Partial<{
252
+ overlayColor: string;
253
+ backgroundColor: string;
254
+ closeIconSize: string;
255
+ closeIconTopPosition: string;
256
+ closeIconRightPosition: string;
257
+ closeIconBackgroundColor: string;
258
+ closeIconBorderColor: string;
259
+ closeIconColor: string;
260
+ closeIconBorderThickness: string;
261
+ closeIconBorderStyle: string;
262
+ closeIconBorderRadius: string;
263
+ boxShadowOffsetX: string;
264
+ boxShadowOffsetY: string;
265
+ boxShadowBlur: string;
266
+ boxShadowColor: string;
267
+ }>;
268
+ dropdown?: Partial<{
269
+ buttonBackgroundColor: string;
270
+ hoverButtonBackgroundColor: string;
271
+ activeButtonBackgroundColor: string;
272
+ buttonFontFamily: string;
273
+ buttonFontSize: string;
274
+ buttonFontStyle: string;
275
+ buttonFontWeight: string;
276
+ buttonFontColor: string;
277
+ buttonIconSize: string;
278
+ buttonIconSpacing: string;
279
+ buttonIconColor: string;
280
+ buttonPaddingTop: string;
281
+ buttonPaddingBottom: string;
282
+ buttonPaddingLeft: string;
283
+ buttonPaddingRight: string;
284
+ buttonHeight: string;
285
+ buttonBorderRadius: string;
286
+ buttonBorderStyle: string;
287
+ buttonBorderThickness: string;
288
+ buttonBorderColor: string;
289
+ disabledColor: string;
290
+ disabledButtonBackgroundColor: string;
291
+ disabledButtonBorderColor: string;
292
+ disabledBorderColor: string;
293
+ optionBackgroundColor: string;
294
+ hoverOptionBackgroundColor: string;
295
+ activeOptionBackgroundColor: string;
296
+ optionFontFamily: string;
297
+ optionFontSize: string;
298
+ optionFontStyle: string;
299
+ optionFontWeight: string;
300
+ optionFontColor: string;
301
+ optionIconSize: string;
302
+ optionIconSpacing: string;
303
+ optionIconColor: string;
304
+ optionPaddingTop: string;
305
+ optionPaddingBottom: string;
306
+ optionPaddingLeft: string;
307
+ optionPaddingRight: string;
308
+ caretIconSize: string;
309
+ caretIconColor: string;
310
+ caretIconSpacing: string;
311
+ borderRadius: string;
312
+ borderStyle: string;
313
+ borderThickness: string;
314
+ borderColor: string;
315
+ scrollBarThumbColor: string;
316
+ scrollBarTrackColor: string;
317
+ focusColor: string;
318
+ }>;
319
+ fileInput?: Partial<{
320
+ dropBorderColor: string;
321
+ fileItemBorderColor: string;
322
+ fileNameFontColor: string;
323
+ labelFontColor: string;
324
+ helperTextFontColor: string;
325
+ dropLabelFontColor: string;
326
+ disabledLabelFontColor: string;
327
+ disabledHelperTextFontcolor: string;
328
+ disabledDropLabelFontColor: string;
329
+ focusDropBorderColor: string;
330
+ disabledDropBorderColor: string;
331
+ dragoverDropBackgroundColor: string;
332
+ activeFileItemIconBackgrounColor: string;
333
+ errorFileItemBorderColor: string;
334
+ errorFileItemBackgroundColor: string;
335
+ errorFilePreviewBackgroundColor: string;
336
+ errorFileItemIconColor: string;
337
+ fileItemIconBackgroundColor: string;
338
+ deleteFileItemColor: string;
339
+ errorMessageFontColor: string;
340
+ labelFontFamily: string;
341
+ labelFontSize: string;
342
+ labelFontWeight: string;
343
+ labelLineHeight: string;
344
+ fileItemFontFamily: string;
345
+ fileItemFontSize: string;
346
+ fileItemFontWeight: string;
347
+ fileItemLineHeight: string;
348
+ helperTextFontFamily: string;
349
+ helperTextFontSize: string;
350
+ helperTextFontWeight: string;
351
+ helperTextLineHeight: string;
352
+ dropLabelFontFamily: string;
353
+ dropLabelFontSize: string;
354
+ dropLabelFontWeight: string;
355
+ errorMessageFontFamily: string;
356
+ errorMessageFontSize: string;
357
+ errorMessageFontWeight: string;
358
+ errorMessageLineHeight: string;
359
+ dropBorderThickness: string;
360
+ dropBorderStyle: string;
361
+ dropBorderRadius: string;
362
+ fileItemBorderThickness: string;
363
+ fileItemBorderStyle: string;
364
+ fileItemBorderRadius: string;
365
+ hoverDeleteFileItemBackgroundColor: string;
366
+ activeDeleteFileItemBackgroundColor: string;
367
+ focusDeleteFileItemBorderColor: string;
368
+ filePreviewBackgroundColor: string;
369
+ filePreviewIconColor: string;
370
+ errorFilePreviewIconColor: string;
371
+ }>;
372
+ footer?: Partial<{
373
+ height: string;
374
+ backgroundColor: string;
375
+ bottomLinksDividerColor: string;
376
+ bottomLinksDividerThickness: string;
377
+ bottomLinksDividerStyle: string;
378
+ bottomLinksDividerSpacing: string;
379
+ bottomLinksFontFamily: string;
380
+ bottomLinksFontSize: string;
381
+ bottomLinksFontStyle: string;
382
+ bottomLinksFontWeight: string;
383
+ bottomLinksFontColor: string;
384
+ bottomLinksTextDecoration: string;
385
+ copyrightFontFamily: string;
386
+ copyrightFontSize: string;
387
+ copyrightFontStyle: string;
388
+ copyrightFontWeight: string;
389
+ copyrightFontColor: string;
390
+ logo: string;
391
+ logoHeight: string;
392
+ logoWidth: string;
393
+ socialLinksSize: string;
394
+ socialLinksGutter: string;
395
+ socialLinksColor: string;
396
+ }>;
397
+ header?: Partial<{
398
+ backgroundColor: string;
399
+ hamburguerFocusColor: string;
400
+ hamburguerFontFamily: string;
401
+ hamburguerFontStyle: string;
402
+ hamburguerFontColor: string;
403
+ hamburguerFontSize: string;
404
+ hamburguerFontWeight: string;
405
+ hamburguerTextTransform: string;
406
+ hamburguerIconColor: string;
407
+ hamburguerHoverColor: string;
408
+ logo: string;
409
+ logoResponsive: string;
410
+ logoHeight: string;
411
+ logoWidth: string;
412
+ menuBackgroundColor: string;
413
+ menuZindex: string;
414
+ menuTabletWidth: string;
415
+ menuMobileWidth: string;
416
+ minHeight: string;
417
+ overlayColor: string;
418
+ overlayOpacity: string;
419
+ overlayZindex: string;
420
+ paddingTop: string;
421
+ paddingBottom: string;
422
+ paddingRight: string;
423
+ paddingLeft: string;
424
+ underlinedColor: string;
425
+ underlinedThickness: string;
426
+ underlinedStyle: string;
427
+ contentColor: string;
428
+ }>;
429
+ heading?: Partial<{
430
+ level1FontColor: string;
431
+ level1FontFamily: string;
432
+ level1FontSize: string;
433
+ level1FontStyle: string;
434
+ level1FontWeight: string;
435
+ level1LineHeight: string;
436
+ level1LetterSpacing: string;
437
+ level2FontColor: string;
438
+ level2FontFamily: string;
439
+ level2FontSize: string;
440
+ level2FontStyle: string;
441
+ level2FontWeight: string;
442
+ level2LineHeight: string;
443
+ level2LetterSpacing: string;
444
+ level3FontColor: string;
445
+ level3FontFamily: string;
446
+ level3FontSize: string;
447
+ level3FontStyle: string;
448
+ level3FontWeight: string;
449
+ level3LineHeight: string;
450
+ level3LetterSpacing: string;
451
+ level4FontColor: string;
452
+ level4FontFamily: string;
453
+ level4FontSize: string;
454
+ level4FontStyle: string;
455
+ level4FontWeight: string;
456
+ level4LineHeight: string;
457
+ level4LetterSpacing: string;
458
+ level5FontColor: string;
459
+ level5FontFamily: string;
460
+ level5FontSize: string;
461
+ level5FontStyle: string;
462
+ level5FontWeight: string;
463
+ level5LineHeight: string;
464
+ level5LetterSpacing: string;
465
+ }>;
466
+ image?: Partial<{
467
+ captionFontColor: string;
468
+ captionFontFamily: string;
469
+ captionFontSize: string;
470
+ captionFontStyle: string;
471
+ captionFontWeight: string;
472
+ captionLineHeight: string;
473
+ }>;
474
+ link?: Partial<{
475
+ fontColor: string;
476
+ fontFamily: string;
477
+ fontSize: string;
478
+ fontStyle: string;
479
+ fontWeight: string;
480
+ iconSize: string;
481
+ iconSpacing: string;
482
+ underlineSpacing: string;
483
+ underlineStyle: string;
484
+ underlineThickness: string;
485
+ disabledFontColor: string;
486
+ hoverFontColor: string;
487
+ hoverUnderlineColor: string;
488
+ visitedFontColor: string;
489
+ visitedUnderlineColor: string;
490
+ activeFontColor: string;
491
+ activeUnderlineColor: string;
492
+ focusColor: string;
493
+ }>;
494
+ navTabs?: Partial<{
495
+ selectedBackgroundColor: string;
496
+ unselectedBackgroundColor: string;
497
+ hoverBackgroundColor: string;
498
+ pressedBackgroundColor: string;
499
+ selectedFontColor: string;
500
+ unselectedFontColor: string;
501
+ disabledFontColor: string;
502
+ focusOutline: string;
503
+ selectedUnderlineColor: string;
504
+ dividerColor: string;
505
+ fontFamily: string;
506
+ fontSize: string;
507
+ fontStyle: string;
508
+ fontWeight: string;
509
+ selectedIconColor: string;
510
+ unselectedIconColor: string;
511
+ disabledIconColor: string;
512
+ }>;
513
+ paginator?: Partial<{
514
+ backgroundColor: string;
515
+ fontColor: string;
516
+ fontFamily: string;
517
+ fontSize: string;
518
+ fontStyle: string;
519
+ fontWeight: string;
520
+ fontTextTransform: string;
521
+ verticalPadding: string;
522
+ horizontalPadding: string;
523
+ marginRight: string;
524
+ marginLeft: string;
525
+ itemsPerPageSelectorMarginLeft: string;
526
+ itemsPerPageSelectorMarginRight: string;
527
+ pageSelectorMarginRight: string;
528
+ pageSelectorMarginLeft: string;
529
+ totalItemsContainerMarginRight: string;
530
+ totalItemsContainerMarginLeft: string;
531
+ }>;
532
+ paragraph?: Partial<{
533
+ fontColor: string;
534
+ display: string;
535
+ fontSize: string;
536
+ fontWeight: string;
537
+ }>;
538
+ progressBar?: Partial<{
539
+ trackLineColor: string;
540
+ totalLineColor: string;
541
+ labelFontFamily: string;
542
+ labelFontSize: string;
543
+ labelFontStyle: string;
544
+ labelFontWeight: string;
545
+ labelFontColor: string;
546
+ labelFontTextTransform: string;
547
+ valueFontFamily: string;
548
+ valueFontSize: string;
549
+ valueFontStyle: string;
550
+ valueFontWeight: string;
551
+ valueFontColor: string;
552
+ valueFontTextTransform: string;
553
+ helperTextFontColor: string;
554
+ helperTextFontSize: string;
555
+ helperTextFontStyle: string;
556
+ helperTextFontWeight: string;
557
+ helperTextFontFamily: string;
558
+ thickness: string;
559
+ borderRadius: string;
560
+ overlayColor: string;
561
+ overlayFontColor: string;
562
+ }>;
563
+ quickNav?: Partial<{
564
+ fontColor: string;
565
+ hoverFontColor: string;
566
+ dividerBorderColor: string;
567
+ focusBorderColor: string;
568
+ focusBorderStyle: string;
569
+ focusBorderThickness: string;
570
+ focusBorderRadius: string;
571
+ paddingTop: string;
572
+ paddingBottom: string;
573
+ paddingLeft: string;
574
+ paddingRight: string;
575
+ fontFamily: string;
576
+ fontSize: string;
577
+ fontStyle: string;
578
+ fontWeight: string;
579
+ }>;
580
+ radioGroup?: Partial<{
581
+ fontFamily: string;
582
+ radioInputColor: string;
583
+ hoverRadioInputColor: string;
584
+ focusBorderColor: string;
585
+ activeRadioInputColor: string;
586
+ errorRadioInputColor: string;
587
+ hoverErrorRadioInputColor: string;
588
+ activeErrorRadioInputColor: string;
589
+ readOnlyRadioInputColor: string;
590
+ hoverReadOnlyRadioInputColor: string;
591
+ activeReadOnlyRadioInputColor: string;
592
+ disabledRadioInputColor: string;
593
+ disabledLabelFontColor: string;
594
+ disabledHelperTextFontColor: string;
595
+ disabledRadioInputLabelFontColor: string;
596
+ errorMessageColor: string;
597
+ labelFontColor: string;
598
+ labelFontSize: string;
599
+ labelFontStyle: string;
600
+ labelFontWeight: string;
601
+ labelLineHeight: string;
602
+ optionalLabelFontWeight: string;
603
+ helperTextFontColor: string;
604
+ helperTextFontSize: string;
605
+ helperTextFontStyle: string;
606
+ helperTextFontWeight: string;
607
+ helperTextLineHeight: string;
608
+ radioInputLabelFontColor: string;
609
+ radioInputLabelFontSize: string;
610
+ radioInputLabelFontStyle: string;
611
+ radioInputLabelFontWeight: string;
612
+ radioInputLabelLineHeight: string;
613
+ groupLabelMargin: string;
614
+ radioInputLabelMargin: string;
615
+ groupVerticalGutter: string;
616
+ groupHorizontalGutter: string;
617
+ }>;
618
+ select?: Partial<{
619
+ fontFamily: string;
620
+ disabledColor: string;
621
+ enabledInputBorderColor: string;
622
+ hoverInputBorderColor: string;
623
+ focusInputBorderColor: string;
624
+ errorInputBorderColor: string;
625
+ hoverInputErrorBorderColor: string;
626
+ disabledInputBorderColor: string;
627
+ disabledInputBackgroundColor: string;
628
+ inputMarginTop: string;
629
+ inputMarginBottom: string;
630
+ errorMessageColor: string;
631
+ errorIconColor: string;
632
+ labelFontColor: string;
633
+ labelFontSize: string;
634
+ labelFontStyle: string;
635
+ labelFontWeight: string;
636
+ labelLineHeight: string;
637
+ optionalLabelFontWeight: string;
638
+ helperTextFontColor: string;
639
+ helperTextFontSize: string;
640
+ helperTextFontStyle: string;
641
+ helperTextFontWeight: string;
642
+ helperTextLineHeight: string;
643
+ placeholderFontColor: string;
644
+ valueFontColor: string;
645
+ valueFontSize: string;
646
+ valueFontStyle: string;
647
+ valueFontWeight: string;
648
+ actionIconColor: string;
649
+ hoverActionIconColor: string;
650
+ activeActionIconColor: string;
651
+ actionBackgroundColor: string;
652
+ hoverActionBackgroundColor: string;
653
+ activeActionBackgroundColor: string;
654
+ listOptionFontColor: string;
655
+ listOptionFontSize: string;
656
+ listOptionFontStyle: string;
657
+ listOptionFontWeight: string;
658
+ listOptionIconColor: string;
659
+ listOptionDividerColor: string;
660
+ listGroupLabelFontWeight: string;
661
+ focusListOptionBorderColor: string;
662
+ systemMessageFontColor: string;
663
+ collapseIndicatorColor: string;
664
+ listDialogBackgroundColor: string;
665
+ listDialogBorderColor: string;
666
+ selectedListOptionBackgroundColor: string;
667
+ selectedHoverListOptionBackgroundColor: string;
668
+ selectedActiveListOptionBackgroundColor: string;
669
+ selectedListOptionIconColor: string;
670
+ unselectedHoverListOptionBackgroundColor: string;
671
+ unselectedActiveListOptionBackgroundColor: string;
672
+ selectionIndicatorFontColor: string;
673
+ selectionIndicatorFontSize: string;
674
+ selectionIndicatorFontStyle: string;
675
+ selectionIndicatorFontWeight: string;
676
+ selectionIndicatorBorderColor: string;
677
+ selectionIndicatorBackgroundColor: string;
678
+ enabledSelectionIndicatorActionBackgroundColor: string;
679
+ enabledSelectionIndicatorActionIconColor: string;
680
+ hoverSelectionIndicatorActionBackgroundColor: string;
681
+ hoverSelectionIndicatorActionIconColor: string;
682
+ activeSelectionIndicatorActionBackgroundColor: string;
683
+ activeSelectionIndicatorActionIconColor: string;
684
+ }>;
685
+ sidenav?: Partial<{
686
+ backgroundColor: string;
687
+ titleFontFamily: string;
688
+ titleFontSize: string;
689
+ titleFontStyle: string;
690
+ titleFontWeight: string;
691
+ titleFontColor: string;
692
+ titleFontTextTransform: string;
693
+ titleFontLetterSpacing: string;
694
+ groupTitleFontFamily: string;
695
+ groupTitleFontSize: string;
696
+ groupTitleFontStyle: string;
697
+ groupTitleFontWeight: string;
698
+ groupTitleFontColor: string;
699
+ groupTitleHoverBackgroundColor: string;
700
+ groupTitleActiveBackgroundColor: string;
701
+ groupTitleSelectedFontColor: string;
702
+ groupTitleSelectedBackgroundColor: string;
703
+ groupTitleSelectedHoverFontColor: string;
704
+ groupTitleSelectedHoverBackgroundColor: string;
705
+ groupTitleFontTextTransform: string;
706
+ groupTitleFontLetterSpacing: string;
707
+ linkFontFamily: string;
708
+ linkFontSize: string;
709
+ linkFontStyle: string;
710
+ linkFontWeight: string;
711
+ linkFontColor: string;
712
+ linkHoverBackgroundColor: string;
713
+ linkSelectedFontColor: string;
714
+ linkSelectedBackgroundColor: string;
715
+ linkSelectedHoverFontColor: string;
716
+ linkSelectedHoverBackgroundColor: string;
717
+ linkFontTextTransform: string;
718
+ linkFontLetterSpacing: string;
719
+ linkTextDecoration: string;
720
+ linkMarginTop: string;
721
+ linkMarginBottom: string;
722
+ linkMarginRight: string;
723
+ linkMarginLeft: string;
724
+ linkFocusColor: string;
725
+ scrollBarThumbColor: string;
726
+ scrollBarTrackColor: string;
727
+ }>;
728
+ slider?: Partial<{
729
+ fontFamily: string;
730
+ limitValuesFontColor: string;
731
+ limitValuesFontSize: string;
732
+ limitValuesFontStyle: string;
733
+ limitValuesFontWeight: string;
734
+ limitValuesFontLetterSpacing: string;
735
+ disabledLimitValuesFontColor: string;
736
+ labelFontFamily: string;
737
+ labelFontSize: string;
738
+ labelFontStyle: string;
739
+ labelFontWeight: string;
740
+ labelLineHeight: string;
741
+ helperTextFontFamily: string;
742
+ helperTextFontSize: string;
743
+ helperTextFontStyle: string;
744
+ helperTextFontWeight: string;
745
+ helperTextLineHeight: string;
746
+ fontColor: string;
747
+ labelFontColor: string;
748
+ helperTextFontColor: string;
749
+ disabledLabelFontColor: string;
750
+ disabledHelperTextFontColor: string;
751
+ thumbHeight: string;
752
+ thumbWidth: string;
753
+ hoverThumbHeight: string;
754
+ hoverThumbWidth: string;
755
+ thumbVerticalPosition: string;
756
+ hoverThumbVerticalPosition: string;
757
+ thumbBackgroundColor: string;
758
+ hoverThumbScale: string;
759
+ hoverThumbBackgroundColor: string;
760
+ activeThumbScale: string;
761
+ activeThumbBackgroundColor: string;
762
+ focusThumbBackgroundColor: string;
763
+ tickHeight: string;
764
+ tickWidth: string;
765
+ tickVerticalPosition: string;
766
+ tickBackgroundColor: string;
767
+ trackLineThickness: string;
768
+ trackLineVerticalPosition: string;
769
+ trackLineColor: string;
770
+ totalLineThickness: string;
771
+ totalLineVerticalPosition: string;
772
+ totalLineColor: string;
773
+ disabledThumbVerticalPosition: string;
774
+ disabledThumbBackgroundColor: string;
775
+ disabledTickVerticalPosition: string;
776
+ disabledTickBackgroundColor: string;
777
+ disabledTrackLineColor: string;
778
+ disabledTotalLineColor: string;
779
+ focusColor: string;
780
+ floorLabelMarginRight: string;
781
+ ceilLabelMarginLeft: string;
782
+ inputMarginLeft: string;
783
+ }>;
784
+ spinner?: Partial<{
785
+ trackCircleColor: string;
786
+ trackCircleColorOverlay: string;
787
+ totalCircleColor: string;
788
+ labelFontFamily: string;
789
+ labelFontSize: string;
790
+ labelFontStyle: string;
791
+ labelFontWeight: string;
792
+ labelFontColor: string;
793
+ labelTextAlign: string;
794
+ progressValueFontFamily: string;
795
+ progressValueFontSize: string;
796
+ progressValueFontStyle: string;
797
+ progressValueFontWeight: string;
798
+ progressValueFontColor: string;
799
+ progressValueTextAlign: string;
800
+ overlayBackgroundColor: string;
801
+ overlayOpacity: string;
802
+ overlayLabelFontFamily: string;
803
+ overlayLabelFontSize: string;
804
+ overlayLabelFontStyle: string;
805
+ overlayLabelFontWeight: string;
806
+ overlayLabelFontColor: string;
807
+ overlayLabelTextAlign: string;
808
+ overlayProgressValueFontFamily: string;
809
+ overlayProgressValueFontSize: string;
810
+ overlayProgressValueFontStyle: string;
811
+ overlayProgressValueFontWeight: string;
812
+ overlayProgressValueFontColor: string;
813
+ overlayProgressValueTextAlign: string;
814
+ }>;
815
+ switch?: Partial<{
816
+ checkedTrackBackgroundColor: string;
817
+ checkedThumbBackgroundColor: string;
818
+ uncheckedTrackBackgroundColor: string;
819
+ uncheckedThumbBackgroundColor: string;
820
+ disabledCheckedTrackBackgroundColor: string;
821
+ disabledCheckedThumbBackgroundColor: string;
822
+ disabledUncheckedTrackBackgroundColor: string;
823
+ disabledUncheckedThumbBackgroundColor: string;
824
+ disabledLabelFontColor: string;
825
+ disabledLabelFontStyle: string;
826
+ labelFontFamily: string;
827
+ labelFontSize: string;
828
+ labelFontStyle: string;
829
+ labelFontWeight: string;
830
+ labelFontColor: string;
831
+ thumbFocusColor: string;
832
+ thumbHeight: string;
833
+ thumbWidth: string;
834
+ thumbShift: string;
835
+ trackHeight: string;
836
+ trackWidth: string;
837
+ spaceBetweenLabelSwitch: string;
838
+ }>;
839
+ table?: Partial<{
840
+ rowSeparatorThickness: string;
841
+ rowSeparatorStyle: string;
842
+ rowSeparatorColor: string;
843
+ dataBackgroundColor: string;
844
+ dataFontFamily: string;
845
+ dataFontSize: string;
846
+ dataFontStyle: string;
847
+ dataFontWeight: string;
848
+ dataFontColor: string;
849
+ dataFontTextTransform: string;
850
+ dataPaddingTop: string;
851
+ dataPaddingBottom: string;
852
+ dataPaddingRight: string;
853
+ dataPaddingLeft: string;
854
+ dataPaddingTopReduced: string;
855
+ dataPaddingBottomReduced: string;
856
+ dataPaddingRightReduced: string;
857
+ dataPaddingLeftReduced: string;
858
+ dataTextAlign: string;
859
+ dataTextLineHeight: string;
860
+ firstChildPaddingLeft: string;
861
+ lastChildPaddingRight: string;
862
+ firstChildPaddingLeftReduced: string;
863
+ lastChildPaddingRightReduced: string;
864
+ headerBackgroundColor: string;
865
+ headerBorderRadius: string;
866
+ headerFontFamily: string;
867
+ headerFontSize: string;
868
+ headerFontStyle: string;
869
+ headerFontWeight: string;
870
+ headerFontColor: string;
871
+ headerFontTextTransform: string;
872
+ headerPaddingTop: string;
873
+ headerPaddingBottom: string;
874
+ headerPaddingRight: string;
875
+ headerPaddingLeft: string;
876
+ headerPaddingTopReduced: string;
877
+ headerPaddingBottomReduced: string;
878
+ headerPaddingRightReduced: string;
879
+ headerPaddingLeftReduced: string;
880
+ headerTextAlign: string;
881
+ headerTextLineHeight: string;
882
+ scrollBarThumbColor: string;
883
+ scrollBarTrackColor: string;
884
+ sortIconColor: string;
885
+ actionIconColor: string;
886
+ disabledActionIconColor: string;
887
+ hoverActionIconColor: string;
888
+ focusActionIconColor: string;
889
+ activeActionIconColor: string;
890
+ actionBackgroundColor: string;
891
+ disabledActionBackgroundColor: string;
892
+ hoverActionBackgroundColor: string;
893
+ focusActionBorderColor: string;
894
+ activeActionBackgroundColor: string;
895
+ }>;
896
+ tabs?: Partial<{
897
+ fontFamily: string;
898
+ fontSize: string;
899
+ fontStyle: string;
900
+ fontWeight: string;
901
+ fontTextTransform: string;
902
+ selectedBackgroundColor: string;
903
+ selectedFontColor: string;
904
+ selectedIconColor: string;
905
+ selectedUnderlineColor: string;
906
+ selectedUnderlineThickness: string;
907
+ unselectedBackgroundColor: string;
908
+ unselectedFontColor: string;
909
+ unselectedIconColor: string;
910
+ disabledFontColor: string;
911
+ disabledIconColor: string;
912
+ disabledFontStyle: string;
913
+ hoverBackgroundColor: string;
914
+ pressedBackgroundColor: string;
915
+ pressedFontWeight: string;
916
+ dividerColor: string;
917
+ dividerThickness: string;
918
+ focusOutline: string;
919
+ scrollButtonsWidth: string;
920
+ }>;
921
+ tag?: Partial<{
922
+ fontFamily: string;
923
+ fontColor: string;
924
+ fontSize: string;
925
+ fontStyle: string;
926
+ fontWeight: string;
927
+ labelPaddingTop: string;
928
+ labelPaddingBottom: string;
929
+ labelPaddingLeft: string;
930
+ labelPaddingRight: string;
931
+ height: string;
932
+ iconColor: string;
933
+ iconSectionWidth: string;
934
+ iconHeight: string;
935
+ iconWidth: string;
936
+ focusColor: string;
937
+ }>;
938
+ textarea?: Partial<{
939
+ fontFamily: string;
940
+ enabledBorderColor: string;
941
+ hoverBorderColor: string;
942
+ focusBorderColor: string;
943
+ disabledBorderColor: string;
944
+ disabledContainerFillColor: string;
945
+ readOnlyBorderColor: string;
946
+ hoverReadOnlyBorderColor: string;
947
+ errorBorderColor: string;
948
+ hoverErrorBorderColor: string;
949
+ inputMarginTop: string;
950
+ inputMarginBottom: string;
951
+ errorMessageColor: string;
952
+ labelFontColor: string;
953
+ labelFontSize: string;
954
+ labelFontStyle: string;
955
+ labelFontWeight: string;
956
+ labelLineHeight: string;
957
+ disabledLabelFontColor: string;
958
+ optionalLabelFontWeight: string;
959
+ helperTextFontColor: string;
960
+ helperTextFontSize: string;
961
+ helperTextFontStyle: string;
962
+ helperTextFontWeight: string;
963
+ helperTextLineHeight: string;
964
+ disabledHelperTextFontColor: string;
965
+ placeholderFontColor: string;
966
+ disabledPlaceholderFontColor: string;
967
+ valueFontColor: string;
968
+ valueFontSize: string;
969
+ valueFontStyle: string;
970
+ valueFontWeight: string;
971
+ disabledValueFontColor: string;
972
+ }>;
973
+ textInput?: Partial<{
974
+ fontFamily: string;
975
+ enabledBorderColor: string;
976
+ hoverBorderColor: string;
977
+ focusBorderColor: string;
978
+ disabledBorderColor: string;
979
+ disabledContainerFillColor: string;
980
+ readOnlyBorderColor: string;
981
+ hoverReadOnlyBorderColor: string;
982
+ errorBorderColor: string;
983
+ hoverErrorBorderColor: string;
984
+ inputMarginTop: string;
985
+ inputMarginBottom: string;
986
+ errorMessageColor: string;
987
+ errorIconColor: string;
988
+ labelFontColor: string;
989
+ labelFontSize: string;
990
+ labelFontStyle: string;
991
+ labelFontWeight: string;
992
+ labelLineHeight: string;
993
+ disabledLabelFontColor: string;
994
+ optionalLabelFontWeight: string;
995
+ helperTextFontColor: string;
996
+ helperTextFontSize: string;
997
+ helperTextFontStyle: string;
998
+ helperTextFontWeight: string;
999
+ helperTextLineHeight: string;
1000
+ disabledHelperTextFontColor: string;
1001
+ prefixColor: string;
1002
+ suffixColor: string;
1003
+ disabledPrefixColor: string;
1004
+ disabledSuffixColor: string;
1005
+ placeholderFontColor: string;
1006
+ disabledPlaceholderFontColor: string;
1007
+ valueFontColor: string;
1008
+ valueFontSize: string;
1009
+ valueFontStyle: string;
1010
+ valueFontWeight: string;
1011
+ disabledValueFontColor: string;
1012
+ actionIconColor: string;
1013
+ disabledActionIconColor: string;
1014
+ hoverActionIconColor: string;
1015
+ focusActionIconColor: string;
1016
+ activeActionIconColor: string;
1017
+ actionBackgroundColor: string;
1018
+ disabledActionBackgroundColor: string;
1019
+ hoverActionBackgroundColor: string;
1020
+ focusActionBorderColor: string;
1021
+ activeActionBackgroundColor: string;
1022
+ listDialogBackgroundColor: string;
1023
+ listDialogBorderColor: string;
1024
+ listOptionDividerColor: string;
1025
+ listOptionFontColor: string;
1026
+ listOptionFontSize: string;
1027
+ listOptionFontStyle: string;
1028
+ listOptionFontWeight: string;
1029
+ systemMessageFontColor: string;
1030
+ errorListDialogFontColor: string;
1031
+ errorListDialogBackgroundColor: string;
1032
+ errorListDialogBorderColor: string;
1033
+ hoverListOptionBackgroundColor: string;
1034
+ activeListOptionBackgroundColor: string;
1035
+ focusListOptionBorderColor: string;
1036
+ }>;
1037
+ toggleGroup?: Partial<{
1038
+ containerBackgroundColor: string;
1039
+ containerBorderColor: string;
1040
+ labelFontColor: string;
1041
+ disabledLabelFontColor: string;
1042
+ helperTextFontColor: string;
1043
+ disabledHelperTextFontcolor: string;
1044
+ unselectedBackgroundColor: string;
1045
+ unselectedHoverBackgroundColor: string;
1046
+ unselectedActiveBackgroundColor: string;
1047
+ unselectedDisabledBackgroundColor: string;
1048
+ unselectedFontColor: string;
1049
+ unselectedDisabledFontColor: string;
1050
+ selectedBackgroundColor: string;
1051
+ selectedHoverBackgroundColor: string;
1052
+ selectedActiveBackgroundColor: string;
1053
+ selectedDisabledBackgroundColor: string;
1054
+ selectedFontColor: string;
1055
+ selectedDisabledFontColor: string;
1056
+ focusColor: string;
1057
+ labelFontFamily: string;
1058
+ labelFontSize: string;
1059
+ labelFontStyle: string;
1060
+ labelFontWeight: string;
1061
+ labelLineHeight: string;
1062
+ helperTextFontFamily: string;
1063
+ helperTextFontSize: string;
1064
+ helperTextFontStyle: string;
1065
+ helperTextFontWeight: string;
1066
+ helperTextLineHeight: string;
1067
+ optionLabelFontFamily: string;
1068
+ optionLabelFontSize: string;
1069
+ optionLabelFontStyle: string;
1070
+ optionLabelFontWeight: string;
1071
+ iconPaddingRight: string;
1072
+ iconPaddingLeft: string;
1073
+ labelPaddingLeft: string;
1074
+ labelPaddingRight: string;
1075
+ iconMarginRight: string;
1076
+ containerMarginTop: string;
1077
+ optionBorderThickness: string;
1078
+ optionBorderStyle: string;
1079
+ optionBorderRadius: string;
1080
+ containerBorderThickness: string;
1081
+ containerBorderStyle: string;
1082
+ containerBorderRadius: string;
1083
+ optionFocusBorderThickness: string;
1084
+ }>;
1085
+ wizard?: Partial<{
1086
+ visitedStepFontColor: string;
1087
+ visitedStepBackgroundColor: string;
1088
+ visitedStepBorderColor: string;
1089
+ unvisitedStepFontColor: string;
1090
+ unvisitedLabelFontColor: string;
1091
+ unvisitedHelperTextFontColor: string;
1092
+ unvisitedStepBackgroundColor: string;
1093
+ unvisitedStepBorderColor: string;
1094
+ selectedStepFontColor: string;
1095
+ selectedStepBackgroundColor: string;
1096
+ selectedStepBorderColor: string;
1097
+ selectedLabelFontColor: string;
1098
+ selectedHelperTextFontColor: string;
1099
+ selectedStepWidth: string;
1100
+ selectedStepHeight: string;
1101
+ selectedStepBorderThickness: string;
1102
+ selectedStepBorderStyle: string;
1103
+ selectedStepBorderRadius: string;
1104
+ stepFontSize: string;
1105
+ stepFontFamily: string;
1106
+ stepFontStyle: string;
1107
+ stepFontWeight: string;
1108
+ stepFontTracking: string;
1109
+ stepIconSize: string;
1110
+ stepWidth: string;
1111
+ stepHeight: string;
1112
+ stepBorderThickness: string;
1113
+ stepBorderStyle: string;
1114
+ stepBorderRadius: string;
1115
+ visitedLabelFontColor: string;
1116
+ labelFontSize: string;
1117
+ labelFontFamily: string;
1118
+ labelFontStyle: string;
1119
+ labelFontWeight: string;
1120
+ labelFontTracking: string;
1121
+ labelFontTextTransform: string;
1122
+ labelTextAlign: string;
1123
+ helperTextFontSize: string;
1124
+ helperTextFontFamily: string;
1125
+ helperTextFontStyle: string;
1126
+ helperTextFontWeight: string;
1127
+ helperTextFontTracking: string;
1128
+ helperTextFontTextTransform: string;
1129
+ visitedHelperTextFontColor: string;
1130
+ helperTextTextAlign: string;
1131
+ disabledStepBackgroundColor: string;
1132
+ disabledStepFontColor: string;
1133
+ disabledLabelFontColor: string;
1134
+ disabledHelperTextFontColor: string;
1135
+ disabledStepBorderColor: string;
1136
+ disabledStepWidth: string;
1137
+ disabledStepHeight: string;
1138
+ disabledStepBorderThickness: string;
1139
+ disabledStepBorderStyle: string;
1140
+ disabledStepBorderRadius: string;
1141
+ separatorBorderThickness: string;
1142
+ separatorBorderStyle: string;
1143
+ separatorColor: string;
1144
+ focusColor: string;
1145
+ }>;
1146
+ };
1147
+ export default useTheme;