@dxc-technology/halstack-react 0.0.0-7d46b9f → 0.0.0-7da4003

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 (109) hide show
  1. package/dist/ThemeContext.js +6 -6
  2. package/dist/V3Textarea/V3Textarea.js +264 -0
  3. package/dist/alert/Alert.js +4 -4
  4. package/dist/button/Button.js +1 -1
  5. package/dist/common/variables.js +199 -74
  6. package/dist/date/Date.js +6 -6
  7. package/dist/{new-date/NewDate.js → date-input/DateInput.js} +36 -36
  8. package/dist/{new-date → date-input}/index.d.ts +3 -3
  9. package/dist/file-input/FileInput.js +2 -2
  10. package/dist/file-input/index.d.ts +1 -1
  11. package/dist/footer/Footer.js +44 -18
  12. package/dist/footer/Icons.js +77 -0
  13. package/dist/header/Header.js +80 -49
  14. package/dist/header/Icons.js +59 -0
  15. package/dist/input-text/Icons.js +22 -0
  16. package/dist/input-text/InputText.js +7 -9
  17. package/dist/layout/ApplicationLayout.js +4 -8
  18. package/dist/layout/Icons.js +55 -0
  19. package/dist/main.d.ts +6 -5
  20. package/dist/main.js +29 -21
  21. package/dist/new-select/NewSelect.js +836 -0
  22. package/dist/new-select/index.d.ts +53 -0
  23. package/dist/{number/Number.js → number-input/NumberInput.js} +8 -8
  24. package/dist/{number/NumberContext.js → number-input/NumberInputContext.js} +2 -2
  25. package/dist/{number → number-input}/index.d.ts +3 -3
  26. package/dist/paginator/Icons.js +66 -0
  27. package/dist/paginator/Paginator.js +5 -11
  28. package/dist/{password/Password.js → password-input/PasswordInput.js} +8 -10
  29. package/dist/{password → password-input}/index.d.ts +5 -5
  30. package/dist/slider/Slider.js +104 -19
  31. package/dist/{new-input-text/NewInputText.js → text-input/TextInput.js} +36 -32
  32. package/dist/{new-input-text → text-input}/index.d.ts +1 -1
  33. package/dist/textarea/Textarea.js +227 -122
  34. package/dist/{new-textarea → textarea}/index.d.ts +1 -1
  35. package/dist/toggle-group/ToggleGroup.js +132 -28
  36. package/dist/upload/Upload.js +3 -3
  37. package/dist/upload/buttons-upload/ButtonsUpload.js +7 -11
  38. package/dist/upload/buttons-upload/Icons.js +40 -0
  39. package/dist/upload/dragAndDropArea/DragAndDropArea.js +14 -14
  40. package/dist/upload/dragAndDropArea/Icons.js +39 -0
  41. package/dist/upload/file-upload/FileToUpload.js +26 -21
  42. package/dist/upload/file-upload/Icons.js +66 -0
  43. package/dist/upload/readme.md +2 -2
  44. package/dist/upload/transaction/Icons.js +160 -0
  45. package/dist/upload/transaction/Transaction.js +11 -38
  46. package/dist/wizard/Icons.js +65 -0
  47. package/dist/wizard/Wizard.js +3 -9
  48. package/package.json +1 -1
  49. package/test/Date.test.js +48 -44
  50. package/test/{NewDate.test.js → DateInput.test.js} +33 -23
  51. package/test/Footer.test.js +2 -7
  52. package/test/Header.test.js +5 -10
  53. package/test/InputText.test.js +24 -16
  54. package/test/{Number.test.js → NumberInput.test.js} +47 -45
  55. package/test/PasswordInput.test.js +83 -0
  56. package/test/Slider.test.js +9 -17
  57. package/test/{NewInputText.test.js → TextInput.test.js} +46 -48
  58. package/test/{NewTextarea.test.js → Textarea.test.js} +16 -18
  59. package/test/ToggleGroup.test.js +5 -1
  60. package/test/Upload.test.js +5 -5
  61. package/test/{TextArea.test.js → V3TextArea.test.js} +6 -7
  62. package/dist/footer/Footer.stories.js +0 -94
  63. package/dist/footer/dxc_logo.svg +0 -15
  64. package/dist/footer/readme.md +0 -41
  65. package/dist/header/Header.stories.js +0 -176
  66. package/dist/header/close_icon.svg +0 -1
  67. package/dist/header/dxc_logo_black.svg +0 -8
  68. package/dist/header/hamb_menu_black.svg +0 -1
  69. package/dist/header/hamb_menu_white.svg +0 -1
  70. package/dist/header/readme.md +0 -33
  71. package/dist/input-text/InputText.stories.js +0 -209
  72. package/dist/input-text/error.svg +0 -1
  73. package/dist/input-text/readme.md +0 -91
  74. package/dist/layout/facebook.svg +0 -45
  75. package/dist/layout/linkedin.svg +0 -50
  76. package/dist/layout/twitter.svg +0 -53
  77. package/dist/new-textarea/NewTextarea.js +0 -365
  78. package/dist/paginator/images/next.svg +0 -3
  79. package/dist/paginator/images/nextPage.svg +0 -3
  80. package/dist/paginator/images/previous.svg +0 -3
  81. package/dist/paginator/images/previousPage.svg +0 -3
  82. package/dist/paginator/readme.md +0 -50
  83. package/dist/password/styles.css +0 -3
  84. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  85. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  86. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  87. package/dist/slider/Slider.stories.js +0 -241
  88. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  89. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  90. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  91. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  92. package/dist/upload/file-upload/audio-icon.svg +0 -4
  93. package/dist/upload/file-upload/close.svg +0 -4
  94. package/dist/upload/file-upload/file-icon.svg +0 -4
  95. package/dist/upload/file-upload/video-icon.svg +0 -4
  96. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  97. package/dist/upload/transaction/audio-icon.svg +0 -4
  98. package/dist/upload/transaction/error-icon.svg +0 -4
  99. package/dist/upload/transaction/file-icon-err.svg +0 -4
  100. package/dist/upload/transaction/file-icon.svg +0 -4
  101. package/dist/upload/transaction/image-icon-err.svg +0 -4
  102. package/dist/upload/transaction/image-icon.svg +0 -4
  103. package/dist/upload/transaction/success-icon.svg +0 -4
  104. package/dist/upload/transaction/video-icon-err.svg +0 -4
  105. package/dist/upload/transaction/video-icon.svg +0 -4
  106. package/dist/wizard/invalid_icon.svg +0 -5
  107. package/dist/wizard/valid_icon.svg +0 -5
  108. package/dist/wizard/validation-wrong.svg +0 -6
  109. package/test/Password.test.js +0 -83
