@dxc-technology/halstack-react 0.0.0-c7d5596 → 0.0.0-c7ec4d1

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 (199) hide show
  1. package/README.md +1 -1
  2. package/babel.config.js +6 -2
  3. package/dist/BackgroundColorContext.js +46 -0
  4. package/dist/ThemeContext.js +237 -2
  5. package/dist/V3Select/V3Select.js +549 -0
  6. package/dist/V3Textarea/V3Textarea.js +264 -0
  7. package/dist/accordion/Accordion.js +152 -67
  8. package/dist/accordion-group/AccordionGroup.js +186 -0
  9. package/dist/alert/Alert.js +183 -84
  10. package/dist/alert/index.d.ts +51 -0
  11. package/dist/badge/Badge.js +63 -0
  12. package/dist/box/Box.js +31 -23
  13. package/dist/button/Button.js +63 -27
  14. package/dist/card/Card.js +72 -35
  15. package/dist/checkbox/Checkbox.js +99 -40
  16. package/dist/chip/Chip.js +97 -40
  17. package/dist/common/RequiredComponent.js +2 -8
  18. package/dist/common/utils.js +2 -22
  19. package/dist/common/variables.js +1452 -304
  20. package/dist/date/Date.js +80 -57
  21. package/dist/date-input/DateInput.js +400 -0
  22. package/dist/date-input/index.d.ts +95 -0
  23. package/dist/dialog/Dialog.js +58 -37
  24. package/dist/dropdown/Dropdown.js +177 -82
  25. package/dist/file-input/FileInput.js +644 -0
  26. package/dist/file-input/FileItem.js +287 -0
  27. package/dist/file-input/index.d.ts +81 -0
  28. package/dist/footer/Footer.js +90 -40
  29. package/dist/footer/Icons.js +77 -0
  30. package/dist/header/Header.js +192 -95
  31. package/dist/header/Icons.js +59 -0
  32. package/dist/heading/Heading.js +93 -16
  33. package/dist/input-text/Icons.js +22 -0
  34. package/dist/input-text/InputText.js +251 -116
  35. package/dist/layout/ApplicationLayout.js +18 -26
  36. package/dist/layout/Icons.js +55 -0
  37. package/dist/link/Link.js +89 -41
  38. package/dist/main.d.ts +8 -0
  39. package/dist/main.js +98 -18
  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 +122 -66
  45. package/dist/password-input/PasswordInput.js +203 -0
  46. package/dist/password-input/index.d.ts +94 -0
  47. package/dist/progress-bar/ProgressBar.js +95 -38
  48. package/dist/radio/Radio.js +31 -17
  49. package/dist/resultsetTable/ResultsetTable.js +82 -65
  50. package/dist/select/Select.js +896 -284
  51. package/dist/select/index.d.ts +53 -0
  52. package/dist/sidenav/Sidenav.js +66 -15
  53. package/dist/slider/Slider.js +211 -73
  54. package/dist/spinner/Spinner.js +247 -59
  55. package/dist/switch/Switch.js +50 -27
  56. package/dist/table/Table.js +51 -24
  57. package/dist/tabs/Tabs.js +193 -35
  58. package/dist/tag/Tag.js +68 -35
  59. package/dist/text-input/TextInput.js +974 -0
  60. package/dist/text-input/index.d.ts +135 -0
  61. package/dist/textarea/Textarea.js +248 -106
  62. package/dist/textarea/index.d.ts +117 -0
  63. package/dist/toggle/Toggle.js +16 -19
  64. package/dist/toggle-group/ToggleGroup.js +142 -41
  65. package/dist/upload/Upload.js +16 -11
  66. package/dist/upload/buttons-upload/ButtonsUpload.js +32 -19
  67. package/dist/upload/buttons-upload/Icons.js +40 -0
  68. package/dist/upload/dragAndDropArea/DragAndDropArea.js +84 -34
  69. package/dist/upload/dragAndDropArea/Icons.js +39 -0
  70. package/dist/upload/file-upload/FileToUpload.js +64 -33
  71. package/dist/upload/file-upload/Icons.js +66 -0
  72. package/dist/upload/files-upload/FilesToUpload.js +16 -16
  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 +125 -60
  79. package/package.json +14 -11
  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 +15 -0
  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/Heading.test.js +60 -12
  88. package/test/InputText.test.js +53 -41
  89. package/test/Link.test.js +12 -2
  90. package/test/NumberInput.test.js +259 -0
  91. package/test/Paginator.test.js +50 -77
  92. package/test/PasswordInput.test.js +83 -0
  93. package/test/ResultsetTable.test.js +61 -25
  94. package/test/Slider.test.js +9 -17
  95. package/test/Spinner.test.js +5 -0
  96. package/test/Tabs.test.js +21 -0
  97. package/test/TextInput.test.js +732 -0
  98. package/test/Textarea.test.js +193 -0
  99. package/test/ToggleGroup.test.js +5 -1
  100. package/test/Upload.test.js +5 -5
  101. package/test/{Select.test.js → V3Select.test.js} +67 -46
  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/checkbox/Checkbox.stories.js +0 -144
  115. package/dist/checkbox/readme.md +0 -116
  116. package/dist/common/services/example-service.js +0 -10
  117. package/dist/common/services/example-service.test.js +0 -12
  118. package/dist/date/Date.stories.js +0 -205
  119. package/dist/date/calendar.svg +0 -1
  120. package/dist/date/calendar_dark.svg +0 -1
  121. package/dist/date/readme.md +0 -73
  122. package/dist/dialog/Dialog.stories.js +0 -217
  123. package/dist/dialog/readme.md +0 -32
  124. package/dist/dropdown/Dropdown.stories.js +0 -249
  125. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  126. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  127. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  128. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  129. package/dist/dropdown/readme.md +0 -69
  130. package/dist/footer/Footer.stories.js +0 -94
  131. package/dist/footer/dxc_logo_wht.png +0 -0
  132. package/dist/footer/readme.md +0 -41
  133. package/dist/header/Header.stories.js +0 -176
  134. package/dist/header/close_icon.svg +0 -1
  135. package/dist/header/dxc_logo_black.png +0 -0
  136. package/dist/header/dxc_logo_blk_rgb.svg +0 -6
  137. package/dist/header/dxc_logo_white.png +0 -0
  138. package/dist/header/hamb_menu_black.svg +0 -1
  139. package/dist/header/hamb_menu_white.svg +0 -1
  140. package/dist/header/readme.md +0 -33
  141. package/dist/input-text/InputText.stories.js +0 -209
  142. package/dist/input-text/error.svg +0 -1
  143. package/dist/input-text/readme.md +0 -91
  144. package/dist/layout/facebook.svg +0 -45
  145. package/dist/layout/linkedin.svg +0 -50
  146. package/dist/layout/twitter.svg +0 -53
  147. package/dist/link/readme.md +0 -51
  148. package/dist/paginator/images/next.svg +0 -3
  149. package/dist/paginator/images/nextPage.svg +0 -3
  150. package/dist/paginator/images/previous.svg +0 -3
  151. package/dist/paginator/images/previousPage.svg +0 -3
  152. package/dist/paginator/readme.md +0 -50
  153. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  154. package/dist/progress-bar/readme.md +0 -63
  155. package/dist/radio/Radio.stories.js +0 -166
  156. package/dist/radio/readme.md +0 -70
  157. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  158. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  159. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  160. package/dist/select/Select.stories.js +0 -235
  161. package/dist/select/readme.md +0 -72
  162. package/dist/slider/Slider.stories.js +0 -241
  163. package/dist/slider/readme.md +0 -64
  164. package/dist/spinner/Spinner.stories.js +0 -183
  165. package/dist/spinner/readme.md +0 -65
  166. package/dist/switch/Switch.stories.js +0 -134
  167. package/dist/switch/readme.md +0 -133
  168. package/dist/tabs/Tabs.stories.js +0 -130
  169. package/dist/tabs/readme.md +0 -78
  170. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  171. package/dist/tabs-for-sections/readme.md +0 -78
  172. package/dist/toggle/Toggle.stories.js +0 -297
  173. package/dist/toggle/readme.md +0 -80
  174. package/dist/toggle-group/readme.md +0 -82
  175. package/dist/upload/Upload.stories.js +0 -72
  176. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  177. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  178. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  179. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  180. package/dist/upload/file-upload/audio-icon.svg +0 -4
  181. package/dist/upload/file-upload/close.svg +0 -4
  182. package/dist/upload/file-upload/file-icon.svg +0 -4
  183. package/dist/upload/file-upload/video-icon.svg +0 -4
  184. package/dist/upload/readme.md +0 -37
  185. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  186. package/dist/upload/transaction/audio-icon.svg +0 -4
  187. package/dist/upload/transaction/error-icon.svg +0 -4
  188. package/dist/upload/transaction/file-icon-err.svg +0 -4
  189. package/dist/upload/transaction/file-icon.svg +0 -4
  190. package/dist/upload/transaction/image-icon-err.svg +0 -4
  191. package/dist/upload/transaction/image-icon.svg +0 -4
  192. package/dist/upload/transaction/success-icon.svg +0 -4
  193. package/dist/upload/transaction/video-icon-err.svg +0 -4
  194. package/dist/upload/transaction/video-icon.svg +0 -4
  195. package/dist/wizard/invalid_icon.svg +0 -6
  196. package/dist/wizard/valid_icon.svg +0 -6
  197. package/dist/wizard/validation-wrong.svg +0 -6
  198. package/test/TabsForSections.test.js +0 -34
  199. package/test/Toggle.test.js +0 -43
