@dxc-technology/halstack-react 0.0.0-e33af28 → 0.0.0-e360842

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