@dxc-technology/halstack-react 0.0.0-f44cd28 → 0.0.0-f77ec3a

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 (248) hide show
  1. package/README.md +2 -2
  2. package/babel.config.js +0 -1
  3. package/dist/BackgroundColorContext.js +46 -0
  4. package/dist/ThemeContext.js +213 -153
  5. package/dist/V3Select/V3Select.js +549 -0
  6. package/dist/V3Select/index.d.ts +27 -0
  7. package/dist/V3Textarea/V3Textarea.js +264 -0
  8. package/dist/V3Textarea/index.d.ts +27 -0
  9. package/dist/accordion/Accordion.js +131 -46
  10. package/dist/accordion/index.d.ts +28 -0
  11. package/dist/accordion-group/AccordionGroup.js +34 -4
  12. package/dist/accordion-group/index.d.ts +16 -0
  13. package/dist/alert/Alert.js +180 -80
  14. package/dist/alert/index.d.ts +51 -0
  15. package/dist/badge/Badge.js +28 -7
  16. package/dist/box/Box.js +29 -18
  17. package/dist/box/index.d.ts +25 -0
  18. package/dist/button/Button.js +62 -23
  19. package/dist/button/index.d.ts +24 -0
  20. package/dist/card/Card.js +72 -35
  21. package/dist/card/index.d.ts +22 -0
  22. package/dist/checkbox/Checkbox.js +98 -28
  23. package/dist/checkbox/index.d.ts +24 -0
  24. package/dist/chip/Chip.js +92 -32
  25. package/dist/chip/index.d.ts +22 -0
  26. package/dist/common/utils.js +2 -22
  27. package/dist/common/variables.js +1404 -179
  28. package/dist/date/Date.js +65 -38
  29. package/dist/date/index.d.ts +27 -0
  30. package/dist/date-input/DateInput.js +400 -0
  31. package/dist/date-input/index.d.ts +95 -0
  32. package/dist/dialog/Dialog.js +54 -31
  33. package/dist/dialog/index.d.ts +18 -0
  34. package/dist/dropdown/Dropdown.js +173 -75
  35. package/dist/dropdown/index.d.ts +26 -0
  36. package/dist/file-input/FileInput.js +644 -0
  37. package/dist/file-input/FileItem.js +287 -0
  38. package/dist/file-input/index.d.ts +81 -0
  39. package/dist/footer/Footer.js +89 -34
  40. package/dist/footer/Icons.js +77 -0
  41. package/dist/footer/index.d.ts +25 -0
  42. package/dist/header/Header.js +190 -88
  43. package/dist/header/Icons.js +59 -0
  44. package/dist/header/index.d.ts +25 -0
  45. package/dist/heading/Heading.js +93 -16
  46. package/dist/heading/index.d.ts +17 -0
  47. package/dist/input-text/Icons.js +22 -0
  48. package/dist/input-text/InputText.js +247 -101
  49. package/dist/input-text/index.d.ts +36 -0
  50. package/dist/layout/ApplicationLayout.js +15 -18
  51. package/dist/layout/Icons.js +55 -0
  52. package/dist/link/Link.js +84 -34
  53. package/dist/link/index.d.ts +23 -0
  54. package/dist/main.d.ts +40 -0
  55. package/dist/main.js +72 -16
  56. package/dist/number-input/NumberInput.js +136 -0
  57. package/dist/number-input/NumberInputContext.js +16 -0
  58. package/dist/number-input/index.d.ts +113 -0
  59. package/dist/paginator/Icons.js +66 -0
  60. package/dist/paginator/Paginator.js +102 -44
  61. package/dist/paginator/index.d.ts +20 -0
  62. package/dist/password-input/PasswordInput.js +203 -0
  63. package/dist/password-input/index.d.ts +94 -0
  64. package/dist/progress-bar/ProgressBar.js +91 -33
  65. package/dist/progress-bar/index.d.ts +18 -0
  66. package/dist/radio/Radio.js +30 -11
  67. package/dist/radio/index.d.ts +23 -0
  68. package/dist/resultsetTable/ResultsetTable.js +79 -48
  69. package/dist/resultsetTable/index.d.ts +19 -0
  70. package/dist/select/Select.js +899 -278
  71. package/dist/select/index.d.ts +53 -0
  72. package/dist/sidenav/Sidenav.js +64 -8
  73. package/dist/sidenav/index.d.ts +13 -0
  74. package/dist/slider/Slider.js +212 -65
  75. package/dist/slider/index.d.ts +29 -0
  76. package/dist/spinner/Spinner.js +247 -56
  77. package/dist/spinner/index.d.ts +17 -0
  78. package/dist/stories/Button.js +71 -0
  79. package/dist/stories/Button.stories.js +55 -0
  80. package/dist/stories/Header.js +67 -0
  81. package/dist/stories/Header.stories.js +31 -0
  82. package/dist/stories/Introduction.stories.mdx +211 -0
  83. package/dist/stories/Page.js +68 -0
  84. package/dist/stories/Page.stories.js +39 -0
  85. package/dist/stories/assets/code-brackets.svg +1 -0
  86. package/dist/stories/assets/colors.svg +1 -0
  87. package/dist/stories/assets/comments.svg +1 -0
  88. package/dist/stories/assets/direction.svg +1 -0
  89. package/dist/stories/assets/flow.svg +1 -0
  90. package/dist/stories/assets/plugin.svg +1 -0
  91. package/dist/stories/assets/repo.svg +1 -0
  92. package/dist/stories/assets/stackalt.svg +1 -0
  93. package/dist/stories/button.css +30 -0
  94. package/dist/stories/header.css +26 -0
  95. package/dist/stories/page.css +69 -0
  96. package/dist/switch/Switch.js +51 -19
  97. package/dist/switch/index.d.ts +24 -0
  98. package/dist/table/Table.js +48 -18
  99. package/dist/table/index.d.ts +13 -0
  100. package/dist/tabs/Tabs.js +58 -17
  101. package/dist/tabs/index.d.ts +19 -0
  102. package/dist/tag/Tag.js +68 -35
  103. package/dist/tag/index.d.ts +24 -0
  104. package/dist/text-input/TextInput.js +974 -0
  105. package/dist/text-input/index.d.ts +135 -0
  106. package/dist/textarea/Textarea.js +246 -97
  107. package/dist/textarea/index.d.ts +117 -0
  108. package/dist/toggle/Toggle.js +16 -19
  109. package/dist/toggle/index.d.ts +21 -0
  110. package/dist/toggle-group/ToggleGroup.js +150 -32
  111. package/dist/toggle-group/index.d.ts +21 -0
  112. package/dist/upload/Upload.js +13 -8
  113. package/dist/upload/buttons-upload/ButtonsUpload.js +32 -19
  114. package/dist/upload/buttons-upload/Icons.js +40 -0
  115. package/dist/upload/dragAndDropArea/DragAndDropArea.js +84 -34
  116. package/dist/upload/dragAndDropArea/Icons.js +39 -0
  117. package/dist/upload/file-upload/FileToUpload.js +64 -33
  118. package/dist/upload/file-upload/Icons.js +66 -0
  119. package/dist/upload/files-upload/FilesToUpload.js +16 -16
  120. package/dist/upload/index.d.ts +15 -0
  121. package/dist/upload/transaction/Icons.js +160 -0
  122. package/dist/upload/transaction/Transaction.js +42 -49
  123. package/dist/upload/transactions/Transactions.js +38 -20
  124. package/dist/wizard/Icons.js +65 -0
  125. package/dist/wizard/Wizard.js +126 -47
  126. package/dist/wizard/index.d.ts +18 -0
  127. package/package.json +19 -13
  128. package/test/AccordionGroup.test.js +16 -0
  129. package/test/Date.test.js +15 -13
  130. package/test/DateInput.test.js +242 -0
  131. package/test/Dropdown.test.js +15 -0
  132. package/test/FileInput.test.js +201 -0
  133. package/test/Footer.test.js +2 -7
  134. package/test/Header.test.js +5 -10
  135. package/test/Heading.test.js +60 -12
  136. package/test/InputText.test.js +1 -2
  137. package/test/Link.test.js +3 -2
  138. package/test/NumberInput.test.js +259 -0
  139. package/test/Paginator.test.js +6 -2
  140. package/test/PasswordInput.test.js +83 -0
  141. package/test/ResultsetTable.test.js +6 -6
  142. package/test/Select.test.js +371 -148
  143. package/test/Slider.test.js +9 -17
  144. package/test/Spinner.test.js +5 -0
  145. package/test/TextInput.test.js +732 -0
  146. package/test/Textarea.test.js +193 -0
  147. package/test/ToggleGroup.test.js +5 -1
  148. package/test/Upload.test.js +1 -1
  149. package/test/V3Select.test.js +212 -0
  150. package/test/{TextArea.test.js → V3TextArea.test.js} +6 -7
  151. package/dist/accordion/Accordion.stories.js +0 -207
  152. package/dist/accordion/readme.md +0 -96
  153. package/dist/accordion-group/AccordionGroup.stories.js +0 -207
  154. package/dist/accordion-group/readme.md +0 -70
  155. package/dist/alert/Alert.stories.js +0 -158
  156. package/dist/alert/close.svg +0 -4
  157. package/dist/alert/error.svg +0 -4
  158. package/dist/alert/info.svg +0 -4
  159. package/dist/alert/readme.md +0 -43
  160. package/dist/alert/success.svg +0 -4
  161. package/dist/alert/warning.svg +0 -4
  162. package/dist/button/Button.stories.js +0 -224
  163. package/dist/button/readme.md +0 -93
  164. package/dist/checkbox/Checkbox.stories.js +0 -144
  165. package/dist/checkbox/readme.md +0 -116
  166. package/dist/common/services/example-service.js +0 -10
  167. package/dist/common/services/example-service.test.js +0 -12
  168. package/dist/date/Date.stories.js +0 -205
  169. package/dist/date/calendar.svg +0 -1
  170. package/dist/date/calendar_dark.svg +0 -1
  171. package/dist/date/readme.md +0 -73
  172. package/dist/dialog/Dialog.stories.js +0 -217
  173. package/dist/dialog/readme.md +0 -32
  174. package/dist/dropdown/Dropdown.stories.js +0 -249
  175. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  176. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  177. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  178. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  179. package/dist/dropdown/readme.md +0 -69
  180. package/dist/footer/Footer.stories.js +0 -94
  181. package/dist/footer/dxc_logo_wht.png +0 -0
  182. package/dist/footer/readme.md +0 -41
  183. package/dist/header/Header.stories.js +0 -176
  184. package/dist/header/close_icon.svg +0 -1
  185. package/dist/header/dxc_logo_black.png +0 -0
  186. package/dist/header/dxc_logo_blk_rgb.svg +0 -6
  187. package/dist/header/dxc_logo_white.png +0 -0
  188. package/dist/header/hamb_menu_black.svg +0 -1
  189. package/dist/header/hamb_menu_white.svg +0 -1
  190. package/dist/header/readme.md +0 -33
  191. package/dist/input-text/InputText.stories.js +0 -209
  192. package/dist/input-text/error.svg +0 -1
  193. package/dist/input-text/readme.md +0 -91
  194. package/dist/layout/facebook.svg +0 -45
  195. package/dist/layout/linkedin.svg +0 -50
  196. package/dist/layout/twitter.svg +0 -53
  197. package/dist/link/readme.md +0 -51
  198. package/dist/paginator/images/next.svg +0 -3
  199. package/dist/paginator/images/nextPage.svg +0 -3
  200. package/dist/paginator/images/previous.svg +0 -3
  201. package/dist/paginator/images/previousPage.svg +0 -3
  202. package/dist/paginator/readme.md +0 -50
  203. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  204. package/dist/progress-bar/readme.md +0 -63
  205. package/dist/radio/Radio.stories.js +0 -166
  206. package/dist/radio/readme.md +0 -70
  207. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  208. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  209. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  210. package/dist/select/Select.stories.js +0 -235
  211. package/dist/select/readme.md +0 -72
  212. package/dist/slider/Slider.stories.js +0 -241
  213. package/dist/slider/readme.md +0 -64
  214. package/dist/spinner/Spinner.stories.js +0 -183
  215. package/dist/spinner/readme.md +0 -65
  216. package/dist/switch/Switch.stories.js +0 -134
  217. package/dist/switch/readme.md +0 -133
  218. package/dist/tabs/Tabs.stories.js +0 -130
  219. package/dist/tabs/readme.md +0 -78
  220. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  221. package/dist/tabs-for-sections/readme.md +0 -78
  222. package/dist/toggle/Toggle.stories.js +0 -297
  223. package/dist/toggle/readme.md +0 -80
  224. package/dist/toggle-group/readme.md +0 -82
  225. package/dist/upload/Upload.stories.js +0 -72
  226. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  227. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  228. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  229. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  230. package/dist/upload/file-upload/audio-icon.svg +0 -4
  231. package/dist/upload/file-upload/close.svg +0 -4
  232. package/dist/upload/file-upload/file-icon.svg +0 -4
  233. package/dist/upload/file-upload/video-icon.svg +0 -4
  234. package/dist/upload/readme.md +0 -37
  235. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  236. package/dist/upload/transaction/audio-icon.svg +0 -4
  237. package/dist/upload/transaction/error-icon.svg +0 -4
  238. package/dist/upload/transaction/file-icon-err.svg +0 -4
  239. package/dist/upload/transaction/file-icon.svg +0 -4
  240. package/dist/upload/transaction/image-icon-err.svg +0 -4
  241. package/dist/upload/transaction/image-icon.svg +0 -4
  242. package/dist/upload/transaction/success-icon.svg +0 -4
  243. package/dist/upload/transaction/video-icon-err.svg +0 -4
  244. package/dist/upload/transaction/video-icon.svg +0 -4
  245. package/dist/wizard/invalid_icon.svg +0 -6
  246. package/dist/wizard/valid_icon.svg +0 -6
  247. package/dist/wizard/validation-wrong.svg +0 -6
  248. package/test/TabsForSections.test.js +0 -34