@@ -0,0 +1,203 @@
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 _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
+
16
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
17
+
18
+ var _react = _interopRequireWildcard(require("react"));
19
+
20
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
21
+
22
+ var _propTypes = _interopRequireDefault(require("prop-types"));
23
+
24
+ var _TextInput = _interopRequireDefault(require("../text-input/TextInput"));
25
+
26
+ var _variables = require("../common/variables.js");
27
+
28
+ function _templateObject() {
29
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n & ::-ms-reveal {\n display: none;\n }\n"]);
30
+
31
+ _templateObject = function _templateObject() {
32
+ return data;
33
+ };
34
+
35
+ return data;
36
+ }
37
+
38
+ var DxcPasswordInput = _react["default"].forwardRef(function (_ref, ref) {
39
+ var _ref$label = _ref.label,
40
+ label = _ref$label === void 0 ? "" : _ref$label,
41
+ _ref$name = _ref.name,
42
+ name = _ref$name === void 0 ? "" : _ref$name,
43
+ value = _ref.value,
44
+ _ref$helperText = _ref.helperText,
45
+ helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
46
+ _ref$clearable = _ref.clearable,
47
+ clearable = _ref$clearable === void 0 ? false : _ref$clearable,
48
+ onChange = _ref.onChange,
49
+ onBlur = _ref.onBlur,
50
+ _ref$error = _ref.error,
51
+ error = _ref$error === void 0 ? "" : _ref$error,
52
+ pattern = _ref.pattern,
53
+ length = _ref.length,
54
+ _ref$autocomplete = _ref.autocomplete,
55
+ autocomplete = _ref$autocomplete === void 0 ? "off" : _ref$autocomplete,
56
+ margin = _ref.margin,
57
+ _ref$size = _ref.size,
58
+ size = _ref$size === void 0 ? "medium" : _ref$size,
59
+ _ref$tabIndex = _ref.tabIndex,
60
+ tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
61
+
62
+ var _useState = (0, _react.useState)(false),
63
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
64
+ isPasswordVisible = _useState2[0],
65
+ setIsPasswordVisible = _useState2[1];
66
+
67
+ var inputRef = (0, _react.useRef)(null);
68
+
69
+ var setInputType = function setInputType(type) {
70
+ var _inputRef$current, _inputRef$current$chi;
71
+
72
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 ? void 0 : (_inputRef$current$chi = _inputRef$current.children[2]) === null || _inputRef$current$chi === void 0 ? void 0 : _inputRef$current$chi.children[0].setAttribute("type", type);
73
+ };
74
+
75
+ var setAriaAttributes = function setAriaAttributes(ariaExpanded, ariaLabel) {
76
+ if (error && clearable && value) {
77
+ var _inputRef$current2, _inputRef$current2$ch, _inputRef$current2$ch2, _inputRef$current3, _inputRef$current3$ch, _inputRef$current3$ch2;
78
+
79
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current2 = inputRef.current) === null || _inputRef$current2 === void 0 ? void 0 : (_inputRef$current2$ch = _inputRef$current2.children[2]) === null || _inputRef$current2$ch === void 0 ? void 0 : (_inputRef$current2$ch2 = _inputRef$current2$ch.children[3]) === null || _inputRef$current2$ch2 === void 0 ? void 0 : _inputRef$current2$ch2.setAttribute("aria-expanded", ariaExpanded);
80
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current3 = inputRef.current) === null || _inputRef$current3 === void 0 ? void 0 : (_inputRef$current3$ch = _inputRef$current3.children[2]) === null || _inputRef$current3$ch === void 0 ? void 0 : (_inputRef$current3$ch2 = _inputRef$current3$ch.children[3]) === null || _inputRef$current3$ch2 === void 0 ? void 0 : _inputRef$current3$ch2.setAttribute("aria-label", ariaLabel);
81
+ } else if (error || clearable && !value) {
82
+ var _inputRef$current4, _inputRef$current4$ch, _inputRef$current4$ch2, _inputRef$current5, _inputRef$current5$ch, _inputRef$current5$ch2;
83
+
84
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current4 = inputRef.current) === null || _inputRef$current4 === void 0 ? void 0 : (_inputRef$current4$ch = _inputRef$current4.children[2]) === null || _inputRef$current4$ch === void 0 ? void 0 : (_inputRef$current4$ch2 = _inputRef$current4$ch.children[2]) === null || _inputRef$current4$ch2 === void 0 ? void 0 : _inputRef$current4$ch2.setAttribute("aria-expanded", ariaExpanded);
85
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current5 = inputRef.current) === null || _inputRef$current5 === void 0 ? void 0 : (_inputRef$current5$ch = _inputRef$current5.children[2]) === null || _inputRef$current5$ch === void 0 ? void 0 : (_inputRef$current5$ch2 = _inputRef$current5$ch.children[2]) === null || _inputRef$current5$ch2 === void 0 ? void 0 : _inputRef$current5$ch2.setAttribute("aria-label", ariaLabel);
86
+ } else {
87
+ var _inputRef$current6, _inputRef$current6$ch, _inputRef$current6$ch2, _inputRef$current7, _inputRef$current7$ch, _inputRef$current7$ch2;
88
+
89
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current6 = inputRef.current) === null || _inputRef$current6 === void 0 ? void 0 : (_inputRef$current6$ch = _inputRef$current6.children[2]) === null || _inputRef$current6$ch === void 0 ? void 0 : (_inputRef$current6$ch2 = _inputRef$current6$ch.children[1]) === null || _inputRef$current6$ch2 === void 0 ? void 0 : _inputRef$current6$ch2.setAttribute("aria-expanded", ariaExpanded);
90
+ inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current7 = inputRef.current) === null || _inputRef$current7 === void 0 ? void 0 : (_inputRef$current7$ch = _inputRef$current7.children[2]) === null || _inputRef$current7$ch === void 0 ? void 0 : (_inputRef$current7$ch2 = _inputRef$current7$ch.children[1]) === null || _inputRef$current7$ch2 === void 0 ? void 0 : _inputRef$current7$ch2.setAttribute("aria-label", ariaLabel);
91
+ }
92
+ };
93
+
94
+ var getIconTitle = function getIconTitle() {
95
+ return isPasswordVisible ? "Hide password" : "Show password";
96
+ };
97
+
98
+ (0, _react.useEffect)(function () {
99
+ setAriaAttributes(false, "Show");
100
+
101
+ if (isPasswordVisible) {
102
+ setInputType("text");
103
+ setAriaAttributes(true, "Hide");
104
+ } else {
105
+ setInputType("password");
106
+ setAriaAttributes(false, "Show");
107
+ }
108
+ }, [isPasswordVisible]);
109
+
110
+ var viewPassword = function viewPassword() {
111
+ setInputType("text");
112
+ setIsPasswordVisible(true);
113
+ };
114
+
115
+ var hidePassword = function hidePassword() {
116
+ setInputType("password");
117
+ setIsPasswordVisible(false);
118
+ };
119
+
120
+ var action = {
121
+ onClick: isPasswordVisible ? hidePassword : viewPassword,
122
+ icon: isPasswordVisible ? _react["default"].createElement("svg", {
123
+ xmlns: "http://www.w3.org/2000/svg",
124
+ height: "24px",
125
+ viewBox: "0 0 24 24",
126
+ width: "24px",
127
+ fill: "#000000"
128
+ }, _react["default"].createElement("path", {
129
+ d: "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z",
130
+ fill: "none"
131
+ }), _react["default"].createElement("path", {
132
+ d: "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z"
133
+ })) : _react["default"].createElement("svg", {
134
+ xmlns: "http://www.w3.org/2000/svg",
135
+ height: "24px",
136
+ viewBox: "0 0 24 24",
137
+ width: "24px",
138
+ fill: "#000000"
139
+ }, _react["default"].createElement("path", {
140
+ d: "M0 0h24v24H0V0z",
141
+ fill: "none"
142
+ }), _react["default"].createElement("path", {
143
+ d: "M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z"
144
+ })),
145
+ title: getIconTitle()
146
+ };
147
+ return _react["default"].createElement(PasswordInput, {
148
+ ref: ref
149
+ }, _react["default"].createElement(_TextInput["default"], {
150
+ ref: inputRef,
151
+ label: label,
152
+ name: name,
153
+ value: value,
154
+ helperText: helperText,
155
+ action: action,
156
+ error: error,
157
+ clearable: clearable,
158
+ onChange: onChange,
159
+ onBlur: onBlur,
160
+ margin: margin,
161
+ size: size,
162
+ pattern: pattern,
163
+ length: length,
164
+ autocomplete: autocomplete,
165
+ tabIndex: tabIndex
166
+ }));
167
+ });
168
+
169
+ var sizes = {
170
+ small: "240px",
171
+ medium: "360px",
172
+ large: "480px",
173
+ fillParent: "100%"
174
+ };
175
+
176
+ var PasswordInput = _styledComponents["default"].div(_templateObject());
177
+
178
+ DxcPasswordInput.propTypes = {
179
+ label: _propTypes["default"].string,
180
+ name: _propTypes["default"].string,
181
+ value: _propTypes["default"].string,
182
+ helperText: _propTypes["default"].string,
183
+ error: _propTypes["default"].string,
184
+ clearable: _propTypes["default"].bool,
185
+ onChange: _propTypes["default"].func,
186
+ onBlur: _propTypes["default"].func,
187
+ autocomplete: _propTypes["default"].string,
188
+ margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
189
+ top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
190
+ bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
191
+ left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
192
+ right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
193
+ }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
194
+ size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
195
+ pattern: _propTypes["default"].string,
196
+ length: _propTypes["default"].shape({
197
+ min: _propTypes["default"].number,
198
+ max: _propTypes["default"].number
199
+ }),
200
+ tabIndex: _propTypes["default"].number
201
+ };
202
+ var _default = DxcPasswordInput;
203
+ exports["default"] = _default;
@@ -0,0 +1,94 @@
1
+ type Size = "small" | "medium" | "large" | "fillParent";
2
+ type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
+ type Margin = {
4
+ top?: Space;
5
+ bottom?: Space;
6
+ left?: Space;
7
+ right?: Space;
8
+ };
9
+
10
+ type Props = {
11
+ /**
12
+ * Text to be placed above the password.
13
+ */
14
+ label?: string;
15
+ /**
16
+ * Name attribute of the input element.
17
+ */
18
+ name?: string;
19
+ /**
20
+ * Value of the input element. If undefined, the component will be uncontrolled and the value will be managed internally by the component.
21
+ */
22
+ value?: string;
23
+ /**
24
+ * Helper text to be placed above the password.
25
+ */
26
+ helperText?: string;
27
+ /**
28
+ * If true, the password input will have an action to clear the entered value.
29
+ */
30
+ clearable?: boolean;
31
+ /**
32
+ * This function will be called when the user types within the input
33
+ * element of the component. An object including the current value and
34
+ * the error (if the value entered is not valid) will be passed to this
35
+ * function. If there is no error, error will be null.
36
+ * */
37
+ onChange?: (val: { value: string; error: string }) => void;
38
+ /**
39
+ * This function will be called when the input element loses the focus.
40
+ * An object including the input value and the error (if the value entered is
41
+ * not valid) will be passed to this function. If there is no error, error will be null.
42
+ */
43
+ onBlur?: (val: { value: string; error: string }) => void;
44
+ /**
45
+ * If it is defined, the component will change its appearance, showing
46
+ * the error below the password input component. If it is not defined, the
47
+ * error messages will be managed internally, but never displayed on its own.
48
+ */
49
+ error?: string;
50
+ /**
51
+ * Regular expression that defines the valid format allowed by the
52
+ * password input. This will be checked both when the input element loses the
53
+ * focus and while typing within it. If the string entered does not match
54
+ * the pattern, the onBlur and onChange functions will be called with the
55
+ * current value and an internal error informing that this value does not
56
+ * match the pattern. If the pattern is met, the error parameter of both
57
+ * events will be null.
58
+ */
59
+ pattern?: string;
60
+ /**
61
+ * Specifies the minimun and maximum length allowed by the password input.
62
+ * This will be checked both when the input element loses the
63
+ * focus and while typing within it. If the string entered does not
64
+ * comply the length, the onBlur and onChange functions will be called
65
+ * with the current value and an internal error informing that the value
66
+ * length does not comply the specified range. If a valid length is
67
+ * reached, the error parameter of both events will be null.
68
+ */
69
+ length?: { min?: number; max?: number };
70
+ /**
71
+ * HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
72
+ * Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
73
+ */
74
+ autocomplete?: string;
75
+ /**
76
+ * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
77
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
78
+ */
79
+ margin?: Space | Margin;
80
+ /**
81
+ * Size of the component ('small' | 'medium' | 'large' | 'fillParent').
82
+ */
83
+ size?: Size;
84
+ /**
85
+ * Value of the tabindex attribute.
86
+ */
87
+ tabIndex?: number;
88
+ /**
89
+ * Reference to the component.
90
+ */
91
+ ref?: React.RefObject<HTMLDivElement>;
92
+ };
93
+
94
+ export default function DxcPasswordInput(props: Props): JSX.Element;
@@ -9,12 +9,12 @@ Object.defineProperty(exports, "__esModule", {
9
9
  });
