@dxc-technology/halstack-react 0.0.0-ed1185a → 0.0.0-ede733c

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