@dxc-technology/halstack-react 0.0.0-e792e0c → 0.0.0-e832ef8

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 (170) hide show
  1. package/babel.config.js +6 -2
  2. package/dist/BackgroundColorContext.js +46 -0
  3. package/dist/ThemeContext.js +235 -2
  4. package/dist/V3Textarea/V3Textarea.js +264 -0
  5. package/dist/accordion/Accordion.js +170 -81
  6. package/dist/accordion-group/AccordionGroup.js +186 -0
  7. package/dist/alert/Alert.js +184 -83
  8. package/dist/alert/index.d.ts +51 -0
  9. package/dist/badge/Badge.js +63 -0
  10. package/dist/box/Box.js +31 -23
  11. package/dist/button/Button.js +82 -27
  12. package/dist/card/Card.js +72 -35
  13. package/dist/checkbox/Checkbox.js +108 -32
  14. package/dist/chip/Chip.js +129 -35
  15. package/dist/common/RequiredComponent.js +2 -8
  16. package/dist/common/utils.js +2 -22
  17. package/dist/common/variables.js +1459 -197
  18. package/dist/date/Date.js +86 -64
  19. package/dist/date-input/DateInput.js +400 -0
  20. package/dist/date-input/index.d.ts +95 -0
  21. package/dist/dialog/Dialog.js +58 -37
  22. package/dist/dropdown/Dropdown.js +226 -94
  23. package/dist/file-input/FileInput.js +644 -0
  24. package/dist/file-input/FileItem.js +280 -0
  25. package/dist/file-input/index.d.ts +81 -0
  26. package/dist/footer/Footer.js +122 -47
  27. package/dist/footer/Icons.js +77 -0
  28. package/dist/header/Header.js +171 -91
  29. package/dist/header/Icons.js +59 -0
  30. package/dist/heading/Heading.js +81 -22
  31. package/dist/input-text/Icons.js +22 -0
  32. package/dist/input-text/InputText.js +293 -107
  33. package/dist/layout/ApplicationLayout.js +327 -0
  34. package/dist/layout/Icons.js +55 -0
  35. package/dist/link/Link.js +136 -35
  36. package/dist/main.d.ts +8 -0
  37. package/dist/main.js +111 -7
  38. package/dist/new-select/NewSelect.js +836 -0
  39. package/dist/new-select/index.d.ts +53 -0
  40. package/dist/number-input/NumberInput.js +136 -0
  41. package/dist/number-input/NumberInputContext.js +16 -0
  42. package/dist/number-input/index.d.ts +113 -0
  43. package/dist/paginator/Icons.js +66 -0
  44. package/dist/paginator/Paginator.js +162 -57
  45. package/dist/password-input/PasswordInput.js +198 -0
  46. package/dist/password-input/index.d.ts +94 -0
  47. package/dist/progress-bar/ProgressBar.js +97 -44
  48. package/dist/radio/Radio.js +39 -21
  49. package/dist/resultsetTable/ResultsetTable.js +93 -69
  50. package/dist/select/Select.js +250 -143
  51. package/dist/sidenav/Sidenav.js +85 -143
  52. package/dist/slider/Slider.js +219 -73
  53. package/dist/spinner/Spinner.js +249 -64
  54. package/dist/switch/Switch.js +51 -26
  55. package/dist/table/Table.js +63 -15
  56. package/dist/tabs/Tabs.js +208 -35
  57. package/dist/tabs-for-sections/TabsForSections.js +1 -16
  58. package/dist/tag/Tag.js +100 -35
  59. package/dist/text-input/TextInput.js +971 -0
  60. package/dist/text-input/index.d.ts +135 -0
  61. package/dist/textarea/Textarea.js +250 -107
  62. package/dist/textarea/index.d.ts +117 -0
  63. package/dist/toggle/Toggle.js +16 -19
  64. package/dist/toggle-group/ToggleGroup.js +327 -0
  65. package/dist/upload/Upload.js +16 -11
  66. package/dist/upload/buttons-upload/ButtonsUpload.js +35 -25
  67. package/dist/upload/buttons-upload/Icons.js +40 -0
  68. package/dist/upload/dragAndDropArea/DragAndDropArea.js +78 -31
  69. package/dist/upload/file-upload/FileToUpload.js +64 -33
  70. package/dist/upload/file-upload/Icons.js +66 -0
  71. package/dist/upload/files-upload/FilesToUpload.js +16 -16
  72. package/dist/upload/readme.md +2 -2
  73. package/dist/upload/transaction/Icons.js +160 -0
  74. package/dist/upload/transaction/Transaction.js +42 -49
  75. package/dist/upload/transactions/Transactions.js +38 -20
  76. package/dist/useTheme.js +22 -0
  77. package/dist/wizard/Icons.js +65 -0
  78. package/dist/wizard/Wizard.js +141 -56
  79. package/package.json +14 -6
  80. package/test/AccordionGroup.test.js +125 -0
  81. package/test/Date.test.js +49 -45
  82. package/test/DateInput.test.js +242 -0
  83. package/test/Dropdown.test.js +19 -4
  84. package/test/FileInput.test.js +201 -0
  85. package/test/Footer.test.js +2 -7
  86. package/test/Header.test.js +5 -10
  87. package/test/InputText.test.js +53 -41
  88. package/test/Link.test.js +25 -7
  89. package/test/NumberInput.test.js +259 -0
  90. package/test/Paginator.test.js +72 -60
  91. package/test/PasswordInput.test.js +83 -0
  92. package/test/ResultsetTable.test.js +66 -19
  93. package/test/Select.test.js +55 -34
  94. package/test/Sidenav.test.js +22 -64
  95. package/test/Slider.test.js +24 -15
  96. package/test/Spinner.test.js +5 -0
  97. package/test/Tabs.test.js +21 -0
  98. package/test/TextInput.test.js +732 -0
  99. package/test/Textarea.test.js +193 -0
  100. package/test/ToggleGroup.test.js +85 -0
  101. package/test/Upload.test.js +5 -5
  102. package/test/{TextArea.test.js → V3TextArea.test.js} +6 -7
  103. package/dist/accordion/Accordion.stories.js +0 -207
  104. package/dist/accordion/readme.md +0 -96
  105. package/dist/alert/Alert.stories.js +0 -158
  106. package/dist/alert/close.svg +0 -4
  107. package/dist/alert/error.svg +0 -4
  108. package/dist/alert/info.svg +0 -4
  109. package/dist/alert/readme.md +0 -43
  110. package/dist/alert/success.svg +0 -4
  111. package/dist/alert/warning.svg +0 -4
  112. package/dist/button/Button.stories.js +0 -224
  113. package/dist/button/readme.md +0 -93
  114. package/dist/common/services/example-service.js +0 -10
  115. package/dist/common/services/example-service.test.js +0 -12
  116. package/dist/date/calendar.svg +0 -1
  117. package/dist/date/calendar_dark.svg +0 -1
  118. package/dist/dialog/Dialog.stories.js +0 -217
  119. package/dist/dialog/readme.md +0 -32
  120. package/dist/dropdown/Dropdown.stories.js +0 -249
  121. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  122. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  123. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  124. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  125. package/dist/dropdown/readme.md +0 -69
  126. package/dist/footer/Footer.stories.js +0 -94
  127. package/dist/footer/dxc_logo_wht.png +0 -0
  128. package/dist/footer/readme.md +0 -41
  129. package/dist/header/Header.stories.js +0 -176
  130. package/dist/header/close_icon.svg +0 -1
  131. package/dist/header/dxc_logo_black.png +0 -0
  132. package/dist/header/dxc_logo_white.png +0 -0
  133. package/dist/header/hamb_menu_black.svg +0 -1
  134. package/dist/header/hamb_menu_white.svg +0 -1
  135. package/dist/header/readme.md +0 -33
  136. package/dist/input-text/InputText.stories.js +0 -209
  137. package/dist/input-text/error.svg +0 -1
  138. package/dist/input-text/readme.md +0 -91
  139. package/dist/paginator/images/next.svg +0 -3
  140. package/dist/paginator/images/nextPage.svg +0 -3
  141. package/dist/paginator/images/previous.svg +0 -3
  142. package/dist/paginator/images/previousPage.svg +0 -3
  143. package/dist/paginator/readme.md +0 -50
  144. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  145. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  146. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  147. package/dist/select/Select.stories.js +0 -235
  148. package/dist/select/readme.md +0 -72
  149. package/dist/sidenav/arrow_icon.svg +0 -3
  150. package/dist/slider/Slider.stories.js +0 -241
  151. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  152. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  153. package/dist/upload/file-upload/audio-icon.svg +0 -4
  154. package/dist/upload/file-upload/close.svg +0 -4
  155. package/dist/upload/file-upload/file-icon.svg +0 -4
  156. package/dist/upload/file-upload/video-icon.svg +0 -4
  157. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  158. package/dist/upload/transaction/audio-icon.svg +0 -4
  159. package/dist/upload/transaction/error-icon.svg +0 -4
  160. package/dist/upload/transaction/file-icon-err.svg +0 -4
  161. package/dist/upload/transaction/file-icon.svg +0 -4
  162. package/dist/upload/transaction/image-icon-err.svg +0 -4
  163. package/dist/upload/transaction/image-icon.svg +0 -4
  164. package/dist/upload/transaction/success-icon.svg +0 -4
  165. package/dist/upload/transaction/video-icon-err.svg +0 -4
  166. package/dist/upload/transaction/video-icon.svg +0 -4
  167. package/dist/wizard/invalid_icon.svg +0 -6
  168. package/dist/wizard/valid_icon.svg +0 -6
  169. package/dist/wizard/validation-wrong.svg +0 -6
  170. package/test/Toggle.test.js +0 -43
