@dxc-technology/halstack-react 0.0.0-ff6151e → 0.0.0-ff6c8bf

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