10
10
  exports["default"] = void 0;
11
11
 
12
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
13
+
12
14
  var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
13
15
 
14
16
  var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
17
 
16
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
17
-
18
18
  var _react = _interopRequireWildcard(require("react"));
19
19
 
20
20
  var _styledComponents = _interopRequireWildcard(require("styled-components"));
@@ -23,16 +23,24 @@ var _LinearProgress = _interopRequireDefault(require("@material-ui/core/LinearPr
23
23
 
24
24
  var _propTypes = _interopRequireDefault(require("prop-types"));
25
25
 
26
- require("../common/OpenSans.css");
27
-
28
26
  var _variables = require("../common/variables.js");
29
27
 
30
- var _utils = require("../common/utils.js");
28
+ var _useTheme = _interopRequireDefault(require("../useTheme.js"));
29
+
30
+ var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
31
+
32
+ function _templateObject6() {
33
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: 1.5em;\n"]);
34
+
35
+ _templateObject6 = function _templateObject6() {
36
+ return data;
37
+ };
31
38
 
32
- var _ThemeContext = _interopRequireDefault(require("../ThemeContext.js"));
39
+ return data;
40
+ }
33
41
 
34
42
  function _templateObject5() {
35
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: 12px;\n color: ", ";\n display: ", ";\n width: 5%;\n text-align: right;\n margin-bottom: 8px;\n"]);
43
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n font-weight: ", ";\n text-transform: ", ";\n color: ", ";\n display: ", ";\n flex-shrink: 0;\n"]);
36
44
 
37
45
  _templateObject5 = function _templateObject5() {
38
46
  return data;
@@ -42,7 +50,7 @@ function _templateObject5() {
42
50
  }
43
51
 
44
52
  function _templateObject4() {
45
- var data = (0, _taggedTemplateLiteral2["default"])(["\n text-transform: uppercase;\n font-size: 12px;\n flex-grow: 1;\n color: ", ";\n width: 90%;\n overflow: hidden;\n text-overflow: ellipsis;\n margin-bottom: 8px;\n"]);
53
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n font-weight: ", ";\n text-transform: ", ";\n color: ", ";\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-overflow: ellipsis;\n"]);
46
54
 
47
55
  _templateObject4 = function _templateObject4() {
48
56
  return data;
@@ -52,7 +60,7 @@ function _templateObject4() {
52
60
  }
53
61
 
54
62
  function _templateObject3() {
55
- var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n width: 685px;\n flex-wrap: wrap;\n width: 100%;\n"]);
63
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n width: 685px;\n flex-wrap: wrap;\n width: 100%;\n margin-bottom: 8px;\n align-items: baseline;\n justify-content: space-between;\n"]);
56
64
 
57
65
  _templateObject3 = function _templateObject3() {
58
66
  return data;
@@ -62,7 +70,7 @@ function _templateObject3() {
62
70
  }
63
71
 
64
72
  function _templateObject2() {
65
- var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index: ", ";\n width: ", ";\n .MuiLinearProgress-root {\n height: 9px;\n background-color: ", ";\n border-radius: 5px;\n }\n .MuiLinearProgress-bar {\n background-color: ", ";\n }\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"]);
73
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index: ", ";\n width: ", ";\n .MuiLinearProgress-root {\n height: ", ";\n background-color: ", ";\n border-radius: ", ";\n margin-bottom: ", ";\n }\n .MuiLinearProgress-bar {\n background-color: ", ";\n }\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"]);
66
74
 
67
75
  _templateObject2 = function _templateObject2() {
68
76
  return data;
@@ -72,7 +80,7 @@ function _templateObject2() {
72
80
  }
73
81
 
74
82
  function _templateObject() {
75
- var data = (0, _taggedTemplateLiteral2["default"])(["\n background-color: ", ";\n width: ", ";\n display: flex;\n flex-wrap: wrap;\n justify-content: ", ";\n height: ", ";\n align-items: ", ";\n min-width: 685px;\n max-width: ", ";\n position: ", ";\n top: ", ";\n bottom: ", ";\n left: ", ";\n right: ", ";\n font-family: \"Open Sans\", sans-serif;\n"]);
83
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n background-color: ", ";\n opacity: ", ";\n width: ", ";\n display: flex;\n flex-wrap: wrap;\n justify-content: ", ";\n height: ", ";\n align-items: ", ";\n min-width: 100px;\n max-width: ", ";\n position: ", ";\n top: ", ";\n bottom: ", ";\n left: ", ";\n right: ", ";\n z-index: ", ";\n width: 100%;\n"]);
76
84
 
77
85
  _templateObject = function _templateObject() {
78
86
  return data;
@@ -84,49 +92,45 @@ function _templateObject() {
84
92
  var DxcProgressBar = function DxcProgressBar(_ref) {
85
93
  var _ref$label = _ref.label,
86
94
  label = _ref$label === void 0 ? "" : _ref$label,
95
+ _ref$helperText = _ref.helperText,
96
+ helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
87
97
  _ref$overlay = _ref.overlay,
88
98
  overlay = _ref$overlay === void 0 ? true : _ref$overlay,
89
99
  value = _ref.value,
90
100
  _ref$showValue = _ref.showValue,
91
101
  showValue = _ref$showValue === void 0 ? false : _ref$showValue,
92
102
  margin = _ref.margin;
93
- var customTheme = (0, _react.useContext)(_ThemeContext["default"]);
94
- var colorsTheme = (0, _react.useMemo)(function () {
95
- return (0, _utils.getCustomTheme)(_variables.theme, (0, _utils.getCustomTheme)(_variables.defaultTheme, customTheme));
96
- }, [customTheme]);
103
+ var colorsTheme = (0, _useTheme["default"])();
104
+ var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
97
105
  return _react["default"].createElement(_styledComponents.ThemeProvider, {
98
106
  theme: colorsTheme.progressBar
99
107
  }, _react["default"].createElement(BackgroundProgressBar, {
100
108
  overlay: overlay
101
109
  }, _react["default"].createElement(DXCProgressBar, {
102
110
  overlay: overlay,
103
- margin: margin
111
+ margin: margin,
112
+ backgroundType: backgroundType
104
113
  }, _react["default"].createElement(InfoProgressBar, null, _react["default"].createElement(ProgressBarLabel, {
105
- overlay: overlay
114
+ overlay: overlay,
115
+ backgroundType: backgroundType
106
116
  }, label), _react["default"].createElement(ProgressBarProgress, {
107
117
  overlay: overlay,
108
- showValue: showValue
118
+ showValue: showValue,
119
+ backgroundType: backgroundType
109
120
  }, value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100, " %")), _react["default"].createElement(_LinearProgress["default"], {
110
121
  variant: showValue ? "determinate" : "indeterminate",
111
- value: value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100
112
- }))));
113
- };
114
-
115
- DxcProgressBar.propTypes = {
116
- label: _propTypes["default"].string,
117
- overlay: _propTypes["default"].bool,
118
- value: _propTypes["default"].number,
119
- showValue: _propTypes["default"].bool,
120
- margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
121
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
122
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
123
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
124
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
125
- }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
122
+ value: value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100,
123
+ helperText: helperText
124
+ }), helperText && _react["default"].createElement(HelperText, {
125
+ overlay: overlay,
126
+ backgroundType: backgroundType
127
+ }, helperText))));
126
128
  };
127
129
 
128
130
  var BackgroundProgressBar = _styledComponents["default"].div(_templateObject(), function (props) {
129
- return props.overlay === true ? "".concat(props.theme.overlayColor).concat(props.theme.overlayOpacity) : "transparent";
131
+ return props.overlay === true ? "".concat(props.theme.overlayColor) : "transparent";
132
+ }, function (props) {
133
+ return props.overlay === true && "0.8";
130
134
  }, function (props) {
131
135
  return props.overlay === true ? "100%" : "";
132
136
  }, function (props) {
@@ -147,6 +151,8 @@ var BackgroundProgressBar = _styledComponents["default"].div(_templateObject(),
147
151
  return props.overlay === true ? "0" : "";
148
152
  }, function (props) {
149
153
  return props.overlay === true ? "0" : "";
154
+ }, function (props) {
155
+ return props.overlay ? 1300 : "";
150
156
  });
151
157
 
152
158
  var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), function (props) {
@@ -154,9 +160,15 @@ var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), functi
154
160
  }, function (props) {
155
161
  return props.overlay === true ? "80%" : "100%";
156
162
  }, function (props) {
157
- return "".concat(props.theme.totalLine).concat(props.theme.totalLineOpacity);
163
+ return props.theme.thickness;
164
+ }, function (props) {
165
+ return props.theme.totalLineColor;
158
166
  }, function (props) {
159
- return props.theme.trackLine;
167
+ return props.theme.borderRadius;
168
+ }, function (props) {
169
+ return props.helperText !== "" && "8px";
170
+ }, function (props) {
171
+ return props.backgroundType === "dark" ? props.theme.trackLineColorOnDark : props.theme.trackLineColor;
160
172
  }, function (props) {
161
173
  return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
162
174
  }, function (props) {
@@ -172,14 +184,59 @@ var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), functi
172
184
  var InfoProgressBar = _styledComponents["default"].div(_templateObject3());
173
185
 
174
186
  var ProgressBarLabel = _styledComponents["default"].div(_templateObject4(), function (props) {
175
- return props.overlay === true ? "#FFFFFF" : props.theme.fontColor;
187
+ return props.theme.labelFontFamily;
188
+ }, function (props) {
189
+ return props.theme.labelFontStyle;
190
+ }, function (props) {
191
+ return props.theme.labelFontSize;
192
+ }, function (props) {
193
+ return props.theme.labelFontWeight;
194
+ }, function (props) {
195
+ return props.theme.labelFontTextTransform;
196
+ }, function (props) {
197
+ return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.labelFontColor;
176
198
  });
177
199
 
178
200
  var ProgressBarProgress = _styledComponents["default"].div(_templateObject5(), function (props) {
179
- return props.overlay === true ? "#FFFFFF" : props.theme.fontColor;
201
+ return props.theme.valueFontFamily;
202
+ }, function (props) {
203
+ return props.theme.valueFontStyle;
204
+ }, function (props) {
205
+ return props.theme.valueFontSize;
206
+ }, function (props) {
207
+ return props.theme.valueFontWeight;
208
+ }, function (props) {
209
+ return props.theme.valueFontTextTransform;
210
+ }, function (props) {
211
+ return props.backgroundType === "dark" ? props.theme.valueFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.valueFontColor;
180
212
  }, function (props) {
181
213
  return props.value !== "" && props.showValue === true && "block" || "none";
182
214
  });
183
215
 
216
+ var HelperText = _styledComponents["default"].span(_templateObject6(), function (props) {
217
+ return props.backgroundType === "dark" ? props.theme.helperTextFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.helperTextFontColor;
218
+ }, function (props) {
219
+ return props.theme.fontFamily;
220
+ }, function (props) {
221
+ return props.theme.helperTextFontSize;
222
+ }, function (props) {
223
+ return props.theme.helperTextFontStyle;
224
+ }, function (props) {
225
+ return props.theme.helperTextFontWeight;
226
+ });
227
+
228
+ DxcProgressBar.propTypes = {
229
+ label: _propTypes["default"].string,
230
+ helperText: _propTypes["default"].string,
231
+ overlay: _propTypes["default"].bool,
232
+ value: _propTypes["default"].number,
233
+ showValue: _propTypes["default"].bool,
234
+ margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
235
+ top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
236
+ bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
237
+ left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
238
+ right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
239
+ }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
240
+ };
184
241
  var _default = DxcProgressBar;
185
242
  exports["default"] = _default;
@@ -27,16 +27,16 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
27
27
 
28
28
  var _RequiredComponent = _interopRequireDefault(require("../common/RequiredComponent"));
29
29
 
30
- require("../common/OpenSans.css");
31
-
32
30
  var _variables = require("../common/variables.js");
33
31
 
34
32
  var _utils = require("../common/utils.js");
35
33
 
36
- var _ThemeContext = _interopRequireDefault(require("../ThemeContext.js"));
34
+ var _useTheme = _interopRequireDefault(require("../useTheme.js"));
35
+
36
+ var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
37
37
 
38
38
  function _templateObject2() {
39
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: \"Open Sans\", sans-serif;\n color: ", ";\n cursor: ", ";\n"]);
39
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n cursor: ", ";\n"]);
40
40
 
41
41
  _templateObject2 = function _templateObject2() {
42
42
  return data;
@@ -46,7 +46,7 @@ function _templateObject2() {
46
46
  }
47
47
 
48
48
  function _templateObject() {
49
- var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n\n display: inline-flex;\n align-items: center;\n max-height: 42px;\n position: relative;\n flex-direction: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n cursor: ", ";\n opacity: ", ";\n .MuiButtonBase-root {\n width: auto;\n height: auto;\n padding: 10px;\n margin: 2px;\n padding-left: ", ";\n padding-right: ", ";\n margin-left: ", ";\n margin-right: ", ";\n .MuiIconButton-label {\n .MuiSvgIcon-root {\n height: 24px;\n width: 24px;\n }\n color: ", ";\n > div > :nth-child(2) path {\n color: ", ";\n }\n }\n\n &.Mui-focusVisible {\n background-color: transparent;\n .MuiSvgIcon-root {\n outline: ", " auto 1px;\n }\n }\n :hover {\n background-color: transparent;\n }\n .MuiTouchRipple-ripple {\n height: 40px !important;\n width: 40px !important;\n top: 0px !important;\n left: 0px !important;\n }\n }\n .MuiRadio-colorSecondary.Mui-checked {\n color: ", ";\n :hover {\n background-color: transparent;\n }\n }\n"]);
49
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n\n display: inline-flex;\n align-items: center;\n max-height: 42px;\n position: relative;\n flex-direction: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n cursor: ", ";\n .MuiButtonBase-root {\n width: auto;\n height: auto;\n padding: 10px;\n margin: 2px;\n ", ": ", ";\n padding-left: ", ";\n padding-right: ", ";\n margin-left: ", ";\n margin-right: ", ";\n .MuiIconButton-label {\n .MuiSvgIcon-root {\n height: ", ";\n width: ", ";\n }\n color: ", ";\n\n > div > :nth-child(2) path {\n color: ", ";\n }\n }\n\n &.Mui-focusVisible {\n background-color: transparent;\n .MuiSvgIcon-root {\n outline: ", "\n auto 1px;\n }\n }\n :hover {\n background-color: transparent;\n }\n .MuiTouchRipple-ripple {\n height: 40px !important;\n width: 40px !important;\n top: 0px !important;\n left: 0px !important;\n }\n }\n .MuiRadio-colorSecondary.Mui-checked {\n color: ", ";\n :hover {\n background-color: transparent;\n }\n }\n"]);
50
50
 
51
51
  _templateObject = function _templateObject() {
52
52
  return data;
@@ -77,10 +77,8 @@ var DxcRadio = function DxcRadio(_ref) {
77
77
  innerChecked = _useState2[0],
78
78
  setInnerChecked = _useState2[1];
79
79
 
80
- var customTheme = (0, _react.useContext)(_ThemeContext["default"]);
81
- var colorsTheme = (0, _react.useMemo)(function () {
82
- return (0, _utils.getCustomTheme)(_variables.theme, (0, _utils.getCustomTheme)(_variables.defaultTheme, customTheme));
83
- }, [customTheme]);
80
+ var colorsTheme = (0, _useTheme["default"])();
81
+ var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
84
82
 
85
83
  var handlerRadioChange = function handlerRadioChange(value) {
86
84
  if (checked == null) {
@@ -99,7 +97,8 @@ var DxcRadio = function DxcRadio(_ref) {
99
97
  labelPosition: labelPosition,
100
98
  disabled: disabled,
101
99
  margin: margin,
102
- size: size
100
+ size: size,
101
+ backgroundType: backgroundType
103
102
  }, _react["default"].createElement(_Radio["default"], {
104
103
  checked: checked != null && checked || innerChecked,
105
104
  name: name,
@@ -112,7 +111,8 @@ var DxcRadio = function DxcRadio(_ref) {
112
111
  checked: checked || innerChecked,
113
112
  labelPosition: labelPosition,
114
113
  disabled: disabled,
115
- onClick: !disabled && handlerRadioChange || null
114
+ onClick: !disabled && handlerRadioChange || null,
115
+ backgroundType: backgroundType
116
116
  }, required && _react["default"].createElement(_RequiredComponent["default"], null), label)));
117
117
  };
118
118
 
@@ -149,7 +149,9 @@ var RadioContainer = _styledComponents["default"].span(_templateObject(), functi
149
149
  }, function (props) {
150
150
  return props.disabled === true ? "not-allowed" : "default";
151
151
  }, function (props) {
152
- return props.disabled === true ? props.theme.disabled : "1";
152
+ return props.labelPosition === "after" ? "padding-right" : "padding-left";
153
+ }, function (props) {
154
+ return props.theme.circleLabelSpacing;
153
155
  }, function (props) {
154
156
  return props.labelPosition === "after" ? "0px" : "";
155
157
  }, function (props) {
@@ -159,17 +161,29 @@ var RadioContainer = _styledComponents["default"].span(_templateObject(), functi
159
161
  }, function (props) {
160
162
  return props.labelPosition === "before" ? "0px" : "";
161
163
  }, function (props) {
162
- return props.theme.color;
164
+ return props.theme.circleSize;
165
+ }, function (props) {
166
+ return props.theme.circleSize;
167
+ }, function (props) {
168
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
163
169
  }, function (props) {
164
- return props.theme.color;
170
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
165
171
  }, function (props) {
166
- return props.theme.focusColor;
172
+ return props.backgroundType === "dark" ? props.theme.focusColorOnDark : props.theme.focusColor;
167
173
  }, function (props) {
168
- return props.theme.color;
174
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
169
175
  });
170
176
 
171
177
  var LabelContainer = _styledComponents["default"].span(_templateObject2(), function (props) {
172
- return props.theme.fontColor;
178
+ return props.theme.fontFamily;
179
+ }, function (props) {
180
+ return props.theme.fontSize;
181
+ }, function (props) {
182
+ return props.theme.fontWeight;
183
+ }, function (props) {
184
+ return props.theme.fontStyle;
185
+ }, function (props) {
186
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledFontColorOnDark || props.theme.fontColorOnDark : props.disabled && props.theme.disabledFontColor || props.theme.fontColor;
173
187
  }, function (props) {
174
188
  return props.disabled === true ? "not-allowed" : "pointer";
175
189
  });