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