@dxc-technology/halstack-react 0.0.0-c908d78 → 0.0.0-c9c1158

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