@@ -1,190 +1,250 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
3
  var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
6
4
 
5
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
6
+
7
7
  Object.defineProperty(exports, "__esModule", {
8
8
  value: true
9
9
  });
10
10
  exports.ThemeProvider = exports["default"] = void 0;
11
11
 
12
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
13
+
12
14
  var _react = _interopRequireWildcard(require("react"));
13
15
 
14
16
  var _color = _interopRequireDefault(require("color"));
15
17
 
16
18
  var _rgbHex = _interopRequireDefault(require("rgb-hex"));
17
19
 
20
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
21
+
18
22
  var _variables = require("./common/variables.js");
19
23
 
20
- /* eslint-disable prefer-template */
24
+ function _templateObject() {
25
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n @import url(\"https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap\");\n"]);
26
+
27
+ _templateObject = function _templateObject() {
28
+ return data;
29
+ };
30
+
31
+ return data;
32
+ }
33
+
21
34
  var ThemeContext = _react["default"].createContext();
22
35
 
23
- var addLightness = function addLightness(hexColor, increaseLightness) {
24
- if (hexColor) {
25
- var color = (0, _color["default"])(hexColor);
26
- var hslColor = color.hsl();
27
- var lightnessColor = hslColor.color[2];
28
- return hslColor.lightness(lightnessColor + increaseLightness).hex();
36
+ var addLightness = function addLightness(hexColor, newLightness) {
37
+ try {
38
+ if (hexColor) {
39
+ var color = (0, _color["default"])(hexColor);
40
+ var hslColor = color.hsl();
41
+ var lightnessColor = hslColor.color[2];
42
+ return hslColor.lightness(lightnessColor + newLightness).hex();
43
+ }
44
+ } catch (e) {
45
+ return null;
29
46
  }
47
+ };
30
48
 
31
- return null;
49
+ var subLightness = function subLightness(hexColor, newLightness) {
50
+ try {
51
+ if (hexColor) {
52
+ var color = (0, _color["default"])(hexColor);
53
+ var hslColor = color.hsl();
54
+ var lightnessColor = hslColor.color[2];
55
+ return hslColor.lightness(lightnessColor - newLightness).hex();
56
+ }
57
+ } catch (e) {
58
+ return null;
59
+ }
32
60
  };
33
61
 
34
- var addOpacity = function addOpacity(hexColor, increaseOpacity) {
35
- if (hexColor) {
36
- var color = (0, _color["default"])(hexColor);
37
- return "#" + (0, _rgbHex["default"])(color.color[0], color.color[1], color.color[2], increaseOpacity);
62
+ var setOpacity = function setOpacity(hexColor, newOpacity) {
63
+ try {
64
+ if (hexColor) {
65
+ var color = (0, _color["default"])(hexColor);
66
+ return "#" + (0, _rgbHex["default"])(color.color[0], color.color[1], color.color[2], newOpacity);
67
+ }
68
+ } catch (e) {
69
+ return null;
38
70
  }
71
+ };
39
72
 
40
- return null;
73
+ var parseAdvancedTheme = function parseAdvancedTheme(advancedTheme) {
74
+ var allTokensCopy = JSON.parse(JSON.stringify(_variables.componentTokens));
75
+ Object.keys(allTokensCopy).map(function (component) {
76
+ if (advancedTheme[component]) {
77
+ Object.keys(advancedTheme[component]).map(function (objectKey) {
78
+ if (advancedTheme[component][objectKey]) {
79
+ allTokensCopy[component][objectKey] = advancedTheme[component][objectKey];
80
+ }
81
+ });
82
+ }
83
+ });
84
+ return allTokensCopy;
41
85
  };
42
86
 
43
87
  var parseTheme = function parseTheme(theme) {
44
- var _ref, _theme$accordion, _ref2, _theme$accordion2, _addLightness, _theme$accordion3, _addLightness2, _theme$accordion4, _ref3, _theme$accordion5, _ref4, _theme$button, _ref5, _theme$button2, _ref6, _theme$button3, _ref7, _theme$button4, _ref8, _theme$button5, _ref9, _theme$button6, _ref10, _theme$button7, _ref11, _theme$button8, _ref12, _theme$button9, _ref13, _theme$button10, _ref14, _theme$button11, _addOpacity, _theme$button12, _addOpacity2, _theme$button13, _addOpacity3, _theme$button14, _addOpacity4, _theme$button15, _addOpacity5, _theme$button16, _ref15, _theme$checkbox, _ref16, _theme$checkbox2, _ref17, _theme$checkbox3, _addOpacity6, _theme$checkbox4, _addOpacity7, _theme$checkbox5, _addOpacity8, _theme$checkbox6, _ref18, _theme$chip, _addOpacity9, _theme$chip2, _ref19, _theme$chip3, _ref20, _theme$chip4, _addOpacity10, _theme$chip5, _ref21, _theme$date, _ref22, _theme$date2, _addOpacity11, _theme$date3, _ref23, _theme$dropdown, _ref24, _theme$dropdown2, _addOpacity12, _theme$dropdown3, _addOpacity13, _theme$dropdown4, _ref25, _theme$footer, _ref26, _theme$footer2, _ref27, _theme$footer3, _ref28, _theme$footer4, _ref29, _theme$header, _ref30, _theme$header2, _ref31, _theme$header3, _ref32, _theme$header4, _ref33, _theme$header5, _addOpacity14, _theme$header6, _ref34, _theme$header7, _ref35, _theme$header8, _addOpacity15, _theme$inputText, _ref36, _theme$paginator, _ref37, _theme$paginator2, _ref38, _theme$progressBar, _addOpacity16, _theme$progressBar2, _ref39, _theme$radio, _ref40, _theme$radio2, _ref41, _theme$radio3, _addOpacity17, _theme$radio4, _addOpacity18, _theme$radio5, _ref42, _theme$select, _ref43, _theme$select2, _ref44, _theme$select3, _ref45, _theme$select4, _ref46, _theme$select5, _ref47, _theme$select6, _addOpacity19, _theme$select7, _addOpacity20, _theme$select8, _ref48, _theme$sidenav, _addOpacity21, _theme$sideNav, _ref49, _theme$sidenav2, _ref50, _theme$slider, _ref51, _theme$slider2, _ref52, _theme$slider3, _addOpacity22, _theme$slider4, _addOpacity23, _theme$slider5, _addOpacity24, _theme$slider6, _addOpacity25, _theme$slider7, _ref53, _theme$spinner, _ref54, _theme$spinner2, _ref55, _theme$switch, _addOpacity26, _theme$switch2, _addOpacity27, _theme$switch3, _addOpacity28, _theme$switch4, _ref56, _theme$table, _ref57, _theme$table2, _ref58, _theme$tabs, _ref59, _theme$tabs2, _ref60, _theme$tabs3, _ref61, _theme$tabs4, _addLightness3, _theme$tabs5, _addLightness4, _theme$tabs6, _ref62, _theme$toggleGroup, _ref63, _theme$toggleGroup2, _ref64, _theme$toggleGroup3, _ref65, _theme$toggleGroup4, _ref66, _theme$toggleGroup5, _ref67, _theme$toggleGroup6, _ref68, _theme$toggleGroup7, _ref69, _theme$toggleGroup8, _addOpacity29, _theme$toggleGroup9, _addOpacity30, _theme$toggleGroup10, _addOpacity31, _theme$toggleGroup11, _addOpacity32, _theme$toggleGroup12, _ref70, _theme$wizard, _ref71, _theme$wizard2;
45
-
46
- var accordionTokens = _variables.componentTokens.accordion;
47
- accordionTokens.fontColor = (_ref = theme === null || theme === void 0 ? void 0 : (_theme$accordion = theme.accordion) === null || _theme$accordion === void 0 ? void 0 : _theme$accordion.fontColor) !== null && _ref !== void 0 ? _ref : accordionTokens.fontColor;
48
- accordionTokens.arrowColor = (_ref2 = theme === null || theme === void 0 ? void 0 : (_theme$accordion2 = theme.accordion) === null || _theme$accordion2 === void 0 ? void 0 : _theme$accordion2.arrowColor) !== null && _ref2 !== void 0 ? _ref2 : accordionTokens.arrowColor;
49
- accordionTokens.hoverBackgroundColor = (_addLightness = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$accordion3 = theme.accordion) === null || _theme$accordion3 === void 0 ? void 0 : _theme$accordion3.arrowColor, 53)) !== null && _addLightness !== void 0 ? _addLightness : accordionTokens.hoverBackgroundColor;
50
- accordionTokens.disabledFontColor = (_addLightness2 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$accordion4 = theme.accordion) === null || _theme$accordion4 === void 0 ? void 0 : _theme$accordion4.fontColor, 35)) !== null && _addLightness2 !== void 0 ? _addLightness2 : accordionTokens.disabledFontColor;
51
- accordionTokens.focusOutline = (_ref3 = theme === null || theme === void 0 ? void 0 : (_theme$accordion5 = theme.accordion) === null || _theme$accordion5 === void 0 ? void 0 : _theme$accordion5.arrowColor) !== null && _ref3 !== void 0 ? _ref3 : accordionTokens.arrowColor;
52
- var buttonTokens = _variables.componentTokens.button;
53
- buttonTokens.primaryBackgroundColor = (_ref4 = theme === null || theme === void 0 ? void 0 : (_theme$button = theme.button) === null || _theme$button === void 0 ? void 0 : _theme$button.color) !== null && _ref4 !== void 0 ? _ref4 : buttonTokens.primaryBackgroundColor;
54
- buttonTokens.secondaryOutlinedColor = (_ref5 = theme === null || theme === void 0 ? void 0 : (_theme$button2 = theme.button) === null || _theme$button2 === void 0 ? void 0 : _theme$button2.color) !== null && _ref5 !== void 0 ? _ref5 : buttonTokens.secondaryOutlinedColor;
55
- buttonTokens.primaryHoverBackgroundColor = (_ref6 = theme === null || theme === void 0 ? void 0 : (_theme$button3 = theme.button) === null || _theme$button3 === void 0 ? void 0 : _theme$button3.hoverColor) !== null && _ref6 !== void 0 ? _ref6 : buttonTokens.primaryHoverBackgroundColor;
56
- buttonTokens.hoverOutlinedColor = (_ref7 = theme === null || theme === void 0 ? void 0 : (_theme$button4 = theme.button) === null || _theme$button4 === void 0 ? void 0 : _theme$button4.hoverColor) !== null && _ref7 !== void 0 ? _ref7 : buttonTokens.hoverOutlinedColor;
57
- buttonTokens.textHoverBackgroundColor = (_ref8 = theme === null || theme === void 0 ? void 0 : (_theme$button5 = theme.button) === null || _theme$button5 === void 0 ? void 0 : _theme$button5.hoverColor) !== null && _ref8 !== void 0 ? _ref8 : buttonTokens.textHoverBackgroundColor;
58
- buttonTokens.primaryFontColor = (_ref9 = theme === null || theme === void 0 ? void 0 : (_theme$button6 = theme.button) === null || _theme$button6 === void 0 ? void 0 : _theme$button6.primaryFontColor) !== null && _ref9 !== void 0 ? _ref9 : buttonTokens.primaryFontColor;
59
- buttonTokens.primaryHoverFontColor = (_ref10 = theme === null || theme === void 0 ? void 0 : (_theme$button7 = theme.button) === null || _theme$button7 === void 0 ? void 0 : _theme$button7.primaryHoverFontColor) !== null && _ref10 !== void 0 ? _ref10 : buttonTokens.primaryHoverFontColor;
60
- buttonTokens.secondaryFontColor = (_ref11 = theme === null || theme === void 0 ? void 0 : (_theme$button8 = theme.button) === null || _theme$button8 === void 0 ? void 0 : _theme$button8.secondaryFontColor) !== null && _ref11 !== void 0 ? _ref11 : buttonTokens.secondaryFontColor;
61
- buttonTokens.secondaryHoverFontColor = (_ref12 = theme === null || theme === void 0 ? void 0 : (_theme$button9 = theme.button) === null || _theme$button9 === void 0 ? void 0 : _theme$button9.secondaryHoverFontColor) !== null && _ref12 !== void 0 ? _ref12 : buttonTokens.secondaryHoverFontColor;
62
- buttonTokens.textFontColor = (_ref13 = theme === null || theme === void 0 ? void 0 : (_theme$button10 = theme.button) === null || _theme$button10 === void 0 ? void 0 : _theme$button10.textFontColor) !== null && _ref13 !== void 0 ? _ref13 : buttonTokens.textFontColor;
63
- buttonTokens.textHoverFontColor = (_ref14 = theme === null || theme === void 0 ? void 0 : (_theme$button11 = theme.button) === null || _theme$button11 === void 0 ? void 0 : _theme$button11.textHoverFontColor) !== null && _ref14 !== void 0 ? _ref14 : buttonTokens.textHoverFontColor;
64
- buttonTokens.disabledPrimaryBackgroundColor = (_addOpacity = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$button12 = theme.button) === null || _theme$button12 === void 0 ? void 0 : _theme$button12.color, 0.34)) !== null && _addOpacity !== void 0 ? _addOpacity : buttonTokens.disabledPrimaryBackgroundColor;
65
- buttonTokens.disabledSecondaryOutlinedColor = (_addOpacity2 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$button13 = theme.button) === null || _theme$button13 === void 0 ? void 0 : _theme$button13.color, 0.34)) !== null && _addOpacity2 !== void 0 ? _addOpacity2 : buttonTokens.disabledSecondaryOutlinedColor;
66
- buttonTokens.disabledPrimaryFontColor = (_addOpacity3 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$button14 = theme.button) === null || _theme$button14 === void 0 ? void 0 : _theme$button14.primaryFontColor, 0.34)) !== null && _addOpacity3 !== void 0 ? _addOpacity3 : buttonTokens.disabledPrimaryFontColor;
67
- buttonTokens.disabledSecondaryFontColor = (_addOpacity4 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$button15 = theme.button) === null || _theme$button15 === void 0 ? void 0 : _theme$button15.secondaryFontColor, 0.34)) !== null && _addOpacity4 !== void 0 ? _addOpacity4 : buttonTokens.disabledSecondaryFontColor;
68
- buttonTokens.disabledTextFontColor = (_addOpacity5 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$button16 = theme.button) === null || _theme$button16 === void 0 ? void 0 : _theme$button16.textFontColor, 0.34)) !== null && _addOpacity5 !== void 0 ? _addOpacity5 : buttonTokens.disabledTextFontColor;
69
- var checkboxTokens = _variables.componentTokens.checkbox;
70
- checkboxTokens.backgroundColorChecked = (_ref15 = theme === null || theme === void 0 ? void 0 : (_theme$checkbox = theme.checkbox) === null || _theme$checkbox === void 0 ? void 0 : _theme$checkbox.color) !== null && _ref15 !== void 0 ? _ref15 : checkboxTokens.backgroundColorChecked;
71
- checkboxTokens.borderColor = (_ref16 = theme === null || theme === void 0 ? void 0 : (_theme$checkbox2 = theme.checkbox) === null || _theme$checkbox2 === void 0 ? void 0 : _theme$checkbox2.color) !== null && _ref16 !== void 0 ? _ref16 : checkboxTokens.borderColor;
72
- checkboxTokens.checkColor = (_ref17 = theme === null || theme === void 0 ? void 0 : (_theme$checkbox3 = theme.checkbox) === null || _theme$checkbox3 === void 0 ? void 0 : _theme$checkbox3.checkColor) !== null && _ref17 !== void 0 ? _ref17 : checkboxTokens.checkColor;
73
- checkboxTokens.disabledBackgroundColorChecked = (_addOpacity6 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$checkbox4 = theme.checkbox) === null || _theme$checkbox4 === void 0 ? void 0 : _theme$checkbox4.color, 0.34)) !== null && _addOpacity6 !== void 0 ? _addOpacity6 : checkboxTokens.disabledBackgroundColorChecked;
74
- checkboxTokens.disabledBorderColor = (_addOpacity7 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$checkbox5 = theme.checkbox) === null || _theme$checkbox5 === void 0 ? void 0 : _theme$checkbox5.color, 0.34)) !== null && _addOpacity7 !== void 0 ? _addOpacity7 : checkboxTokens.disabledBorderColor;
75
- checkboxTokens.disabledCheckColor = (_addOpacity8 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$checkbox6 = theme.checkbox) === null || _theme$checkbox6 === void 0 ? void 0 : _theme$checkbox6.checkColor, 0.34)) !== null && _addOpacity8 !== void 0 ? _addOpacity8 : checkboxTokens.disabledCheckColor;
76
- var chipTokens = _variables.componentTokens.chip;
77
- chipTokens.backgroundColor = (_ref18 = theme === null || theme === void 0 ? void 0 : (_theme$chip = theme.chip) === null || _theme$chip === void 0 ? void 0 : _theme$chip.backgroundColor) !== null && _ref18 !== void 0 ? _ref18 : chipTokens.backgroundColor;
78
- chipTokens.disabledBackgroundColor = (_addOpacity9 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$chip2 = theme.chip) === null || _theme$chip2 === void 0 ? void 0 : _theme$chip2.backgroundColor, 0.34)) !== null && _addOpacity9 !== void 0 ? _addOpacity9 : chipTokens.disabledBackgroundColor;
79
- chipTokens.outlinedColor = (_ref19 = theme === null || theme === void 0 ? void 0 : (_theme$chip3 = theme.chip) === null || _theme$chip3 === void 0 ? void 0 : _theme$chip3.outlinedColor) !== null && _ref19 !== void 0 ? _ref19 : chipTokens.outlinedColor;
80
- chipTokens.fontColor = (_ref20 = theme === null || theme === void 0 ? void 0 : (_theme$chip4 = theme.chip) === null || _theme$chip4 === void 0 ? void 0 : _theme$chip4.fontColor) !== null && _ref20 !== void 0 ? _ref20 : chipTokens.fontColor;
81
- chipTokens.disabledFontColor = (_addOpacity10 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$chip5 = theme.chip) === null || _theme$chip5 === void 0 ? void 0 : _theme$chip5.fontColor, 0.34)) !== null && _addOpacity10 !== void 0 ? _addOpacity10 : chipTokens.disabledFontColor;
82
- var dateTokens = _variables.componentTokens.date;
83
- dateTokens.pickerSelectedDateBackgroundColor = (_ref21 = theme === null || theme === void 0 ? void 0 : (_theme$date = theme.date) === null || _theme$date === void 0 ? void 0 : _theme$date.pickerSelectedDateBackgroundColor) !== null && _ref21 !== void 0 ? _ref21 : dateTokens.pickerSelectedDateBackgroundColor;
84
- dateTokens.pickerSelectedDateColor = (_ref22 = theme === null || theme === void 0 ? void 0 : (_theme$date2 = theme.date) === null || _theme$date2 === void 0 ? void 0 : _theme$date2.pickerSelectedDateColor) !== null && _ref22 !== void 0 ? _ref22 : dateTokens.pickerSelectedDateColor;
85
- dateTokens.pickerHoverDateBackgroundColor = (_addOpacity11 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$date3 = theme.date) === null || _theme$date3 === void 0 ? void 0 : _theme$date3.pickerSelectedDateBackgroundColor, 0.34)) !== null && _addOpacity11 !== void 0 ? _addOpacity11 : dateTokens.pickerHoverDateBackgroundColor;
86
- var dropdownTokens = _variables.componentTokens.dropdown;
87
- dropdownTokens.backgroundColor = (_ref23 = theme === null || theme === void 0 ? void 0 : (_theme$dropdown = theme.dropdown) === null || _theme$dropdown === void 0 ? void 0 : _theme$dropdown.backgroundColor) !== null && _ref23 !== void 0 ? _ref23 : dropdownTokens.backgroundColor;
88
- dropdownTokens.fontColor = (_ref24 = theme === null || theme === void 0 ? void 0 : (_theme$dropdown2 = theme.dropdown) === null || _theme$dropdown2 === void 0 ? void 0 : _theme$dropdown2.fontColor) !== null && _ref24 !== void 0 ? _ref24 : dropdownTokens.fontColor;
89
- dropdownTokens.hoverBackgroundColor = (_addOpacity12 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$dropdown3 = theme.dropdown) === null || _theme$dropdown3 === void 0 ? void 0 : _theme$dropdown3.backgroundColor, 0.8)) !== null && _addOpacity12 !== void 0 ? _addOpacity12 : dropdownTokens.hoverBackgroundColor;
90
- dropdownTokens.hoverBackgroundOption = (_addOpacity13 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$dropdown4 = theme.dropdown) === null || _theme$dropdown4 === void 0 ? void 0 : _theme$dropdown4.backgroundColor, 0.34)) !== null && _addOpacity13 !== void 0 ? _addOpacity13 : dropdownTokens.hoverBackgroundOption;
91
- var footerTokens = _variables.componentTokens.footer;
92
- footerTokens.backgroundColor = (_ref25 = theme === null || theme === void 0 ? void 0 : (_theme$footer = theme.footer) === null || _theme$footer === void 0 ? void 0 : _theme$footer.backgroundColor) !== null && _ref25 !== void 0 ? _ref25 : footerTokens.backgroundColor;
93
- footerTokens.fontColor = (_ref26 = theme === null || theme === void 0 ? void 0 : (_theme$footer2 = theme.footer) === null || _theme$footer2 === void 0 ? void 0 : _theme$footer2.fontColor) !== null && _ref26 !== void 0 ? _ref26 : footerTokens.fontColor;
94
- footerTokens.lineColor = (_ref27 = theme === null || theme === void 0 ? void 0 : (_theme$footer3 = theme.footer) === null || _theme$footer3 === void 0 ? void 0 : _theme$footer3.lineColor) !== null && _ref27 !== void 0 ? _ref27 : footerTokens.lineColor;
95
- footerTokens.logo = (_ref28 = theme === null || theme === void 0 ? void 0 : (_theme$footer4 = theme.footer) === null || _theme$footer4 === void 0 ? void 0 : _theme$footer4.logo) !== null && _ref28 !== void 0 ? _ref28 : footerTokens.logo;
96
- var headerTokens = _variables.componentTokens.header;
97
- headerTokens.backgroundColor = (_ref29 = theme === null || theme === void 0 ? void 0 : (_theme$header = theme.header) === null || _theme$header === void 0 ? void 0 : _theme$header.backgroundColor) !== null && _ref29 !== void 0 ? _ref29 : headerTokens.backgroundColor;
98
- headerTokens.underlinedColor = (_ref30 = theme === null || theme === void 0 ? void 0 : (_theme$header2 = theme.header) === null || _theme$header2 === void 0 ? void 0 : _theme$header2.underlinedColor) !== null && _ref30 !== void 0 ? _ref30 : headerTokens.underlinedColor;
99
- headerTokens.fontColor = (_ref31 = theme === null || theme === void 0 ? void 0 : (_theme$header3 = theme.header) === null || _theme$header3 === void 0 ? void 0 : _theme$header3.fontColor) !== null && _ref31 !== void 0 ? _ref31 : headerTokens.fontColor;
100
- headerTokens.backgroundColorMenu = (_ref32 = theme === null || theme === void 0 ? void 0 : (_theme$header4 = theme.header) === null || _theme$header4 === void 0 ? void 0 : _theme$header4.backgroundColorMenu) !== null && _ref32 !== void 0 ? _ref32 : headerTokens.backgroundColorMenu;
101
- headerTokens.hamburguerColor = (_ref33 = theme === null || theme === void 0 ? void 0 : (_theme$header5 = theme.header) === null || _theme$header5 === void 0 ? void 0 : _theme$header5.hamburguerColor) !== null && _ref33 !== void 0 ? _ref33 : headerTokens.hamburguerColor;
102
- headerTokens.hoverHamburguerColor = (_addOpacity14 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$header6 = theme.header) === null || _theme$header6 === void 0 ? void 0 : _theme$header6.hamburguerColor, 0.16)) !== null && _addOpacity14 !== void 0 ? _addOpacity14 : headerTokens.hoverHamburguerColor;
103
- headerTokens.logo = (_ref34 = theme === null || theme === void 0 ? void 0 : (_theme$header7 = theme.header) === null || _theme$header7 === void 0 ? void 0 : _theme$header7.logo) !== null && _ref34 !== void 0 ? _ref34 : headerTokens.logo;
104
- headerTokens.logoResponsive = (_ref35 = theme === null || theme === void 0 ? void 0 : (_theme$header8 = theme.header) === null || _theme$header8 === void 0 ? void 0 : _theme$header8.logoResponsive) !== null && _ref35 !== void 0 ? _ref35 : headerTokens.logoResponsive;
105
- var inputTokens = _variables.componentTokens.inputText;
106
- inputTokens.selectedOptionBackgroundColor = (_addOpacity15 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$inputText = theme.inputText) === null || _theme$inputText === void 0 ? void 0 : _theme$inputText.selectedOptionBackgroundColor, 0.34)) !== null && _addOpacity15 !== void 0 ? _addOpacity15 : inputTokens.selectedOptionBackgroundColor;
107
- var paginatorTokens = _variables.componentTokens.paginator;
108
- paginatorTokens.paginatorBackgroundColor = (_ref36 = theme === null || theme === void 0 ? void 0 : (_theme$paginator = theme.paginator) === null || _theme$paginator === void 0 ? void 0 : _theme$paginator.paginatorBackgroundColor) !== null && _ref36 !== void 0 ? _ref36 : paginatorTokens.paginatorBackgroundColor;
109
- paginatorTokens.paginatorFontColor = (_ref37 = theme === null || theme === void 0 ? void 0 : (_theme$paginator2 = theme.paginator) === null || _theme$paginator2 === void 0 ? void 0 : _theme$paginator2.paginatorFontColor) !== null && _ref37 !== void 0 ? _ref37 : paginatorTokens.paginatorFontColor;
110
- var progressBarTokens = _variables.componentTokens.progressBar;
111
- progressBarTokens.trackLine = (_ref38 = theme === null || theme === void 0 ? void 0 : (_theme$progressBar = theme.progressBar) === null || _theme$progressBar === void 0 ? void 0 : _theme$progressBar.trackLine) !== null && _ref38 !== void 0 ? _ref38 : progressBarTokens.trackLine;
112
- progressBarTokens.totalLine = (_addOpacity16 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$progressBar2 = theme.progressBar) === null || _theme$progressBar2 === void 0 ? void 0 : _theme$progressBar2.totalLine, 0.34)) !== null && _addOpacity16 !== void 0 ? _addOpacity16 : progressBarTokens.totalLine;
113
- var radioTokens = _variables.componentTokens.radio;
114
- radioTokens.color = (_ref39 = theme === null || theme === void 0 ? void 0 : (_theme$radio = theme.radio) === null || _theme$radio === void 0 ? void 0 : _theme$radio.color) !== null && _ref39 !== void 0 ? _ref39 : radioTokens.color;
115
- radioTokens.fontColor = (_ref40 = theme === null || theme === void 0 ? void 0 : (_theme$radio2 = theme.radio) === null || _theme$radio2 === void 0 ? void 0 : _theme$radio2.themeColor) !== null && _ref40 !== void 0 ? _ref40 : radioTokens.fontColor;
116
- radioTokens.focusColor = (_ref41 = theme === null || theme === void 0 ? void 0 : (_theme$radio3 = theme.radio) === null || _theme$radio3 === void 0 ? void 0 : _theme$radio3.focusColor) !== null && _ref41 !== void 0 ? _ref41 : radioTokens.focusColor;
117
- radioTokens.disabledColor = (_addOpacity17 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$radio4 = theme.radio) === null || _theme$radio4 === void 0 ? void 0 : _theme$radio4.color, 0.34)) !== null && _addOpacity17 !== void 0 ? _addOpacity17 : radioTokens.disabledColor;
118
- radioTokens.disabledFontColor = (_addOpacity18 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$radio5 = theme.radio) === null || _theme$radio5 === void 0 ? void 0 : _theme$radio5.fontColor, 0.34)) !== null && _addOpacity18 !== void 0 ? _addOpacity18 : radioTokens.disabledFontColor;
119
- var selectTokens = _variables.componentTokens.select;
120
- selectTokens.selectedOptionBackgroundColor = (_ref42 = theme === null || theme === void 0 ? void 0 : (_theme$select = theme.select) === null || _theme$select === void 0 ? void 0 : _theme$select.selectedOptionBackgroundColor) !== null && _ref42 !== void 0 ? _ref42 : selectTokens.selectedOptionBackgroundColor;
121
- selectTokens.color = (_ref43 = theme === null || theme === void 0 ? void 0 : (_theme$select2 = theme.select) === null || _theme$select2 === void 0 ? void 0 : _theme$select2.color) !== null && _ref43 !== void 0 ? _ref43 : selectTokens.color;
122
- selectTokens.error = (_ref44 = theme === null || theme === void 0 ? void 0 : (_theme$select3 = theme.select) === null || _theme$select3 === void 0 ? void 0 : _theme$select3.error) !== null && _ref44 !== void 0 ? _ref44 : selectTokens.error;
123
- selectTokens.scrollBarThumbColor = (_ref45 = theme === null || theme === void 0 ? void 0 : (_theme$select4 = theme.select) === null || _theme$select4 === void 0 ? void 0 : _theme$select4.scrollBarThumbColor) !== null && _ref45 !== void 0 ? _ref45 : selectTokens.scrollBarThumbColor;
124
- selectTokens.scrollBarTrackColor = (_ref46 = theme === null || theme === void 0 ? void 0 : (_theme$select5 = theme.select) === null || _theme$select5 === void 0 ? void 0 : _theme$select5.scrollBarTrackColor) !== null && _ref46 !== void 0 ? _ref46 : selectTokens.scrollBarTrackColor;
125
- selectTokens.focusColor = (_ref47 = theme === null || theme === void 0 ? void 0 : (_theme$select6 = theme.select) === null || _theme$select6 === void 0 ? void 0 : _theme$select6.focusColor) !== null && _ref47 !== void 0 ? _ref47 : selectTokens.focusColor;
126
- selectTokens.hoveredOptionBackgroundColor = (_addOpacity19 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$select7 = theme.select) === null || _theme$select7 === void 0 ? void 0 : _theme$select7.selectedOptionBackgroundColor, 0.34)) !== null && _addOpacity19 !== void 0 ? _addOpacity19 : selectTokens.hoveredOptionBackgroundColor;
127
- selectTokens.disabledColor = (_addOpacity20 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$select8 = theme.select) === null || _theme$select8 === void 0 ? void 0 : _theme$select8.color, 0.34)) !== null && _addOpacity20 !== void 0 ? _addOpacity20 : selectTokens.disabledColor;
128
- var sideNavTokens = _variables.componentTokens.sidenav;
129
- sideNavTokens.backgroundColor = (_ref48 = theme === null || theme === void 0 ? void 0 : (_theme$sidenav = theme.sidenav) === null || _theme$sidenav === void 0 ? void 0 : _theme$sidenav.backgroundColor) !== null && _ref48 !== void 0 ? _ref48 : sideNavTokens.backgroundColor;
130
- sideNavTokens.arrowContainerColor = (_addOpacity21 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$sideNav = theme.sideNav) === null || _theme$sideNav === void 0 ? void 0 : _theme$sideNav.arrowContainerColor, 0.8)) !== null && _addOpacity21 !== void 0 ? _addOpacity21 : sideNavTokens.arrowContainerColor;
131
- sideNavTokens.arrowColor = (_ref49 = theme === null || theme === void 0 ? void 0 : (_theme$sidenav2 = theme.sidenav) === null || _theme$sidenav2 === void 0 ? void 0 : _theme$sidenav2.arrowColor) !== null && _ref49 !== void 0 ? _ref49 : sideNavTokens.arrowColor;
132
- var sliderTokens = _variables.componentTokens.slider;
133
- sliderTokens.thumbBackgroundColor = (_ref50 = theme === null || theme === void 0 ? void 0 : (_theme$slider = theme.slider) === null || _theme$slider === void 0 ? void 0 : _theme$slider.color) !== null && _ref50 !== void 0 ? _ref50 : sliderTokens.thumbBackgroundColor;
134
- sliderTokens.dotsBackgroundColor = (_ref51 = theme === null || theme === void 0 ? void 0 : (_theme$slider2 = theme.slider) === null || _theme$slider2 === void 0 ? void 0 : _theme$slider2.color) !== null && _ref51 !== void 0 ? _ref51 : sliderTokens.dotsBackgroundColor;
135
- sliderTokens.trackLine = (_ref52 = theme === null || theme === void 0 ? void 0 : (_theme$slider3 = theme.slider) === null || _theme$slider3 === void 0 ? void 0 : _theme$slider3.color) !== null && _ref52 !== void 0 ? _ref52 : sliderTokens.trackLine;
136
- sliderTokens.totalLine = (_addOpacity22 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$slider4 = theme.slider) === null || _theme$slider4 === void 0 ? void 0 : _theme$slider4.color, 0.34)) !== null && _addOpacity22 !== void 0 ? _addOpacity22 : sliderTokens.totalLine;
137
- sliderTokens.disabledThumbBackgroundColor = (_addOpacity23 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$slider5 = theme.slider) === null || _theme$slider5 === void 0 ? void 0 : _theme$slider5.color, 0.34)) !== null && _addOpacity23 !== void 0 ? _addOpacity23 : sliderTokens.disabledThumbBackgroundColor;
138
- sliderTokens.disabledDotsBackgroundColor = (_addOpacity24 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$slider6 = theme.slider) === null || _theme$slider6 === void 0 ? void 0 : _theme$slider6.color, 0.34)) !== null && _addOpacity24 !== void 0 ? _addOpacity24 : sliderTokens.disabledDotsBackgroundColor;
139
- sliderTokens.disabledTrackLine = (_addOpacity25 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$slider7 = theme.slider) === null || _theme$slider7 === void 0 ? void 0 : _theme$slider7.color, 0.34)) !== null && _addOpacity25 !== void 0 ? _addOpacity25 : sliderTokens.disabledTrackLine;
140
- var spinnerTokens = _variables.componentTokens.spinner;
141
- spinnerTokens.trackCircleColor = (_ref53 = theme === null || theme === void 0 ? void 0 : (_theme$spinner = theme.spinner) === null || _theme$spinner === void 0 ? void 0 : _theme$spinner.trackCircleColor) !== null && _ref53 !== void 0 ? _ref53 : spinnerTokens.trackCircleColor;
142
- spinnerTokens.totalCircleColor = (_ref54 = theme === null || theme === void 0 ? void 0 : (_theme$spinner2 = theme.spinner) === null || _theme$spinner2 === void 0 ? void 0 : _theme$spinner2.totalCircleColor) !== null && _ref54 !== void 0 ? _ref54 : spinnerTokens.totalCircleColor;
143
- var switchTokens = _variables.componentTokens["switch"];
144
- switchTokens.checkedTrackBackgroundColor = (_ref55 = theme === null || theme === void 0 ? void 0 : (_theme$switch = theme["switch"]) === null || _theme$switch === void 0 ? void 0 : _theme$switch.checkedTrackBackgroundColor) !== null && _ref55 !== void 0 ? _ref55 : switchTokens.checkedTrackBackgroundColor;
145
- switchTokens.disabledUncheckedTrackBackgroundColor = (_addOpacity26 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$switch2 = theme["switch"]) === null || _theme$switch2 === void 0 ? void 0 : _theme$switch2.uncheckedTrackBackgroundColor, 0.34)) !== null && _addOpacity26 !== void 0 ? _addOpacity26 : switchTokens.disabledUncheckedTrackBackgroundColor;
146
- switchTokens.disabledFontColor = (_addOpacity27 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$switch3 = theme["switch"]) === null || _theme$switch3 === void 0 ? void 0 : _theme$switch3.fontColor, 0.34)) !== null && _addOpacity27 !== void 0 ? _addOpacity27 : switchTokens.disabledFontColor;
147
- switchTokens.disabledCheckedTrackBackgroundColor = (_addOpacity28 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$switch4 = theme["switch"]) === null || _theme$switch4 === void 0 ? void 0 : _theme$switch4.checkedTrackBackgroundColor, 0.34)) !== null && _addOpacity28 !== void 0 ? _addOpacity28 : switchTokens.disabledCheckedTrackBackgroundColor;
148
- var tableTokens = _variables.componentTokens.table;
149
- tableTokens.headerBackgroundColor = (_ref56 = theme === null || theme === void 0 ? void 0 : (_theme$table = theme.table) === null || _theme$table === void 0 ? void 0 : _theme$table.headerBackgroundColor) !== null && _ref56 !== void 0 ? _ref56 : tableTokens.headerBackgroundColor;
150
- tableTokens.headerFontColor = (_ref57 = theme === null || theme === void 0 ? void 0 : (_theme$table2 = theme.table) === null || _theme$table2 === void 0 ? void 0 : _theme$table2.headerFontColor) !== null && _ref57 !== void 0 ? _ref57 : tableTokens.headerFontColor;
151
- var tabsTokens = _variables.componentTokens.tabs;
152
- tabsTokens.selectedFontColor = (_ref58 = theme === null || theme === void 0 ? void 0 : (_theme$tabs = theme.tabs) === null || _theme$tabs === void 0 ? void 0 : _theme$tabs.selectedFontColor) !== null && _ref58 !== void 0 ? _ref58 : tabsTokens.selectedFontColor;
153
- tabsTokens.selectedIconColor = (_ref59 = theme === null || theme === void 0 ? void 0 : (_theme$tabs2 = theme.tabs) === null || _theme$tabs2 === void 0 ? void 0 : _theme$tabs2.selectedFontColor) !== null && _ref59 !== void 0 ? _ref59 : tabsTokens.selectedFontColor;
154
- tabsTokens.selectedUnderlineColor = (_ref60 = theme === null || theme === void 0 ? void 0 : (_theme$tabs3 = theme.tabs) === null || _theme$tabs3 === void 0 ? void 0 : _theme$tabs3.selectedFontColor) !== null && _ref60 !== void 0 ? _ref60 : tabsTokens.selectedFontColor;
155
- tabsTokens.focusOutline = (_ref61 = theme === null || theme === void 0 ? void 0 : (_theme$tabs4 = theme.tabs) === null || _theme$tabs4 === void 0 ? void 0 : _theme$tabs4.selectedFontColor) !== null && _ref61 !== void 0 ? _ref61 : tabsTokens.selectedFontColor;
156
- tabsTokens.hoverBackgroundColor = (_addLightness3 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$tabs5 = theme.tabs) === null || _theme$tabs5 === void 0 ? void 0 : _theme$tabs5.selectedFontColor, 58)) !== null && _addLightness3 !== void 0 ? _addLightness3 : tabsTokens.hoverBackgroundColor;
157
- tabsTokens.pressedBackgroundColor = (_addLightness4 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$tabs6 = theme.tabs) === null || _theme$tabs6 === void 0 ? void 0 : _theme$tabs6.selectedFontColor, 53)) !== null && _addLightness4 !== void 0 ? _addLightness4 : tabsTokens.pressedBackgroundColor;
158
- var toggleGroupTokens = _variables.componentTokens.toggleGroup;
159
- toggleGroupTokens.unselectedBackgroundColor = (_ref62 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup = theme.toggleGroup) === null || _theme$toggleGroup === void 0 ? void 0 : _theme$toggleGroup.unselectedBackgroundColor) !== null && _ref62 !== void 0 ? _ref62 : toggleGroupTokens.unselectedBackgroundColor;
160
- toggleGroupTokens.unselectedBackgroundHoverColor = (_ref63 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup2 = theme.toggleGroup) === null || _theme$toggleGroup2 === void 0 ? void 0 : _theme$toggleGroup2.unselectedBackgroundHoverColor) !== null && _ref63 !== void 0 ? _ref63 : toggleGroupTokens.unselectedBackgroundHoverColor;
161
- toggleGroupTokens.unselectedFontColor = (_ref64 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup3 = theme.toggleGroup) === null || _theme$toggleGroup3 === void 0 ? void 0 : _theme$toggleGroup3.unselectedFontColor) !== null && _ref64 !== void 0 ? _ref64 : toggleGroupTokens.unselectedFontColor;
162
- toggleGroupTokens.unselectedHoverFontColor = (_ref65 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup4 = theme.toggleGroup) === null || _theme$toggleGroup4 === void 0 ? void 0 : _theme$toggleGroup4.unselectedHoverFontColor) !== null && _ref65 !== void 0 ? _ref65 : toggleGroupTokens.unselectedHoverFontColor;
163
- toggleGroupTokens.selectedBackgroundColor = (_ref66 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup5 = theme.toggleGroup) === null || _theme$toggleGroup5 === void 0 ? void 0 : _theme$toggleGroup5.selectedBackgroundColor) !== null && _ref66 !== void 0 ? _ref66 : toggleGroupTokens.selectedBackgroundColor;
164
- toggleGroupTokens.selectedBackgroundHoverColor = (_ref67 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup6 = theme.toggleGroup) === null || _theme$toggleGroup6 === void 0 ? void 0 : _theme$toggleGroup6.selectedBackgroundHoverColor) !== null && _ref67 !== void 0 ? _ref67 : toggleGroupTokens.selectedBackgroundHoverColor;
165
- toggleGroupTokens.selectedFontColor = (_ref68 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup7 = theme.toggleGroup) === null || _theme$toggleGroup7 === void 0 ? void 0 : _theme$toggleGroup7.selectedFontColor) !== null && _ref68 !== void 0 ? _ref68 : toggleGroupTokens.selectedFontColor;
166
- toggleGroupTokens.selectedHoverFontColor = (_ref69 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup8 = theme.toggleGroup) === null || _theme$toggleGroup8 === void 0 ? void 0 : _theme$toggleGroup8.selectedHoverFontColor) !== null && _ref69 !== void 0 ? _ref69 : toggleGroupTokens.selectedHoverFontColor;
167
- toggleGroupTokens.disabledSelectedBackgroundColor = (_addOpacity29 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup9 = theme.toggleGroup) === null || _theme$toggleGroup9 === void 0 ? void 0 : _theme$toggleGroup9.selectedBackgroundColor, 0.34)) !== null && _addOpacity29 !== void 0 ? _addOpacity29 : toggleGroupTokens.disabledSelectedBackgroundColor;
168
- toggleGroupTokens.disabledUnselectedBackgroundColor = (_addOpacity30 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup10 = theme.toggleGroup) === null || _theme$toggleGroup10 === void 0 ? void 0 : _theme$toggleGroup10.unselectedBackgroundColor, 0.34)) !== null && _addOpacity30 !== void 0 ? _addOpacity30 : toggleGroupTokens.disabledUnselectedBackgroundColor;
169
- toggleGroupTokens.disabledUnselectedFontColor = (_addOpacity31 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup11 = theme.toggleGroup) === null || _theme$toggleGroup11 === void 0 ? void 0 : _theme$toggleGroup11.unselectedFontColor, 0.34)) !== null && _addOpacity31 !== void 0 ? _addOpacity31 : toggleGroupTokens.disabledUnselectedFontColor;
170
- toggleGroupTokens.disabledSelectedFontColor = (_addOpacity32 = addOpacity(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup12 = theme.toggleGroup) === null || _theme$toggleGroup12 === void 0 ? void 0 : _theme$toggleGroup12.selectedFontColor, 0.34)) !== null && _addOpacity32 !== void 0 ? _addOpacity32 : toggleGroupTokens.disabledSelectedFontColor;
171
- var wizardTokens = _variables.componentTokens.wizard;
172
- wizardTokens.selectedBackgroundColor = (_ref70 = theme === null || theme === void 0 ? void 0 : (_theme$wizard = theme.wizard) === null || _theme$wizard === void 0 ? void 0 : _theme$wizard.selectedBackgroundColor) !== null && _ref70 !== void 0 ? _ref70 : wizardTokens.selectedBackgroundColor;
173
- wizardTokens.selectedFont = (_ref71 = theme === null || theme === void 0 ? void 0 : (_theme$wizard2 = theme.wizard) === null || _theme$wizard2 === void 0 ? void 0 : _theme$wizard2.selectedFont) !== null && _ref71 !== void 0 ? _ref71 : wizardTokens.selectedFont;
174
- return _variables.componentTokens;
88
+ var _ref, _theme$accordion, _ref2, _theme$accordion2, _ref3, _theme$accordion3, _ref4, _theme$accordion4, _ref5, _theme$accordion5, _setOpacity, _theme$accordion6, _setOpacity2, _theme$accordion7, _setOpacity3, _theme$accordion8, _setOpacity4, _theme$accordion9, _setOpacity5, _theme$accordion10, _ref6, _theme$button, _ref7, _theme$button2, _ref8, _theme$button3, _ref9, _theme$button4, _ref10, _theme$button5, _ref11, _theme$button6, _ref12, _theme$button7, _subLightness, _theme$button8, _subLightness2, _theme$button9, _subLightness3, _theme$button10, _addLightness, _theme$button11, _addLightness2, _theme$button12, _ref13, _theme$checkbox, _ref14, _theme$checkbox2, _ref15, _theme$checkbox3, _setOpacity6, _theme$checkbox4, _setOpacity7, _theme$checkbox5, _setOpacity8, _theme$checkbox6, _ref16, _theme$chip, _setOpacity9, _theme$chip2, _ref17, _theme$chip3, _setOpacity10, _theme$chip4, _ref18, _theme$date, _ref19, _theme$date2, _setOpacity11, _theme$date3, _ref20, _theme$dropdown, _ref21, _theme$dropdown2, _setOpacity12, _theme$dropdown3, _setOpacity13, _theme$dropdown4, _setOpacity14, _theme$dropdown5, _setOpacity15, _theme$dropdown6, _ref22, _theme$fileInput, _ref23, _theme$fileInput2, _ref24, _theme$fileInput3, _ref25, _theme$fileInput4, _setOpacity16, _theme$fileInput5, _setOpacity17, _theme$fileInput6, _setOpacity18, _theme$fileInput7, _ref26, _theme$footer, _ref27, _theme$footer2, _ref28, _theme$footer3, _ref29, _theme$footer4, _ref30, _theme$footer5, _ref31, _theme$footer6, _ref32, _theme$header, _ref33, _theme$header2, _ref34, _theme$header3, _ref35, _theme$header4, _ref36, _theme$header5, _setOpacity19, _theme$header6, _ref37, _theme$header7, _ref38, _theme$header8, _ref39, _theme$header9, _ref40, _theme$header10, _setOpacity20, _theme$inputText, _ref41, _theme$textInput, _subLightness4, _theme$textInput2, _ref42, _theme$paginator, _ref43, _theme$paginator2, _ref44, _theme$progressBar, _ref45, _theme$progressBar2, _ref46, _theme$radio, _setOpacity21, _theme$radio2, _ref47, _theme$V3Select, _ref48, _theme$V3Select2, _ref49, _theme$V3Select3, _addLightness3, _theme$V3Select4, _subLightness5, _theme$V3Select5, _ref50, _theme$sidenav, _setOpacity22, _theme$sidenav2, _ref51, _theme$sidenav3, _ref52, _theme$slider, _ref53, _theme$slider2, _ref54, _theme$slider3, _subLightness6, _theme$slider4, _subLightness7, _theme$slider5, _setOpacity23, _theme$slider6, _setOpacity24, _theme$slider7, _setOpacity25, _theme$slider8, _setOpacity26, _theme$slider9, _ref55, _theme$spinner, _ref56, _theme$spinner2, _ref57, _theme$switch, _setOpacity27, _theme$switch2, _ref58, _theme$table, _ref59, _theme$table2, _ref60, _theme$tabs, _ref61, _theme$tabs2, _ref62, _theme$tabs3, _ref63, _theme$tabs4, _addLightness4, _theme$tabs5, _addLightness5, _theme$tabs6, _ref64, _theme$toggleGroup, _ref65, _theme$toggleGroup2, _ref66, _theme$toggleGroup3, _ref67, _theme$toggleGroup4, _ref68, _theme$toggleGroup5, _subLightness8, _theme$toggleGroup6, _subLightness9, _theme$toggleGroup7, _addLightness6, _theme$toggleGroup8, _addLightness7, _theme$toggleGroup9, _subLightness10, _theme$toggleGroup10, _addLightness8, _theme$toggleGroup11, _setOpacity28, _theme$toggleGroup12, _ref69, _theme$wizard, _ref70, _theme$wizard2;
89
+
90
+ var componentTokensCopy = JSON.parse(JSON.stringify(_variables.componentTokens));
91
+ var accordionTokens = componentTokensCopy.accordion;
92
+ accordionTokens.assistiveTextFontColor = (_ref = theme === null || theme === void 0 ? void 0 : (_theme$accordion = theme.accordion) === null || _theme$accordion === void 0 ? void 0 : _theme$accordion.fontColor) !== null && _ref !== void 0 ? _ref : accordionTokens.assistiveTextFontColor;
93
+ accordionTokens.titleLabelFontColor = (_ref2 = theme === null || theme === void 0 ? void 0 : (_theme$accordion2 = theme.accordion) === null || _theme$accordion2 === void 0 ? void 0 : _theme$accordion2.fontColor) !== null && _ref2 !== void 0 ? _ref2 : accordionTokens.titleLabelFontColor;
94
+ accordionTokens.arrowColor = (_ref3 = theme === null || theme === void 0 ? void 0 : (_theme$accordion3 = theme.accordion) === null || _theme$accordion3 === void 0 ? void 0 : _theme$accordion3.accentColor) !== null && _ref3 !== void 0 ? _ref3 : accordionTokens.arrowColor;
95
+ accordionTokens.iconColor = (_ref4 = theme === null || theme === void 0 ? void 0 : (_theme$accordion4 = theme.accordion) === null || _theme$accordion4 === void 0 ? void 0 : _theme$accordion4.accentColor) !== null && _ref4 !== void 0 ? _ref4 : accordionTokens.iconColor;
96
+ accordionTokens.focusBorderColor = (_ref5 = theme === null || theme === void 0 ? void 0 : (_theme$accordion5 = theme.accordion) === null || _theme$accordion5 === void 0 ? void 0 : _theme$accordion5.accentColor) !== null && _ref5 !== void 0 ? _ref5 : accordionTokens.focusBorderColor;
97
+ accordionTokens.hoverBackgroundColor = (_setOpacity = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$accordion6 = theme.accordion) === null || _theme$accordion6 === void 0 ? void 0 : _theme$accordion6.accentColor, 0.16)) !== null && _setOpacity !== void 0 ? _setOpacity : accordionTokens.hoverBackgroundColor;
98
+ accordionTokens.disabledAssistiveTextFontColor = (_setOpacity2 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$accordion7 = theme.accordion) === null || _theme$accordion7 === void 0 ? void 0 : _theme$accordion7.fontColor, 0.34)) !== null && _setOpacity2 !== void 0 ? _setOpacity2 : accordionTokens.disabledAssistiveTextFontColor;
99
+ accordionTokens.disabledTitleLabelFontColor = (_setOpacity3 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$accordion8 = theme.accordion) === null || _theme$accordion8 === void 0 ? void 0 : _theme$accordion8.fontColor, 0.34)) !== null && _setOpacity3 !== void 0 ? _setOpacity3 : accordionTokens.disabledTitleLabelFontColor;
100
+ accordionTokens.disabledArrowColor = (_setOpacity4 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$accordion9 = theme.accordion) === null || _theme$accordion9 === void 0 ? void 0 : _theme$accordion9.accentColor, 0.34)) !== null && _setOpacity4 !== void 0 ? _setOpacity4 : accordionTokens.disabledArrowColor;
101
+ accordionTokens.disabledIconColor = (_setOpacity5 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$accordion10 = theme.accordion) === null || _theme$accordion10 === void 0 ? void 0 : _theme$accordion10.accentColor, 0.34)) !== null && _setOpacity5 !== void 0 ? _setOpacity5 : accordionTokens.disabledIconColor;
102
+ var buttonTokens = componentTokensCopy.button;
103
+ buttonTokens.primaryFontColor = (_ref6 = theme === null || theme === void 0 ? void 0 : (_theme$button = theme.button) === null || _theme$button === void 0 ? void 0 : _theme$button.primaryFontColor) !== null && _ref6 !== void 0 ? _ref6 : buttonTokens.primaryFontColor;
104
+ buttonTokens.primaryBackgroundColor = (_ref7 = theme === null || theme === void 0 ? void 0 : (_theme$button2 = theme.button) === null || _theme$button2 === void 0 ? void 0 : _theme$button2.baseColor) !== null && _ref7 !== void 0 ? _ref7 : buttonTokens.primaryBackgroundColor;
105
+ buttonTokens.secondaryFontColor = (_ref8 = theme === null || theme === void 0 ? void 0 : (_theme$button3 = theme.button) === null || _theme$button3 === void 0 ? void 0 : _theme$button3.baseColor) !== null && _ref8 !== void 0 ? _ref8 : buttonTokens.secondaryFontColor;
106
+ buttonTokens.secondaryHoverFontColor = (_ref9 = theme === null || theme === void 0 ? void 0 : (_theme$button4 = theme.button) === null || _theme$button4 === void 0 ? void 0 : _theme$button4.secondaryHoverFontColor) !== null && _ref9 !== void 0 ? _ref9 : buttonTokens.secondaryHoverFontColor;
107
+ buttonTokens.secondaryBorderColor = (_ref10 = theme === null || theme === void 0 ? void 0 : (_theme$button5 = theme.button) === null || _theme$button5 === void 0 ? void 0 : _theme$button5.baseColor) !== null && _ref10 !== void 0 ? _ref10 : buttonTokens.secondaryBorderColor;
108
+ buttonTokens.secondaryHoverBackgroundColor = (_ref11 = theme === null || theme === void 0 ? void 0 : (_theme$button6 = theme.button) === null || _theme$button6 === void 0 ? void 0 : _theme$button6.baseColor) !== null && _ref11 !== void 0 ? _ref11 : buttonTokens.secondaryHoverBackgroundColor;
109
+ buttonTokens.textFontColor = (_ref12 = theme === null || theme === void 0 ? void 0 : (_theme$button7 = theme.button) === null || _theme$button7 === void 0 ? void 0 : _theme$button7.baseColor) !== null && _ref12 !== void 0 ? _ref12 : buttonTokens.textFontColor;
110
+ buttonTokens.primaryHoverBackgroundColor = (_subLightness = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$button8 = theme.button) === null || _theme$button8 === void 0 ? void 0 : _theme$button8.baseColor, 8)) !== null && _subLightness !== void 0 ? _subLightness : buttonTokens.primaryHoverBackgroundColor;
111
+ buttonTokens.primaryActiveBackgroundColor = (_subLightness2 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$button9 = theme.button) === null || _theme$button9 === void 0 ? void 0 : _theme$button9.baseColor, 18)) !== null && _subLightness2 !== void 0 ? _subLightness2 : buttonTokens.primaryActiveBackgroundColor;
112
+ buttonTokens.secondaryActiveBackgroundColor = (_subLightness3 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$button10 = theme.button) === null || _theme$button10 === void 0 ? void 0 : _theme$button10.baseColor, 18)) !== null && _subLightness3 !== void 0 ? _subLightness3 : buttonTokens.secondaryActiveBackgroundColor;
113
+ buttonTokens.textHoverBackgroundColor = (_addLightness = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$button11 = theme.button) === null || _theme$button11 === void 0 ? void 0 : _theme$button11.baseColor, 57)) !== null && _addLightness !== void 0 ? _addLightness : buttonTokens.textHoverBackgroundColor;
114
+ buttonTokens.textActiveBackgroundColor = (_addLightness2 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$button12 = theme.button) === null || _theme$button12 === void 0 ? void 0 : _theme$button12.baseColor, 52)) !== null && _addLightness2 !== void 0 ? _addLightness2 : buttonTokens.textActiveBackgroundColor;
115
+ var checkboxTokens = componentTokensCopy.checkbox;
116
+ checkboxTokens.backgroundColorChecked = (_ref13 = theme === null || theme === void 0 ? void 0 : (_theme$checkbox = theme.checkbox) === null || _theme$checkbox === void 0 ? void 0 : _theme$checkbox.baseColor) !== null && _ref13 !== void 0 ? _ref13 : checkboxTokens.backgroundColorChecked;
117
+ checkboxTokens.borderColor = (_ref14 = theme === null || theme === void 0 ? void 0 : (_theme$checkbox2 = theme.checkbox) === null || _theme$checkbox2 === void 0 ? void 0 : _theme$checkbox2.baseColor) !== null && _ref14 !== void 0 ? _ref14 : checkboxTokens.borderColor;
118
+ checkboxTokens.checkColor = (_ref15 = theme === null || theme === void 0 ? void 0 : (_theme$checkbox3 = theme.checkbox) === null || _theme$checkbox3 === void 0 ? void 0 : _theme$checkbox3.checkColor) !== null && _ref15 !== void 0 ? _ref15 : checkboxTokens.checkColor;
119
+ checkboxTokens.disabledBackgroundColorChecked = (_setOpacity6 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$checkbox4 = theme.checkbox) === null || _theme$checkbox4 === void 0 ? void 0 : _theme$checkbox4.baseColor, 0.34)) !== null && _setOpacity6 !== void 0 ? _setOpacity6 : checkboxTokens.disabledBackgroundColorChecked;
120
+ checkboxTokens.disabledBorderColor = (_setOpacity7 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$checkbox5 = theme.checkbox) === null || _theme$checkbox5 === void 0 ? void 0 : _theme$checkbox5.baseColor, 0.34)) !== null && _setOpacity7 !== void 0 ? _setOpacity7 : checkboxTokens.disabledBorderColor;
121
+ checkboxTokens.disabledCheckColor = (_setOpacity8 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$checkbox6 = theme.checkbox) === null || _theme$checkbox6 === void 0 ? void 0 : _theme$checkbox6.checkColor, 0.34)) !== null && _setOpacity8 !== void 0 ? _setOpacity8 : checkboxTokens.disabledCheckColor;
122
+ var chipTokens = componentTokensCopy.chip;
123
+ chipTokens.backgroundColor = (_ref16 = theme === null || theme === void 0 ? void 0 : (_theme$chip = theme.chip) === null || _theme$chip === void 0 ? void 0 : _theme$chip.baseColor) !== null && _ref16 !== void 0 ? _ref16 : chipTokens.backgroundColor;
124
+ chipTokens.disabledBackgroundColor = (_setOpacity9 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$chip2 = theme.chip) === null || _theme$chip2 === void 0 ? void 0 : _theme$chip2.baseColor, 0.34)) !== null && _setOpacity9 !== void 0 ? _setOpacity9 : chipTokens.disabledBackgroundColor;
125
+ chipTokens.fontColor = (_ref17 = theme === null || theme === void 0 ? void 0 : (_theme$chip3 = theme.chip) === null || _theme$chip3 === void 0 ? void 0 : _theme$chip3.fontColor) !== null && _ref17 !== void 0 ? _ref17 : chipTokens.fontColor;
126
+ chipTokens.disabledFontColor = (_setOpacity10 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$chip4 = theme.chip) === null || _theme$chip4 === void 0 ? void 0 : _theme$chip4.fontColor, 0.34)) !== null && _setOpacity10 !== void 0 ? _setOpacity10 : chipTokens.disabledFontColor;
127
+ var dateTokens = componentTokensCopy.date;
128
+ dateTokens.pickerSelectedDateBackgroundColor = (_ref18 = theme === null || theme === void 0 ? void 0 : (_theme$date = theme.date) === null || _theme$date === void 0 ? void 0 : _theme$date.baseColor) !== null && _ref18 !== void 0 ? _ref18 : dateTokens.pickerSelectedDateBackgroundColor;
129
+ dateTokens.pickerSelectedDateColor = (_ref19 = theme === null || theme === void 0 ? void 0 : (_theme$date2 = theme.date) === null || _theme$date2 === void 0 ? void 0 : _theme$date2.accentColor) !== null && _ref19 !== void 0 ? _ref19 : dateTokens.pickerSelectedDateColor;
130
+ dateTokens.pickerHoverDateBackgroundColor = (_setOpacity11 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$date3 = theme.date) === null || _theme$date3 === void 0 ? void 0 : _theme$date3.baseColor, 0.34)) !== null && _setOpacity11 !== void 0 ? _setOpacity11 : dateTokens.pickerHoverDateBackgroundColor;
131
+ var dropdownTokens = componentTokensCopy.dropdown;
132
+ dropdownTokens.buttonBackgroundColor = (_ref20 = theme === null || theme === void 0 ? void 0 : (_theme$dropdown = theme.dropdown) === null || _theme$dropdown === void 0 ? void 0 : _theme$dropdown.baseColor) !== null && _ref20 !== void 0 ? _ref20 : dropdownTokens.buttonBackgroundColor;
133
+ dropdownTokens.buttonFontColor = (_ref21 = theme === null || theme === void 0 ? void 0 : (_theme$dropdown2 = theme.dropdown) === null || _theme$dropdown2 === void 0 ? void 0 : _theme$dropdown2.fontColor) !== null && _ref21 !== void 0 ? _ref21 : dropdownTokens.buttonFontColor;
134
+ dropdownTokens.hoverButtonBackgroundColor = (_setOpacity12 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$dropdown3 = theme.dropdown) === null || _theme$dropdown3 === void 0 ? void 0 : _theme$dropdown3.baseColor, 0.34)) !== null && _setOpacity12 !== void 0 ? _setOpacity12 : dropdownTokens.hoverButtonBackgroundColor;
135
+ dropdownTokens.activeButtonBackgroundColor = (_setOpacity13 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$dropdown4 = theme.dropdown) === null || _theme$dropdown4 === void 0 ? void 0 : _theme$dropdown4.baseColor, 0.7)) !== null && _setOpacity13 !== void 0 ? _setOpacity13 : dropdownTokens.activeButtonBackgroundColor;
136
+ dropdownTokens.hoverOptionBackgroundColor = (_setOpacity14 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$dropdown5 = theme.dropdown) === null || _theme$dropdown5 === void 0 ? void 0 : _theme$dropdown5.baseColor, 0.34)) !== null && _setOpacity14 !== void 0 ? _setOpacity14 : dropdownTokens.hoverOptionBackgroundColor;
137
+ dropdownTokens.activeOptionBackgroundColor = (_setOpacity15 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$dropdown6 = theme.dropdown) === null || _theme$dropdown6 === void 0 ? void 0 : _theme$dropdown6.baseColor, 0.7)) !== null && _setOpacity15 !== void 0 ? _setOpacity15 : dropdownTokens.activeOptionBackgroundColor;
138
+ var fileInputTokens = componentTokensCopy.fileInput;
139
+ fileInputTokens.labelFontColor = (_ref22 = theme === null || theme === void 0 ? void 0 : (_theme$fileInput = theme.fileInput) === null || _theme$fileInput === void 0 ? void 0 : _theme$fileInput.fontColor) !== null && _ref22 !== void 0 ? _ref22 : fileInputTokens.labelFontColor;
140
+ fileInputTokens.helperTextFontColor = (_ref23 = theme === null || theme === void 0 ? void 0 : (_theme$fileInput2 = theme.fileInput) === null || _theme$fileInput2 === void 0 ? void 0 : _theme$fileInput2.fontColor) !== null && _ref23 !== void 0 ? _ref23 : fileInputTokens.helperTextFontColor;
141
+ fileInputTokens.dropLabelFontColor = (_ref24 = theme === null || theme === void 0 ? void 0 : (_theme$fileInput3 = theme.fileInput) === null || _theme$fileInput3 === void 0 ? void 0 : _theme$fileInput3.fontColor) !== null && _ref24 !== void 0 ? _ref24 : fileInputTokens.dropLabelFontColor;
142
+ fileInputTokens.fileNameFontColor = (_ref25 = theme === null || theme === void 0 ? void 0 : (_theme$fileInput4 = theme.fileInput) === null || _theme$fileInput4 === void 0 ? void 0 : _theme$fileInput4.fontColor) !== null && _ref25 !== void 0 ? _ref25 : fileInputTokens.fileNameFontColor;
143
+ fileInputTokens.disabledLabelFontColor = (_setOpacity16 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$fileInput5 = theme.fileInput) === null || _theme$fileInput5 === void 0 ? void 0 : _theme$fileInput5.fontColor, 0.34)) !== null && _setOpacity16 !== void 0 ? _setOpacity16 : fileInputTokens.disabledLabelFontColor;
144
+ fileInputTokens.disabledHelperTextFontcolor = (_setOpacity17 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$fileInput6 = theme.fileInput) === null || _theme$fileInput6 === void 0 ? void 0 : _theme$fileInput6.fontColor, 0.34)) !== null && _setOpacity17 !== void 0 ? _setOpacity17 : fileInputTokens.disabledHelperTextFontcolor;
145
+ fileInputTokens.disabledDropLabelFontColor = (_setOpacity18 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$fileInput7 = theme.fileInput) === null || _theme$fileInput7 === void 0 ? void 0 : _theme$fileInput7.fontColor, 0.34)) !== null && _setOpacity18 !== void 0 ? _setOpacity18 : fileInputTokens.disabledDropLabelFontColor;
146
+ var footerTokens = componentTokensCopy.footer;
147
+ footerTokens.backgroundColor = (_ref26 = theme === null || theme === void 0 ? void 0 : (_theme$footer = theme.footer) === null || _theme$footer === void 0 ? void 0 : _theme$footer.baseColor) !== null && _ref26 !== void 0 ? _ref26 : footerTokens.backgroundColor;
148
+ footerTokens.bottomLinksFontColor = (_ref27 = theme === null || theme === void 0 ? void 0 : (_theme$footer2 = theme.footer) === null || _theme$footer2 === void 0 ? void 0 : _theme$footer2.fontColor) !== null && _ref27 !== void 0 ? _ref27 : footerTokens.bottomLinksFontColor;
149
+ footerTokens.copyrightFontColor = (_ref28 = theme === null || theme === void 0 ? void 0 : (_theme$footer3 = theme.footer) === null || _theme$footer3 === void 0 ? void 0 : _theme$footer3.fontColor) !== null && _ref28 !== void 0 ? _ref28 : footerTokens.copyrightFontColor;
150
+ footerTokens.socialLinksColor = (_ref29 = theme === null || theme === void 0 ? void 0 : (_theme$footer4 = theme.footer) === null || _theme$footer4 === void 0 ? void 0 : _theme$footer4.fontColor) !== null && _ref29 !== void 0 ? _ref29 : footerTokens.socialLinksColor;
151
+ footerTokens.bottomLinksDividerColor = (_ref30 = theme === null || theme === void 0 ? void 0 : (_theme$footer5 = theme.footer) === null || _theme$footer5 === void 0 ? void 0 : _theme$footer5.accentColor) !== null && _ref30 !== void 0 ? _ref30 : footerTokens.bottomLinksDividerColor;
152
+ footerTokens.logo = (_ref31 = theme === null || theme === void 0 ? void 0 : (_theme$footer6 = theme.footer) === null || _theme$footer6 === void 0 ? void 0 : _theme$footer6.logo) !== null && _ref31 !== void 0 ? _ref31 : footerTokens.logo;
153
+ var headerTokens = componentTokensCopy.header;
154
+ headerTokens.backgroundColor = (_ref32 = theme === null || theme === void 0 ? void 0 : (_theme$header = theme.header) === null || _theme$header === void 0 ? void 0 : _theme$header.baseColor) !== null && _ref32 !== void 0 ? _ref32 : headerTokens.backgroundColor;
155
+ headerTokens.underlinedColor = (_ref33 = theme === null || theme === void 0 ? void 0 : (_theme$header2 = theme.header) === null || _theme$header2 === void 0 ? void 0 : _theme$header2.accentColor) !== null && _ref33 !== void 0 ? _ref33 : headerTokens.underlinedColor;
156
+ headerTokens.menuBackgroundColor = (_ref34 = theme === null || theme === void 0 ? void 0 : (_theme$header3 = theme.header) === null || _theme$header3 === void 0 ? void 0 : _theme$header3.menuBaseColor) !== null && _ref34 !== void 0 ? _ref34 : headerTokens.menuBackgroundColor;
157
+ headerTokens.hamburguerFontColor = (_ref35 = theme === null || theme === void 0 ? void 0 : (_theme$header4 = theme.header) === null || _theme$header4 === void 0 ? void 0 : _theme$header4.fontColor) !== null && _ref35 !== void 0 ? _ref35 : headerTokens.hamburguerFontColor;
158
+ headerTokens.hamburguerIconColor = (_ref36 = theme === null || theme === void 0 ? void 0 : (_theme$header5 = theme.header) === null || _theme$header5 === void 0 ? void 0 : _theme$header5.hamburguerColor) !== null && _ref36 !== void 0 ? _ref36 : headerTokens.hamburguerIconColor;
159
+ headerTokens.hamburguerHoverColor = (_setOpacity19 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$header6 = theme.header) === null || _theme$header6 === void 0 ? void 0 : _theme$header6.hamburguerColor, 0.16)) !== null && _setOpacity19 !== void 0 ? _setOpacity19 : headerTokens.hamburguerHoverColor;
160
+ headerTokens.logo = (_ref37 = theme === null || theme === void 0 ? void 0 : (_theme$header7 = theme.header) === null || _theme$header7 === void 0 ? void 0 : _theme$header7.logo) !== null && _ref37 !== void 0 ? _ref37 : headerTokens.logo;
161
+ headerTokens.logoResponsive = (_ref38 = theme === null || theme === void 0 ? void 0 : (_theme$header8 = theme.header) === null || _theme$header8 === void 0 ? void 0 : _theme$header8.logoResponsive) !== null && _ref38 !== void 0 ? _ref38 : headerTokens.logoResponsive;
162
+ headerTokens.contentColor = (_ref39 = theme === null || theme === void 0 ? void 0 : (_theme$header9 = theme.header) === null || _theme$header9 === void 0 ? void 0 : _theme$header9.contentColor) !== null && _ref39 !== void 0 ? _ref39 : headerTokens.contentColor;
163
+ headerTokens.contentColorOnDark = (_ref40 = theme === null || theme === void 0 ? void 0 : (_theme$header10 = theme.header) === null || _theme$header10 === void 0 ? void 0 : _theme$header10.contentColorOnDark) !== null && _ref40 !== void 0 ? _ref40 : headerTokens.contentColorOnDark;
164
+ var inputTextTokens = componentTokensCopy.inputText;
165
+ inputTextTokens.selectedOptionBackgroundColor = (_setOpacity20 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$inputText = theme.inputText) === null || _theme$inputText === void 0 ? void 0 : _theme$inputText.selectedBaseColor, 0.34)) !== null && _setOpacity20 !== void 0 ? _setOpacity20 : inputTextTokens.selectedOptionBackgroundColor;
166
+ var textInputTokens = componentTokensCopy.textInput;
167
+ textInputTokens.hoverListOptionBackgroundColor = (_ref41 = theme === null || theme === void 0 ? void 0 : (_theme$textInput = theme.textInput) === null || _theme$textInput === void 0 ? void 0 : _theme$textInput.baseColor) !== null && _ref41 !== void 0 ? _ref41 : textInputTokens.hoverListOptionBackgroundColor;
168
+ textInputTokens.activeListOptionBackgroundColor = (_subLightness4 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$textInput2 = theme.textInput) === null || _theme$textInput2 === void 0 ? void 0 : _theme$textInput2.baseColor, 15)) !== null && _subLightness4 !== void 0 ? _subLightness4 : textInputTokens.activeListOptionBackgroundColor;
169
+ var paginatorTokens = componentTokensCopy.paginator;
170
+ paginatorTokens.backgroundColor = (_ref42 = theme === null || theme === void 0 ? void 0 : (_theme$paginator = theme.paginator) === null || _theme$paginator === void 0 ? void 0 : _theme$paginator.baseColor) !== null && _ref42 !== void 0 ? _ref42 : paginatorTokens.backgroundColor;
171
+ paginatorTokens.fontColor = (_ref43 = theme === null || theme === void 0 ? void 0 : (_theme$paginator2 = theme.paginator) === null || _theme$paginator2 === void 0 ? void 0 : _theme$paginator2.fontColor) !== null && _ref43 !== void 0 ? _ref43 : paginatorTokens.fontColor;
172
+ var progressBarTokens = componentTokensCopy.progressBar;
173
+ progressBarTokens.trackLineColor = (_ref44 = theme === null || theme === void 0 ? void 0 : (_theme$progressBar = theme.progressBar) === null || _theme$progressBar === void 0 ? void 0 : _theme$progressBar.accentColor) !== null && _ref44 !== void 0 ? _ref44 : progressBarTokens.trackLineColor;
174
+ progressBarTokens.totalLineColor = (_ref45 = theme === null || theme === void 0 ? void 0 : (_theme$progressBar2 = theme.progressBar) === null || _theme$progressBar2 === void 0 ? void 0 : _theme$progressBar2.baseColor) !== null && _ref45 !== void 0 ? _ref45 : progressBarTokens.totalLineColor;
175
+ var radioTokens = componentTokensCopy.radio;
176
+ radioTokens.color = (_ref46 = theme === null || theme === void 0 ? void 0 : (_theme$radio = theme.radio) === null || _theme$radio === void 0 ? void 0 : _theme$radio.baseColor) !== null && _ref46 !== void 0 ? _ref46 : radioTokens.color;
177
+ radioTokens.disabledColor = (_setOpacity21 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$radio2 = theme.radio) === null || _theme$radio2 === void 0 ? void 0 : _theme$radio2.baseColor, 0.34)) !== null && _setOpacity21 !== void 0 ? _setOpacity21 : radioTokens.disabledColor;
178
+ var v3SelectTokens = componentTokensCopy.V3Select;
179
+ v3SelectTokens.selectedOptionBackgroundColor = (_ref47 = theme === null || theme === void 0 ? void 0 : (_theme$V3Select = theme.V3Select) === null || _theme$V3Select === void 0 ? void 0 : _theme$V3Select.baseColor) !== null && _ref47 !== void 0 ? _ref47 : v3SelectTokens.selectedOptionBackgroundColor;
180
+ v3SelectTokens.optionFontColor = (_ref48 = theme === null || theme === void 0 ? void 0 : (_theme$V3Select2 = theme.V3Select) === null || _theme$V3Select2 === void 0 ? void 0 : _theme$V3Select2.fontColor) !== null && _ref48 !== void 0 ? _ref48 : v3SelectTokens.optionFontColor;
181
+ v3SelectTokens.valueFontColor = (_ref49 = theme === null || theme === void 0 ? void 0 : (_theme$V3Select3 = theme.V3Select) === null || _theme$V3Select3 === void 0 ? void 0 : _theme$V3Select3.fontColor) !== null && _ref49 !== void 0 ? _ref49 : v3SelectTokens.valueFontColor;
182
+ v3SelectTokens.hoverOptionBackgroundColor = (_addLightness3 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$V3Select4 = theme.V3Select) === null || _theme$V3Select4 === void 0 ? void 0 : _theme$V3Select4.baseColor, 10)) !== null && _addLightness3 !== void 0 ? _addLightness3 : v3SelectTokens.hoverOptionBackgroundColor;
183
+ v3SelectTokens.activeOptionBackgroundColor = (_subLightness5 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$V3Select5 = theme.V3Select) === null || _theme$V3Select5 === void 0 ? void 0 : _theme$V3Select5.baseColor, 15)) !== null && _subLightness5 !== void 0 ? _subLightness5 : v3SelectTokens.activeOptionBackgroundColor;
184
+ var sideNavTokens = componentTokensCopy.sidenav;
185
+ sideNavTokens.backgroundColor = (_ref50 = theme === null || theme === void 0 ? void 0 : (_theme$sidenav = theme.sidenav) === null || _theme$sidenav === void 0 ? void 0 : _theme$sidenav.baseColor) !== null && _ref50 !== void 0 ? _ref50 : sideNavTokens.backgroundColor;
186
+ sideNavTokens.arrowContainerColor = (_setOpacity22 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$sidenav2 = theme.sidenav) === null || _theme$sidenav2 === void 0 ? void 0 : _theme$sidenav2.arrowBaseColor, 0.8)) !== null && _setOpacity22 !== void 0 ? _setOpacity22 : sideNavTokens.arrowContainerColor;
187
+ sideNavTokens.arrowColor = (_ref51 = theme === null || theme === void 0 ? void 0 : (_theme$sidenav3 = theme.sidenav) === null || _theme$sidenav3 === void 0 ? void 0 : _theme$sidenav3.arrowAccentColor) !== null && _ref51 !== void 0 ? _ref51 : sideNavTokens.arrowColor;
188
+ var sliderTokens = componentTokensCopy.slider;
189
+ sliderTokens.thumbBackgroundColor = (_ref52 = theme === null || theme === void 0 ? void 0 : (_theme$slider = theme.slider) === null || _theme$slider === void 0 ? void 0 : _theme$slider.baseColor) !== null && _ref52 !== void 0 ? _ref52 : sliderTokens.thumbBackgroundColor;
190
+ sliderTokens.tickBackgroundColor = (_ref53 = theme === null || theme === void 0 ? void 0 : (_theme$slider2 = theme.slider) === null || _theme$slider2 === void 0 ? void 0 : _theme$slider2.baseColor) !== null && _ref53 !== void 0 ? _ref53 : sliderTokens.tickBackgroundColor;
191
+ sliderTokens.trackLineColor = (_ref54 = theme === null || theme === void 0 ? void 0 : (_theme$slider3 = theme.slider) === null || _theme$slider3 === void 0 ? void 0 : _theme$slider3.baseColor) !== null && _ref54 !== void 0 ? _ref54 : sliderTokens.trackLineColor;
192
+ sliderTokens.hoverThumbBackgroundColor = (_subLightness6 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$slider4 = theme.slider) === null || _theme$slider4 === void 0 ? void 0 : _theme$slider4.baseColor, 15)) !== null && _subLightness6 !== void 0 ? _subLightness6 : sliderTokens.thumbBackgroundColor;
193
+ sliderTokens.activeThumbBackgroundColor = (_subLightness7 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$slider5 = theme.slider) === null || _theme$slider5 === void 0 ? void 0 : _theme$slider5.baseColor, 15)) !== null && _subLightness7 !== void 0 ? _subLightness7 : sliderTokens.thumbBackgroundColor;
194
+ sliderTokens.totalLineColor = (_setOpacity23 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$slider6 = theme.slider) === null || _theme$slider6 === void 0 ? void 0 : _theme$slider6.baseColor, 0.34)) !== null && _setOpacity23 !== void 0 ? _setOpacity23 : sliderTokens.totalLineColor;
195
+ sliderTokens.disabledThumbBackgroundColor = (_setOpacity24 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$slider7 = theme.slider) === null || _theme$slider7 === void 0 ? void 0 : _theme$slider7.baseColor, 0.34)) !== null && _setOpacity24 !== void 0 ? _setOpacity24 : sliderTokens.disabledThumbBackgroundColor;
196
+ sliderTokens.disabledTickBackgroundColor = (_setOpacity25 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$slider8 = theme.slider) === null || _theme$slider8 === void 0 ? void 0 : _theme$slider8.baseColor, 0.34)) !== null && _setOpacity25 !== void 0 ? _setOpacity25 : sliderTokens.disabledTickBackgroundColor;
197
+ sliderTokens.disabledTrackLineColor = (_setOpacity26 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$slider9 = theme.slider) === null || _theme$slider9 === void 0 ? void 0 : _theme$slider9.baseColor, 0.34)) !== null && _setOpacity26 !== void 0 ? _setOpacity26 : sliderTokens.disabledTrackLineColor;
198
+ var spinnerTokens = componentTokensCopy.spinner;
199
+ spinnerTokens.trackCircleColor = (_ref55 = theme === null || theme === void 0 ? void 0 : (_theme$spinner = theme.spinner) === null || _theme$spinner === void 0 ? void 0 : _theme$spinner.accentColor) !== null && _ref55 !== void 0 ? _ref55 : spinnerTokens.trackCircleColor;
200
+ spinnerTokens.totalCircleColor = (_ref56 = theme === null || theme === void 0 ? void 0 : (_theme$spinner2 = theme.spinner) === null || _theme$spinner2 === void 0 ? void 0 : _theme$spinner2.baseColor) !== null && _ref56 !== void 0 ? _ref56 : spinnerTokens.totalCircleColor;
201
+ var switchTokens = componentTokensCopy["switch"];
202
+ switchTokens.checkedTrackBackgroundColor = (_ref57 = theme === null || theme === void 0 ? void 0 : (_theme$switch = theme["switch"]) === null || _theme$switch === void 0 ? void 0 : _theme$switch.checkedBaseColor) !== null && _ref57 !== void 0 ? _ref57 : switchTokens.checkedTrackBackgroundColor;
203
+ switchTokens.disabledCheckedTrackBackgroundColor = (_setOpacity27 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$switch2 = theme["switch"]) === null || _theme$switch2 === void 0 ? void 0 : _theme$switch2.checkedBaseColor, 0.34)) !== null && _setOpacity27 !== void 0 ? _setOpacity27 : switchTokens.disabledCheckedTrackBackgroundColor;
204
+ var tableTokens = componentTokensCopy.table;
205
+ tableTokens.headerBackgroundColor = (_ref58 = theme === null || theme === void 0 ? void 0 : (_theme$table = theme.table) === null || _theme$table === void 0 ? void 0 : _theme$table.baseColor) !== null && _ref58 !== void 0 ? _ref58 : tableTokens.headerBackgroundColor;
206
+ tableTokens.headerFontColor = (_ref59 = theme === null || theme === void 0 ? void 0 : (_theme$table2 = theme.table) === null || _theme$table2 === void 0 ? void 0 : _theme$table2.fontColor) !== null && _ref59 !== void 0 ? _ref59 : tableTokens.headerFontColor;
207
+ var tabsTokens = componentTokensCopy.tabs;
208
+ tabsTokens.selectedFontColor = (_ref60 = theme === null || theme === void 0 ? void 0 : (_theme$tabs = theme.tabs) === null || _theme$tabs === void 0 ? void 0 : _theme$tabs.baseColor) !== null && _ref60 !== void 0 ? _ref60 : tabsTokens.selectedFontColor;
209
+ tabsTokens.selectedIconColor = (_ref61 = theme === null || theme === void 0 ? void 0 : (_theme$tabs2 = theme.tabs) === null || _theme$tabs2 === void 0 ? void 0 : _theme$tabs2.baseColor) !== null && _ref61 !== void 0 ? _ref61 : tabsTokens.selectedIconColor;
210
+ tabsTokens.selectedUnderlineColor = (_ref62 = theme === null || theme === void 0 ? void 0 : (_theme$tabs3 = theme.tabs) === null || _theme$tabs3 === void 0 ? void 0 : _theme$tabs3.baseColor) !== null && _ref62 !== void 0 ? _ref62 : tabsTokens.selectedUnderlineColor;
211
+ tabsTokens.focusOutline = (_ref63 = theme === null || theme === void 0 ? void 0 : (_theme$tabs4 = theme.tabs) === null || _theme$tabs4 === void 0 ? void 0 : _theme$tabs4.baseColor) !== null && _ref63 !== void 0 ? _ref63 : tabsTokens.focusOutline;
212
+ tabsTokens.hoverBackgroundColor = (_addLightness4 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$tabs5 = theme.tabs) === null || _theme$tabs5 === void 0 ? void 0 : _theme$tabs5.baseColor, 58)) !== null && _addLightness4 !== void 0 ? _addLightness4 : tabsTokens.hoverBackgroundColor;
213
+ tabsTokens.pressedBackgroundColor = (_addLightness5 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$tabs6 = theme.tabs) === null || _theme$tabs6 === void 0 ? void 0 : _theme$tabs6.baseColor, 53)) !== null && _addLightness5 !== void 0 ? _addLightness5 : tabsTokens.pressedBackgroundColor;
214
+ var toggleGroupTokens = componentTokensCopy.toggleGroup;
215
+ toggleGroupTokens.selectedBackgroundColor = (_ref64 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup = theme.toggleGroup) === null || _theme$toggleGroup === void 0 ? void 0 : _theme$toggleGroup.selectedBaseColor) !== null && _ref64 !== void 0 ? _ref64 : buttonTokens.selectedBackgroundColor;
216
+ toggleGroupTokens.selectedFontColor = (_ref65 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup2 = theme.toggleGroup) === null || _theme$toggleGroup2 === void 0 ? void 0 : _theme$toggleGroup2.selectedFontColor) !== null && _ref65 !== void 0 ? _ref65 : toggleGroupTokens.selectedFontColor;
217
+ toggleGroupTokens.unselectedBackgroundColor = (_ref66 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup3 = theme.toggleGroup) === null || _theme$toggleGroup3 === void 0 ? void 0 : _theme$toggleGroup3.unselectedBaseColor) !== null && _ref66 !== void 0 ? _ref66 : toggleGroupTokens.unselectedBackgroundColor;
218
+ toggleGroupTokens.unselectedActiveBackgroundColor = (_ref67 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup4 = theme.toggleGroup) === null || _theme$toggleGroup4 === void 0 ? void 0 : _theme$toggleGroup4.selectedBaseColor) !== null && _ref67 !== void 0 ? _ref67 : toggleGroupTokens.unselectedActiveBackgroundColor;
219
+ toggleGroupTokens.unselectedFontColor = (_ref68 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup5 = theme.toggleGroup) === null || _theme$toggleGroup5 === void 0 ? void 0 : _theme$toggleGroup5.unselectedFontColor) !== null && _ref68 !== void 0 ? _ref68 : toggleGroupTokens.unselectedFontColor;
220
+ toggleGroupTokens.selectedHoverBackgroundColor = (_subLightness8 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup6 = theme.toggleGroup) === null || _theme$toggleGroup6 === void 0 ? void 0 : _theme$toggleGroup6.selectedBaseColor, 8)) !== null && _subLightness8 !== void 0 ? _subLightness8 : buttonTokens.selectedHoverBackgroundColor;
221
+ toggleGroupTokens.selectedActiveBackgroundColor = (_subLightness9 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup7 = theme.toggleGroup) === null || _theme$toggleGroup7 === void 0 ? void 0 : _theme$toggleGroup7.selectedBaseColor, 18)) !== null && _subLightness9 !== void 0 ? _subLightness9 : toggleGroupTokens.selectedActiveBackgroundColor;
222
+ toggleGroupTokens.selectedDisabledBackgroundColor = (_addLightness6 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup8 = theme.toggleGroup) === null || _theme$toggleGroup8 === void 0 ? void 0 : _theme$toggleGroup8.selectedBaseColor, 57)) !== null && _addLightness6 !== void 0 ? _addLightness6 : toggleGroupTokens.selectedDisabledBackgroundColor;
223
+ toggleGroupTokens.selectedDisabledFontColor = (_addLightness7 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup9 = theme.toggleGroup) === null || _theme$toggleGroup9 === void 0 ? void 0 : _theme$toggleGroup9.selectedBaseColor, 42)) !== null && _addLightness7 !== void 0 ? _addLightness7 : toggleGroupTokens.selectedDisabledFontColor;
224
+ toggleGroupTokens.unselectedHoverBackgroundColor = (_subLightness10 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup10 = theme.toggleGroup) === null || _theme$toggleGroup10 === void 0 ? void 0 : _theme$toggleGroup10.unselectedBaseColor, 8)) !== null && _subLightness10 !== void 0 ? _subLightness10 : toggleGroupTokens.unselectedHoverBackgroundColor;
225
+ toggleGroupTokens.unselectedDisabledBackgroundColor = (_addLightness8 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup11 = theme.toggleGroup) === null || _theme$toggleGroup11 === void 0 ? void 0 : _theme$toggleGroup11.unselectedBaseColor, 5)) !== null && _addLightness8 !== void 0 ? _addLightness8 : toggleGroupTokens.unselectedDisabledBackgroundColor;
226
+ toggleGroupTokens.unselectedDisabledFontColor = (_setOpacity28 = setOpacity(theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup12 = theme.toggleGroup) === null || _theme$toggleGroup12 === void 0 ? void 0 : _theme$toggleGroup12.unselectedFontColor, 0.34)) !== null && _setOpacity28 !== void 0 ? _setOpacity28 : toggleGroupTokens.unselectedDisabledFontColor;
227
+ var wizardTokens = componentTokensCopy.wizard;
228
+ wizardTokens.stepContainerSelectedBackgroundColor = (_ref69 = theme === null || theme === void 0 ? void 0 : (_theme$wizard = theme.wizard) === null || _theme$wizard === void 0 ? void 0 : _theme$wizard.baseColor) !== null && _ref69 !== void 0 ? _ref69 : wizardTokens.stepContainerSelectedBackgroundColor;
229
+ wizardTokens.stepContainerSelectedFontColor = (_ref70 = theme === null || theme === void 0 ? void 0 : (_theme$wizard2 = theme.wizard) === null || _theme$wizard2 === void 0 ? void 0 : _theme$wizard2.fontColor) !== null && _ref70 !== void 0 ? _ref70 : wizardTokens.stepContainerSelectedFontColor;
230
+ return componentTokensCopy;
175
231
  };
176
232
 
177
- var ThemeProvider = function ThemeProvider(_ref72) {
178
- var theme = _ref72.theme,
179
- children = _ref72.children;
233
+ var ThemeProvider = function ThemeProvider(_ref71) {
234
+ var theme = _ref71.theme,
235
+ advancedTheme = _ref71.advancedTheme,
236
+ children = _ref71.children;
180
237
  var parsedTheme = (0, _react.useMemo)(function () {
181
- return parseTheme(theme);
182
- }, [theme]);
183
- return _react["default"].createElement(ThemeContext.Provider, {
238
+ return theme && parseTheme(theme) || advancedTheme && parseAdvancedTheme(advancedTheme);
239
+ }, [theme, advancedTheme]);
240
+ return _react["default"].createElement(Halstack, null, _react["default"].createElement(ThemeContext.Provider, {
184
241
  value: parsedTheme
185
- }, children);
242
+ }, children));
186
243
  };
187
244
 
188
245
  exports.ThemeProvider = ThemeProvider;
246
+
247
+ var Halstack = _styledComponents["default"].div(_templateObject());
248
+
189
249
  var _default = ThemeContext;
190
250
  exports["default"] = _default;