package/babel.config.js CHANGED
@@ -1,4 +1,8 @@
1
1
  module.exports = {
2
2
  presets: ["@babel/react", "@babel/env"],
3
- plugins: ["@babel/plugin-proposal-class-properties"]
4
- }
3
+ plugins: [
4
+ "@babel/plugin-proposal-class-properties",
5
+ "@babel/plugin-proposal-optional-chaining",
6
+ "@babel/plugin-proposal-nullish-coalescing-operator",
7
+ ],
8
+ };
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
6
+
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ exports.BackgroundColorProvider = exports["default"] = void 0;
11
+
12
+ var _react = _interopRequireWildcard(require("react"));
13
+
14
+ var _color = _interopRequireDefault(require("color"));
15
+
16
+ var _rgbHex = _interopRequireDefault(require("rgb-hex"));
17
+
18
+ /* eslint-disable prefer-template */
19
+ var BackgroundColorContext = _react["default"].createContext();
20
+
21
+ var getColorType = function getColorType(hexColor) {
22
+ try {
23
+ if (hexColor) {
24
+ var hslColor = (0, _color["default"])(hexColor).hsl();
25
+ var lightnessColor = hslColor.color[2];
26
+ return lightnessColor <= 30 ? "dark" : "light";
27
+ }
28
+ } catch (e) {
29
+ return "light";
30
+ }
31
+ };
32
+
33
+ var BackgroundColorProvider = function BackgroundColorProvider(_ref) {
34
+ var color = _ref.color,
35
+ children = _ref.children;
36
+ var colorType = (0, _react.useMemo)(function () {
37
+ return getColorType(color);
38
+ }, [color]);
39
+ return _react["default"].createElement(BackgroundColorContext.Provider, {
40
+ value: colorType
41
+ }, children);
42
+ };
43
+
44
+ exports.BackgroundColorProvider = BackgroundColorProvider;
45
+ var _default = BackgroundColorContext;
46
+ exports["default"] = _default;
@@ -1,15 +1,248 @@
1
1
  "use strict";
