@dxc-technology/halstack-react 0.0.0-f64ebd5 → 0.0.0-f70a97e

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 (551) hide show
  1. package/BackgroundColorContext.d.ts +1 -0
  2. package/BackgroundColorContext.js +30 -0
  3. package/HalstackContext.d.ts +1249 -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 +159 -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 +121 -0
  56. package/button/Button.stories.tsx +326 -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/coreTokens.d.ts +237 -0
  79. package/common/coreTokens.js +184 -0
  80. package/common/utils.d.ts +1 -0
  81. package/common/utils.js +16 -0
  82. package/common/variables.d.ts +1395 -0
  83. package/common/variables.js +1267 -0
  84. package/container/Container.d.ts +4 -0
  85. package/container/Container.js +194 -0
  86. package/container/Container.stories.tsx +214 -0
  87. package/container/types.d.ts +74 -0
  88. package/container/types.js +5 -0
  89. package/contextual-menu/ContextualMenu.d.ts +7 -0
  90. package/contextual-menu/ContextualMenu.js +71 -0
  91. package/contextual-menu/ContextualMenu.stories.tsx +182 -0
  92. package/contextual-menu/ContextualMenu.test.js +71 -0
  93. package/contextual-menu/MenuItemAction.d.ts +4 -0
  94. package/contextual-menu/MenuItemAction.js +46 -0
  95. package/contextual-menu/types.d.ts +22 -0
  96. package/contextual-menu/types.js +5 -0
  97. package/date-input/Calendar.d.ts +4 -0
  98. package/date-input/Calendar.js +214 -0
  99. package/date-input/DateInput.d.ts +4 -0
  100. package/date-input/DateInput.js +223 -0
  101. package/date-input/DateInput.stories.tsx +285 -0
  102. package/date-input/DateInput.test.js +808 -0
  103. package/date-input/DatePicker.d.ts +4 -0
  104. package/date-input/DatePicker.js +115 -0
  105. package/date-input/Icons.d.ts +6 -0
  106. package/date-input/Icons.js +58 -0
  107. package/date-input/YearPicker.d.ts +4 -0
  108. package/date-input/YearPicker.js +100 -0
  109. package/date-input/types.d.ts +164 -0
  110. package/date-input/types.js +5 -0
  111. package/dialog/Dialog.d.ts +4 -0
  112. package/dialog/Dialog.js +104 -0
  113. package/dialog/Dialog.stories.tsx +365 -0
  114. package/dialog/Dialog.test.js +307 -0
  115. package/dialog/types.d.ts +36 -0
  116. package/dialog/types.js +5 -0
  117. package/divider/Divider.d.ts +4 -0
  118. package/divider/Divider.js +36 -0
  119. package/divider/Divider.stories.tsx +223 -0
  120. package/divider/Divider.test.js +38 -0
  121. package/divider/types.d.ts +19 -0
  122. package/divider/types.js +5 -0
  123. package/dropdown/Dropdown.d.ts +4 -0
  124. package/dropdown/Dropdown.js +336 -0
  125. package/dropdown/Dropdown.stories.tsx +438 -0
  126. package/dropdown/Dropdown.test.js +599 -0
  127. package/dropdown/DropdownMenu.d.ts +4 -0
  128. package/dropdown/DropdownMenu.js +63 -0
  129. package/dropdown/DropdownMenuItem.d.ts +4 -0
  130. package/dropdown/DropdownMenuItem.js +67 -0
  131. package/dropdown/types.d.ts +98 -0
  132. package/dropdown/types.js +5 -0
  133. package/file-input/FileInput.d.ts +4 -0
  134. package/file-input/FileInput.js +479 -0
  135. package/file-input/FileInput.stories.tsx +618 -0
  136. package/file-input/FileInput.test.js +459 -0
  137. package/file-input/FileItem.d.ts +4 -0
  138. package/file-input/FileItem.js +135 -0
  139. package/file-input/types.d.ts +129 -0
  140. package/file-input/types.js +5 -0
  141. package/flex/Flex.d.ts +4 -0
  142. package/flex/Flex.js +57 -0
  143. package/flex/Flex.stories.tsx +112 -0
  144. package/flex/types.d.ts +97 -0
  145. package/flex/types.js +5 -0
  146. package/footer/Footer.d.ts +4 -0
  147. package/footer/Footer.js +138 -0
  148. package/footer/Footer.stories.tsx +171 -0
  149. package/footer/Footer.test.js +85 -0
  150. package/footer/Icons.d.ts +3 -0
  151. package/footer/Icons.js +136 -0
  152. package/footer/types.d.ts +64 -0
  153. package/footer/types.js +5 -0
  154. package/grid/Grid.d.ts +7 -0
  155. package/grid/Grid.js +76 -0
  156. package/grid/Grid.stories.tsx +219 -0
  157. package/grid/types.d.ts +115 -0
  158. package/grid/types.js +5 -0
  159. package/header/Header.d.ts +8 -0
  160. package/header/Header.js +220 -0
  161. package/header/Header.stories.tsx +251 -0
  162. package/header/Header.test.js +66 -0
  163. package/header/Icons.d.ts +2 -0
  164. package/header/Icons.js +29 -0
  165. package/header/types.d.ts +33 -0
  166. package/header/types.js +5 -0
  167. package/heading/Heading.d.ts +4 -0
  168. package/heading/Heading.js +137 -0
  169. package/heading/Heading.stories.tsx +54 -0
  170. package/heading/Heading.test.js +169 -0
  171. package/heading/types.d.ts +33 -0
  172. package/heading/types.js +5 -0
  173. package/icon/Icon.d.ts +4 -0
  174. package/icon/Icon.js +33 -0
  175. package/icon/Icon.stories.tsx +26 -0
  176. package/icon/types.d.ts +4 -0
  177. package/icon/types.js +5 -0
  178. package/image/Image.d.ts +4 -0
  179. package/image/Image.js +70 -0
  180. package/image/Image.stories.tsx +129 -0
  181. package/image/types.d.ts +72 -0
  182. package/image/types.js +5 -0
  183. package/inset/Inset.d.ts +3 -0
  184. package/inset/Inset.js +43 -0
  185. package/inset/Inset.stories.tsx +230 -0
  186. package/inset/types.d.ts +37 -0
  187. package/inset/types.js +5 -0
  188. package/layout/ApplicationLayout.d.ts +20 -0
  189. package/layout/ApplicationLayout.js +134 -0
  190. package/layout/ApplicationLayout.stories.tsx +162 -0
  191. package/layout/Icons.d.ts +8 -0
  192. package/layout/Icons.js +58 -0
  193. package/layout/SidenavContext.d.ts +5 -0
  194. package/layout/SidenavContext.js +13 -0
  195. package/layout/types.d.ts +41 -0
  196. package/layout/types.js +5 -0
  197. package/link/Link.d.ts +4 -0
  198. package/link/Link.js +115 -0
  199. package/link/Link.stories.tsx +253 -0
  200. package/link/Link.test.js +63 -0
  201. package/link/types.d.ts +54 -0
  202. package/link/types.js +5 -0
  203. package/main.d.ts +49 -0
  204. package/main.js +357 -0
  205. package/nav-tabs/NavTabs.d.ts +8 -0
  206. package/nav-tabs/NavTabs.js +93 -0
  207. package/nav-tabs/NavTabs.stories.tsx +276 -0
  208. package/nav-tabs/NavTabs.test.js +76 -0
  209. package/nav-tabs/Tab.d.ts +4 -0
  210. package/nav-tabs/Tab.js +118 -0
  211. package/nav-tabs/types.d.ts +52 -0
  212. package/nav-tabs/types.js +5 -0
  213. package/number-input/NumberInput.d.ts +11 -0
  214. package/number-input/NumberInput.js +86 -0
  215. package/number-input/NumberInput.stories.tsx +131 -0
  216. package/number-input/NumberInput.test.js +989 -0
  217. package/number-input/types.d.ts +130 -0
  218. package/number-input/types.js +5 -0
  219. package/package.json +60 -44
  220. package/paginator/Icons.d.ts +5 -0
  221. package/paginator/Icons.js +40 -0
  222. package/paginator/Paginator.d.ts +4 -0
  223. package/paginator/Paginator.js +135 -0
  224. package/paginator/Paginator.stories.tsx +87 -0
  225. package/paginator/Paginator.test.js +335 -0
  226. package/paginator/types.d.ts +38 -0
  227. package/paginator/types.js +5 -0
  228. package/paragraph/Paragraph.d.ts +5 -0
  229. package/paragraph/Paragraph.js +22 -0
  230. package/paragraph/Paragraph.stories.tsx +27 -0
  231. package/password-input/Icons.d.ts +6 -0
  232. package/password-input/Icons.js +35 -0
  233. package/password-input/PasswordInput.d.ts +4 -0
  234. package/password-input/PasswordInput.js +97 -0
  235. package/password-input/PasswordInput.stories.tsx +99 -0
  236. package/password-input/PasswordInput.test.js +198 -0
  237. package/password-input/types.d.ts +111 -0
  238. package/password-input/types.js +5 -0
  239. package/progress-bar/ProgressBar.d.ts +4 -0
  240. package/progress-bar/ProgressBar.js +144 -0
  241. package/progress-bar/ProgressBar.stories.tsx +93 -0
  242. package/progress-bar/ProgressBar.test.js +93 -0
  243. package/progress-bar/types.d.ts +37 -0
  244. package/progress-bar/types.js +5 -0
  245. package/quick-nav/QuickNav.d.ts +4 -0
  246. package/quick-nav/QuickNav.js +94 -0
  247. package/quick-nav/QuickNav.stories.tsx +356 -0
  248. package/quick-nav/types.d.ts +21 -0
  249. package/quick-nav/types.js +5 -0
  250. package/radio-group/Radio.d.ts +4 -0
  251. package/radio-group/Radio.js +124 -0
  252. package/radio-group/RadioGroup.d.ts +4 -0
  253. package/radio-group/RadioGroup.js +235 -0
  254. package/radio-group/RadioGroup.stories.tsx +214 -0
  255. package/radio-group/RadioGroup.test.js +756 -0
  256. package/radio-group/types.d.ts +114 -0
  257. package/radio-group/types.js +5 -0
  258. package/resultset-table/Icons.d.ts +7 -0
  259. package/resultset-table/Icons.js +47 -0
  260. package/resultset-table/ResultsetTable.d.ts +7 -0
  261. package/resultset-table/ResultsetTable.js +166 -0
  262. package/resultset-table/ResultsetTable.stories.tsx +397 -0
  263. package/resultset-table/ResultsetTable.test.js +371 -0
  264. package/resultset-table/types.d.ts +73 -0
  265. package/resultset-table/types.js +5 -0
  266. package/select/Icons.d.ts +10 -0
  267. package/select/Icons.js +89 -0
  268. package/select/Listbox.d.ts +4 -0
  269. package/select/Listbox.js +143 -0
  270. package/select/Option.d.ts +4 -0
  271. package/select/Option.js +87 -0
  272. package/select/Select.d.ts +4 -0
  273. package/select/Select.js +590 -0
  274. package/select/Select.stories.tsx +971 -0
  275. package/select/Select.test.js +2370 -0
  276. package/select/types.d.ts +209 -0
  277. package/select/types.js +5 -0
  278. package/sidenav/Icons.d.ts +7 -0
  279. package/sidenav/Icons.js +47 -0
  280. package/sidenav/Sidenav.d.ts +10 -0
  281. package/sidenav/Sidenav.js +197 -0
  282. package/sidenav/Sidenav.stories.tsx +282 -0
  283. package/sidenav/Sidenav.test.js +37 -0
  284. package/sidenav/types.d.ts +76 -0
  285. package/sidenav/types.js +5 -0
  286. package/slider/Slider.d.ts +4 -0
  287. package/slider/Slider.js +285 -0
  288. package/slider/Slider.test.js +254 -0
  289. package/slider/types.d.ts +86 -0
  290. package/slider/types.js +5 -0
  291. package/spinner/Spinner.d.ts +4 -0
  292. package/spinner/Spinner.js +206 -0
  293. package/spinner/Spinner.stories.tsx +129 -0
  294. package/spinner/Spinner.test.js +55 -0
  295. package/spinner/types.d.ts +32 -0
  296. package/spinner/types.js +5 -0
  297. package/status-light/StatusLight.d.ts +4 -0
  298. package/status-light/StatusLight.js +51 -0
  299. package/status-light/StatusLight.stories.tsx +74 -0
  300. package/status-light/StatusLight.test.js +25 -0
  301. package/status-light/types.d.ts +17 -0
  302. package/status-light/types.js +5 -0
  303. package/switch/Switch.d.ts +4 -0
  304. package/switch/Switch.js +214 -0
  305. package/switch/Switch.stories.tsx +137 -0
  306. package/switch/Switch.test.js +180 -0
  307. package/switch/types.d.ts +66 -0
  308. package/switch/types.js +5 -0
  309. package/table/DropdownTheme.js +62 -0
  310. package/table/Table.d.ts +8 -0
  311. package/table/Table.js +170 -0
  312. package/table/Table.stories.tsx +658 -0
  313. package/table/Table.test.js +113 -0
  314. package/table/types.d.ts +63 -0
  315. package/table/types.js +5 -0
  316. package/tabs/Tab.d.ts +4 -0
  317. package/tabs/Tab.js +116 -0
  318. package/tabs/Tabs.d.ts +4 -0
  319. package/tabs/Tabs.js +384 -0
  320. package/tabs/Tabs.stories.tsx +226 -0
  321. package/tabs/Tabs.test.js +294 -0
  322. package/tabs/types.d.ts +92 -0
  323. package/tabs/types.js +5 -0
  324. package/tag/Tag.d.ts +4 -0
  325. package/tag/Tag.js +151 -0
  326. package/tag/Tag.stories.tsx +155 -0
  327. package/tag/Tag.test.js +49 -0
  328. package/tag/types.d.ts +69 -0
  329. package/tag/types.js +5 -0
  330. package/text-input/Icons.d.ts +8 -0
  331. package/text-input/Icons.js +56 -0
  332. package/text-input/Suggestion.d.ts +4 -0
  333. package/text-input/Suggestion.js +67 -0
  334. package/text-input/Suggestions.d.ts +4 -0
  335. package/text-input/Suggestions.js +84 -0
  336. package/text-input/TextInput.d.ts +4 -0
  337. package/text-input/TextInput.js +565 -0
  338. package/text-input/TextInput.stories.tsx +465 -0
  339. package/text-input/TextInput.test.js +1756 -0
  340. package/text-input/types.d.ts +205 -0
  341. package/text-input/types.js +5 -0
  342. package/textarea/Textarea.d.ts +4 -0
  343. package/textarea/Textarea.js +234 -0
  344. package/textarea/Textarea.stories.tsx +174 -0
  345. package/textarea/Textarea.test.js +406 -0
  346. package/textarea/types.d.ts +141 -0
  347. package/textarea/types.js +5 -0
  348. package/toggle-group/ToggleGroup.d.ts +4 -0
  349. package/toggle-group/ToggleGroup.js +201 -0
  350. package/toggle-group/ToggleGroup.stories.tsx +218 -0
  351. package/toggle-group/ToggleGroup.test.js +137 -0
  352. package/toggle-group/types.d.ts +114 -0
  353. package/toggle-group/types.js +5 -0
  354. package/typography/Typography.d.ts +4 -0
  355. package/typography/Typography.js +23 -0
  356. package/typography/Typography.stories.tsx +198 -0
  357. package/typography/types.d.ts +18 -0
  358. package/typography/types.js +5 -0
  359. package/useTheme.d.ts +1148 -0
  360. package/useTheme.js +15 -0
  361. package/useTranslatedLabels.d.ts +85 -0
  362. package/useTranslatedLabels.js +14 -0
  363. package/utils/BaseTypography.d.ts +21 -0
  364. package/utils/BaseTypography.js +94 -0
  365. package/utils/FocusLock.d.ts +13 -0
  366. package/utils/FocusLock.js +124 -0
  367. package/wizard/Wizard.d.ts +4 -0
  368. package/wizard/Wizard.js +250 -0
  369. package/wizard/Wizard.stories.tsx +253 -0
  370. package/wizard/Wizard.test.js +114 -0
  371. package/wizard/types.d.ts +64 -0
  372. package/wizard/types.js +5 -0
  373. package/babel.config.js +0 -4
  374. package/dist/ThemeContext.js +0 -15
  375. package/dist/accordion/Accordion.js +0 -242
  376. package/dist/accordion/Accordion.stories.js +0 -207
  377. package/dist/accordion/readme.md +0 -96
  378. package/dist/alert/Alert.js +0 -304
  379. package/dist/alert/Alert.stories.js +0 -158
  380. package/dist/alert/close.svg +0 -4
  381. package/dist/alert/error.svg +0 -4
  382. package/dist/alert/info.svg +0 -4
  383. package/dist/alert/readme.md +0 -43
  384. package/dist/alert/success.svg +0 -4
  385. package/dist/alert/warning.svg +0 -4
  386. package/dist/box/Box.js +0 -148
  387. package/dist/button/Button.js +0 -181
  388. package/dist/button/Button.stories.js +0 -224
  389. package/dist/button/readme.md +0 -93
  390. package/dist/card/Card.js +0 -217
  391. package/dist/checkbox/Checkbox.js +0 -224
  392. package/dist/checkbox/Checkbox.stories.js +0 -144
  393. package/dist/checkbox/readme.md +0 -116
  394. package/dist/chip/Chip.js +0 -173
  395. package/dist/common/OpenSans.css +0 -81
  396. package/dist/common/RequiredComponent.js +0 -46
  397. package/dist/common/fonts/OpenSans-Bold.ttf +0 -0
  398. package/dist/common/fonts/OpenSans-BoldItalic.ttf +0 -0
  399. package/dist/common/fonts/OpenSans-ExtraBold.ttf +0 -0
  400. package/dist/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  401. package/dist/common/fonts/OpenSans-Italic.ttf +0 -0
  402. package/dist/common/fonts/OpenSans-Light.ttf +0 -0
  403. package/dist/common/fonts/OpenSans-LightItalic.ttf +0 -0
  404. package/dist/common/fonts/OpenSans-Regular.ttf +0 -0
  405. package/dist/common/fonts/OpenSans-SemiBold.ttf +0 -0
  406. package/dist/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
  407. package/dist/common/services/example-service.js +0 -10
  408. package/dist/common/services/example-service.test.js +0 -12
  409. package/dist/common/utils.js +0 -42
  410. package/dist/common/variables.js +0 -400
  411. package/dist/date/Date.js +0 -357
  412. package/dist/date/Date.stories.js +0 -205
  413. package/dist/date/calendar.svg +0 -1
  414. package/dist/date/calendar_dark.svg +0 -1
  415. package/dist/date/readme.md +0 -73
  416. package/dist/dialog/Dialog.js +0 -197
  417. package/dist/dialog/Dialog.stories.js +0 -217
  418. package/dist/dialog/readme.md +0 -32
  419. package/dist/dropdown/Dropdown.js +0 -424
  420. package/dist/dropdown/Dropdown.stories.js +0 -249
  421. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  422. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  423. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  424. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  425. package/dist/dropdown/readme.md +0 -69
  426. package/dist/footer/Footer.js +0 -346
  427. package/dist/footer/Footer.stories.js +0 -94
  428. package/dist/footer/dxc_logo_wht.png +0 -0
  429. package/dist/footer/readme.md +0 -41
  430. package/dist/header/Header.js +0 -372
  431. package/dist/header/Header.stories.js +0 -176
  432. package/dist/header/close_icon.svg +0 -1
  433. package/dist/header/dxc_logo_black.png +0 -0
  434. package/dist/header/dxc_logo_white.png +0 -0
  435. package/dist/header/hamb_menu_black.svg +0 -1
  436. package/dist/header/hamb_menu_white.svg +0 -1
  437. package/dist/header/readme.md +0 -33
  438. package/dist/heading/Heading.js +0 -153
  439. package/dist/input-text/InputText.js +0 -519
  440. package/dist/input-text/InputText.stories.js +0 -209
  441. package/dist/input-text/error.svg +0 -1
  442. package/dist/input-text/readme.md +0 -91
  443. package/dist/link/Link.js +0 -136
  444. package/dist/link/readme.md +0 -51
  445. package/dist/main.js +0 -263
  446. package/dist/paginator/Paginator.js +0 -196
  447. package/dist/paginator/images/next.svg +0 -3
  448. package/dist/paginator/images/nextPage.svg +0 -3
  449. package/dist/paginator/images/previous.svg +0 -3
  450. package/dist/paginator/images/previousPage.svg +0 -3
  451. package/dist/paginator/readme.md +0 -50
  452. package/dist/progress-bar/ProgressBar.js +0 -185
  453. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  454. package/dist/progress-bar/readme.md +0 -63
  455. package/dist/radio/Radio.js +0 -187
  456. package/dist/radio/Radio.stories.js +0 -166
  457. package/dist/radio/readme.md +0 -70
  458. package/dist/resultsetTable/ResultsetTable.js +0 -333
  459. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  460. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  461. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  462. package/dist/select/Select.js +0 -445
  463. package/dist/select/Select.stories.js +0 -235
  464. package/dist/select/readme.md +0 -72
  465. package/dist/sidenav/Sidenav.js +0 -236
  466. package/dist/sidenav/arrow_icon.svg +0 -3
  467. package/dist/slider/Slider.js +0 -258
  468. package/dist/slider/Slider.stories.js +0 -241
  469. package/dist/slider/readme.md +0 -64
  470. package/dist/spinner/Spinner.js +0 -193
  471. package/dist/spinner/Spinner.stories.js +0 -183
  472. package/dist/spinner/readme.md +0 -65
  473. package/dist/switch/Switch.js +0 -199
  474. package/dist/switch/Switch.stories.js +0 -134
  475. package/dist/switch/readme.md +0 -133
  476. package/dist/table/Table.js +0 -87
  477. package/dist/tabs/Tabs.js +0 -172
  478. package/dist/tabs/Tabs.stories.js +0 -130
  479. package/dist/tabs/readme.md +0 -78
  480. package/dist/tabs-for-sections/TabsForSections.js +0 -107
  481. package/dist/tabs-for-sections/readme.md +0 -78
  482. package/dist/tag/Tag.js +0 -217
  483. package/dist/textarea/Textarea.js +0 -227
  484. package/dist/toggle/Toggle.js +0 -223
  485. package/dist/toggle/Toggle.stories.js +0 -297
  486. package/dist/toggle/readme.md +0 -80
  487. package/dist/upload/Upload.js +0 -200
  488. package/dist/upload/Upload.stories.js +0 -72
  489. package/dist/upload/buttons-upload/ButtonsUpload.js +0 -122
  490. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  491. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  492. package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -279
  493. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  494. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  495. package/dist/upload/file-upload/FileToUpload.js +0 -158
  496. package/dist/upload/file-upload/audio-icon.svg +0 -4
  497. package/dist/upload/file-upload/close.svg +0 -4
  498. package/dist/upload/file-upload/file-icon.svg +0 -4
  499. package/dist/upload/file-upload/video-icon.svg +0 -4
  500. package/dist/upload/files-upload/FilesToUpload.js +0 -123
  501. package/dist/upload/readme.md +0 -37
  502. package/dist/upload/transaction/Transaction.js +0 -155
  503. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  504. package/dist/upload/transaction/audio-icon.svg +0 -4
  505. package/dist/upload/transaction/error-icon.svg +0 -4
  506. package/dist/upload/transaction/file-icon-err.svg +0 -4
  507. package/dist/upload/transaction/file-icon.svg +0 -4
  508. package/dist/upload/transaction/image-icon-err.svg +0 -4
  509. package/dist/upload/transaction/image-icon.svg +0 -4
  510. package/dist/upload/transaction/success-icon.svg +0 -4
  511. package/dist/upload/transaction/video-icon-err.svg +0 -4
  512. package/dist/upload/transaction/video-icon.svg +0 -4
  513. package/dist/upload/transactions/Transactions.js +0 -120
  514. package/dist/wizard/Wizard.js +0 -327
  515. package/dist/wizard/invalid_icon.svg +0 -6
  516. package/dist/wizard/valid_icon.svg +0 -6
  517. package/dist/wizard/validation-wrong.svg +0 -6
  518. package/test/Accordion.test.js +0 -33
  519. package/test/Alert.test.js +0 -53
  520. package/test/Box.test.js +0 -10
  521. package/test/Button.test.js +0 -18
  522. package/test/Card.test.js +0 -30
  523. package/test/Checkbox.test.js +0 -45
  524. package/test/Chip.test.js +0 -25
  525. package/test/Date.test.js +0 -393
  526. package/test/Dialog.test.js +0 -23
  527. package/test/Dropdown.test.js +0 -130
  528. package/test/Footer.test.js +0 -99
  529. package/test/Header.test.js +0 -39
  530. package/test/Heading.test.js +0 -35
  531. package/test/InputText.test.js +0 -236
  532. package/test/Link.test.js +0 -25
  533. package/test/Paginator.test.js +0 -165
  534. package/test/ProgressBar.test.js +0 -35
  535. package/test/Radio.test.js +0 -37
  536. package/test/ResultsetTable.test.js +0 -282
  537. package/test/Select.test.js +0 -191
  538. package/test/Sidenav.test.js +0 -87
  539. package/test/Slider.test.js +0 -65
  540. package/test/Spinner.test.js +0 -27
  541. package/test/Switch.test.js +0 -45
  542. package/test/Table.test.js +0 -36
  543. package/test/Tabs.test.js +0 -88
  544. package/test/TabsForSections.test.js +0 -34
  545. package/test/Tag.test.js +0 -32
  546. package/test/TextArea.test.js +0 -52
  547. package/test/Toggle.test.js +0 -43
  548. package/test/Upload.test.js +0 -60
  549. package/test/Wizard.test.js +0 -130
  550. package/test/mocks/pngMock.js +0 -1
  551. package/test/mocks/svgMock.js +0 -1
