@dxc-technology/halstack-react 0.0.0-f77ec3a → 0.0.0-f7c88cc

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 (510) hide show
  1. package/BackgroundColorContext.d.ts +10 -0
  2. package/BackgroundColorContext.js +35 -0
  3. package/HalstackContext.d.ts +1353 -0
  4. package/HalstackContext.js +310 -0
  5. package/README.md +28 -47
  6. package/accordion/Accordion.d.ts +4 -0
  7. package/accordion/Accordion.js +185 -0
  8. package/accordion/Accordion.stories.tsx +283 -0
  9. package/accordion/Accordion.test.js +56 -0
  10. package/accordion/types.d.ts +57 -0
  11. package/accordion/types.js +5 -0
  12. package/accordion-group/AccordionGroup.d.ts +8 -0
  13. package/accordion-group/AccordionGroup.js +101 -0
  14. package/accordion-group/AccordionGroup.stories.tsx +252 -0
  15. package/accordion-group/AccordionGroup.test.js +98 -0
  16. package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
  17. package/accordion-group/AccordionGroupAccordion.js +31 -0
  18. package/accordion-group/types.d.ts +67 -0
  19. package/accordion-group/types.js +5 -0
  20. package/alert/Alert.d.ts +4 -0
  21. package/{dist/alert → alert}/Alert.js +56 -202
  22. package/alert/Alert.stories.tsx +198 -0
  23. package/alert/Alert.test.js +75 -0
  24. package/alert/types.d.ts +49 -0
  25. package/alert/types.js +5 -0
  26. package/badge/Badge.d.ts +4 -0
  27. package/badge/Badge.js +48 -0
  28. package/badge/types.d.ts +5 -0
  29. package/badge/types.js +5 -0
  30. package/bleed/Bleed.d.ts +3 -0
  31. package/bleed/Bleed.js +43 -0
  32. package/bleed/Bleed.stories.tsx +342 -0
  33. package/bleed/types.d.ts +37 -0
  34. package/bleed/types.js +5 -0
  35. package/box/Box.d.ts +4 -0
  36. package/box/Box.js +78 -0
  37. package/box/Box.stories.tsx +119 -0
  38. package/box/Box.test.js +13 -0
  39. package/box/types.d.ts +32 -0
  40. package/box/types.js +5 -0
  41. package/bulleted-list/BulletedList.d.ts +7 -0
  42. package/bulleted-list/BulletedList.js +99 -0
  43. package/bulleted-list/BulletedList.stories.tsx +116 -0
  44. package/bulleted-list/types.d.ts +38 -0
  45. package/bulleted-list/types.js +5 -0
  46. package/button/Button.d.ts +4 -0
  47. package/button/Button.js +121 -0
  48. package/button/Button.stories.tsx +344 -0
  49. package/button/Button.test.js +36 -0
  50. package/button/types.d.ts +57 -0
  51. package/button/types.js +5 -0
  52. package/card/Card.d.ts +4 -0
  53. package/card/Card.js +120 -0
  54. package/card/Card.stories.tsx +171 -0
  55. package/card/Card.test.js +39 -0
  56. package/card/types.d.ts +62 -0
  57. package/card/types.js +5 -0
  58. package/checkbox/Checkbox.d.ts +4 -0
  59. package/checkbox/Checkbox.js +220 -0
  60. package/checkbox/Checkbox.stories.tsx +222 -0
  61. package/checkbox/Checkbox.test.js +199 -0
  62. package/checkbox/types.d.ts +72 -0
  63. package/checkbox/types.js +5 -0
  64. package/chip/Chip.d.ts +4 -0
  65. package/chip/Chip.js +121 -0
  66. package/chip/Chip.stories.tsx +214 -0
  67. package/chip/Chip.test.js +41 -0
  68. package/chip/types.d.ts +45 -0
  69. package/chip/types.js +5 -0
  70. package/common/OpenSans.css +69 -0
  71. package/common/coreTokens.d.ts +237 -0
  72. package/common/coreTokens.js +184 -0
  73. package/common/utils.d.ts +1 -0
  74. package/{dist/common → common}/utils.js +6 -12
  75. package/common/variables.d.ts +1499 -0
  76. package/common/variables.js +1371 -0
  77. package/container/Container.d.ts +4 -0
  78. package/container/Container.js +198 -0
  79. package/container/Container.stories.tsx +229 -0
  80. package/container/types.d.ts +74 -0
  81. package/container/types.js +5 -0
  82. package/date-input/Calendar.d.ts +4 -0
  83. package/date-input/Calendar.js +214 -0
  84. package/date-input/DateInput.d.ts +4 -0
  85. package/date-input/DateInput.js +223 -0
  86. package/date-input/DateInput.stories.tsx +285 -0
  87. package/date-input/DateInput.test.js +808 -0
  88. package/date-input/DatePicker.d.ts +4 -0
  89. package/date-input/DatePicker.js +115 -0
  90. package/date-input/Icons.d.ts +6 -0
  91. package/date-input/Icons.js +58 -0
  92. package/date-input/YearPicker.d.ts +4 -0
  93. package/date-input/YearPicker.js +100 -0
  94. package/date-input/types.d.ts +164 -0
  95. package/date-input/types.js +5 -0
  96. package/dialog/Dialog.d.ts +4 -0
  97. package/dialog/Dialog.js +107 -0
  98. package/dialog/Dialog.stories.tsx +365 -0
  99. package/dialog/Dialog.test.js +307 -0
  100. package/dialog/types.d.ts +36 -0
  101. package/dialog/types.js +5 -0
  102. package/dropdown/Dropdown.d.ts +4 -0
  103. package/dropdown/Dropdown.js +334 -0
  104. package/dropdown/Dropdown.stories.tsx +438 -0
  105. package/dropdown/Dropdown.test.js +599 -0
  106. package/dropdown/DropdownMenu.d.ts +4 -0
  107. package/dropdown/DropdownMenu.js +63 -0
  108. package/dropdown/DropdownMenuItem.d.ts +4 -0
  109. package/dropdown/DropdownMenuItem.js +67 -0
  110. package/dropdown/types.d.ts +98 -0
  111. package/dropdown/types.js +5 -0
  112. package/file-input/FileInput.d.ts +4 -0
  113. package/file-input/FileInput.js +479 -0
  114. package/file-input/FileInput.stories.tsx +618 -0
  115. package/file-input/FileInput.test.js +459 -0
  116. package/file-input/FileItem.d.ts +4 -0
  117. package/file-input/FileItem.js +135 -0
  118. package/file-input/types.d.ts +129 -0
  119. package/file-input/types.js +5 -0
  120. package/flex/Flex.d.ts +4 -0
  121. package/flex/Flex.js +57 -0
  122. package/flex/Flex.stories.tsx +112 -0
  123. package/flex/types.d.ts +97 -0
  124. package/flex/types.js +5 -0
  125. package/footer/Footer.d.ts +4 -0
  126. package/footer/Footer.js +135 -0
  127. package/footer/Footer.stories.tsx +152 -0
  128. package/footer/Footer.test.js +85 -0
  129. package/footer/Icons.d.ts +2 -0
  130. package/{dist/footer → footer}/Icons.js +16 -21
  131. package/footer/types.d.ts +64 -0
  132. package/footer/types.js +5 -0
  133. package/grid/Grid.d.ts +7 -0
  134. package/grid/Grid.js +76 -0
  135. package/grid/Grid.stories.tsx +219 -0
  136. package/grid/types.d.ts +115 -0
  137. package/grid/types.js +5 -0
  138. package/header/Header.d.ts +8 -0
  139. package/header/Header.js +231 -0
  140. package/header/Header.stories.tsx +251 -0
  141. package/header/Header.test.js +66 -0
  142. package/header/Icons.d.ts +2 -0
  143. package/{dist/header → header}/Icons.js +9 -39
  144. package/header/types.d.ts +32 -0
  145. package/header/types.js +5 -0
  146. package/heading/Heading.d.ts +4 -0
  147. package/{dist/heading → heading}/Heading.js +31 -124
  148. package/heading/Heading.stories.tsx +54 -0
  149. package/heading/Heading.test.js +169 -0
  150. package/heading/types.d.ts +33 -0
  151. package/heading/types.js +5 -0
  152. package/image/Image.d.ts +4 -0
  153. package/image/Image.js +70 -0
  154. package/image/Image.stories.tsx +127 -0
  155. package/image/types.d.ts +72 -0
  156. package/image/types.js +5 -0
  157. package/inset/Inset.d.ts +3 -0
  158. package/inset/Inset.js +43 -0
  159. package/inset/Inset.stories.tsx +230 -0
  160. package/inset/types.d.ts +37 -0
  161. package/inset/types.js +5 -0
  162. package/layout/ApplicationLayout.d.ts +20 -0
  163. package/layout/ApplicationLayout.js +134 -0
  164. package/layout/ApplicationLayout.stories.tsx +162 -0
  165. package/layout/Icons.d.ts +8 -0
  166. package/layout/Icons.js +58 -0
  167. package/layout/SidenavContext.d.ts +5 -0
  168. package/layout/SidenavContext.js +13 -0
  169. package/layout/types.d.ts +41 -0
  170. package/layout/types.js +5 -0
  171. package/link/Link.d.ts +4 -0
  172. package/link/Link.js +115 -0
  173. package/link/Link.stories.tsx +253 -0
  174. package/link/Link.test.js +63 -0
  175. package/link/types.d.ts +54 -0
  176. package/link/types.js +5 -0
  177. package/main.d.ts +47 -0
  178. package/{dist/main.js → main.js} +124 -140
  179. package/nav-tabs/NavTabs.d.ts +8 -0
  180. package/nav-tabs/NavTabs.js +90 -0
  181. package/nav-tabs/NavTabs.stories.tsx +274 -0
  182. package/nav-tabs/NavTabs.test.js +75 -0
  183. package/nav-tabs/Tab.d.ts +4 -0
  184. package/nav-tabs/Tab.js +117 -0
  185. package/nav-tabs/types.d.ts +52 -0
  186. package/nav-tabs/types.js +5 -0
  187. package/number-input/NumberInput.d.ts +11 -0
  188. package/number-input/NumberInput.js +67 -0
  189. package/number-input/NumberInput.stories.tsx +131 -0
  190. package/number-input/NumberInput.test.js +830 -0
  191. package/number-input/types.d.ts +130 -0
  192. package/number-input/types.js +5 -0
  193. package/package.json +56 -52
  194. package/paginator/Icons.d.ts +5 -0
  195. package/paginator/Icons.js +40 -0
  196. package/paginator/Paginator.d.ts +4 -0
  197. package/paginator/Paginator.js +138 -0
  198. package/paginator/Paginator.stories.tsx +87 -0
  199. package/paginator/Paginator.test.js +335 -0
  200. package/paginator/types.d.ts +38 -0
  201. package/paginator/types.js +5 -0
  202. package/paragraph/Paragraph.d.ts +5 -0
  203. package/paragraph/Paragraph.js +27 -0
  204. package/paragraph/Paragraph.stories.tsx +27 -0
  205. package/password-input/Icons.d.ts +6 -0
  206. package/password-input/Icons.js +35 -0
  207. package/password-input/PasswordInput.d.ts +4 -0
  208. package/password-input/PasswordInput.js +97 -0
  209. package/password-input/PasswordInput.stories.tsx +100 -0
  210. package/password-input/PasswordInput.test.js +198 -0
  211. package/password-input/types.d.ts +111 -0
  212. package/password-input/types.js +5 -0
  213. package/progress-bar/ProgressBar.d.ts +4 -0
  214. package/progress-bar/ProgressBar.js +150 -0
  215. package/progress-bar/ProgressBar.stories.tsx +93 -0
  216. package/progress-bar/ProgressBar.test.js +93 -0
  217. package/progress-bar/types.d.ts +37 -0
  218. package/progress-bar/types.js +5 -0
  219. package/quick-nav/QuickNav.d.ts +4 -0
  220. package/quick-nav/QuickNav.js +94 -0
  221. package/quick-nav/QuickNav.stories.tsx +356 -0
  222. package/quick-nav/types.d.ts +21 -0
  223. package/quick-nav/types.js +5 -0
  224. package/radio-group/Radio.d.ts +4 -0
  225. package/radio-group/Radio.js +124 -0
  226. package/radio-group/RadioGroup.d.ts +4 -0
  227. package/radio-group/RadioGroup.js +235 -0
  228. package/radio-group/RadioGroup.stories.tsx +214 -0
  229. package/radio-group/RadioGroup.test.js +756 -0
  230. package/radio-group/types.d.ts +114 -0
  231. package/radio-group/types.js +5 -0
  232. package/resultset-table/Icons.d.ts +7 -0
  233. package/resultset-table/Icons.js +47 -0
  234. package/resultset-table/ResultsetTable.d.ts +4 -0
  235. package/resultset-table/ResultsetTable.js +159 -0
  236. package/resultset-table/ResultsetTable.stories.tsx +300 -0
  237. package/resultset-table/ResultsetTable.test.js +305 -0
  238. package/resultset-table/types.d.ts +67 -0
  239. package/resultset-table/types.js +5 -0
  240. package/select/Icons.d.ts +10 -0
  241. package/select/Icons.js +89 -0
  242. package/select/Listbox.d.ts +4 -0
  243. package/select/Listbox.js +143 -0
  244. package/select/Option.d.ts +4 -0
  245. package/select/Option.js +80 -0
  246. package/select/Select.d.ts +4 -0
  247. package/select/Select.js +582 -0
  248. package/select/Select.stories.tsx +971 -0
  249. package/select/Select.test.js +2334 -0
  250. package/select/types.d.ts +209 -0
  251. package/select/types.js +5 -0
  252. package/sidenav/Icons.d.ts +7 -0
  253. package/sidenav/Icons.js +47 -0
  254. package/sidenav/Sidenav.d.ts +10 -0
  255. package/sidenav/Sidenav.js +199 -0
  256. package/sidenav/Sidenav.stories.tsx +282 -0
  257. package/sidenav/Sidenav.test.js +37 -0
  258. package/sidenav/types.d.ts +76 -0
  259. package/sidenav/types.js +5 -0
  260. package/slider/Slider.d.ts +4 -0
  261. package/slider/Slider.js +294 -0
  262. package/slider/Slider.test.js +254 -0
  263. package/slider/types.d.ts +86 -0
  264. package/slider/types.js +5 -0
  265. package/spinner/Spinner.d.ts +4 -0
  266. package/spinner/Spinner.js +214 -0
  267. package/spinner/Spinner.stories.tsx +129 -0
  268. package/spinner/Spinner.test.js +55 -0
  269. package/spinner/types.d.ts +32 -0
  270. package/spinner/types.js +5 -0
  271. package/switch/Switch.d.ts +4 -0
  272. package/switch/Switch.js +219 -0
  273. package/switch/Switch.stories.tsx +137 -0
  274. package/switch/Switch.test.js +180 -0
  275. package/switch/types.d.ts +66 -0
  276. package/switch/types.js +5 -0
  277. package/table/Table.d.ts +4 -0
  278. package/{dist/table → table}/Table.js +15 -48
  279. package/table/Table.stories.tsx +356 -0
  280. package/table/Table.test.js +21 -0
  281. package/table/types.d.ts +21 -0
  282. package/table/types.js +5 -0
  283. package/tabs/Tab.d.ts +4 -0
  284. package/tabs/Tab.js +113 -0
  285. package/tabs/Tabs.d.ts +4 -0
  286. package/tabs/Tabs.js +385 -0
  287. package/tabs/Tabs.stories.tsx +226 -0
  288. package/tabs/Tabs.test.js +294 -0
  289. package/tabs/types.d.ts +92 -0
  290. package/tabs/types.js +5 -0
  291. package/tag/Tag.d.ts +4 -0
  292. package/tag/Tag.js +151 -0
  293. package/tag/Tag.stories.tsx +155 -0
  294. package/tag/Tag.test.js +49 -0
  295. package/tag/types.d.ts +69 -0
  296. package/tag/types.js +5 -0
  297. package/text-input/Icons.d.ts +8 -0
  298. package/text-input/Icons.js +56 -0
  299. package/text-input/Suggestion.d.ts +4 -0
  300. package/text-input/Suggestion.js +67 -0
  301. package/text-input/Suggestions.d.ts +4 -0
  302. package/text-input/Suggestions.js +89 -0
  303. package/text-input/TextInput.d.ts +4 -0
  304. package/text-input/TextInput.js +592 -0
  305. package/text-input/TextInput.stories.tsx +465 -0
  306. package/text-input/TextInput.test.js +1739 -0
  307. package/text-input/types.d.ts +205 -0
  308. package/text-input/types.js +5 -0
  309. package/textarea/Textarea.d.ts +4 -0
  310. package/textarea/Textarea.js +240 -0
  311. package/textarea/Textarea.stories.tsx +175 -0
  312. package/textarea/Textarea.test.js +406 -0
  313. package/textarea/types.d.ts +141 -0
  314. package/textarea/types.js +5 -0
  315. package/toggle-group/ToggleGroup.d.ts +4 -0
  316. package/toggle-group/ToggleGroup.js +204 -0
  317. package/toggle-group/ToggleGroup.stories.tsx +218 -0
  318. package/toggle-group/ToggleGroup.test.js +137 -0
  319. package/toggle-group/types.d.ts +114 -0
  320. package/toggle-group/types.js +5 -0
  321. package/typography/Typography.d.ts +4 -0
  322. package/typography/Typography.js +23 -0
  323. package/typography/Typography.stories.tsx +198 -0
  324. package/typography/types.d.ts +18 -0
  325. package/typography/types.js +5 -0
  326. package/useTheme.d.ts +1252 -0
  327. package/{dist/useTheme.js → useTheme.js} +4 -11
  328. package/useTranslatedLabels.d.ts +85 -0
  329. package/useTranslatedLabels.js +14 -0
  330. package/utils/BaseTypography.d.ts +21 -0
  331. package/utils/BaseTypography.js +94 -0
  332. package/utils/FocusLock.d.ts +13 -0
  333. package/utils/FocusLock.js +121 -0
  334. package/wizard/Wizard.d.ts +4 -0
  335. package/wizard/Wizard.js +250 -0
  336. package/wizard/Wizard.stories.tsx +253 -0
  337. package/wizard/Wizard.test.js +114 -0
  338. package/wizard/types.d.ts +64 -0
  339. package/wizard/types.js +5 -0
  340. package/babel.config.js +0 -7
  341. package/dist/BackgroundColorContext.js +0 -46
  342. package/dist/ThemeContext.js +0 -250
  343. package/dist/V3Select/V3Select.js +0 -549
  344. package/dist/V3Select/index.d.ts +0 -27
  345. package/dist/V3Textarea/V3Textarea.js +0 -264
  346. package/dist/V3Textarea/index.d.ts +0 -27
  347. package/dist/accordion/Accordion.js +0 -353
  348. package/dist/accordion/index.d.ts +0 -28
  349. package/dist/accordion-group/AccordionGroup.js +0 -186
  350. package/dist/accordion-group/index.d.ts +0 -16
  351. package/dist/alert/index.d.ts +0 -51
  352. package/dist/badge/Badge.js +0 -63
  353. package/dist/box/Box.js +0 -156
  354. package/dist/box/index.d.ts +0 -25
  355. package/dist/button/Button.js +0 -238
  356. package/dist/button/index.d.ts +0 -24
  357. package/dist/card/Card.js +0 -254
  358. package/dist/card/index.d.ts +0 -22
  359. package/dist/checkbox/Checkbox.js +0 -299
  360. package/dist/checkbox/index.d.ts +0 -24
  361. package/dist/chip/Chip.js +0 -265
  362. package/dist/chip/index.d.ts +0 -22
  363. package/dist/common/OpenSans.css +0 -81
  364. package/dist/common/RequiredComponent.js +0 -40
  365. package/dist/common/variables.js +0 -1574
  366. package/dist/date/Date.js +0 -379
  367. package/dist/date/index.d.ts +0 -27
  368. package/dist/date-input/DateInput.js +0 -400
  369. package/dist/date-input/index.d.ts +0 -95
  370. package/dist/dialog/Dialog.js +0 -218
  371. package/dist/dialog/index.d.ts +0 -18
  372. package/dist/dropdown/Dropdown.js +0 -544
  373. package/dist/dropdown/index.d.ts +0 -26
  374. package/dist/file-input/FileInput.js +0 -644
  375. package/dist/file-input/FileItem.js +0 -287
  376. package/dist/file-input/index.d.ts +0 -81
  377. package/dist/footer/Footer.js +0 -421
  378. package/dist/footer/index.d.ts +0 -25
  379. package/dist/header/Header.js +0 -470
  380. package/dist/header/index.d.ts +0 -25
  381. package/dist/heading/index.d.ts +0 -17
  382. package/dist/input-text/Icons.js +0 -22
  383. package/dist/input-text/InputText.js +0 -705
  384. package/dist/input-text/index.d.ts +0 -36
  385. package/dist/layout/ApplicationLayout.js +0 -327
  386. package/dist/layout/Icons.js +0 -55
  387. package/dist/link/Link.js +0 -237
  388. package/dist/link/index.d.ts +0 -23
  389. package/dist/main.d.ts +0 -40
  390. package/dist/number-input/NumberInput.js +0 -136
  391. package/dist/number-input/NumberInputContext.js +0 -16
  392. package/dist/number-input/index.d.ts +0 -113
  393. package/dist/paginator/Icons.js +0 -66
  394. package/dist/paginator/Paginator.js +0 -305
  395. package/dist/paginator/index.d.ts +0 -20
  396. package/dist/password-input/PasswordInput.js +0 -203
  397. package/dist/password-input/index.d.ts +0 -94
  398. package/dist/progress-bar/ProgressBar.js +0 -242
  399. package/dist/progress-bar/index.d.ts +0 -18
  400. package/dist/radio/Radio.js +0 -209
  401. package/dist/radio/index.d.ts +0 -23
  402. package/dist/resultsetTable/ResultsetTable.js +0 -358
  403. package/dist/resultsetTable/index.d.ts +0 -19
  404. package/dist/select/Select.js +0 -1096
  405. package/dist/select/index.d.ts +0 -53
  406. package/dist/sidenav/Sidenav.js +0 -179
  407. package/dist/sidenav/index.d.ts +0 -13
  408. package/dist/slider/Slider.js +0 -404
  409. package/dist/slider/index.d.ts +0 -29
  410. package/dist/spinner/Spinner.js +0 -381
  411. package/dist/spinner/index.d.ts +0 -17
  412. package/dist/stories/Button.js +0 -71
  413. package/dist/stories/Button.stories.js +0 -55
  414. package/dist/stories/Header.js +0 -67
  415. package/dist/stories/Header.stories.js +0 -31
  416. package/dist/stories/Introduction.stories.mdx +0 -211
  417. package/dist/stories/Page.js +0 -68
  418. package/dist/stories/Page.stories.js +0 -39
  419. package/dist/stories/assets/code-brackets.svg +0 -1
  420. package/dist/stories/assets/colors.svg +0 -1
  421. package/dist/stories/assets/comments.svg +0 -1
  422. package/dist/stories/assets/direction.svg +0 -1
  423. package/dist/stories/assets/flow.svg +0 -1
  424. package/dist/stories/assets/plugin.svg +0 -1
  425. package/dist/stories/assets/repo.svg +0 -1
  426. package/dist/stories/assets/stackalt.svg +0 -1
  427. package/dist/stories/button.css +0 -30
  428. package/dist/stories/header.css +0 -26
  429. package/dist/stories/page.css +0 -69
  430. package/dist/switch/Switch.js +0 -222
  431. package/dist/switch/index.d.ts +0 -24
  432. package/dist/table/index.d.ts +0 -13
  433. package/dist/tabs/Tabs.js +0 -343
  434. package/dist/tabs/index.d.ts +0 -19
  435. package/dist/tag/Tag.js +0 -282
  436. package/dist/tag/index.d.ts +0 -24
  437. package/dist/text-input/TextInput.js +0 -974
  438. package/dist/text-input/index.d.ts +0 -135
  439. package/dist/textarea/Textarea.js +0 -369
  440. package/dist/textarea/index.d.ts +0 -117
  441. package/dist/toggle/Toggle.js +0 -220
  442. package/dist/toggle/index.d.ts +0 -21
  443. package/dist/toggle-group/ToggleGroup.js +0 -327
  444. package/dist/toggle-group/index.d.ts +0 -21
  445. package/dist/upload/Upload.js +0 -205
  446. package/dist/upload/buttons-upload/ButtonsUpload.js +0 -135
  447. package/dist/upload/buttons-upload/Icons.js +0 -40
  448. package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -329
  449. package/dist/upload/dragAndDropArea/Icons.js +0 -39
  450. package/dist/upload/file-upload/FileToUpload.js +0 -189
  451. package/dist/upload/file-upload/Icons.js +0 -66
  452. package/dist/upload/files-upload/FilesToUpload.js +0 -123
  453. package/dist/upload/index.d.ts +0 -15
  454. package/dist/upload/transaction/Icons.js +0 -160
  455. package/dist/upload/transaction/Transaction.js +0 -148
  456. package/dist/upload/transactions/Transactions.js +0 -138
  457. package/dist/wizard/Icons.js +0 -65
  458. package/dist/wizard/Wizard.js +0 -405
  459. package/dist/wizard/index.d.ts +0 -18
  460. package/test/Accordion.test.js +0 -33
  461. package/test/AccordionGroup.test.js +0 -125
  462. package/test/Alert.test.js +0 -53
  463. package/test/Box.test.js +0 -10
  464. package/test/Button.test.js +0 -18
  465. package/test/Card.test.js +0 -30
  466. package/test/Checkbox.test.js +0 -45
  467. package/test/Chip.test.js +0 -25
  468. package/test/Date.test.js +0 -395
  469. package/test/DateInput.test.js +0 -242
  470. package/test/Dialog.test.js +0 -23
  471. package/test/Dropdown.test.js +0 -145
  472. package/test/FileInput.test.js +0 -201
  473. package/test/Footer.test.js +0 -94
  474. package/test/Header.test.js +0 -34
  475. package/test/Heading.test.js +0 -83
  476. package/test/InputText.test.js +0 -239
  477. package/test/Link.test.js +0 -43
  478. package/test/NumberInput.test.js +0 -259
  479. package/test/Paginator.test.js +0 -181
  480. package/test/PasswordInput.test.js +0 -83
  481. package/test/ProgressBar.test.js +0 -35
  482. package/test/Radio.test.js +0 -37
  483. package/test/ResultsetTable.test.js +0 -330
  484. package/test/Select.test.js +0 -415
  485. package/test/Sidenav.test.js +0 -45
  486. package/test/Slider.test.js +0 -74
  487. package/test/Spinner.test.js +0 -32
  488. package/test/Switch.test.js +0 -45
  489. package/test/Table.test.js +0 -36
  490. package/test/Tabs.test.js +0 -109
  491. package/test/Tag.test.js +0 -32
  492. package/test/TextInput.test.js +0 -732
  493. package/test/Textarea.test.js +0 -193
  494. package/test/ToggleGroup.test.js +0 -85
  495. package/test/Upload.test.js +0 -60
  496. package/test/V3Select.test.js +0 -212
  497. package/test/V3TextArea.test.js +0 -51
  498. package/test/Wizard.test.js +0 -130
  499. package/test/mocks/pngMock.js +0 -1
  500. package/test/mocks/svgMock.js +0 -1
  501. /package/{dist/common → common}/fonts/OpenSans-Bold.ttf +0 -0
  502. /package/{dist/common → common}/fonts/OpenSans-BoldItalic.ttf +0 -0
  503. /package/{dist/common → common}/fonts/OpenSans-ExtraBold.ttf +0 -0
  504. /package/{dist/common → common}/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  505. /package/{dist/common → common}/fonts/OpenSans-Italic.ttf +0 -0
  506. /package/{dist/common → common}/fonts/OpenSans-Light.ttf +0 -0
  507. /package/{dist/common → common}/fonts/OpenSans-LightItalic.ttf +0 -0
  508. /package/{dist/common → common}/fonts/OpenSans-Regular.ttf +0 -0
  509. /package/{dist/common → common}/fonts/OpenSans-SemiBold.ttf +0 -0
  510. /package/{dist/common → common}/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
@@ -0,0 +1,1353 @@
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
+ 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>;
1349
+ children: React.ReactNode;
1350
+ };
1351
+ declare const HalstackProvider: ({ theme, advancedTheme, labels, children }: HalstackProviderPropsType) => JSX.Element;
1352
+ export default HalstackContext;
1353
+ export { HalstackProvider, HalstackLanguageContext };