@dxc-technology/halstack-react 0.0.0-b1729d7 → 0.0.0-b18ba60

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