@dxc-technology/halstack-react 0.0.0-bd24f1d → 0.0.0-bd47c58

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 (516) hide show
  1. package/BackgroundColorContext.d.ts +10 -0
  2. package/BackgroundColorContext.js +47 -0
  3. package/HalstackContext.d.ts +1344 -0
  4. package/HalstackContext.js +335 -0
  5. package/README.md +28 -47
  6. package/accordion/Accordion.d.ts +4 -0
  7. package/accordion/Accordion.js +222 -0
  8. package/accordion/Accordion.stories.tsx +297 -0
  9. package/accordion/Accordion.test.js +71 -0
  10. package/accordion/types.d.ts +57 -0
  11. package/accordion/types.js +5 -0
  12. package/accordion-group/AccordionGroup.d.ts +8 -0
  13. package/accordion-group/AccordionGroup.js +128 -0
  14. package/accordion-group/AccordionGroup.stories.tsx +252 -0
  15. package/accordion-group/AccordionGroup.test.js +116 -0
  16. package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
  17. package/accordion-group/AccordionGroupAccordion.js +43 -0
  18. package/accordion-group/types.d.ts +67 -0
  19. package/accordion-group/types.js +5 -0
  20. package/alert/Alert.d.ts +4 -0
  21. package/{dist/alert → alert}/Alert.js +49 -163
  22. package/alert/Alert.stories.tsx +198 -0
  23. package/alert/Alert.test.js +92 -0
  24. package/alert/types.d.ts +49 -0
  25. package/alert/types.js +5 -0
  26. package/badge/Badge.d.ts +4 -0
  27. package/badge/Badge.js +61 -0
  28. package/badge/types.d.ts +5 -0
  29. package/badge/types.js +5 -0
  30. package/bleed/Bleed.d.ts +3 -0
  31. package/bleed/Bleed.js +51 -0
  32. package/bleed/Bleed.stories.tsx +342 -0
  33. package/bleed/types.d.ts +37 -0
  34. package/bleed/types.js +5 -0
  35. package/box/Box.d.ts +4 -0
  36. package/box/Box.js +97 -0
  37. package/box/Box.stories.tsx +119 -0
  38. package/box/Box.test.js +18 -0
  39. package/box/types.d.ts +32 -0
  40. package/box/types.js +5 -0
  41. package/bulleted-list/BulletedList.d.ts +7 -0
  42. package/bulleted-list/BulletedList.js +125 -0
  43. package/bulleted-list/BulletedList.stories.tsx +206 -0
  44. package/bulleted-list/types.d.ts +38 -0
  45. package/bulleted-list/types.js +5 -0
  46. package/button/Button.d.ts +4 -0
  47. package/button/Button.js +144 -0
  48. package/button/Button.stories.tsx +425 -0
  49. package/button/Button.test.js +46 -0
  50. package/button/types.d.ts +57 -0
  51. package/button/types.js +5 -0
  52. package/card/Card.d.ts +4 -0
  53. package/card/Card.js +143 -0
  54. package/card/Card.stories.tsx +171 -0
  55. package/card/Card.test.js +50 -0
  56. package/card/types.d.ts +62 -0
  57. package/card/types.js +5 -0
  58. package/checkbox/Checkbox.d.ts +4 -0
  59. package/checkbox/Checkbox.js +250 -0
  60. package/checkbox/Checkbox.stories.tsx +260 -0
  61. package/checkbox/Checkbox.test.js +155 -0
  62. package/checkbox/types.d.ts +68 -0
  63. package/checkbox/types.js +5 -0
  64. package/chip/Chip.d.ts +4 -0
  65. package/chip/Chip.js +140 -0
  66. package/chip/Chip.stories.tsx +214 -0
  67. package/chip/Chip.test.js +54 -0
  68. package/chip/types.d.ts +45 -0
  69. package/chip/types.js +5 -0
  70. package/common/OpenSans.css +69 -0
  71. package/common/coreTokens.d.ts +146 -0
  72. package/common/coreTokens.js +167 -0
  73. package/common/utils.d.ts +1 -0
  74. package/{dist/common → common}/utils.js +4 -4
  75. package/common/variables.d.ts +1490 -0
  76. package/common/variables.js +1369 -0
  77. package/date-input/Calendar.d.ts +4 -0
  78. package/date-input/Calendar.js +258 -0
  79. package/date-input/DateInput.d.ts +4 -0
  80. package/date-input/DateInput.js +269 -0
  81. package/date-input/DateInput.stories.tsx +304 -0
  82. package/date-input/DateInput.test.js +835 -0
  83. package/date-input/DatePicker.d.ts +4 -0
  84. package/date-input/DatePicker.js +146 -0
  85. package/date-input/Icons.d.ts +6 -0
  86. package/date-input/Icons.js +75 -0
  87. package/date-input/YearPicker.d.ts +4 -0
  88. package/date-input/YearPicker.js +126 -0
  89. package/date-input/types.d.ts +158 -0
  90. package/date-input/types.js +5 -0
  91. package/dialog/Dialog.d.ts +4 -0
  92. package/dialog/Dialog.js +131 -0
  93. package/dialog/Dialog.stories.tsx +195 -0
  94. package/dialog/Dialog.test.js +369 -0
  95. package/dialog/types.d.ts +31 -0
  96. package/dialog/types.js +5 -0
  97. package/dropdown/Dropdown.d.ts +4 -0
  98. package/dropdown/Dropdown.js +388 -0
  99. package/dropdown/Dropdown.stories.tsx +438 -0
  100. package/dropdown/Dropdown.test.js +586 -0
  101. package/dropdown/DropdownMenu.d.ts +4 -0
  102. package/dropdown/DropdownMenu.js +74 -0
  103. package/dropdown/DropdownMenuItem.d.ts +4 -0
  104. package/dropdown/DropdownMenuItem.js +79 -0
  105. package/dropdown/types.d.ts +100 -0
  106. package/dropdown/types.js +5 -0
  107. package/file-input/FileInput.d.ts +4 -0
  108. package/file-input/FileInput.js +547 -0
  109. package/file-input/FileInput.stories.tsx +618 -0
  110. package/file-input/FileInput.test.js +457 -0
  111. package/file-input/FileItem.d.ts +4 -0
  112. package/file-input/FileItem.js +162 -0
  113. package/file-input/types.d.ts +129 -0
  114. package/file-input/types.js +5 -0
  115. package/flex/Flex.d.ts +4 -0
  116. package/flex/Flex.js +71 -0
  117. package/flex/Flex.stories.tsx +112 -0
  118. package/flex/types.d.ts +97 -0
  119. package/flex/types.js +5 -0
  120. package/footer/Footer.d.ts +4 -0
  121. package/footer/Footer.js +165 -0
  122. package/footer/Footer.stories.tsx +151 -0
  123. package/footer/Footer.test.js +99 -0
  124. package/footer/Icons.d.ts +2 -0
  125. package/footer/Icons.js +77 -0
  126. package/footer/types.d.ts +64 -0
  127. package/footer/types.js +5 -0
  128. package/grid/Grid.d.ts +7 -0
  129. package/grid/Grid.js +91 -0
  130. package/grid/Grid.stories.tsx +219 -0
  131. package/grid/types.d.ts +115 -0
  132. package/grid/types.js +5 -0
  133. package/header/Header.d.ts +8 -0
  134. package/header/Header.js +276 -0
  135. package/header/Header.stories.tsx +251 -0
  136. package/header/Header.test.js +79 -0
  137. package/header/Icons.d.ts +2 -0
  138. package/header/Icons.js +34 -0
  139. package/header/types.d.ts +34 -0
  140. package/header/types.js +5 -0
  141. package/heading/Heading.d.ts +4 -0
  142. package/{dist/heading → heading}/Heading.js +32 -91
  143. package/heading/Heading.stories.tsx +54 -0
  144. package/heading/Heading.test.js +186 -0
  145. package/heading/types.d.ts +33 -0
  146. package/heading/types.js +5 -0
  147. package/image/Image.d.ts +4 -0
  148. package/image/Image.js +85 -0
  149. package/image/Image.stories.tsx +127 -0
  150. package/image/types.d.ts +72 -0
  151. package/image/types.js +5 -0
  152. package/inset/Inset.d.ts +3 -0
  153. package/inset/Inset.js +51 -0
  154. package/inset/Inset.stories.tsx +230 -0
  155. package/inset/types.d.ts +37 -0
  156. package/inset/types.js +5 -0
  157. package/layout/ApplicationLayout.d.ts +20 -0
  158. package/layout/ApplicationLayout.js +174 -0
  159. package/layout/ApplicationLayout.stories.tsx +162 -0
  160. package/layout/Icons.d.ts +5 -0
  161. package/layout/Icons.js +66 -0
  162. package/layout/SidenavContext.d.ts +5 -0
  163. package/layout/SidenavContext.js +19 -0
  164. package/layout/types.d.ts +41 -0
  165. package/layout/types.js +5 -0
  166. package/link/Link.d.ts +4 -0
  167. package/link/Link.js +136 -0
  168. package/link/Link.stories.tsx +253 -0
  169. package/link/Link.test.js +81 -0
  170. package/link/types.d.ts +54 -0
  171. package/link/types.js +5 -0
  172. package/main.d.ts +46 -0
  173. package/{dist/main.js → main.js} +143 -109
  174. package/nav-tabs/NavTabs.d.ts +8 -0
  175. package/nav-tabs/NavTabs.js +122 -0
  176. package/nav-tabs/NavTabs.stories.tsx +274 -0
  177. package/nav-tabs/NavTabs.test.js +82 -0
  178. package/nav-tabs/Tab.d.ts +4 -0
  179. package/nav-tabs/Tab.js +146 -0
  180. package/nav-tabs/types.d.ts +52 -0
  181. package/nav-tabs/types.js +5 -0
  182. package/number-input/NumberInput.d.ts +11 -0
  183. package/number-input/NumberInput.js +78 -0
  184. package/number-input/NumberInput.stories.tsx +115 -0
  185. package/number-input/NumberInput.test.js +725 -0
  186. package/number-input/types.d.ts +124 -0
  187. package/number-input/types.js +5 -0
  188. package/package.json +47 -40
  189. package/paginator/Icons.d.ts +5 -0
  190. package/paginator/Icons.js +54 -0
  191. package/paginator/Paginator.d.ts +4 -0
  192. package/paginator/Paginator.js +163 -0
  193. package/paginator/Paginator.stories.tsx +87 -0
  194. package/paginator/Paginator.test.js +318 -0
  195. package/paginator/types.d.ts +38 -0
  196. package/paginator/types.js +5 -0
  197. package/paragraph/Paragraph.d.ts +5 -0
  198. package/paragraph/Paragraph.js +38 -0
  199. package/paragraph/Paragraph.stories.tsx +44 -0
  200. package/password-input/Icons.d.ts +6 -0
  201. package/password-input/Icons.js +39 -0
  202. package/password-input/PasswordInput.d.ts +4 -0
  203. package/password-input/PasswordInput.js +119 -0
  204. package/password-input/PasswordInput.stories.tsx +132 -0
  205. package/password-input/PasswordInput.test.js +174 -0
  206. package/password-input/types.d.ts +110 -0
  207. package/password-input/types.js +5 -0
  208. package/progress-bar/ProgressBar.d.ts +4 -0
  209. package/progress-bar/ProgressBar.js +176 -0
  210. package/progress-bar/ProgressBar.stories.jsx +93 -0
  211. package/progress-bar/ProgressBar.test.js +110 -0
  212. package/progress-bar/types.d.ts +37 -0
  213. package/progress-bar/types.js +5 -0
  214. package/quick-nav/QuickNav.d.ts +4 -0
  215. package/quick-nav/QuickNav.js +117 -0
  216. package/quick-nav/QuickNav.stories.tsx +356 -0
  217. package/quick-nav/types.d.ts +21 -0
  218. package/quick-nav/types.js +5 -0
  219. package/radio-group/Radio.d.ts +4 -0
  220. package/radio-group/Radio.js +156 -0
  221. package/radio-group/RadioGroup.d.ts +4 -0
  222. package/radio-group/RadioGroup.js +281 -0
  223. package/radio-group/RadioGroup.stories.tsx +214 -0
  224. package/radio-group/RadioGroup.test.js +722 -0
  225. package/radio-group/types.d.ts +114 -0
  226. package/radio-group/types.js +5 -0
  227. package/resultsetTable/Icons.d.ts +7 -0
  228. package/resultsetTable/Icons.js +51 -0
  229. package/resultsetTable/ResultsetTable.d.ts +4 -0
  230. package/resultsetTable/ResultsetTable.js +195 -0
  231. package/resultsetTable/ResultsetTable.stories.tsx +300 -0
  232. package/resultsetTable/ResultsetTable.test.js +325 -0
  233. package/resultsetTable/types.d.ts +67 -0
  234. package/resultsetTable/types.js +5 -0
  235. package/select/Icons.d.ts +10 -0
  236. package/select/Icons.js +93 -0
  237. package/select/Listbox.d.ts +4 -0
  238. package/select/Listbox.js +169 -0
  239. package/select/Option.d.ts +4 -0
  240. package/select/Option.js +97 -0
  241. package/select/Select.d.ts +4 -0
  242. package/select/Select.js +666 -0
  243. package/select/Select.stories.tsx +971 -0
  244. package/select/Select.test.js +2228 -0
  245. package/select/types.d.ts +210 -0
  246. package/select/types.js +5 -0
  247. package/sidenav/Icons.d.ts +7 -0
  248. package/sidenav/Icons.js +51 -0
  249. package/sidenav/Sidenav.d.ts +10 -0
  250. package/sidenav/Sidenav.js +238 -0
  251. package/sidenav/Sidenav.stories.tsx +282 -0
  252. package/sidenav/Sidenav.test.js +44 -0
  253. package/sidenav/types.d.ts +76 -0
  254. package/sidenav/types.js +5 -0
  255. package/slider/Slider.d.ts +4 -0
  256. package/slider/Slider.js +342 -0
  257. package/slider/Slider.stories.tsx +240 -0
  258. package/slider/Slider.test.js +250 -0
  259. package/slider/types.d.ts +86 -0
  260. package/slider/types.js +5 -0
  261. package/spinner/Spinner.d.ts +4 -0
  262. package/spinner/Spinner.js +244 -0
  263. package/spinner/Spinner.stories.jsx +129 -0
  264. package/spinner/Spinner.test.js +64 -0
  265. package/spinner/types.d.ts +32 -0
  266. package/spinner/types.js +5 -0
  267. package/switch/Switch.d.ts +4 -0
  268. package/switch/Switch.js +262 -0
  269. package/switch/Switch.stories.tsx +171 -0
  270. package/switch/Switch.test.js +225 -0
  271. package/switch/types.d.ts +66 -0
  272. package/switch/types.js +5 -0
  273. package/table/Table.d.ts +4 -0
  274. package/{dist/table → table}/Table.js +14 -28
  275. package/table/Table.stories.jsx +356 -0
  276. package/table/Table.test.js +26 -0
  277. package/table/types.d.ts +21 -0
  278. package/table/types.js +5 -0
  279. package/tabs/Tab.d.ts +4 -0
  280. package/tabs/Tab.js +132 -0
  281. package/tabs/Tabs.d.ts +4 -0
  282. package/tabs/Tabs.js +461 -0
  283. package/tabs/Tabs.stories.tsx +226 -0
  284. package/tabs/Tabs.test.js +350 -0
  285. package/tabs/types.d.ts +92 -0
  286. package/tabs/types.js +5 -0
  287. package/tag/Tag.d.ts +4 -0
  288. package/tag/Tag.js +181 -0
  289. package/tag/Tag.stories.tsx +155 -0
  290. package/tag/Tag.test.js +60 -0
  291. package/tag/types.d.ts +69 -0
  292. package/tag/types.js +5 -0
  293. package/text-input/Icons.d.ts +8 -0
  294. package/text-input/Icons.js +60 -0
  295. package/text-input/Suggestion.d.ts +4 -0
  296. package/text-input/Suggestion.js +84 -0
  297. package/text-input/Suggestions.d.ts +4 -0
  298. package/text-input/Suggestions.js +134 -0
  299. package/text-input/TextInput.d.ts +4 -0
  300. package/text-input/TextInput.js +657 -0
  301. package/text-input/TextInput.stories.tsx +569 -0
  302. package/text-input/TextInput.test.js +1723 -0
  303. package/text-input/types.d.ts +197 -0
  304. package/text-input/types.js +5 -0
  305. package/textarea/Textarea.d.ts +4 -0
  306. package/{dist/new-textarea/NewTextarea.js → textarea/Textarea.js} +89 -159
  307. package/textarea/Textarea.stories.jsx +216 -0
  308. package/textarea/Textarea.test.js +435 -0
  309. package/textarea/types.d.ts +137 -0
  310. package/textarea/types.js +5 -0
  311. package/toggle-group/ToggleGroup.d.ts +4 -0
  312. package/toggle-group/ToggleGroup.js +241 -0
  313. package/toggle-group/ToggleGroup.stories.tsx +218 -0
  314. package/toggle-group/ToggleGroup.test.js +170 -0
  315. package/toggle-group/types.d.ts +114 -0
  316. package/toggle-group/types.js +5 -0
  317. package/typography/Typography.d.ts +4 -0
  318. package/typography/Typography.js +32 -0
  319. package/typography/Typography.stories.tsx +198 -0
  320. package/typography/types.d.ts +18 -0
  321. package/typography/types.js +5 -0
  322. package/useTheme.d.ts +1243 -0
  323. package/{dist/useTheme.js → useTheme.js} +3 -3
  324. package/useTranslatedLabels.d.ts +85 -0
  325. package/useTranslatedLabels.js +20 -0
  326. package/utils/BaseTypography.d.ts +21 -0
  327. package/utils/BaseTypography.js +108 -0
  328. package/utils/FocusLock.d.ts +13 -0
  329. package/utils/FocusLock.js +138 -0
  330. package/wizard/Wizard.d.ts +4 -0
  331. package/wizard/Wizard.js +285 -0
  332. package/wizard/Wizard.stories.tsx +253 -0
  333. package/wizard/Wizard.test.js +141 -0
  334. package/wizard/types.d.ts +64 -0
  335. package/wizard/types.js +5 -0
  336. package/babel.config.js +0 -8
  337. package/dist/BackgroundColorContext.js +0 -46
  338. package/dist/ThemeContext.js +0 -216
  339. package/dist/accordion/Accordion.js +0 -348
  340. package/dist/accordion/Accordion.stories.js +0 -207
  341. package/dist/accordion/readme.md +0 -96
  342. package/dist/accordion-group/AccordionGroup.js +0 -188
  343. package/dist/accordion-group/AccordionGroup.stories.js +0 -207
  344. package/dist/accordion-group/readme.md +0 -70
  345. package/dist/badge/Badge.js +0 -63
  346. package/dist/box/Box.js +0 -156
  347. package/dist/button/Button.js +0 -231
  348. package/dist/button/Button.stories.js +0 -224
  349. package/dist/button/readme.md +0 -93
  350. package/dist/card/Card.js +0 -254
  351. package/dist/checkbox/Checkbox.js +0 -300
  352. package/dist/checkbox/Checkbox.stories.js +0 -144
  353. package/dist/checkbox/readme.md +0 -116
  354. package/dist/chip/Chip.js +0 -265
  355. package/dist/common/OpenSans.css +0 -81
  356. package/dist/common/RequiredComponent.js +0 -40
  357. package/dist/common/variables.js +0 -1430
  358. package/dist/date/Date.js +0 -381
  359. package/dist/date/Date.stories.js +0 -205
  360. package/dist/date/readme.md +0 -73
  361. package/dist/dialog/Dialog.js +0 -218
  362. package/dist/dropdown/Dropdown.js +0 -504
  363. package/dist/dropdown/Dropdown.stories.js +0 -249
  364. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  365. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  366. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  367. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  368. package/dist/dropdown/readme.md +0 -69
  369. package/dist/footer/Footer.js +0 -395
  370. package/dist/footer/Footer.stories.js +0 -94
  371. package/dist/footer/dxc_logo.svg +0 -15
  372. package/dist/footer/readme.md +0 -41
  373. package/dist/header/Header.js +0 -423
  374. package/dist/header/Header.stories.js +0 -176
  375. package/dist/header/close_icon.svg +0 -1
  376. package/dist/header/dxc_logo_black.svg +0 -8
  377. package/dist/header/hamb_menu_black.svg +0 -1
  378. package/dist/header/hamb_menu_white.svg +0 -1
  379. package/dist/header/readme.md +0 -33
  380. package/dist/input-text/InputText.js +0 -707
  381. package/dist/input-text/InputText.stories.js +0 -209
  382. package/dist/input-text/error.svg +0 -1
  383. package/dist/input-text/readme.md +0 -91
  384. package/dist/layout/ApplicationLayout.js +0 -331
  385. package/dist/layout/facebook.svg +0 -45
  386. package/dist/layout/linkedin.svg +0 -50
  387. package/dist/layout/twitter.svg +0 -53
  388. package/dist/link/Link.js +0 -241
  389. package/dist/link/readme.md +0 -51
  390. package/dist/new-date/NewDate.js +0 -403
  391. package/dist/new-input-text/NewInputText.js +0 -961
  392. package/dist/number/Number.js +0 -138
  393. package/dist/number/NumberContext.js +0 -16
  394. package/dist/paginator/Paginator.js +0 -289
  395. package/dist/paginator/images/next.svg +0 -3
  396. package/dist/paginator/images/nextPage.svg +0 -3
  397. package/dist/paginator/images/previous.svg +0 -3
  398. package/dist/paginator/images/previousPage.svg +0 -3
  399. package/dist/paginator/readme.md +0 -50
  400. package/dist/password/Password.js +0 -200
  401. package/dist/password/styles.css +0 -3
  402. package/dist/progress-bar/ProgressBar.js +0 -206
  403. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  404. package/dist/progress-bar/readme.md +0 -63
  405. package/dist/radio/Radio.js +0 -209
  406. package/dist/radio/Radio.stories.js +0 -166
  407. package/dist/radio/readme.md +0 -70
  408. package/dist/resultsetTable/ResultsetTable.js +0 -358
  409. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  410. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  411. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  412. package/dist/select/Select.js +0 -585
  413. package/dist/select/Select.stories.js +0 -235
  414. package/dist/select/readme.md +0 -72
  415. package/dist/sidenav/Sidenav.js +0 -177
  416. package/dist/slider/Slider.js +0 -319
  417. package/dist/slider/Slider.stories.js +0 -241
  418. package/dist/slider/readme.md +0 -64
  419. package/dist/spinner/Spinner.js +0 -218
  420. package/dist/spinner/Spinner.stories.js +0 -183
  421. package/dist/spinner/readme.md +0 -65
  422. package/dist/switch/Switch.js +0 -222
  423. package/dist/switch/Switch.stories.js +0 -134
  424. package/dist/switch/readme.md +0 -133
  425. package/dist/tabs/Tabs.js +0 -343
  426. package/dist/tabs/Tabs.stories.js +0 -130
  427. package/dist/tabs/readme.md +0 -78
  428. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  429. package/dist/tabs-for-sections/readme.md +0 -78
  430. package/dist/tag/Tag.js +0 -288
  431. package/dist/textarea/Textarea.js +0 -264
  432. package/dist/toggle/Toggle.js +0 -220
  433. package/dist/toggle/Toggle.stories.js +0 -297
  434. package/dist/toggle/readme.md +0 -80
  435. package/dist/toggle-group/ToggleGroup.js +0 -223
  436. package/dist/upload/Upload.js +0 -205
  437. package/dist/upload/Upload.stories.js +0 -72
  438. package/dist/upload/buttons-upload/ButtonsUpload.js +0 -139
  439. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  440. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  441. package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -329
  442. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  443. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  444. package/dist/upload/file-upload/FileToUpload.js +0 -184
  445. package/dist/upload/file-upload/audio-icon.svg +0 -4
  446. package/dist/upload/file-upload/close.svg +0 -4
  447. package/dist/upload/file-upload/file-icon.svg +0 -4
  448. package/dist/upload/file-upload/video-icon.svg +0 -4
  449. package/dist/upload/files-upload/FilesToUpload.js +0 -123
  450. package/dist/upload/readme.md +0 -37
  451. package/dist/upload/transaction/Transaction.js +0 -175
  452. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  453. package/dist/upload/transaction/audio-icon.svg +0 -4
  454. package/dist/upload/transaction/error-icon.svg +0 -4
  455. package/dist/upload/transaction/file-icon-err.svg +0 -4
  456. package/dist/upload/transaction/file-icon.svg +0 -4
  457. package/dist/upload/transaction/image-icon-err.svg +0 -4
  458. package/dist/upload/transaction/image-icon.svg +0 -4
  459. package/dist/upload/transaction/success-icon.svg +0 -4
  460. package/dist/upload/transaction/video-icon-err.svg +0 -4
  461. package/dist/upload/transaction/video-icon.svg +0 -4
  462. package/dist/upload/transactions/Transactions.js +0 -138
  463. package/dist/wizard/Wizard.js +0 -411
  464. package/dist/wizard/invalid_icon.svg +0 -5
  465. package/dist/wizard/valid_icon.svg +0 -5
  466. package/dist/wizard/validation-wrong.svg +0 -6
  467. package/test/Accordion.test.js +0 -33
  468. package/test/AccordionGroup.test.js +0 -125
  469. package/test/Alert.test.js +0 -53
  470. package/test/Box.test.js +0 -10
  471. package/test/Button.test.js +0 -18
  472. package/test/Card.test.js +0 -30
  473. package/test/Checkbox.test.js +0 -45
  474. package/test/Chip.test.js +0 -25
  475. package/test/Date.test.js +0 -393
  476. package/test/Dialog.test.js +0 -23
  477. package/test/Dropdown.test.js +0 -145
  478. package/test/Footer.test.js +0 -99
  479. package/test/Header.test.js +0 -39
  480. package/test/Heading.test.js +0 -35
  481. package/test/InputText.test.js +0 -240
  482. package/test/Link.test.js +0 -43
  483. package/test/NewDate.test.js +0 -203
  484. package/test/NewInputText.test.js +0 -817
  485. package/test/NewTextarea.test.js +0 -201
  486. package/test/Number.test.js +0 -241
  487. package/test/Paginator.test.js +0 -177
  488. package/test/Password.test.js +0 -76
  489. package/test/ProgressBar.test.js +0 -35
  490. package/test/Radio.test.js +0 -37
  491. package/test/ResultsetTable.test.js +0 -330
  492. package/test/Select.test.js +0 -189
  493. package/test/Sidenav.test.js +0 -45
  494. package/test/Slider.test.js +0 -82
  495. package/test/Spinner.test.js +0 -27
  496. package/test/Switch.test.js +0 -45
  497. package/test/Table.test.js +0 -36
  498. package/test/Tabs.test.js +0 -109
  499. package/test/TabsForSections.test.js +0 -34
  500. package/test/Tag.test.js +0 -32
  501. package/test/TextArea.test.js +0 -52
  502. package/test/ToggleGroup.test.js +0 -81
  503. package/test/Upload.test.js +0 -60
  504. package/test/Wizard.test.js +0 -130
  505. package/test/mocks/pngMock.js +0 -1
  506. package/test/mocks/svgMock.js +0 -1
  507. /package/{dist/common → common}/fonts/OpenSans-Bold.ttf +0 -0
  508. /package/{dist/common → common}/fonts/OpenSans-BoldItalic.ttf +0 -0
  509. /package/{dist/common → common}/fonts/OpenSans-ExtraBold.ttf +0 -0
  510. /package/{dist/common → common}/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  511. /package/{dist/common → common}/fonts/OpenSans-Italic.ttf +0 -0
  512. /package/{dist/common → common}/fonts/OpenSans-Light.ttf +0 -0
  513. /package/{dist/common → common}/fonts/OpenSans-LightItalic.ttf +0 -0
  514. /package/{dist/common → common}/fonts/OpenSans-Regular.ttf +0 -0
  515. /package/{dist/common → common}/fonts/OpenSans-SemiBold.ttf +0 -0
  516. /package/{dist/common → common}/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
