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

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