@@ -0,0 +1,1249 @@
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
+ iconMarginRight: 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
+ dataPaddingTopReduced: string;
858
+ dataPaddingBottomReduced: string;
859
+ dataPaddingRightReduced: string;
860
+ dataPaddingLeftReduced: string;
861
+ dataTextAlign: string;
862
+ dataTextLineHeight: string;
863
+ firstChildPaddingLeft: string;
864
+ lastChildPaddingRight: string;
865
+ firstChildPaddingLeftReduced: string;
866
+ lastChildPaddingRightReduced: string;
867
+ headerBackgroundColor: string;
868
+ headerBorderRadius: string;
869
+ headerFontFamily: string;
870
+ headerFontSize: string;
871
+ headerFontStyle: string;
872
+ headerFontWeight: string;
873
+ headerFontColor: string;
874
+ headerFontTextTransform: string;
875
+ headerPaddingTop: string;
876
+ headerPaddingBottom: string;
877
+ headerPaddingRight: string;
878
+ headerPaddingLeft: string;
879
+ headerPaddingTopReduced: string;
880
+ headerPaddingBottomReduced: string;
881
+ headerPaddingRightReduced: string;
882
+ headerPaddingLeftReduced: string;
883
+ headerTextAlign: string;
884
+ headerTextLineHeight: string;
885
+ scrollBarThumbColor: string;
886
+ scrollBarTrackColor: string;
887
+ sortIconColor: string;
888
+ actionIconColor: string;
889
+ disabledActionIconColor: string;
890
+ hoverActionIconColor: string;
891
+ focusActionIconColor: string;
892
+ activeActionIconColor: string;
893
+ actionBackgroundColor: string;
894
+ disabledActionBackgroundColor: string;
895
+ hoverActionBackgroundColor: string;
896
+ focusActionBorderColor: string;
897
+ activeActionBackgroundColor: string;
898
+ };
899
+ tabs: {
900
+ fontFamily: string;
901
+ fontSize: string;
902
+ fontStyle: string;
903
+ fontWeight: string;
904
+ fontTextTransform: string;
905
+ selectedBackgroundColor: string;
906
+ selectedFontColor: string;
907
+ selectedIconColor: string;
908
+ selectedUnderlineColor: string;
909
+ selectedUnderlineThickness: string;
910
+ unselectedBackgroundColor: string;
911
+ unselectedFontColor: string;
912
+ unselectedIconColor: string;
913
+ disabledFontColor: string;
914
+ disabledIconColor: string;
915
+ disabledFontStyle: string;
916
+ hoverBackgroundColor: string;
917
+ pressedBackgroundColor: string;
918
+ pressedFontWeight: string;
919
+ dividerColor: string;
920
+ dividerThickness: string;
921
+ focusOutline: string;
922
+ scrollButtonsWidth: string;
923
+ };
924
+ tag: {
925
+ fontFamily: string;
926
+ fontColor: string;
927
+ fontSize: string;
928
+ fontStyle: string;
929
+ fontWeight: string;
930
+ labelPaddingTop: string;
931
+ labelPaddingBottom: string;
932
+ labelPaddingLeft: string;
933
+ labelPaddingRight: string;
934
+ height: string;
935
+ iconColor: string;
936
+ iconSectionWidth: string;
937
+ iconHeight: string;
938
+ iconWidth: string;
939
+ focusColor: string;
940
+ };
941
+ textarea: {
942
+ fontFamily: string;
943
+ enabledBorderColor: string;
944
+ hoverBorderColor: string;
945
+ focusBorderColor: string;
946
+ disabledBorderColor: string;
947
+ disabledContainerFillColor: string;
948
+ readOnlyBorderColor: string;
949
+ hoverReadOnlyBorderColor: string;
950
+ errorBorderColor: string;
951
+ hoverErrorBorderColor: string;
952
+ inputMarginTop: string;
953
+ inputMarginBottom: string;
954
+ errorMessageColor: string;
955
+ labelFontColor: string;
956
+ labelFontSize: string;
957
+ labelFontStyle: string;
958
+ labelFontWeight: string;
959
+ labelLineHeight: string;
960
+ disabledLabelFontColor: string;
961
+ optionalLabelFontWeight: string;
962
+ helperTextFontColor: string;
963
+ helperTextFontSize: string;
964
+ helperTextFontStyle: string;
965
+ helperTextFontWeight: string;
966
+ helperTextLineHeight: string;
967
+ disabledHelperTextFontColor: string;
968
+ placeholderFontColor: string;
969
+ disabledPlaceholderFontColor: string;
970
+ valueFontColor: string;
971
+ valueFontSize: string;
972
+ valueFontStyle: string;
973
+ valueFontWeight: string;
974
+ disabledValueFontColor: string;
975
+ };
976
+ textInput: {
977
+ fontFamily: string;
978
+ enabledBorderColor: string;
979
+ hoverBorderColor: string;
980
+ focusBorderColor: string;
981
+ disabledBorderColor: string;
982
+ disabledContainerFillColor: string;
983
+ readOnlyBorderColor: string;
984
+ hoverReadOnlyBorderColor: string;
985
+ errorBorderColor: string;
986
+ hoverErrorBorderColor: string;
987
+ inputMarginTop: string;
988
+ inputMarginBottom: string;
989
+ errorMessageColor: string;
990
+ errorIconColor: string;
991
+ labelFontColor: string;
992
+ labelFontSize: string;
993
+ labelFontStyle: string;
994
+ labelFontWeight: string;
995
+ labelLineHeight: string;
996
+ disabledLabelFontColor: string;
997
+ optionalLabelFontWeight: string;
998
+ helperTextFontColor: string;
999
+ helperTextFontSize: string;
1000
+ helperTextFontStyle: string;
1001
+ helperTextFontWeight: string;
1002
+ helperTextLineHeight: string;
1003
+ disabledHelperTextFontColor: string;
1004
+ prefixColor: string;
1005
+ suffixColor: string;
1006
+ disabledPrefixColor: string;
1007
+ disabledSuffixColor: string;
1008
+ placeholderFontColor: string;
1009
+ disabledPlaceholderFontColor: string;
1010
+ valueFontColor: string;
1011
+ valueFontSize: string;
1012
+ valueFontStyle: string;
1013
+ valueFontWeight: string;
1014
+ disabledValueFontColor: string;
1015
+ actionIconColor: string;
1016
+ disabledActionIconColor: string;
1017
+ hoverActionIconColor: string;
1018
+ focusActionIconColor: string;
1019
+ activeActionIconColor: string;
1020
+ actionBackgroundColor: string;
1021
+ disabledActionBackgroundColor: string;
1022
+ hoverActionBackgroundColor: string;
1023
+ focusActionBorderColor: string;
1024
+ activeActionBackgroundColor: string;
1025
+ listDialogBackgroundColor: string;
1026
+ listDialogBorderColor: string;
1027
+ listOptionDividerColor: string;
1028
+ listOptionFontColor: string;
1029
+ listOptionFontSize: string;
1030
+ listOptionFontStyle: string;
1031
+ listOptionFontWeight: string;
1032
+ systemMessageFontColor: string;
1033
+ errorListDialogFontColor: string;
1034
+ errorListDialogBackgroundColor: string;
1035
+ errorListDialogBorderColor: string;
1036
+ hoverListOptionBackgroundColor: string;
1037
+ activeListOptionBackgroundColor: string;
1038
+ focusListOptionBorderColor: string;
1039
+ };
1040
+ toggleGroup: {
1041
+ containerBackgroundColor: string;
1042
+ containerBorderColor: string;
1043
+ labelFontColor: string;
1044
+ disabledLabelFontColor: string;
1045
+ helperTextFontColor: string;
1046
+ disabledHelperTextFontcolor: string;
1047
+ unselectedBackgroundColor: string;
1048
+ unselectedHoverBackgroundColor: string;
1049
+ unselectedActiveBackgroundColor: string;
1050
+ unselectedDisabledBackgroundColor: string;
1051
+ unselectedFontColor: string;
1052
+ unselectedDisabledFontColor: string;
1053
+ selectedBackgroundColor: string;
1054
+ selectedHoverBackgroundColor: string;
1055
+ selectedActiveBackgroundColor: string;
1056
+ selectedDisabledBackgroundColor: string;
1057
+ selectedFontColor: string;
1058
+ selectedDisabledFontColor: string;
1059
+ focusColor: string;
1060
+ labelFontFamily: string;
1061
+ labelFontSize: string;
1062
+ labelFontStyle: string;
1063
+ labelFontWeight: string;
1064
+ labelLineHeight: string;
1065
+ helperTextFontFamily: string;
1066
+ helperTextFontSize: string;
1067
+ helperTextFontStyle: string;
1068
+ helperTextFontWeight: string;
1069
+ helperTextLineHeight: string;
1070
+ optionLabelFontFamily: string;
1071
+ optionLabelFontSize: string;
1072
+ optionLabelFontStyle: string;
1073
+ optionLabelFontWeight: string;
1074
+ iconPaddingRight: string;
1075
+ iconPaddingLeft: string;
1076
+ labelPaddingLeft: string;
1077
+ labelPaddingRight: string;
1078
+ iconMarginRight: string;
1079
+ containerMarginTop: string;
1080
+ optionBorderThickness: string;
1081
+ optionBorderStyle: string;
1082
+ optionBorderRadius: string;
1083
+ containerBorderThickness: string;
1084
+ containerBorderStyle: string;
1085
+ containerBorderRadius: string;
1086
+ optionFocusBorderThickness: string;
1087
+ };
1088
+ wizard: {
1089
+ visitedStepFontColor: string;
1090
+ visitedStepBackgroundColor: string;
1091
+ visitedStepBorderColor: string;
1092
+ unvisitedStepFontColor: string;
1093
+ unvisitedLabelFontColor: string;
1094
+ unvisitedHelperTextFontColor: string;
1095
+ unvisitedStepBackgroundColor: string;
1096
+ unvisitedStepBorderColor: string;
1097
+ selectedStepFontColor: string;
1098
+ selectedStepBackgroundColor: string;
1099
+ selectedStepBorderColor: string;
1100
+ selectedLabelFontColor: string;
1101
+ selectedHelperTextFontColor: string;
1102
+ selectedStepWidth: string;
1103
+ selectedStepHeight: string;
1104
+ selectedStepBorderThickness: string;
1105
+ selectedStepBorderStyle: string;
1106
+ selectedStepBorderRadius: string;
1107
+ stepFontSize: string;
1108
+ stepFontFamily: string;
1109
+ stepFontStyle: string;
1110
+ stepFontWeight: string;
1111
+ stepFontTracking: string;
1112
+ stepIconSize: string;
1113
+ stepWidth: string;
1114
+ stepHeight: string;
1115
+ stepBorderThickness: string;
1116
+ stepBorderStyle: string;
1117
+ stepBorderRadius: string;
1118
+ visitedLabelFontColor: string;
1119
+ labelFontSize: string;
1120
+ labelFontFamily: string;
1121
+ labelFontStyle: string;
1122
+ labelFontWeight: string;
1123
+ labelFontTracking: string;
1124
+ labelFontTextTransform: string;
1125
+ labelTextAlign: string;
1126
+ helperTextFontSize: string;
1127
+ helperTextFontFamily: string;
1128
+ helperTextFontStyle: string;
1129
+ helperTextFontWeight: string;
1130
+ helperTextFontTracking: string;
1131
+ helperTextFontTextTransform: string;
1132
+ visitedHelperTextFontColor: string;
1133
+ helperTextTextAlign: string;
1134
+ disabledStepBackgroundColor: string;
1135
+ disabledStepFontColor: string;
1136
+ disabledLabelFontColor: string;
1137
+ disabledHelperTextFontColor: string;
1138
+ disabledStepBorderColor: string;
1139
+ disabledStepWidth: string;
1140
+ disabledStepHeight: string;
1141
+ disabledStepBorderThickness: string;
1142
+ disabledStepBorderStyle: string;
1143
+ disabledStepBorderRadius: string;
1144
+ separatorBorderThickness: string;
1145
+ separatorBorderStyle: string;
1146
+ separatorColor: string;
1147
+ focusColor: string;
1148
+ };
1149
+ }>>;
1150
+ declare const HalstackLanguageContext: React.Context<DeepPartial<{
1151
+ formFields: {
1152
+ optionalLabel: string;
1153
+ requiredSelectionErrorMessage: string;
1154
+ requiredValueErrorMessage: string;
1155
+ formatRequestedErrorMessage: string;
1156
+ lengthErrorMessage: (minLength?: number, maxLength?: number) => string;
1157
+ logoAlternativeText: string;
1158
+ };
1159
+ applicationLayout: {
1160
+ visibilityToggleTitle: string;
1161
+ };
1162
+ alert: {
1163
+ infoTitleText: string;
1164
+ successTitleText: string;
1165
+ warningTitleText: string;
1166
+ errorTitleText: string;
1167
+ };
1168
+ dateInput: {
1169
+ invalidDateErrorMessage: string;
1170
+ };
1171
+ dialog: {
1172
+ closeIconAriaLabel: string;
1173
+ };
1174
+ fileInput: {
1175
+ fileSizeGreaterThanErrorMessage: string;
1176
+ fileSizeLessThanErrorMessage: string;
1177
+ multipleButtonLabelDefault: string;
1178
+ singleButtonLabelDefault: string;
1179
+ dropAreaButtonLabelDefault: string;
1180
+ multipleDropAreaLabelDefault: string;
1181
+ singleDropAreaLabelDefault: string;
1182
+ deleteFileActionTitle: string;
1183
+ };
1184
+ footer: {
1185
+ copyrightText: (year: number) => string;
1186
+ };
1187
+ header: {
1188
+ closeIcon: string;
1189
+ hamburguerTitle: string;
1190
+ };
1191
+ numberInput: {
1192
+ valueGreaterThanOrEqualToErrorMessage: (value: number) => string;
1193
+ valueLessThanOrEqualToErrorMessage: (value: number) => string;
1194
+ decrementValueTitle: string;
1195
+ incrementValueTitle: string;
1196
+ };
1197
+ paginator: {
1198
+ itemsPerPageText: string;
1199
+ minToMaxOfText: (minNumberOfItems: number, maxNumberOfItems: number, totalItems: number) => string;
1200
+ goToPageText: string;
1201
+ pageOfText: (pageNumber: number, totalPagesNumber: number) => string;
1202
+ };
1203
+ passwordInput: {
1204
+ inputShowPasswordTitle: string;
1205
+ inputHidePasswordTitle: string;
1206
+ };
1207
+ quickNav: {
1208
+ contentTitle: string;
1209
+ };
1210
+ radioGroup: {
1211
+ optionalItemLabelDefault: string;
1212
+ };
1213
+ select: {
1214
+ noMatchesErrorMessage: string;
1215
+ actionClearSelectionTitle: string;
1216
+ actionClearSearchTitle: string;
1217
+ };
1218
+ tabs: {
1219
+ scrollLeft: string;
1220
+ scrollRight: string;
1221
+ };
1222
+ textInput: {
1223
+ clearFieldActionTitle: string;
1224
+ searchingMessage: string;
1225
+ fetchingDataErrorMessage: string;
1226
+ };
1227
+ calendar: {
1228
+ daysShort: string[];
1229
+ months: string[];
1230
+ previousMonthTitle: string;
1231
+ nextMonthTitle: string;
1232
+ };
1233
+ }>>;
1234
+ /**
1235
+ * This type is used to allow partial themes and labels objects to be passed to the HalstackProvider.
1236
+ * This is an extension of the already existing Partial type, which only allows one level of partiality.
1237
+ */
1238
+ type DeepPartial<T> = {
1239
+ [P in keyof T]?: Partial<T[P]>;
1240
+ };
1241
+ type HalstackProviderPropsType = {
1242
+ theme?: DeepPartial<OpinionatedTheme>;
1243
+ advancedTheme?: DeepPartial<AdvancedTheme>;
1244
+ labels?: DeepPartial<TranslatedLabels>;
1245
+ children: React.ReactNode;
1246
+ };
1247
+ declare const HalstackProvider: ({ theme, advancedTheme, labels, children }: HalstackProviderPropsType) => JSX.Element;
1248
+ export default HalstackContext;
1249
+ export { HalstackProvider, HalstackLanguageContext };