@@ -85,7 +85,7 @@ var parseAdvancedTheme = function parseAdvancedTheme(advancedTheme) {
85
85
  };
86
86
 
87
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$newInputText, _subLightness4, _theme$newInputText2, _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;
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
89
 
90
90
  var componentTokensCopy = JSON.parse(JSON.stringify(_variables.componentTokens));
91
91
  var accordionTokens = componentTokensCopy.accordion;
@@ -159,11 +159,11 @@ var parseTheme = function parseTheme(theme) {
159
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
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
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 inputTokens = componentTokensCopy.inputText;
163
- inputTokens.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 : inputTokens.selectedOptionBackgroundColor;
164
- var newInputTokens = componentTokensCopy.newInputText;
165
- newInputTokens.hoverListOptionBackgroundColor = (_ref39 = theme === null || theme === void 0 ? void 0 : (_theme$newInputText = theme.newInputText) === null || _theme$newInputText === void 0 ? void 0 : _theme$newInputText.baseColor) !== null && _ref39 !== void 0 ? _ref39 : newInputTokens.hoverListOptionBackgroundColor;
166
- newInputTokens.activeListOptionBackgroundColor = (_subLightness4 = subLightness(theme === null || theme === void 0 ? void 0 : (_theme$newInputText2 = theme.newInputText) === null || _theme$newInputText2 === void 0 ? void 0 : _theme$newInputText2.baseColor, 15)) !== null && _subLightness4 !== void 0 ? _subLightness4 : newInputTokens.activeListOptionBackgroundColor;
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
167
  var paginatorTokens = componentTokensCopy.paginator;
168
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
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;
@@ -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;
@@ -100,7 +100,7 @@ function _templateObject4() {
100
100
  }
101
101
 
102
102
  function _templateObject3() {
103
- var data = (0, _taggedTemplateLiteral2["default"])(["\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n display: ", ";\n overflow: hidden;\n\n background-color: ", ";\n\n border-radius: ", ";\n border-width: ", ";\n border-style: ", ";\n border-color: ", ";\n\n padding-left: 12px;\n padding-right: 12px;\n justify-content: ", ";\n align-items: ", ";\n max-width: ", ";\n width: ", ";\n z-index: ", ";\n"]);
103
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n display: ", ";\n overflow: hidden;\n box-sizing: border-box;\n\n background-color: ", ";\n\n border-radius: ", ";\n border-width: ", ";\n border-style: ", ";\n border-color: ", ";\n\n padding-left: 12px;\n padding-right: 12px;\n justify-content: ", ";\n align-items: ", ";\n max-width: ", ";\n width: ", ";\n z-index: ", ";\n"]);
104
104
 
105
105
  _templateObject3 = function _templateObject3() {
106
106
  return data;
@@ -295,7 +295,7 @@ var AlertContainer = _styledComponents["default"].div(_templateObject3(), functi
295
295
  }, function (props) {
296
296
  return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
297
297
  }, function (props) {
298
- return props.children && "inline-block" || "inline-flex";
298
+ return props.size === "fitContent" ? "inline-block" : "block";
299
299
  }, function (props) {
300
300
  return props.type === "info" && props.theme.infoBackgroundColor || props.type === "confirm" && props.theme.successBackgroundColor || props.type === "warning" && props.theme.warningBackgroundColor || props.type === "error" && props.theme.errorBackgroundColor;
301
301
  }, function (props) {
@@ -311,9 +311,9 @@ var AlertContainer = _styledComponents["default"].div(_templateObject3(), functi
311
311
  }, function (props) {
312
312
  return props.mode === "modal" ? "center" : "";
313
313
  }, function (props) {
314
- return props.size === "fitContent" ? calculateWidth(props.margin, "fillParent") : calculateWidth(props.margin, props.size);
314
+ return props.size !== "fillParent" && calculateWidth(props.margin, "fillParent");
315
315
  }, function (props) {
316
- return calculateWidth(props.margin, props.size);
316
+ return props.size !== "fillParent" && calculateWidth(props.margin, props.size);
317
317
  }, function (props) {
318
318
  return props.mode === "modal" ? "1300" : "";
319
319
  });
@@ -52,7 +52,7 @@ function _templateObject3() {
52
52
  }
53
53
 
54
54
  function _templateObject2() {
55
- var data = (0, _taggedTemplateLiteral2["default"])(["\n max-height: 24px;\n max-width: 24px;\n margin-left: ", ";\n margin-right: ", ";\n overflow: hidden;\n\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
55
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n max-height: 24px;\n max-width: 24px;\n margin-left: ", ";\n margin-right: ", ";\n overflow: hidden;\n display: flex;\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
56
56
 
57
57
  _templateObject2 = function _templateObject2() {
58
58
  return data;