2
2
 
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
4
+
3
5
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
6
 
5
7
  Object.defineProperty(exports, "__esModule", {
6
8
  value: true
7
9
  });
8
- exports["default"] = void 0;
10
+ exports.ThemeProvider = exports["default"] = void 0;
11
+
12
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
13
+
14
+ var _react = _interopRequireWildcard(require("react"));
15
+
16
+ var _color = _interopRequireDefault(require("color"));
17
+
18
+ var _rgbHex = _interopRequireDefault(require("rgb-hex"));
19
+
20
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
21
+
22
+ var _variables = require("./common/variables.js");
23
+
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
+ };
9
30
 
10
- var _react = _interopRequireDefault(require("react"));
31
+ return data;
32
+ }
11
33
 
12
34
  var ThemeContext = _react["default"].createContext();
13
35
 
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;
46
+ }
47
+ };
48
+
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
+ }
60
+ };
61
+
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;
70
+ }
71
+ };
72
+
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;
85
+ };
86
+
87
+ var parseTheme = function parseTheme(theme) {
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, _setOpacity20, _theme$inputText, _ref39, _theme$textInput, _subLightness4, _theme$textInput2, _ref40, _theme$paginator, _ref41, _theme$paginator2, _ref42, _theme$progressBar, _ref43, _theme$progressBar2, _ref44, _theme$radio, _setOpacity21, _theme$radio2, _ref45, _theme$select, _ref46, _theme$select2, _ref47, _theme$select3, _addLightness3, _theme$select4, _subLightness5, _theme$select5, _ref48, _theme$sidenav, _setOpacity22, _theme$sidenav2, _ref49, _theme$sidenav3, _ref50, _theme$slider, _ref51, _theme$slider2, _ref52, _theme$slider3, _subLightness6, _theme$slider4, _subLightness7, _theme$slider5, _setOpacity23, _theme$slider6, _setOpacity24, _theme$slider7, _setOpacity25, _theme$slider8, _setOpacity26, _theme$slider9, _ref53, _theme$spinner, _ref54, _theme$spinner2, _ref55, _theme$switch, _setOpacity27, _theme$switch2, _ref56, _theme$table, _ref57, _theme$table2, _ref58, _theme$tabs, _ref59, _theme$tabs2, _ref60, _theme$tabs3, _ref61, _theme$tabs4, _addLightness4, _theme$tabs5, _addLightness5, _theme$tabs6, _ref62, _theme$toggleGroup, _ref63, _theme$toggleGroup2, _ref64, _theme$toggleGroup3, _ref65, _theme$toggleGroup4, _ref66, _theme$toggleGroup5, _subLightness8, _theme$toggleGroup6, _subLightness9, _theme$toggleGroup7, _addLightness6, _theme$toggleGroup8, _addLightness7, _theme$toggleGroup9, _subLightness10, _theme$toggleGroup10, _addLightness8, _theme$toggleGroup11, _setOpacity28, _theme$toggleGroup12, _ref67, _theme$wizard, _ref68, _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
+ var inputTextTokens = componentTokensCopy.inputText;
163
+ 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;
164
+ var textInputTokens = componentTokensCopy.textInput;
165
+ textInputTokens.hoverListOptionBackgroundColor = (_ref39 = theme === null || theme === void 0 ? void 0 : (_theme$textInput = theme.textInput) === null || _theme$textInput === void 0 ? void 0 : _theme$textInput.baseColor) !== null && _ref39 !== void 0 ? _ref39 : textInputTokens.hoverListOptionBackgroundColor;
166
+ 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;
167
+ var paginatorTokens = componentTokensCopy.paginator;
168
+ paginatorTokens.backgroundColor = (_ref40 = theme === null || theme === void 0 ? void 0 : (_theme$paginator = theme.paginator) === null || _theme$paginator === void 0 ? void 0 : _theme$paginator.baseColor) !== null && _ref40 !== void 0 ? _ref40 : paginatorTokens.backgroundColor;
169
+ paginatorTokens.fontColor = (_ref41 = theme === null || theme === void 0 ? void 0 : (_theme$paginator2 = theme.paginator) === null || _theme$paginator2 === void 0 ? void 0 : _theme$paginator2.fontColor) !== null && _ref41 !== void 0 ? _ref41 : paginatorTokens.fontColor;
170
+ var progressBarTokens = componentTokensCopy.progressBar;
171
+ progressBarTokens.trackLineColor = (_ref42 = theme === null || theme === void 0 ? void 0 : (_theme$progressBar = theme.progressBar) === null || _theme$progressBar === void 0 ? void 0 : _theme$progressBar.accentColor) !== null && _ref42 !== void 0 ? _ref42 : progressBarTokens.trackLineColor;
172
+ progressBarTokens.totalLineColor = (_ref43 = theme === null || theme === void 0 ? void 0 : (_theme$progressBar2 = theme.progressBar) === null || _theme$progressBar2 === void 0 ? void 0 : _theme$progressBar2.baseColor) !== null && _ref43 !== void 0 ? _ref43 : progressBarTokens.totalLineColor;
173
+ var radioTokens = componentTokensCopy.radio;
174
+ radioTokens.color = (_ref44 = theme === null || theme === void 0 ? void 0 : (_theme$radio = theme.radio) === null || _theme$radio === void 0 ? void 0 : _theme$radio.baseColor) !== null && _ref44 !== void 0 ? _ref44 : radioTokens.color;
175
+ 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;
176
+ var selectTokens = componentTokensCopy.select;
177
+ selectTokens.selectedOptionBackgroundColor = (_ref45 = theme === null || theme === void 0 ? void 0 : (_theme$select = theme.select) === null || _theme$select === void 0 ? void 0 : _theme$select.baseColor) !== null && _ref45 !== void 0 ? _ref45 : selectTokens.selectedOptionBackgroundColor;
178
+ selectTokens.optionFontColor = (_ref46 = theme === null || theme === void 0 ? void 0 : (_theme$select2 = theme.select) === null || _theme$select2 === void 0 ? void 0 : _theme$select2.fontColor) !== null && _ref46 !== void 0 ? _ref46 : selectTokens.optionFontColor;
179
+ selectTokens.valueFontColor = (_ref47 = theme === null || theme === void 0 ? void 0 : (_theme$select3 = theme.select) === null || _theme$select3 === void 0 ? void 0 : _theme$select3.fontColor) !== null && _ref47 !== void 0 ? _ref47 : selectTokens.valueFontColor;
180
+ selectTokens.hoverOptionBackgroundColor = (_addLightness3 = addLightness(theme === null || theme === void 0 ? void 0 : (_theme$select4 = theme.select) === null || _theme$select4 === void 0 ? void 0 : _theme$select4.baseColor, 10)) !== null && _addLightness3 !== void 0 ? _addLightness3 : selectTokens.hoverOptionBackgroundColor;
181
+ selectTokens.activeOptionBackgroundColor = (_subLightness5 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$select5 = theme.select) === null || _theme$select5 === void 0 ? void 0 : _theme$select5.baseColor, 15)) !== null && _subLightness5 !== void 0 ? _subLightness5 : selectTokens.activeOptionBackgroundColor;
182
+ var sideNavTokens = componentTokensCopy.sidenav;
183
+ sideNavTokens.backgroundColor = (_ref48 = theme === null || theme === void 0 ? void 0 : (_theme$sidenav = theme.sidenav) === null || _theme$sidenav === void 0 ? void 0 : _theme$sidenav.baseColor) !== null && _ref48 !== void 0 ? _ref48 : sideNavTokens.backgroundColor;
184
+ 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;
185
+ sideNavTokens.arrowColor = (_ref49 = theme === null || theme === void 0 ? void 0 : (_theme$sidenav3 = theme.sidenav) === null || _theme$sidenav3 === void 0 ? void 0 : _theme$sidenav3.arrowAccentColor) !== null && _ref49 !== void 0 ? _ref49 : sideNavTokens.arrowColor;
186
+ var sliderTokens = componentTokensCopy.slider;
187
+ sliderTokens.thumbBackgroundColor = (_ref50 = theme === null || theme === void 0 ? void 0 : (_theme$slider = theme.slider) === null || _theme$slider === void 0 ? void 0 : _theme$slider.baseColor) !== null && _ref50 !== void 0 ? _ref50 : sliderTokens.thumbBackgroundColor;
188
+ sliderTokens.tickBackgroundColor = (_ref51 = theme === null || theme === void 0 ? void 0 : (_theme$slider2 = theme.slider) === null || _theme$slider2 === void 0 ? void 0 : _theme$slider2.baseColor) !== null && _ref51 !== void 0 ? _ref51 : sliderTokens.tickBackgroundColor;
189
+ sliderTokens.trackLineColor = (_ref52 = theme === null || theme === void 0 ? void 0 : (_theme$slider3 = theme.slider) === null || _theme$slider3 === void 0 ? void 0 : _theme$slider3.baseColor) !== null && _ref52 !== void 0 ? _ref52 : sliderTokens.trackLineColor;
190
+ 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;
191
+ 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;
192
+ 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;
193
+ 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;
194
+ 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;
195
+ 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;
196
+ var spinnerTokens = componentTokensCopy.spinner;
197
+ spinnerTokens.trackCircleColor = (_ref53 = theme === null || theme === void 0 ? void 0 : (_theme$spinner = theme.spinner) === null || _theme$spinner === void 0 ? void 0 : _theme$spinner.accentColor) !== null && _ref53 !== void 0 ? _ref53 : spinnerTokens.trackCircleColor;
198
+ spinnerTokens.totalCircleColor = (_ref54 = theme === null || theme === void 0 ? void 0 : (_theme$spinner2 = theme.spinner) === null || _theme$spinner2 === void 0 ? void 0 : _theme$spinner2.baseColor) !== null && _ref54 !== void 0 ? _ref54 : spinnerTokens.totalCircleColor;
199
+ var switchTokens = componentTokensCopy["switch"];
200
+ switchTokens.checkedTrackBackgroundColor = (_ref55 = theme === null || theme === void 0 ? void 0 : (_theme$switch = theme["switch"]) === null || _theme$switch === void 0 ? void 0 : _theme$switch.checkedBaseColor) !== null && _ref55 !== void 0 ? _ref55 : switchTokens.checkedTrackBackgroundColor;
201
+ 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;
202
+ var tableTokens = componentTokensCopy.table;
203
+ tableTokens.headerBackgroundColor = (_ref56 = theme === null || theme === void 0 ? void 0 : (_theme$table = theme.table) === null || _theme$table === void 0 ? void 0 : _theme$table.baseColor) !== null && _ref56 !== void 0 ? _ref56 : tableTokens.headerBackgroundColor;
204
+ tableTokens.headerFontColor = (_ref57 = theme === null || theme === void 0 ? void 0 : (_theme$table2 = theme.table) === null || _theme$table2 === void 0 ? void 0 : _theme$table2.fontColor) !== null && _ref57 !== void 0 ? _ref57 : tableTokens.headerFontColor;
205
+ var tabsTokens = componentTokensCopy.tabs;
206
+ tabsTokens.selectedFontColor = (_ref58 = theme === null || theme === void 0 ? void 0 : (_theme$tabs = theme.tabs) === null || _theme$tabs === void 0 ? void 0 : _theme$tabs.baseColor) !== null && _ref58 !== void 0 ? _ref58 : tabsTokens.selectedFontColor;
207
+ tabsTokens.selectedIconColor = (_ref59 = theme === null || theme === void 0 ? void 0 : (_theme$tabs2 = theme.tabs) === null || _theme$tabs2 === void 0 ? void 0 : _theme$tabs2.baseColor) !== null && _ref59 !== void 0 ? _ref59 : tabsTokens.selectedIconColor;
208
+ tabsTokens.selectedUnderlineColor = (_ref60 = theme === null || theme === void 0 ? void 0 : (_theme$tabs3 = theme.tabs) === null || _theme$tabs3 === void 0 ? void 0 : _theme$tabs3.baseColor) !== null && _ref60 !== void 0 ? _ref60 : tabsTokens.selectedUnderlineColor;
209
+ tabsTokens.focusOutline = (_ref61 = theme === null || theme === void 0 ? void 0 : (_theme$tabs4 = theme.tabs) === null || _theme$tabs4 === void 0 ? void 0 : _theme$tabs4.baseColor) !== null && _ref61 !== void 0 ? _ref61 : tabsTokens.focusOutline;
210
+ 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;
211
+ 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;
212
+ var toggleGroupTokens = componentTokensCopy.toggleGroup;
213
+ toggleGroupTokens.selectedBackgroundColor = (_ref62 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup = theme.toggleGroup) === null || _theme$toggleGroup === void 0 ? void 0 : _theme$toggleGroup.selectedBaseColor) !== null && _ref62 !== void 0 ? _ref62 : buttonTokens.selectedBackgroundColor;
214
+ toggleGroupTokens.selectedFontColor = (_ref63 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup2 = theme.toggleGroup) === null || _theme$toggleGroup2 === void 0 ? void 0 : _theme$toggleGroup2.selectedFontColor) !== null && _ref63 !== void 0 ? _ref63 : toggleGroupTokens.selectedFontColor;
215
+ toggleGroupTokens.unselectedBackgroundColor = (_ref64 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup3 = theme.toggleGroup) === null || _theme$toggleGroup3 === void 0 ? void 0 : _theme$toggleGroup3.unselectedBaseColor) !== null && _ref64 !== void 0 ? _ref64 : toggleGroupTokens.unselectedBackgroundColor;
216
+ toggleGroupTokens.unselectedActiveBackgroundColor = (_ref65 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup4 = theme.toggleGroup) === null || _theme$toggleGroup4 === void 0 ? void 0 : _theme$toggleGroup4.selectedBaseColor) !== null && _ref65 !== void 0 ? _ref65 : toggleGroupTokens.unselectedActiveBackgroundColor;
217
+ toggleGroupTokens.unselectedFontColor = (_ref66 = theme === null || theme === void 0 ? void 0 : (_theme$toggleGroup5 = theme.toggleGroup) === null || _theme$toggleGroup5 === void 0 ? void 0 : _theme$toggleGroup5.unselectedFontColor) !== null && _ref66 !== void 0 ? _ref66 : toggleGroupTokens.unselectedFontColor;
218
+ 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;
219
+ 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;
220
+ 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;
221
+ 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;
222
+ 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;
223
+ 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;
224
+ 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;
225
+ var wizardTokens = componentTokensCopy.wizard;
226
+ wizardTokens.stepContainerSelectedBackgroundColor = (_ref67 = theme === null || theme === void 0 ? void 0 : (_theme$wizard = theme.wizard) === null || _theme$wizard === void 0 ? void 0 : _theme$wizard.baseColor) !== null && _ref67 !== void 0 ? _ref67 : wizardTokens.stepContainerSelectedBackgroundColor;
227
+ wizardTokens.stepContainerSelectedFontColor = (_ref68 = theme === null || theme === void 0 ? void 0 : (_theme$wizard2 = theme.wizard) === null || _theme$wizard2 === void 0 ? void 0 : _theme$wizard2.fontColor) !== null && _ref68 !== void 0 ? _ref68 : wizardTokens.stepContainerSelectedFontColor;
228
+ return componentTokensCopy;
229
+ };
230
+
231
+ var ThemeProvider = function ThemeProvider(_ref69) {
232
+ var theme = _ref69.theme,
233
+ advancedTheme = _ref69.advancedTheme,
234
+ children = _ref69.children;
235
+ var parsedTheme = (0, _react.useMemo)(function () {
236
+ return theme && parseTheme(theme) || advancedTheme && parseAdvancedTheme(advancedTheme);
237
+ }, [theme, advancedTheme]);
238
+ return _react["default"].createElement(Halstack, null, _react["default"].createElement(ThemeContext.Provider, {
239
+ value: parsedTheme
240
+ }, children));
241
+ };
242
+
243
+ exports.ThemeProvider = ThemeProvider;
244
+
245
+ var Halstack = _styledComponents["default"].div(_templateObject());
246
+
14
247
  var _default = ThemeContext;
