@dxc-technology/halstack-react 0.0.0-f0f7913 → 0.0.0-f18281d

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