@dxc-technology/halstack-react 0.0.0-dfcca07 → 0.0.0-e01c6f9

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