15
248
  exports["default"] = _default;
@@ -0,0 +1,264 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
4
+
5
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
6
+
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ exports["default"] = void 0;
11
+
12
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
13
+
14
+ var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
15
+
16
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
17
+
18
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
19
+
20
+ var _react = _interopRequireWildcard(require("react"));
21
+
22
+ var _styledComponents = _interopRequireWildcard(require("styled-components"));
23
+
24
+ var _TextField = _interopRequireDefault(require("@material-ui/core/TextField"));
25
+
26
+ var _propTypes = _interopRequireDefault(require("prop-types"));
27
+
28
+ var _variables = require("../common/variables.js");
29
+
30
+ var _utils = require("../common/utils.js");
31
+
32
+ var _useTheme = _interopRequireDefault(require("../useTheme.js"));
33
+
34
+ var _RequiredComponent = _interopRequireDefault(require("../common/RequiredComponent"));
35
+
36
+ var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
37
+
38
+ function _templateObject() {
39
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n display: inline-block;\n position: relative;\n height: auto;\n width: ", ";\n\n .MuiTextField-root {\n width: 100%;\n\n .MuiFormHelperText-root {\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n margin-top: 6px;\n }\n .MuiFormLabel-root {\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n padding-left: \"inherit\";\n\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n\n &.Mui-focused {\n color: ", ";\n &.MuiInputLabel-shrink {\n transform: \"translate(0, 1.5px) scale(0.75);\";\n }\n }\n\n &.MuiInputLabel-shrink {\n font-family: ", ";\n transform: \"translate(0, 1.5px) scale(0.75)\";\n }\n\n &.Mui-error {\n color: ", ";\n }\n\n &:not(.MuiInputLabel-shrink) {\n font-family: ", ";\n color: ", ";\n & + div,\n & + div + p {\n color: ", ";\n }\n }\n\n &.MuiInputLabel-shrink {\n & + div::before {\n border-color: ", ";\n }\n & + div + p {\n color: ", ";\n }\n }\n }\n .MuiInputBase-root.MuiInput-root.MuiInput-underline {\n &::before {\n border-bottom: ", ";\n }\n\n &:not(.Mui-error)::before,\n &:not(&.Mui-focused)::before {\n border-bottom: ", ";\n }\n\n &::after {\n border-bottom: ", ";\n }\n\n .MuiInputBase-inputMultiline {\n overflow: auto !important;\n\n ::-webkit-scrollbar {\n width: 3px;\n }\n\n ::-webkit-scrollbar-track {\n background-color: ", ";\n border-radius: 3px;\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 3px;\n }\n }\n\n &.Mui-error {\n &::before {\n border-width: ", ";\n border-color: ", ";\n }\n &::after {\n transform: scaleX(0);\n }\n }\n\n &.Mui-focused {\n &::after {\n border-width: calc(", " + 1px);\n border-color: ", ";\n }\n &.Mui-error::after {\n border-color: ", ";\n }\n }\n\n &.Mui-disabled {\n cursor: not-allowed;\n\n &::before {\n border-bottom: ", ";\n border-bottom-style: solid;\n }\n }\n\n .MuiInputBase-input {\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n line-height: ", ";\n padding-left: \"inherit\";\n text-overflow: ellipsis;\n\n &.Mui-disabled {\n cursor: not-allowed;\n color: ", ";\n }\n }\n\n &:hover:not(.Mui-disabled):before &:hover:not(.Mui-error):before {\n border-bottom-color: ", ";\n }\n }\n\n & > p {\n &.Mui-error {\n color: ", ";\n }\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n }\n }\n"]);
40
+
41
+ _templateObject = function _templateObject() {
42
+ return data;
43
+ };
44
+
45
+ return data;
46
+ }
47
+
48
+ var V3DxcTextarea = function V3DxcTextarea(_ref) {
49
+ var _ref$label = _ref.label,
50
+ label = _ref$label === void 0 ? " " : _ref$label,
51
+ _ref$name = _ref.name,
52
+ name = _ref$name === void 0 ? "" : _ref$name,
53
+ value = _ref.value,
54
+ _ref$assistiveText = _ref.assistiveText,
55
+ assistiveText = _ref$assistiveText === void 0 ? "" : _ref$assistiveText,
56
+ _ref$disabled = _ref.disabled,
57
+ disabled = _ref$disabled === void 0 ? false : _ref$disabled,
58
+ _ref$onChange = _ref.onChange,
59
+ onChange = _ref$onChange === void 0 ? "" : _ref$onChange,
60
+ _ref$onBlur = _ref.onBlur,
61
+ onBlur = _ref$onBlur === void 0 ? "" : _ref$onBlur,
62
+ _ref$numRows = _ref.numRows,
63
+ numRows = _ref$numRows === void 0 ? 4 : _ref$numRows,
64
+ _ref$invalid = _ref.invalid,
65
+ invalid = _ref$invalid === void 0 ? false : _ref$invalid,
66
+ _ref$required = _ref.required,
67
+ required = _ref$required === void 0 ? false : _ref$required,
68
+ _ref$placeholder = _ref.placeholder,
69
+ placeholder = _ref$placeholder === void 0 ? "" : _ref$placeholder,
70
+ margin = _ref.margin,
71
+ _ref$size = _ref.size,
72
+ size = _ref$size === void 0 ? "medium" : _ref$size,
73
+ _ref$tabIndex = _ref.tabIndex,
74
+ tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
75
+
76
+ var _useState = (0, _react.useState)(""),
77
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
78
+ innerValue = _useState2[0],
79
+ setInnerValue = _useState2[1];
80
+
81
+ var colorsTheme = (0, _useTheme["default"])();
82
+ var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
83
+
84
+ var handlerTextareaChange = function handlerTextareaChange(event) {
85
+ if (value === null || value === undefined) {
86
+ if (typeof onChange === "function") {
87
+ setInnerValue(event.target.value);
88
+ onChange(event.target.value);
89
+ } else {
90
+ setInnerValue(event.target.value);
91
+ }
92
+ } else if (onChange !== "") {
93
+ if (typeof onChange === "function") {
94
+ onChange(event.target.value);
95
+ } else {
96
+ setInnerValue(event.target.value);
97
+ }
98
+ }
99
+ };
100
+
101
+ var handlerTextareaBlur = function handlerTextareaBlur(event) {
102
+ setInnerValue(event.target.value);
103
+
104
+ if (onBlur) {
105
+ onBlur(event.target.value);
106
+ }
107
+ };
108
+
109
+ return _react["default"].createElement(_styledComponents.ThemeProvider, {
110
+ theme: colorsTheme.V3Textarea
111
+ }, _react["default"].createElement(TextContainer, {
112
+ required: required,
113
+ assistiveText: assistiveText,
114
+ margin: margin,
115
+ size: size,
116
+ backgroundType: backgroundType
117
+ }, _react["default"].createElement(_TextField["default"], {
118
+ error: invalid,
119
+ value: value !== null ? value : innerValue,
120
+ name: name,
121
+ multiline: true,
122
+ disabled: disabled,
123
+ label: required ? _react["default"].createElement(_react["default"].Fragment, null, _react["default"].createElement(_RequiredComponent["default"], null), label) : label,
124
+ helperText: assistiveText,
125
+ onChange: handlerTextareaChange,
126
+ onBlur: onBlur && handlerTextareaBlur || null,
127
+ rows: numRows,
128
+ placeholder: placeholder,
129
+ inputProps: {
130
+ tabIndex: tabIndex
131
+ }
132
+ })));
133
+ };
134
+
135
+ var sizes = {
136
+ small: "42px",
137
+ medium: "240px",
138
+ large: "480px",
139
+ fillParent: "100%"
140
+ };
141
+
142
+ var calculateWidth = function calculateWidth(margin, size) {
143
+ return size === "fillParent" ? "calc(".concat(sizes[size], " - ").concat((0, _utils.getMargin)(margin, "left"), " - ").concat((0, _utils.getMargin)(margin, "right"), ")") : sizes[size];
144
+ };
145
+
146
+ var TextContainer = _styledComponents["default"].div(_templateObject(), function (props) {
147
+ return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
148
+ }, function (props) {
149
+ return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
150
+ }, function (props) {
151
+ return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.right ? _variables.spaces[props.margin.right] : "";
152
+ }, function (props) {
153
+ return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.bottom ? _variables.spaces[props.margin.bottom] : "";
154
+ }, function (props) {
155
+ return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
156
+ }, function (props) {
157
+ return calculateWidth(props.margin, props.size);
158
+ }, function (props) {
159
+ return props.theme.fontFamily;
160
+ }, function (props) {
161
+ return props.theme.assistiveTextFontSize;
162
+ }, function (props) {
163
+ return props.theme.assistiveTextFontStyle;
164
+ }, function (props) {
165
+ return props.theme.assistiveTextFontWeight;
166
+ }, function (props) {
167
+ return props.theme.assistiveTextLetterSpacing;
168
+ }, function (props) {
169
+ return props.theme.labelFontSize;
170
+ }, function (props) {
171
+ return props.theme.labelFontStyle;
172
+ }, function (props) {
173
+ return props.theme.labelFontWeight;
174
+ }, function (props) {
175
+ return props.theme.labelLetterSpacing;
176
+ }, function (props) {
177
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
178
+ }, function (props) {
179
+ return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
180
+ }, function (props) {
181
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
182
+ }, function (props) {
183
+ return props.theme.fontFamily;
184
+ }, function (props) {
185
+ return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
186
+ }, function (props) {
187
+ return props.theme.fontFamily;
188
+ }, function (props) {
189
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
190
+ }, function (props) {
191
+ return props.backgroundType === "dark" ? props.theme.assistiveTextFontColorOnDark : props.theme.assistiveTextFontColor;
192
+ }, function (props) {
193
+ return props.backgroundType ? props.theme.underlineColorOnDark : props.theme.underlineColor;
194
+ }, function (props) {
195
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
196
+ }, function (props) {
197
+ return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
198
+ }, function (props) {
199
+ return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
200
+ }, function (props) {
201
+ return "calc(".concat(props.theme.underlineThickness, " + 1px) solid ").concat(props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor);
202
+ }, function (props) {
203
+ return props.backgroundType === "dark" ? props.theme.scrollBarTrackColorOnDark : props.theme.scrollBarTrackColor;
204
+ }, function (props) {
205
+ return props.backgroundType === "dark" ? props.theme.scrollBarThumbColorOnDark : props.theme.scrollBarThumbColor;
206
+ }, function (props) {
207
+ return props.theme.underlineThickness;
208
+ }, function (props) {
209
+ return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
210
+ }, function (props) {
211
+ return props.theme.underlineThickness;
212
+ }, function (props) {
213
+ return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
214
+ }, function (props) {
215
+ return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
216
+ }, function (props) {
217
+ return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor, " !important");
218
+ }, function (props) {
219
+ return props.theme.fontFamily;
220
+ }, function (props) {
221
+ return props.theme.valueFontSize;
222
+ }, function (props) {
223
+ return props.theme.valueFontStyle;
224
+ }, function (props) {
225
+ return props.theme.valueFontWeight;
226
+ }, function (props) {
227
+ return props.theme.valueLetterSpacing;
228
+ }, function (props) {
229
+ return props.backgroundType === "dark" ? props.theme.valueFontColorOnDark : props.theme.valueFontColor;
230
+ }, function (props) {
231
+ return props.theme.valueLineHeight;
232
+ }, function (props) {
233
+ return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
234
+ }, function (props) {
235
+ return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
236
+ }, function (props) {
237
+ return "".concat(props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor, " !important");
238
+ }, function (props) {
239
+ return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
240
+ });
241
+
242
+ V3DxcTextarea.propTypes = {
243
+ label: _propTypes["default"].string,
244
+ name: _propTypes["default"].string,
245
+ value: _propTypes["default"].string,
246
+ assistiveText: _propTypes["default"].string,
247
+ disabled: _propTypes["default"].bool,
248
+ required: _propTypes["default"].bool,
249
+ invalid: _propTypes["default"].bool,
250
+ placeholder: _propTypes["default"].string,
251
+ onChange: _propTypes["default"].func,
252
+ onBlur: _propTypes["default"].func,
253
+ numRows: _propTypes["default"].number,
254
+ size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
255
+ margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
256
+ top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
257
+ bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
258
+ left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
259
+ right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
260
+ }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
261
+ tabIndex: _propTypes["default"].number
262
+ };
263
+ var _default = V3DxcTextarea;
264
+ exports["default"] = _default;