@dxc-technology/halstack-react 0.0.0-ff5083e → 0.0.0-ff6c8bf

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