@@ -0,0 +1,1490 @@
1
+ export declare const componentTokens: {
2
+ accordion: {
3
+ backgroundColor: string;
4
+ hoverBackgroundColor: string;
5
+ arrowColor: string;
6
+ disabledArrowColor: string;
7
+ assistiveTextFontFamily: string;
8
+ assistiveTextFontSize: string;
9
+ assistiveTextFontWeight: string;
10
+ assistiveTextFontStyle: string;
11
+ assistiveTextLetterSpacing: string;
12
+ assistiveTextFontColor: string;
13
+ disabledAssistiveTextFontColor: string;
14
+ assistiveTextMinWidth: string;
15
+ assistiveTextPaddingRight: string;
16
+ assistiveTextPaddingLeft: string;
17
+ titleLabelFontFamily: string;
18
+ titleLabelFontSize: string;
19
+ titleLabelFontWeight: string;
20
+ titleLabelFontStyle: string;
21
+ titleLabelFontColor: string;
22
+ disabledTitleLabelFontColor: string;
23
+ titleLabelPaddingTop: string;
24
+ titleLabelPaddingBottom: string;
25
+ titleLabelPaddingLeft: string;
26
+ titleLabelPaddingRight: string;
27
+ focusBorderColor: string;
28
+ focusBorderStyle: string;
29
+ focusBorderThickness: string;
30
+ borderRadius: string;
31
+ boxShadowOffsetX: string;
32
+ boxShadowOffsetY: string;
33
+ boxShadowBlur: string;
34
+ boxShadowColor: string;
35
+ iconColor: string;
36
+ disabledIconColor: string;
37
+ iconSize: string;
38
+ iconMarginLeft: string;
39
+ iconMarginRigth: string;
40
+ accordionGroupSeparatorBorderColor: string;
41
+ accordionGroupSeparatorBorderThickness: string;
42
+ accordionGroupSeparatorBorderRadius: string;
43
+ accordionGroupSeparatorBorderStyle: string;
44
+ };
45
+ alert: {
46
+ titleFontFamily: string;
47
+ titleFontColor: string;
48
+ titleFontSize: string;
49
+ titleFontStyle: string;
50
+ titleFontWeight: string;
51
+ titleTextTransform: string;
52
+ titlePaddingRight: string;
53
+ titlePaddingLeft: string;
54
+ inlineTextFontFamily: string;
55
+ inlineTextFontColor: string;
56
+ inlineTextFontSize: string;
57
+ inlineTextFontStyle: string;
58
+ inlineTextFontWeight: string;
59
+ inlineTextPaddingLeft: string;
60
+ inlineTextPaddingRight: string;
61
+ contentPaddingLeft: string;
62
+ contentPaddingRight: string;
63
+ contentPaddingTop: string;
64
+ contentPaddingBottom: string;
65
+ borderRadius: string;
66
+ borderStyle: string;
67
+ borderThickness: string;
68
+ infoBorderColor: string;
69
+ successBorderColor: string;
70
+ warningBorderColor: string;
71
+ errorBorderColor: string;
72
+ iconSize: string;
73
+ iconPaddingLeft: string;
74
+ iconPaddingRight: string;
75
+ infoIconColor: string;
76
+ successIconColor: string;
77
+ warningIconColor: string;
78
+ errorIconColor: string;
79
+ infoBackgroundColor: string;
80
+ successBackgroundColor: string;
81
+ warningBackgroundColor: string;
82
+ errorBackgroundColor: string;
83
+ hoverActionBackgroundColor: string;
84
+ activeActionBackgroundColor: string;
85
+ focusActionBorderColor: string;
86
+ overlayColor: string;
87
+ };
88
+ box: {
89
+ backgroundColor: string;
90
+ borderRadius: string;
91
+ borderThickness: string;
92
+ borderStyle: string;
93
+ borderColor: string;
94
+ noneShadowDepthShadowOffsetX: string;
95
+ noneShadowDepthShadowOffsetY: string;
96
+ noneShadowDepthShadowBlur: string;
97
+ noneShadowDepthShadowSpread: string;
98
+ noneShadowDepthShadowColor: string;
99
+ oneShadowDepthShadowOffsetX: string;
100
+ oneShadowDepthShadowOffsetY: string;
101
+ oneShadowDepthShadowBlur: string;
102
+ oneShadowDepthShadowSpread: string;
103
+ oneShadowDepthShadowColor: string;
104
+ twoShadowDepthShadowOffsetX: string;
105
+ twoShadowDepthShadowOffsetY: string;
106
+ twoShadowDepthShadowBlur: string;
107
+ twoShadowDepthShadowSpread: string;
108
+ twoShadowDepthShadowColor: string;
109
+ };
110
+ bulletedList: {
111
+ fontColor: string;
112
+ fontColorOnDark: string;
113
+ bulletIconHeight: string;
114
+ bulletIconWidth: string;
115
+ bulletHeight: string;
116
+ bulletWidth: string;
117
+ bulletMarginRight: string;
118
+ };
119
+ button: {
120
+ labelFontLineHeight: string;
121
+ labelLetterSpacing: string;
122
+ paddingLeft: string;
123
+ paddingRight: string;
124
+ paddingTop: string;
125
+ paddingBottom: string;
126
+ focusBorderColor: string;
127
+ focusBorderColorOnDark: string;
128
+ primaryBackgroundColor: string;
129
+ primaryBackgroundColorOnDark: string;
130
+ primaryFontColor: string;
131
+ primaryFontColorOnDark: string;
132
+ primaryHoverBackgroundColor: string;
133
+ primaryHoverBackgroundColorOnDark: string;
134
+ primaryActiveBackgroundColor: string;
135
+ primaryActiveBackgroundColorOnDark: string;
136
+ primaryDisabledBackgroundColor: string;
137
+ primaryDisabledBackgroundColorOnDark: string;
138
+ primaryDisabledFontColor: string;
139
+ primaryDisabledFontColorOnDark: string;
140
+ primaryBorderThickness: string;
141
+ primaryBorderStyle: string;
142
+ primaryBorderRadius: string;
143
+ primaryFontFamily: string;
144
+ primaryFontSize: string;
145
+ primaryFontWeight: string;
146
+ secondaryBackgroundColor: string;
147
+ secondaryBackgroundColorOnDark: string;
148
+ secondaryFontColor: string;
149
+ secondaryFontColorOnDark: string;
150
+ secondaryHoverFontColor: string;
151
+ secondaryHoverFontColorOnDark: string;
152
+ secondaryBorderColor: string;
153
+ secondaryBorderColorOnDark: string;
154
+ secondaryHoverBackgroundColor: string;
155
+ secondaryHoverBackgroundColorOnDark: string;
156
+ secondaryActiveBackgroundColor: string;
157
+ secondaryActiveBackgroundColorOnDark: string;
158
+ secondaryDisabledBackgroundColor: string;
159
+ secondaryDisabledBackgroundColorOnDark: string;
160
+ secondaryDisabledFontColor: string;
161
+ secondaryDisabledFontColorOnDark: string;
162
+ secondaryDisabledBorderColor: string;
163
+ secondaryDisabledBorderColorOnDark: string;
164
+ secondaryBorderThickness: string;
165
+ secondaryBorderStyle: string;
166
+ secondaryBorderRadius: string;
167
+ secondaryFontFamily: string;
168
+ secondaryFontSize: string;
169
+ secondaryFontWeight: string;
170
+ textBackgroundColor: string;
171
+ textBackgroundColorOnDark: string;
172
+ textFontColor: string;
173
+ textFontColorOnDark: string;
174
+ textHoverBackgroundColor: string;
175
+ textHoverBackgroundColorOnDark: string;
176
+ textActiveBackgroundColor: string;
177
+ textActiveBackgroundColorOnDark: string;
178
+ textDisabledBackgroundColor: string;
179
+ textDisabledBackgroundColorOnDark: string;
180
+ textDisabledFontColor: string;
181
+ textDisabledFontColorOnDark: string;
182
+ textBorderThickness: string;
183
+ textBorderStyle: string;
184
+ textBorderRadius: string;
185
+ textFontFamily: string;
186
+ textFontSize: string;
187
+ textFontWeight: string;
188
+ };
189
+ card: {
190
+ height: string;
191
+ width: string;
192
+ };
193
+ checkbox: {
194
+ backgroundColorChecked: string;
195
+ backgroundColorCheckedOnDark: string;
196
+ hoverBackgroundColorChecked: string;
197
+ hoverBackgroundColorCheckedOnDark: string;
198
+ disabledBackgroundColorChecked: string;
199
+ disabledBackgroundColorCheckedOnDark: string;
200
+ borderColor: string;
201
+ borderColorOnDark: string;
202
+ hoverBorderColor: string;
203
+ hoverBorderColorOnDark: string;
204
+ disabledBorderColor: string;
205
+ disabledBorderColorOnDark: string;
206
+ checkColor: string;
207
+ checkColorOnDark: string;
208
+ disabledCheckColor: string;
209
+ disabledCheckColorOnDark: string;
210
+ fontFamily: string;
211
+ fontSize: string;
212
+ fontWeight: string;
213
+ fontColor: string;
214
+ fontColorOnDark: string;
215
+ disabledFontColor: string;
216
+ disabledFontColorOnDark: string;
217
+ focusColor: string;
218
+ focusColorOnDark: string;
219
+ checkLabelSpacing: string;
220
+ };
221
+ chip: {
222
+ backgroundColor: string;
223
+ disabledBackgroundColor: string;
224
+ fontFamily: string;
225
+ fontSize: string;
226
+ fontStyle: string;
227
+ fontWeight: string;
228
+ fontColor: string;
229
+ disabledFontColor: string;
230
+ borderColor: string;
231
+ borderRadius: string;
232
+ borderThickness: string;
233
+ borderStyle: string;
234
+ contentPaddingLeft: string;
235
+ contentPaddingRight: string;
236
+ contentPaddingTop: string;
237
+ contentPaddingBottom: string;
238
+ iconSize: string;
239
+ iconSpacing: string;
240
+ iconColor: string;
241
+ hoverIconColor: string;
242
+ activeIconColor: string;
243
+ disabledIconColor: string;
244
+ focusColor: string;
245
+ focusBorderStyle: string;
246
+ focusBorderThickness: string;
247
+ focusBorderRadius: string;
248
+ };
249
+ dateInput: {
250
+ pickerBackgroundColor: string;
251
+ pickerFontColor: string;
252
+ pickerBorderColor: string;
253
+ pickerSelectedBackgroundColor: string;
254
+ pickerSelectedFontColor: string;
255
+ pickerHoverBackgroundColor: string;
256
+ pickerHoverFontColor: string;
257
+ pickerActiveBackgroundColor: string;
258
+ pickerActiveFontColor: string;
259
+ pickerNonCurrentMonthFontColor: string;
260
+ pickerCurrentDateBorderColor: string;
261
+ pickerCurrentDateFontColor: string;
262
+ pickerCurrentYearFontColor: string;
263
+ pickerHeaderBackgroundColor: string;
264
+ pickerHeaderFontColor: string;
265
+ pickerHeaderHoverBackgroundColor: string;
266
+ pickerHeaderHoverFontColor: string;
267
+ pickerHeaderActiveBackgroundColor: string;
268
+ pickerHeaderActiveFontColor: string;
269
+ pickerFocusColor: string;
270
+ pickerBorderWidth: string;
271
+ pickerBorderStyle: string;
272
+ pickerFocusWidth: string;
273
+ pickerCurrentDateBorderWidth: string;
274
+ pickerFontFamily: string;
275
+ pickerFontSize: string;
276
+ pickerFontWeight: string;
277
+ pickerInteractedYearFontSize: string;
278
+ pickerHeaderFontSize: string;
279
+ };
280
+ dialog: {
281
+ overlayColor: string;
282
+ backgroundColor: string;
283
+ closeIconWidth: string;
284
+ closeIconHeight: string;
285
+ closeIconTopPosition: string;
286
+ closeIconRightPosition: string;
287
+ closeIconBackgroundColor: string;
288
+ closeIconBorderColor: string;
289
+ closeIconColor: string;
290
+ closeIconBorderThickness: string;
291
+ closeIconBorderStyle: string;
292
+ closeIconBorderRadius: string;
293
+ boxShadowOffsetX: string;
294
+ boxShadowOffsetY: string;
295
+ boxShadowBlur: string;
296
+ boxShadowColor: string;
297
+ };
298
+ dropdown: {
299
+ buttonBackgroundColor: string;
300
+ hoverButtonBackgroundColor: string;
301
+ activeButtonBackgroundColor: string;
302
+ buttonFontFamily: string;
303
+ buttonFontSize: string;
304
+ buttonFontStyle: string;
305
+ buttonFontWeight: string;
306
+ buttonFontColor: string;
307
+ buttonIconSize: string;
308
+ buttonIconSpacing: string;
309
+ buttonIconColor: string;
310
+ buttonPaddingTop: string;
311
+ buttonPaddingBottom: string;
312
+ buttonPaddingLeft: string;
313
+ buttonPaddingRight: string;
314
+ disabledColor: string;
315
+ disabledButtonBackgroundColor: string;
316
+ disabledBorderColor: string;
317
+ optionBackgroundColor: string;
318
+ hoverOptionBackgroundColor: string;
319
+ activeOptionBackgroundColor: string;
320
+ optionFontFamily: string;
321
+ optionFontSize: string;
322
+ optionFontStyle: string;
323
+ optionFontWeight: string;
324
+ optionFontColor: string;
325
+ optionIconSize: string;
326
+ optionIconSpacing: string;
327
+ optionIconColor: string;
328
+ optionPaddingTop: string;
329
+ optionPaddingBottom: string;
330
+ optionPaddingLeft: string;
331
+ optionPaddingRight: string;
332
+ caretIconSize: string;
333
+ caretIconColor: string;
334
+ caretIconSpacing: string;
335
+ borderRadius: string;
336
+ borderStyle: string;
337
+ borderThickness: string;
338
+ borderColor: string;
339
+ scrollBarThumbColor: string;
340
+ scrollBarTrackColor: string;
341
+ focusColor: string;
342
+ };
343
+ fileInput: {
344
+ dropBorderColor: string;
345
+ fileItemBorderColor: string;
346
+ fileNameFontColor: string;
347
+ labelFontColor: string;
348
+ helperTextFontColor: string;
349
+ dropLabelFontColor: string;
350
+ disabledLabelFontColor: string;
351
+ disabledHelperTextFontcolor: string;
352
+ disabledDropLabelFontColor: string;
353
+ focusDropBorderColor: string;
354
+ disabledDropBorderColor: string;
355
+ dragoverDropBackgroundColor: string;
356
+ activeFileItemIconBackgrounColor: string;
357
+ errorFileItemBorderColor: string;
358
+ errorFileItemBackgroundColor: string;
359
+ errorFilePreviewBackgroundColor: string;
360
+ errorFileItemIconColor: string;
361
+ fileItemIconBackgroundColor: string;
362
+ deleteFileItemColor: string;
363
+ errorMessageFontColor: string;
364
+ labelFontFamily: string;
365
+ labelFontSize: string;
366
+ labelFontWeight: string;
367
+ labelLineHeight: string;
368
+ fileItemFontFamily: string;
369
+ fileItemFontSize: string;
370
+ fileItemFontWeight: string;
371
+ fileItemLineHeight: string;
372
+ helperTextFontFamily: string;
373
+ helperTextFontSize: string;
374
+ helperTextFontWeight: string;
375
+ helperTextLineHeight: string;
376
+ dropLabelFontFamily: string;
377
+ dropLabelFontSize: string;
378
+ dropLabelFontWeight: string;
379
+ errorMessageFontFamily: string;
380
+ errorMessageFontSize: string;
381
+ errorMessageFontWeight: string;
382
+ errorMessageLineHeight: string;
383
+ dropBorderThickness: string;
384
+ dropBorderStyle: string;
385
+ dropBorderRadius: string;
386
+ fileItemBorderThickness: string;
387
+ fileItemBorderStyle: string;
388
+ fileItemBorderRadius: string;
389
+ hoverDeleteFileItemBackgroundColor: string;
390
+ activeDeleteFileItemBackgroundColor: string;
391
+ focusDeleteFileItemBorderColor: string;
392
+ filePreviewBackgroundColor: string;
393
+ filePreviewIconColor: string;
394
+ errorFilePreviewIconColor: string;
395
+ };
396
+ footer: {
397
+ height: string;
398
+ backgroundColor: string;
399
+ bottomLinksDividerColor: string;
400
+ bottomLinksDividerThickness: string;
401
+ bottomLinksDividerStyle: string;
402
+ bottomLinksDividerSpacing: string;
403
+ bottomLinksFontFamily: string;
404
+ bottomLinksFontSize: string;
405
+ bottomLinksFontStyle: string;
406
+ bottomLinksFontWeight: string;
407
+ bottomLinksFontColor: string;
408
+ bottomLinksTextDecoration: string;
409
+ copyrightFontFamily: string;
410
+ copyrightFontSize: string;
411
+ copyrightFontStyle: string;
412
+ copyrightFontWeight: string;
413
+ copyrightFontColor: string;
414
+ logo: string;
415
+ logoHeight: string;
416
+ logoWidth: string;
417
+ socialLinksSize: string;
418
+ socialLinksGutter: string;
419
+ socialLinksColor: string;
420
+ };
421
+ header: {
422
+ backgroundColor: string;
423
+ hamburguerFocusColor: string;
424
+ hamburguerFontFamily: string;
425
+ hamburguerFontStyle: string;
426
+ hamburguerFontColor: string;
427
+ hamburguerFontSize: string;
428
+ hamburguerFontWeight: string;
429
+ hamburguerTextTransform: string;
430
+ hamburguerIconColor: string;
431
+ hamburguerHoverColor: string;
432
+ logo: string;
433
+ logoResponsive: string;
434
+ logoHeight: string;
435
+ logoWidth: string;
436
+ menuBackgroundColor: string;
437
+ menuZindex: string;
438
+ menuTabletWidth: string;
439
+ menuMobileWidth: string;
440
+ minHeight: string;
441
+ overlayColor: string;
442
+ overlayOpacity: string;
443
+ overlayZindex: string;
444
+ paddingTop: string;
445
+ paddingBottom: string;
446
+ paddingRight: string;
447
+ paddingLeft: string;
448
+ underlinedColor: string;
449
+ underlinedThickness: string;
450
+ underlinedStyle: string;
451
+ contentColor: string;
452
+ contentColorOnDark: string;
453
+ };
454
+ heading: {
455
+ level1FontColor: string;
456
+ level1FontFamily: string;
457
+ level1FontSize: string;
458
+ level1FontStyle: string;
459
+ level1FontWeight: string;
460
+ level1LineHeight: string;
461
+ level1LetterSpacing: string;
462
+ level2FontColor: string;
463
+ level2FontFamily: string;
464
+ level2FontSize: string;
465
+ level2FontStyle: string;
466
+ level2FontWeight: string;
467
+ level2LineHeight: string;
468
+ level2LetterSpacing: string;
469
+ level3FontColor: string;
470
+ level3FontFamily: string;
471
+ level3FontSize: string;
472
+ level3FontStyle: string;
473
+ level3FontWeight: string;
474
+ level3LineHeight: string;
475
+ level3LetterSpacing: string;
476
+ level4FontColor: string;
477
+ level4FontFamily: string;
478
+ level4FontSize: string;
479
+ level4FontStyle: string;
480
+ level4FontWeight: string;
481
+ level4LineHeight: string;
482
+ level4LetterSpacing: string;
483
+ level5FontColor: string;
484
+ level5FontFamily: string;
485
+ level5FontSize: string;
486
+ level5FontStyle: string;
487
+ level5FontWeight: string;
488
+ level5LineHeight: string;
489
+ level5LetterSpacing: string;
490
+ };
491
+ image: {
492
+ captionFontColor: string;
493
+ captionFontFamily: string;
494
+ captionFontSize: string;
495
+ captionFontStyle: string;
496
+ captionFontWeight: string;
497
+ captionLineHeight: string;
498
+ };
499
+ link: {
500
+ fontColor: string;
501
+ fontFamily: string;
502
+ fontSize: string;
503
+ fontStyle: string;
504
+ fontWeight: string;
505
+ iconSize: string;
506
+ iconSpacing: string;
507
+ underlineSpacing: string;
508
+ underlineStyle: string;
509
+ underlineThickness: string;
510
+ disabledFontColor: string;
511
+ hoverFontColor: string;
512
+ hoverUnderlineColor: string;
513
+ visitedFontColor: string;
514
+ visitedUnderlineColor: string;
515
+ activeFontColor: string;
516
+ activeUnderlineColor: string;
517
+ focusColor: string;
518
+ };
519
+ navTabs: {
520
+ selectedBackgroundColor: string;
521
+ unselectedBackgroundColor: string;
522
+ hoverBackgroundColor: string;
523
+ pressedBackgroundColor: string;
524
+ selectedFontColor: string;
525
+ unselectedFontColor: string;
526
+ disabledFontColor: string;
527
+ focusOutline: string;
528
+ selectedUnderlineColor: string;
529
+ dividerColor: string;
530
+ fontFamily: string;
531
+ fontSize: string;
532
+ fontStyle: string;
533
+ fontWeight: string;
534
+ selectedIconColor: string;
535
+ unselectedIconColor: string;
536
+ disabledIconColor: string;
537
+ };
538
+ paginator: {
539
+ backgroundColor: string;
540
+ fontColor: string;
541
+ fontFamily: string;
542
+ fontSize: string;
543
+ fontStyle: string;
544
+ fontWeight: string;
545
+ fontTextTransform: string;
546
+ verticalPadding: string;
547
+ horizontalPadding: string;
548
+ marginRight: string;
549
+ marginLeft: string;
550
+ itemsPerPageSelectorMarginLeft: string;
551
+ itemsPerPageSelectorMarginRight: string;
552
+ pageSelectorMarginRight: string;
553
+ pageSelectorMarginLeft: string;
554
+ totalItemsContainerMarginRight: string;
555
+ totalItemsContainerMarginLeft: string;
556
+ };
557
+ paragraph: {
558
+ fontColor: string;
559
+ fontColorOnDark: string;
560
+ display: string;
561
+ fontSize: string;
562
+ fontWeight: string;
563
+ };
564
+ progressBar: {
565
+ trackLineColor: string;
566
+ trackLineColorOnDark: string;
567
+ totalLineColor: string;
568
+ labelFontFamily: string;
569
+ labelFontSize: string;
570
+ labelFontStyle: string;
571
+ labelFontWeight: string;
572
+ labelFontColor: string;
573
+ labelFontColorOnDark: string;
574
+ labelFontTextTransform: string;
575
+ valueFontFamily: string;
576
+ valueFontSize: string;
577
+ valueFontStyle: string;
578
+ valueFontWeight: string;
579
+ valueFontColor: string;
580
+ valueFontColorOnDark: string;
581
+ valueFontTextTransform: string;
582
+ helperTextFontColor: string;
583
+ helperTextFontColorOnDark: string;
584
+ helperTextFontSize: string;
585
+ helperTextFontStyle: string;
586
+ helperTextFontWeight: string;
587
+ helperTextFontFamily: string;
588
+ thickness: string;
589
+ borderRadius: string;
590
+ overlayColor: string;
591
+ overlayFontColor: string;
592
+ };
593
+ quickNav: {
594
+ fontColor: string;
595
+ hoverFontColor: string;
596
+ dividerBorderColor: string;
597
+ focusBorderColor: string;
598
+ focusBorderStyle: string;
599
+ focusBorderThickness: string;
600
+ focusBorderRadius: string;
601
+ paddingTop: string;
602
+ paddingBottom: string;
603
+ paddingLeft: string;
604
+ paddingRight: string;
605
+ fontFamily: string;
606
+ fontSize: string;
607
+ fontStyle: string;
608
+ fontWeight: string;
609
+ };
610
+ radioGroup: {
611
+ fontFamily: string;
612
+ radioInputColor: string;
613
+ hoverRadioInputColor: string;
614
+ focusBorderColor: string;
615
+ activeRadioInputColor: string;
616
+ errorRadioInputColor: string;
617
+ hoverErrorRadioInputColor: string;
618
+ activeErrorRadioInputColor: string;
619
+ readonlyRadioInputColor: string;
620
+ hoverReadonlyRadioInputColor: string;
621
+ activeReadonlyRadioInputColor: string;
622
+ disabledRadioInputColor: string;
623
+ disabledLabelFontColor: string;
624
+ disabledHelperTextFontColor: string;
625
+ disabledRadioInputLabelFontColor: string;
626
+ errorMessageColor: string;
627
+ labelFontColor: string;
628
+ labelFontSize: string;
629
+ labelFontStyle: string;
630
+ labelFontWeight: string;
631
+ labelLineHeight: string;
632
+ optionalLabelFontWeight: string;
633
+ helperTextFontColor: string;
634
+ helperTextFontSize: string;
635
+ helperTextFontStyle: string;
636
+ helperTextFontWeight: string;
637
+ helperTextLineHeight: string;
638
+ radioInputLabelFontColor: string;
639
+ radioInputLabelFontSize: string;
640
+ radioInputLabelFontStyle: string;
641
+ radioInputLabelFontWeight: string;
642
+ radioInputLabelLineHeight: string;
643
+ groupLabelMargin: string;
644
+ radioInputLabelMargin: string;
645
+ groupVerticalGutter: string;
646
+ groupHorizontalGutter: string;
647
+ };
648
+ select: {
649
+ fontFamily: string;
650
+ disabledColor: string;
651
+ enabledInputBorderColor: string;
652
+ hoverInputBorderColor: string;
653
+ focusInputBorderColor: string;
654
+ errorInputBorderColor: string;
655
+ hoverInputErrorBorderColor: string;
656
+ disabledInputBorderColor: string;
657
+ disabledInputBackgroundColor: string;
658
+ inputMarginTop: string;
659
+ inputMarginBottom: string;
660
+ errorMessageColor: string;
661
+ errorIconColor: string;
662
+ labelFontColor: string;
663
+ labelFontSize: string;
664
+ labelFontStyle: string;
665
+ labelFontWeight: string;
666
+ labelLineHeight: string;
667
+ optionalLabelFontWeight: string;
668
+ helperTextFontColor: string;
669
+ helperTextFontSize: string;
670
+ helperTextFontStyle: string;
671
+ helperTextFontWeight: string;
672
+ helperTextLineHeight: string;
673
+ placeholderFontColor: string;
674
+ valueFontColor: string;
675
+ valueFontSize: string;
676
+ valueFontStyle: string;
677
+ valueFontWeight: string;
678
+ actionIconColor: string;
679
+ hoverActionIconColor: string;
680
+ activeActionIconColor: string;
681
+ actionBackgroundColor: string;
682
+ hoverActionBackgroundColor: string;
683
+ activeActionBackgroundColor: string;
684
+ listOptionFontColor: string;
685
+ listOptionFontSize: string;
686
+ listOptionFontStyle: string;
687
+ listOptionFontWeight: string;
688
+ listOptionIconColor: string;
689
+ listOptionDividerColor: string;
690
+ listGroupLabelFontWeight: string;
691
+ focusListOptionBorderColor: string;
692
+ systemMessageFontColor: string;
693
+ collapseIndicatorColor: string;
694
+ listDialogBackgroundColor: string;
695
+ listDialogBorderColor: string;
696
+ selectedListOptionBackgroundColor: string;
697
+ selectedHoverListOptionBackgroundColor: string;
698
+ selectedActiveListOptionBackgroundColor: string;
699
+ selectedListOptionIconColor: string;
700
+ unselectedHoverListOptionBackgroundColor: string;
701
+ unselectedActiveListOptionBackgroundColor: string;
702
+ selectionIndicatorFontColor: string;
703
+ selectionIndicatorFontSize: string;
704
+ selectionIndicatorFontStyle: string;
705
+ selectionIndicatorFontWeight: string;
706
+ selectionIndicatorBorderColor: string;
707
+ selectionIndicatorBackgroundColor: string;
708
+ enabledSelectionIndicatorActionBackgroundColor: string;
709
+ enabledSelectionIndicatorActionIconColor: string;
710
+ hoverSelectionIndicatorActionBackgroundColor: string;
711
+ hoverSelectionIndicatorActionIconColor: string;
712
+ activeSelectionIndicatorActionBackgroundColor: string;
713
+ activeSelectionIndicatorActionIconColor: string;
714
+ };
715
+ sidenav: {
716
+ backgroundColor: string;
717
+ titleFontFamily: string;
718
+ titleFontSize: string;
719
+ titleFontStyle: string;
720
+ titleFontWeight: string;
721
+ titleFontColor: string;
722
+ titleFontTextTransform: string;
723
+ titleFontLetterSpacing: string;
724
+ groupTitleFontFamily: string;
725
+ groupTitleFontSize: string;
726
+ groupTitleFontStyle: string;
727
+ groupTitleFontWeight: string;
728
+ groupTitleFontColor: string;
729
+ groupTitleHoverBackgroundColor: string;
730
+ groupTitleActiveBackgroundColor: string;
731
+ groupTitleSelectedFontColor: string;
732
+ groupTitleSelectedBackgroundColor: string;
733
+ groupTitleSelectedHoverFontColor: string;
734
+ groupTitleSelectedHoverBackgroundColor: string;
735
+ groupTitleFontTextTransform: string;
736
+ groupTitleFontLetterSpacing: string;
737
+ linkFontFamily: string;
738
+ linkFontSize: string;
739
+ linkFontStyle: string;
740
+ linkFontWeight: string;
741
+ linkFontColor: string;
742
+ linkHoverBackgroundColor: string;
743
+ linkSelectedFontColor: string;
744
+ linkSelectedBackgroundColor: string;
745
+ linkSelectedHoverFontColor: string;
746
+ linkSelectedHoverBackgroundColor: string;
747
+ linkFontTextTransform: string;
748
+ linkFontLetterSpacing: string;
749
+ linkTextDecoration: string;
750
+ linkMarginTop: string;
751
+ linkMarginBottom: string;
752
+ linkMarginRight: string;
753
+ linkMarginLeft: string;
754
+ linkFocusColor: string;
755
+ scrollBarThumbColor: string;
756
+ scrollBarTrackColor: string;
757
+ };
758
+ slider: {
759
+ fontFamily: string;
760
+ limitValuesFontColor: string;
761
+ limitValuesFontColorOnDark: string;
762
+ limitValuesFontSize: string;
763
+ limitValuesFontStyle: string;
764
+ limitValuesFontWeight: string;
765
+ limitValuesFontLetterSpacing: string;
766
+ disabledLimitValuesFontColor: string;
767
+ labelFontFamily: string;
768
+ labelFontSize: string;
769
+ labelFontStyle: string;
770
+ labelFontWeight: string;
771
+ labelLineHeight: string;
772
+ helperTextFontFamily: string;
773
+ helperTextFontSize: string;
774
+ helperTextFontStyle: string;
775
+ helperTextFontWeight: string;
776
+ helperTextLineHeight: string;
777
+ fontColor: string;
778
+ fontColorOnDark: string;
779
+ labelFontColor: string;
780
+ labelFontColorOnDark: string;
781
+ helperTextFontColor: string;
782
+ helperTextFontColorOnDark: string;
783
+ disabledLabelFontColor: string;
784
+ disabledLabelFontColorOnDark: string;
785
+ disabledHelperTextFontColor: string;
786
+ disabledHelperTextFontColorOnDark: string;
787
+ thumbHeight: string;
788
+ thumbWidth: string;
789
+ hoverThumbHeight: string;
790
+ hoverThumbWidth: string;
791
+ thumbVerticalPosition: string;
792
+ hoverThumbVerticalPosition: string;
793
+ thumbBackgroundColor: string;
794
+ thumbBackgroundColorOnDark: string;
795
+ hoverThumbScale: string;
796
+ hoverThumbBackgroundColor: string;
797
+ hoverThumbBackgroundColorOnDark: string;
798
+ activeThumbScale: string;
799
+ activeThumbBackgroundColor: string;
800
+ activeThumbBackgroundColorOnDark: string;
801
+ focusThumbBackgroundColor: string;
802
+ focusThumbBackgroundColorOnDark: string;
803
+ tickHeight: string;
804
+ tickWidth: string;
805
+ tickVerticalPosition: string;
806
+ tickBackgroundColor: string;
807
+ tickBackgroundColorOnDark: string;
808
+ trackLineThickness: string;
809
+ trackLineVerticalPosition: string;
810
+ trackLineColor: string;
811
+ trackLineColorOnDark: string;
812
+ totalLineThickness: string;
813
+ totalLineVerticalPosition: string;
814
+ totalLineColor: string;
815
+ totalLineColorOnDark: string;
816
+ disabledThumbVerticalPosition: string;
817
+ disabledThumbBackgroundColor: string;
818
+ disabledThumbBackgroundColorOnDark: string;
819
+ disabledTickVerticalPosition: string;
820
+ disabledTickBackgroundColor: string;
821
+ disabledTickBackgroundColorOnDark: string;
822
+ disabledTrackLineColor: string;
823
+ disabledTrackLineColorOnDark: string;
824
+ disabledTotalLineColor: string;
825
+ disabledTotalLineColorOnDark: string;
826
+ focusColor: string;
827
+ focusColorOnDark: string;
828
+ floorLabelMarginRight: string;
829
+ ceilLabelMarginLeft: string;
830
+ inputMarginLeft: string;
831
+ };
832
+ spinner: {
833
+ trackCircleColor: string;
834
+ trackCircleColorOverlay: string;
835
+ totalCircleColor: string;
836
+ labelFontFamily: string;
837
+ labelFontSize: string;
838
+ labelFontStyle: string;
839
+ labelFontWeight: string;
840
+ labelFontColor: string;
841
+ labelFontColorOnDark: string;
842
+ labelTextAlign: string;
843
+ progressValueFontFamily: string;
844
+ progressValueFontSize: string;
845
+ progressValueFontStyle: string;
846
+ progressValueFontWeight: string;
847
+ progressValueFontColor: string;
848
+ progressValueFontColorOnDark: string;
849
+ progressValueTextAlign: string;
850
+ overlayBackgroundColor: string;
851
+ overlayOpacity: string;
852
+ overlayLabelFontFamily: string;
853
+ overlayLabelFontSize: string;
854
+ overlayLabelFontStyle: string;
855
+ overlayLabelFontWeight: string;
856
+ overlayLabelFontColor: string;
857
+ overlayLabelTextAlign: string;
858
+ overlayProgressValueFontFamily: string;
859
+ overlayProgressValueFontSize: string;
860
+ overlayProgressValueFontStyle: string;
861
+ overlayProgressValueFontWeight: string;
862
+ overlayProgressValueFontColor: string;
863
+ overlayProgressValueTextAlign: string;
864
+ };
865
+ switch: {
866
+ checkedTrackBackgroundColor: string;
867
+ checkedTrackBackgroundColorOnDark: string;
868
+ checkedThumbBackgroundColor: string;
869
+ checkedThumbBackgroundColorOnDark: string;
870
+ uncheckedTrackBackgroundColor: string;
871
+ uncheckedTrackBackgroundColorOnDark: string;
872
+ uncheckedThumbBackgroundColor: string;
873
+ uncheckedThumbBackgroundColorOnDark: string;
874
+ disabledCheckedTrackBackgroundColor: string;
875
+ disabledCheckedTrackBackgroundColorOnDark: string;
876
+ disabledCheckedThumbBackgroundColor: string;
877
+ disabledCheckedThumbBackgroundColorOnDark: string;
878
+ disabledUncheckedTrackBackgroundColor: string;
879
+ disabledUncheckedTrackBackgroundColorOnDark: string;
880
+ disabledUncheckedThumbBackgroundColor: string;
881
+ disabledUncheckedThumbBackgroundColorOnDark: string;
882
+ disabledLabelFontColor: string;
883
+ disabledLabelFontColorOnDark: string;
884
+ disabledLabelFontStyle: string;
885
+ labelFontFamily: string;
886
+ labelFontSize: string;
887
+ labelFontStyle: string;
888
+ labelFontWeight: string;
889
+ labelFontColor: string;
890
+ labelFontColorOnDark: string;
891
+ thumbFocusColor: string;
892
+ thumbFocusColorOnDark: string;
893
+ thumbHeight: string;
894
+ thumbWidth: string;
895
+ thumbShift: string;
896
+ trackHeight: string;
897
+ trackWidth: string;
898
+ spaceBetweenLabelSwitch: string;
899
+ };
900
+ table: {
901
+ rowSeparatorThickness: string;
902
+ rowSeparatorStyle: string;
903
+ rowSeparatorColor: string;
904
+ dataBackgroundColor: string;
905
+ dataFontFamily: string;
906
+ dataFontSize: string;
907
+ dataFontStyle: string;
908
+ dataFontWeight: string;
909
+ dataFontColor: string;
910
+ dataFontTextTransform: string;
911
+ dataPaddingTop: string;
912
+ dataPaddingBottom: string;
913
+ dataPaddingRight: string;
914
+ dataPaddingLeft: string;
915
+ dataTextAlign: string;
916
+ dataTextLineHeight: string;
917
+ headerBackgroundColor: string;
918
+ headerBorderRadius: string;
919
+ headerFontFamily: string;
920
+ headerFontSize: string;
921
+ headerFontStyle: string;
922
+ headerFontWeight: string;
923
+ headerFontColor: string;
924
+ headerFontTextTransform: string;
925
+ headerPaddingTop: string;
926
+ headerPaddingBottom: string;
927
+ headerPaddingRight: string;
928
+ headerPaddingLeft: string;
929
+ headerTextAlign: string;
930
+ headerTextLineHeight: string;
931
+ scrollBarThumbColor: string;
932
+ scrollBarTrackColor: string;
933
+ sortIconColor: string;
934
+ };
935
+ tabs: {
936
+ fontFamily: string;
937
+ fontSize: string;
938
+ fontStyle: string;
939
+ fontWeight: string;
940
+ fontTextTransform: string;
941
+ selectedBackgroundColor: string;
942
+ selectedFontColor: string;
943
+ selectedIconColor: string;
944
+ selectedUnderlineColor: string;
945
+ selectedUnderlineThickness: string;
946
+ unselectedBackgroundColor: string;
947
+ unselectedFontColor: string;
948
+ unselectedIconColor: string;
949
+ disabledFontColor: string;
950
+ disabledIconColor: string;
951
+ disabledFontStyle: string;
952
+ disabledBadgeBackgroundColor: string;
953
+ hoverBackgroundColor: string;
954
+ pressedBackgroundColor: string;
955
+ pressedFontWeight: string;
956
+ dividerColor: string;
957
+ dividerThickness: string;
958
+ focusOutline: string;
959
+ scrollButtonsWidth: string;
960
+ badgeBackgroundColor: string;
961
+ badgeFontFamily: string;
962
+ badgeFontSize: string;
963
+ badgeFontStyle: string;
964
+ badgeFontWeight: string;
965
+ badgeFontColor: string;
966
+ badgeLetterSpacing: string;
967
+ badgeWidth: string;
968
+ badgeHeight: string;
969
+ badgeRadius: string;
970
+ badgeWidthWithNotificationNumber: string;
971
+ badgeHeightWithNotificationNumber: string;
972
+ badgeRadiusWithNotificationNumber: string;
973
+ };
974
+ tag: {
975
+ fontFamily: string;
976
+ fontColor: string;
977
+ fontSize: string;
978
+ fontStyle: string;
979
+ fontWeight: string;
980
+ labelPaddingTop: string;
981
+ labelPaddingBottom: string;
982
+ labelPaddingLeft: string;
983
+ labelPaddingRight: string;
984
+ height: string;
985
+ iconColor: string;
986
+ iconSectionWidth: string;
987
+ iconHeight: string;
988
+ iconWidth: string;
989
+ focusColor: string;
990
+ };
991
+ textarea: {
992
+ fontFamily: string;
993
+ enabledBorderColor: string;
994
+ enabledBorderColorOnDark: string;
995
+ hoverBorderColor: string;
996
+ hoverBorderColorOnDark: string;
997
+ focusBorderColor: string;
998
+ focusBorderColorOnDark: string;
999
+ disabledBorderColor: string;
1000
+ disabledBorderColorOnDark: string;
1001
+ disabledContainerFillColor: string;
1002
+ disabledContainerFillColorOnDark: string;
1003
+ errorBorderColor: string;
1004
+ errorBorderColorOnDark: string;
1005
+ hoverErrorBorderColor: string;
1006
+ hoverErrorBorderColorOnDark: string;
1007
+ inputMarginTop: string;
1008
+ inputMarginBottom: string;
1009
+ errorMessageColor: string;
1010
+ errorMessageColorOnDark: string;
1011
+ labelFontColor: string;
1012
+ labelFontColorOnDark: string;
1013
+ labelFontSize: string;
1014
+ labelFontStyle: string;
1015
+ labelFontWeight: string;
1016
+ labelLineHeight: string;
1017
+ disabledLabelFontColor: string;
1018
+ disabledLabelFontColorOnDark: string;
1019
+ optionalLabelFontWeight: string;
1020
+ helperTextFontColor: string;
1021
+ helperTextFontColorOnDark: string;
1022
+ helperTextFontSize: string;
1023
+ helperTextFontStyle: string;
1024
+ helperTextFontWeight: string;
1025
+ helperTextLineHeight: string;
1026
+ disabledHelperTextFontColor: string;
1027
+ disabledHelperTextFontColorOnDark: string;
1028
+ placeholderFontColor: string;
1029
+ placeholderFontColorOnDark: string;
1030
+ disabledPlaceholderFontColor: string;
1031
+ disabledPlaceholderFontColorOnDark: string;
1032
+ valueFontColor: string;
1033
+ valueFontColorOnDark: string;
1034
+ valueFontSize: string;
1035
+ valueFontStyle: string;
1036
+ valueFontWeight: string;
1037
+ disabledValueFontColor: string;
1038
+ disabledValueFontColorOnDark: string;
1039
+ };
1040
+ textInput: {
1041
+ fontFamily: string;
1042
+ enabledBorderColor: string;
1043
+ enabledBorderColorOnDark: string;
1044
+ hoverBorderColor: string;
1045
+ hoverBorderColorOnDark: string;
1046
+ focusBorderColor: string;
1047
+ focusBorderColorOnDark: string;
1048
+ disabledBorderColor: string;
1049
+ disabledBorderColorOnDark: string;
1050
+ disabledContainerFillColor: string;
1051
+ disabledContainerFillColorOnDark: string;
1052
+ errorBorderColor: string;
1053
+ errorBorderColorOnDark: string;
1054
+ hoverErrorBorderColor: string;
1055
+ hoverErrorBorderColorOnDark: string;
1056
+ inputMarginTop: string;
1057
+ inputMarginBottom: string;
1058
+ errorMessageColor: string;
1059
+ errorMessageColorOnDark: string;
1060
+ errorIconColor: string;
1061
+ errorIconColorOnDark: string;
1062
+ labelFontColor: string;
1063
+ labelFontColorOnDark: string;
1064
+ labelFontSize: string;
1065
+ labelFontStyle: string;
1066
+ labelFontWeight: string;
1067
+ labelLineHeight: string;
1068
+ disabledLabelFontColor: string;
1069
+ disabledLabelFontColorOnDark: string;
1070
+ optionalLabelFontWeight: string;
1071
+ helperTextFontColor: string;
1072
+ helperTextFontColorOnDark: string;
1073
+ helperTextFontSize: string;
1074
+ helperTextFontStyle: string;
1075
+ helperTextFontWeight: string;
1076
+ helperTextLineHeight: string;
1077
+ disabledHelperTextFontColor: string;
1078
+ disabledHelperTextFontColorOnDark: string;
1079
+ prefixColor: string;
1080
+ prefixColorOnDark: string;
1081
+ suffixColor: string;
1082
+ suffixColorOnDark: string;
1083
+ disabledPrefixColor: string;
1084
+ disabledSuffixColor: string;
1085
+ disabledPrefixColorOnDark: string;
1086
+ disabledSuffixColorOnDark: string;
1087
+ placeholderFontColor: string;
1088
+ placeholderFontColorOnDark: string;
1089
+ disabledPlaceholderFontColor: string;
1090
+ disabledPlaceholderFontColorOnDark: string;
1091
+ valueFontColor: string;
1092
+ valueFontColorOnDark: string;
1093
+ valueFontSize: string;
1094
+ valueFontStyle: string;
1095
+ valueFontWeight: string;
1096
+ disabledValueFontColor: string;
1097
+ disabledValueFontColorOnDark: string;
1098
+ actionIconColor: string;
1099
+ actionIconColorOnDark: string;
1100
+ disabledActionIconColor: string;
1101
+ disabledActionIconColorOnDark: string;
1102
+ hoverActionIconColor: string;
1103
+ hoverActionIconColorOnDark: string;
1104
+ focusActionIconColor: string;
1105
+ focusActionIconColorOnDark: string;
1106
+ activeActionIconColor: string;
1107
+ activeActionIconColorOnDark: string;
1108
+ actionBackgroundColor: string;
1109
+ actionBackgroundColorOnDark: string;
1110
+ disabledActionBackgroundColor: string;
1111
+ disabledActionBackgroundColorOnDark: string;
1112
+ hoverActionBackgroundColor: string;
1113
+ hoverActionBackgroundColorOnDark: string;
1114
+ focusActionBorderColor: string;
1115
+ focusActionBorderColorOnDark: string;
1116
+ activeActionBackgroundColor: string;
1117
+ activeActionBackgroundColorOnDark: string;
1118
+ listDialogBackgroundColor: string;
1119
+ listDialogBorderColor: string;
1120
+ listOptionDividerColor: string;
1121
+ listOptionFontColor: string;
1122
+ listOptionFontSize: string;
1123
+ listOptionFontStyle: string;
1124
+ listOptionFontWeight: string;
1125
+ systemMessageFontColor: string;
1126
+ errorListDialogFontColor: string;
1127
+ errorListDialogBackgroundColor: string;
1128
+ errorListDialogBorderColor: string;
1129
+ hoverListOptionBackgroundColor: string;
1130
+ activeListOptionBackgroundColor: string;
1131
+ focusListOptionBorderColor: string;
1132
+ };
1133
+ toggleGroup: {
1134
+ containerBackgroundColor: string;
1135
+ containerBorderColor: string;
1136
+ labelFontColor: string;
1137
+ disabledLabelFontColor: string;
1138
+ helperTextFontColor: string;
1139
+ disabledHelperTextFontcolor: string;
1140
+ unselectedBackgroundColor: string;
1141
+ unselectedHoverBackgroundColor: string;
1142
+ unselectedActiveBackgroundColor: string;
1143
+ unselectedDisabledBackgroundColor: string;
1144
+ unselectedFontColor: string;
1145
+ unselectedDisabledFontColor: string;
1146
+ selectedBackgroundColor: string;
1147
+ selectedHoverBackgroundColor: string;
1148
+ selectedActiveBackgroundColor: string;
1149
+ selectedDisabledBackgroundColor: string;
1150
+ selectedFontColor: string;
1151
+ selectedDisabledFontColor: string;
1152
+ focusColor: string;
1153
+ labelFontFamily: string;
1154
+ labelFontSize: string;
1155
+ labelFontStyle: string;
1156
+ labelFontWeight: string;
1157
+ labelLineHeight: string;
1158
+ helperTextFontFamily: string;
1159
+ helperTextFontSize: string;
1160
+ helperTextFontStyle: string;
1161
+ helperTextFontWeight: string;
1162
+ helperTextLineHeight: string;
1163
+ optionLabelFontFamily: string;
1164
+ optionLabelFontSize: string;
1165
+ optionLabelFontStyle: string;
1166
+ optionLabelFontWeight: string;
1167
+ iconPaddingRight: string;
1168
+ iconPaddingLeft: string;
1169
+ labelPaddingLeft: string;
1170
+ labelPaddingRight: string;
1171
+ iconMarginRight: string;
1172
+ containerMarginTop: string;
1173
+ optionBorderThickness: string;
1174
+ optionBorderStyle: string;
1175
+ optionBorderRadius: string;
1176
+ containerBorderThickness: string;
1177
+ containerBorderStyle: string;
1178
+ containerBorderRadius: string;
1179
+ optionFocusBorderThickness: string;
1180
+ };
1181
+ wizard: {
1182
+ visitedStepFontColor: string;
1183
+ visitedStepBackgroundColor: string;
1184
+ visitedStepBorderColor: string;
1185
+ unvisitedStepFontColor: string;
1186
+ unvisitedLabelFontColor: string;
1187
+ unvisitedHelperTextFontColor: string;
1188
+ unvisitedStepBackgroundColor: string;
1189
+ unvisitedStepBorderColor: string;
1190
+ selectedStepFontColor: string;
1191
+ selectedStepBackgroundColor: string;
1192
+ selectedStepBorderColor: string;
1193
+ selectedLabelFontColor: string;
1194
+ selectedHelperTextFontColor: string;
1195
+ selectedStepWidth: string;
1196
+ selectedStepHeight: string;
1197
+ selectedStepBorderThickness: string;
1198
+ selectedStepBorderStyle: string;
1199
+ selectedStepBorderRadius: string;
1200
+ stepFontSize: string;
1201
+ stepFontFamily: string;
1202
+ stepFontStyle: string;
1203
+ stepFontWeight: string;
1204
+ stepFontTracking: string;
1205
+ stepIconSize: string;
1206
+ stepWidth: string;
1207
+ stepHeight: string;
1208
+ stepBorderThickness: string;
1209
+ stepBorderStyle: string;
1210
+ stepBorderRadius: string;
1211
+ visitedLabelFontColor: string;
1212
+ labelFontSize: string;
1213
+ labelFontFamily: string;
1214
+ labelFontStyle: string;
1215
+ labelFontWeight: string;
1216
+ labelFontTracking: string;
1217
+ labelFontTextTransform: string;
1218
+ labelTextAlign: string;
1219
+ helperTextFontSize: string;
1220
+ helperTextFontFamily: string;
1221
+ helperTextFontStyle: string;
1222
+ helperTextFontWeight: string;
1223
+ helperTextFontTracking: string;
1224
+ helperTextFontTextTransform: string;
1225
+ visitedHelperTextFontColor: string;
1226
+ helperTextTextAlign: string;
1227
+ disabledStepBackgroundColor: string;
1228
+ disabledStepFontColor: string;
1229
+ disabledLabelFontColor: string;
1230
+ disabledHelperTextFontColor: string;
1231
+ disabledStepBorderColor: string;
1232
+ disabledStepWidth: string;
1233
+ disabledStepHeight: string;
1234
+ disabledStepBorderThickness: string;
1235
+ disabledStepBorderStyle: string;
1236
+ disabledStepBorderRadius: string;
1237
+ separatorBorderThickness: string;
1238
+ separatorBorderStyle: string;
1239
+ separatorColor: string;
1240
+ focusColor: string;
1241
+ };
1242
+ };
1243
+ export declare type AdvancedTheme = typeof componentTokens;
1244
+ export declare type OpinionatedTheme = {
1245
+ accordion: {
1246
+ accentColor: string;
1247
+ titleFontColor: string;
1248
+ assistiveTextFontColor: string;
1249
+ };
1250
+ alert: {
1251
+ baseColor: string;
1252
+ accentColor: string;
1253
+ overlayColor: string;
1254
+ };
1255
+ box: {
1256
+ baseColor: string;
1257
+ };
1258
+ button: {
1259
+ baseColor: string;
1260
+ primaryFontColor: string;
1261
+ secondaryHoverFontColor: string;
1262
+ };
1263
+ checkbox: {
1264
+ baseColor: string;
1265
+ checkColor: string;
1266
+ fontColor: string;
1267
+ };
1268
+ chip: {
1269
+ baseColor: string;
1270
+ fontColor: string;
1271
+ iconColor: string;
1272
+ };
1273
+ dateInput: {
1274
+ baseColor: string;
1275
+ selectedFontColor: string;
1276
+ };
1277
+ dialog: {
1278
+ baseColor: string;
1279
+ closeIconColor: string;
1280
+ overlayColor: string;
1281
+ };
1282
+ dropdown: {
1283
+ baseColor: string;
1284
+ fontColor: string;
1285
+ optionFontColor: string;
1286
+ };
1287
+ fileInput: {
1288
+ fontColor: string;
1289
+ };
1290
+ footer: {
1291
+ baseColor: string;
1292
+ fontColor: string;
1293
+ accentColor: string;
1294
+ logo: string;
1295
+ };
1296
+ header: {
1297
+ baseColor: string;
1298
+ accentColor: string;
1299
+ fontColor: string;
1300
+ menuBaseColor: string;
1301
+ hamburguerColor: string;
1302
+ logo: string;
1303
+ logoResponsive: string;
1304
+ contentColor: string;
1305
+ overlayColor: string;
1306
+ };
1307
+ link: {
1308
+ baseColor: string;
1309
+ };
1310
+ navTabs: {
1311
+ baseColor: string;
1312
+ accentColor: string;
1313
+ };
1314
+ paginator: {
1315
+ baseColor: string;
1316
+ fontColor: string;
1317
+ };
1318
+ progressBar: {
1319
+ accentColor: string;
1320
+ baseColor: string;
1321
+ fontColor: string;
1322
+ overlayColor: string;
1323
+ overlayFontColor: string;
1324
+ };
1325
+ quickNav: {
1326
+ fontColor: string;
1327
+ accentColor: string;
1328
+ };
1329
+ radioGroup: {
1330
+ baseColor: string;
1331
+ fontColor: string;
1332
+ };
1333
+ select: {
1334
+ selectedOptionBackgroundColor: string;
1335
+ fontColor: string;
1336
+ optionFontColor: string;
1337
+ hoverBorderColor: string;
1338
+ };
1339
+ sidenav: {
1340
+ baseColor: string;
1341
+ };
1342
+ slider: {
1343
+ baseColor: string;
1344
+ fontColor: string;
1345
+ totalLineColor: string;
1346
+ };
1347
+ spinner: {
1348
+ accentColor: string;
1349
+ baseColor: string;
1350
+ fontColor: string;
1351
+ overlayColor: string;
1352
+ overlayFontColor: string;
1353
+ };
1354
+ switch: {
1355
+ checkedBaseColor: string;
1356
+ fontColor: string;
1357
+ };
1358
+ table: {
1359
+ baseColor: string;
1360
+ headerFontColor: string;
1361
+ cellFontColor: string;
1362
+ };
1363
+ tabs: {
1364
+ baseColor: string;
1365
+ };
1366
+ tag: {
1367
+ fontColor: string;
1368
+ iconColor: string;
1369
+ };
1370
+ textarea: {
1371
+ fontColor: string;
1372
+ hoverBorderColor: string;
1373
+ };
1374
+ textInput: {
1375
+ fontColor: string;
1376
+ hoverBorderColor: string;
1377
+ };
1378
+ toggleGroup: {
1379
+ selectedBaseColor: string;
1380
+ selectedFontColor: string;
1381
+ unselectedBaseColor: string;
1382
+ unselectedFontColor: string;
1383
+ };
1384
+ wizard: {
1385
+ baseColor: string;
1386
+ fontColor: string;
1387
+ selectedStepFontColor: string;
1388
+ };
1389
+ };
1390
+ export declare const spaces: {
1391
+ xxsmall: string;
1392
+ xsmall: string;
1393
+ small: string;
1394
+ medium: string;
1395
+ large: string;
1396
+ xlarge: string;
1397
+ xxlarge: string;
1398
+ };
1399
+ export declare const responsiveSizes: {
1400
+ xsmall: string;
1401
+ small: string;
1402
+ medium: string;
1403
+ large: string;
1404
+ xlarge: string;
1405
+ };
1406
+ export declare const defaultTranslatedComponentLabels: {
1407
+ formFields: {
1408
+ optionalLabel: string;
1409
+ requiredSelectionErrorMessage: string;
1410
+ requiredValueErrorMessage: string;
1411
+ formatRequestedErrorMessage: string;
1412
+ lengthErrorMessage: (minLength?: number, maxLength?: number) => string;
1413
+ logoAlternativeText: string;
1414
+ };
1415
+ applicationLayout: {
1416
+ visibilityToggleTitle: string;
1417
+ };
1418
+ alert: {
1419
+ infoTitleText: string;
1420
+ successTitleText: string;
1421
+ warningTitleText: string;
1422
+ errorTitleText: string;
1423
+ };
1424
+ dateInput: {
1425
+ invalidDateErrorMessage: string;
1426
+ };
1427
+ dialog: {
1428
+ closeIconAriaLabel: string;
1429
+ };
1430
+ fileInput: {
1431
+ fileSizeGreaterThanErrorMessage: string;
1432
+ fileSizeLessThanErrorMessage: string;
1433
+ multipleButtonLabelDefault: string;
1434
+ singleButtonLabelDefault: string;
1435
+ dropAreaButtonLabelDefault: string;
1436
+ multipleDropAreaLabelDefault: string;
1437
+ singleDropAreaLabelDefault: string;
1438
+ deleteFileActionTitle: string;
1439
+ };
1440
+ footer: {
1441
+ copyrightText: (year: number) => string;
1442
+ };
1443
+ header: {
1444
+ closeIcon: string;
1445
+ hamburguerTitle: string;
1446
+ };
1447
+ numberInput: {
1448
+ valueGreaterThanOrEqualToErrorMessage: (value: number) => string;
1449
+ valueLessThanOrEqualToErrorMessage: (value: number) => string;
1450
+ decrementValueTitle: string;
1451
+ incrementValueTitle: string;
1452
+ };
1453
+ paginator: {
1454
+ itemsPerPageText: string;
1455
+ minToMaxOfText: (minNumberOfItems: number, maxNumberOfItems: number, totalItems: number) => string;
1456
+ goToPageText: string;
1457
+ pageOfText: (pageNumber: number, totalPagesNumber: number) => string;
1458
+ };
1459
+ passwordInput: {
1460
+ inputShowPasswordTitle: string;
1461
+ inputHidePasswordTitle: string;
1462
+ };
1463
+ quickNav: {
1464
+ contentTitle: string;
1465
+ };
1466
+ radioGroup: {
1467
+ optionalItemLabelDefault: string;
1468
+ };
1469
+ select: {
1470
+ noMatchesErrorMessage: string;
1471
+ actionClearSelectionTitle: string;
1472
+ actionClearSearchTitle: string;
1473
+ };
1474
+ tabs: {
1475
+ scrollLeft: string;
1476
+ scrollRight: string;
1477
+ };
1478
+ textInput: {
1479
+ clearFieldActionTitle: string;
1480
+ searchingMessage: string;
1481
+ fetchingDataErrorMessage: string;
1482
+ };
1483
+ calendar: {
1484
+ daysShort: string[];
1485
+ months: string[];
1486
+ previousMonthTitle: string;
1487
+ nextMonthTitle: string;
1488
+ };
1489
+ };
1490
+ export declare type TranslatedLabels = typeof defaultTranslatedComponentLabels;