@dxc-technology/halstack-react 0.0.0-254aa9f → 0.0.0-2787eec

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 (139) hide show
  1. package/README.md +66 -0
  2. package/babel.config.js +6 -2
  3. package/dist/BackgroundColorContext.js +46 -0
  4. package/dist/ThemeContext.js +235 -2
  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 +39 -19
  11. package/dist/button/Button.js +91 -40
  12. package/dist/card/Card.js +64 -56
  13. package/dist/checkbox/Checkbox.js +118 -39
  14. package/dist/checkbox/readme.md +2 -2
  15. package/dist/chip/Chip.js +265 -0
  16. package/dist/common/RequiredComponent.js +5 -15
  17. package/dist/common/variables.js +1502 -10
  18. package/dist/date/Date.js +110 -76
  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 +87 -33
  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 +90 -36
  27. package/dist/footer/dxc_logo.svg +15 -0
  28. package/dist/footer/readme.md +1 -1
  29. package/dist/header/Header.js +136 -73
  30. package/dist/header/dxc_logo_black.svg +8 -0
  31. package/dist/header/readme.md +1 -1
  32. package/dist/heading/Heading.js +81 -22
  33. package/dist/input-text/InputText.js +299 -101
  34. package/dist/layout/ApplicationLayout.js +331 -0
  35. package/dist/layout/facebook.svg +45 -0
  36. package/dist/layout/linkedin.svg +50 -0
  37. package/dist/layout/twitter.svg +53 -0
  38. package/dist/link/Link.js +142 -34
  39. package/dist/main.d.ts +8 -0
  40. package/dist/main.js +113 -9
  41. package/dist/new-select/NewSelect.js +836 -0
  42. package/dist/new-select/index.d.ts +53 -0
  43. package/dist/new-textarea/NewTextarea.js +369 -0
  44. package/dist/new-textarea/index.d.ts +117 -0
  45. package/dist/number-input/NumberInput.js +136 -0
  46. package/dist/number-input/NumberInputContext.js +16 -0
  47. package/dist/number-input/index.d.ts +113 -0
  48. package/dist/paginator/Paginator.js +163 -52
  49. package/dist/password-input/PasswordInput.js +198 -0
  50. package/dist/password-input/index.d.ts +94 -0
  51. package/dist/progress-bar/ProgressBar.js +97 -44
  52. package/dist/progress-bar/readme.md +2 -2
  53. package/dist/radio/Radio.js +39 -34
  54. package/dist/radio/readme.md +1 -1
  55. package/dist/resultsetTable/ResultsetTable.js +99 -71
  56. package/dist/select/Select.js +254 -130
  57. package/dist/sidenav/Sidenav.js +87 -125
  58. package/dist/slider/Slider.js +206 -80
  59. package/dist/slider/readme.md +1 -1
  60. package/dist/spinner/Spinner.js +249 -64
  61. package/dist/spinner/readme.md +2 -2
  62. package/dist/switch/Switch.js +54 -51
  63. package/dist/switch/readme.md +2 -2
  64. package/dist/table/Table.js +63 -15
  65. package/dist/tabs/Tabs.js +210 -50
  66. package/dist/tabs-for-sections/TabsForSections.js +1 -16
  67. package/dist/tag/Tag.js +100 -35
  68. package/dist/text-input/TextInput.js +971 -0
  69. package/dist/text-input/index.d.ts +135 -0
  70. package/dist/textarea/Textarea.js +81 -43
  71. package/dist/toggle/Toggle.js +16 -19
  72. package/dist/toggle/readme.md +2 -2
  73. package/dist/toggle-group/ToggleGroup.js +327 -0
  74. package/dist/upload/Upload.js +13 -8
  75. package/dist/upload/buttons-upload/ButtonsUpload.js +34 -20
  76. package/dist/upload/dragAndDropArea/DragAndDropArea.js +78 -31
  77. package/dist/upload/file-upload/FileToUpload.js +50 -24
  78. package/dist/upload/files-upload/FilesToUpload.js +16 -16
  79. package/dist/upload/readme.md +2 -2
  80. package/dist/upload/transaction/Transaction.js +44 -24
  81. package/dist/upload/transactions/Transactions.js +38 -20
  82. package/dist/useTheme.js +22 -0
  83. package/dist/wizard/Wizard.js +156 -55
  84. package/dist/wizard/invalid_icon.svg +4 -5
  85. package/dist/wizard/valid_icon.svg +4 -5
  86. package/package.json +20 -9
  87. package/test/AccordionGroup.test.js +125 -0
  88. package/test/Chip.test.js +25 -0
  89. package/test/Date.test.js +13 -13
  90. package/test/DateInput.test.js +242 -0
  91. package/test/Dropdown.test.js +19 -4
  92. package/test/FileInput.test.js +201 -0
  93. package/test/Header.test.js +2 -10
  94. package/test/InputText.test.js +30 -26
  95. package/test/Link.test.js +25 -7
  96. package/test/NewTextarea.test.js +195 -0
  97. package/test/NumberInput.test.js +259 -0
  98. package/test/Paginator.test.js +72 -60
  99. package/test/PasswordInput.test.js +83 -0
  100. package/test/ResultsetTable.test.js +66 -19
  101. package/test/Select.test.js +55 -34
  102. package/test/Sidenav.test.js +22 -64
  103. package/test/Slider.test.js +17 -0
  104. package/test/Spinner.test.js +5 -0
  105. package/test/Tabs.test.js +21 -0
  106. package/test/TextInput.test.js +732 -0
  107. package/test/ToggleGroup.test.js +85 -0
  108. package/dist/accordion/Accordion.stories.js +0 -207
  109. package/dist/accordion/readme.md +0 -96
  110. package/dist/alert/Alert.stories.js +0 -158
  111. package/dist/alert/close.svg +0 -4
  112. package/dist/alert/error.svg +0 -4
  113. package/dist/alert/info.svg +0 -4
  114. package/dist/alert/readme.md +0 -43
  115. package/dist/alert/success.svg +0 -4
  116. package/dist/alert/warning.svg +0 -4
  117. package/dist/button/Button.stories.js +0 -224
  118. package/dist/button/readme.md +0 -93
  119. package/dist/common/services/example-service.js +0 -10
  120. package/dist/common/services/example-service.test.js +0 -12
  121. package/dist/date/calendar.svg +0 -1
  122. package/dist/date/calendar_dark.svg +0 -1
  123. package/dist/dialog/Dialog.stories.js +0 -217
  124. package/dist/dialog/readme.md +0 -32
  125. package/dist/dropdown/Dropdown.stories.js +0 -249
  126. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  127. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  128. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  129. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  130. package/dist/dropdown/readme.md +0 -69
  131. package/dist/footer/Footer.stories.js +0 -94
  132. package/dist/footer/dxc_logo_wht.png +0 -0
  133. package/dist/header/dxc_logo_black.png +0 -0
  134. package/dist/header/dxc_logo_white.png +0 -0
  135. package/dist/input-text/InputText.stories.js +0 -209
  136. package/dist/select/Select.stories.js +0 -235
  137. package/dist/select/readme.md +0 -72
  138. package/dist/sidenav/arrow_icon.svg +0 -3
  139. package/test/Toggle.test.js +0 -43
@@ -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,14 +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 _ThemeContext = _interopRequireDefault(require("../ThemeContext.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
+ };
38
+
39
+ return data;
40
+ }
31
41
 
32
42
  function _templateObject5() {
33
- 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"]);
34
44
 
35
45
  _templateObject5 = function _templateObject5() {
36
46
  return data;
@@ -40,7 +50,7 @@ function _templateObject5() {
40
50
  }
41
51
 
42
52
  function _templateObject4() {
43
- 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"]);
44
54
 
45
55
  _templateObject4 = function _templateObject4() {
46
56
  return data;
@@ -50,7 +60,7 @@ function _templateObject4() {
50
60
  }
51
61
 
52
62
  function _templateObject3() {
53
- 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"]);
54
64
 
55
65
  _templateObject3 = function _templateObject3() {
56
66
  return data;
@@ -60,7 +70,7 @@ function _templateObject3() {
60
70
  }
61
71
 
62
72
  function _templateObject2() {
63
- 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"]);
64
74
 
65
75
  _templateObject2 = function _templateObject2() {
66
76
  return data;
@@ -70,7 +80,7 @@ function _templateObject2() {
70
80
  }
71
81
 
72
82
  function _templateObject() {
73
- 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"]);
74
84
 
75
85
  _templateObject = function _templateObject() {
76
86
  return data;
@@ -82,55 +92,45 @@ function _templateObject() {
82
92
  var DxcProgressBar = function DxcProgressBar(_ref) {
83
93
  var _ref$label = _ref.label,
84
94
  label = _ref$label === void 0 ? "" : _ref$label,
85
- _ref$theme = _ref.theme,
86
- theme = _ref$theme === void 0 ? "light" : _ref$theme,
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
-
94
- var colorsTheme = (0, _react.useContext)(_ThemeContext["default"]) || _variables.colors;
95
-
103
+ var colorsTheme = (0, _useTheme["default"])();
104
+ var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
96
105
  return _react["default"].createElement(_styledComponents.ThemeProvider, {
97
- theme: colorsTheme
106
+ theme: colorsTheme.progressBar
98
107
  }, _react["default"].createElement(BackgroundProgressBar, {
99
- brightness: theme,
100
108
  overlay: overlay
101
109
  }, _react["default"].createElement(DXCProgressBar, {
102
- brightness: theme,
103
110
  overlay: overlay,
104
- margin: margin
111
+ margin: margin,
112
+ backgroundType: backgroundType
105
113
  }, _react["default"].createElement(InfoProgressBar, null, _react["default"].createElement(ProgressBarLabel, {
106
- brightness: theme,
107
- overlay: overlay
114
+ overlay: overlay,
115
+ backgroundType: backgroundType
108
116
  }, label), _react["default"].createElement(ProgressBarProgress, {
109
- brightness: theme,
110
117
  overlay: overlay,
111
- showValue: showValue
118
+ showValue: showValue,
119
+ backgroundType: backgroundType
112
120
  }, value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100, " %")), _react["default"].createElement(_LinearProgress["default"], {
113
121
  variant: showValue ? "determinate" : "indeterminate",
114
- value: value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100
115
- }))));
116
- };
117
-
118
- DxcProgressBar.propTypes = {
119
- label: _propTypes["default"].string,
120
- theme: _propTypes["default"].oneOf(["light", "dark"]),
121
- overlay: _propTypes["default"].bool,
122
- value: _propTypes["default"].number,
123
- showValue: _propTypes["default"].bool,
124
- margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
125
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
126
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
127
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
128
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
129
- }), _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))));
130
128
  };
131
129
 
132
130
  var BackgroundProgressBar = _styledComponents["default"].div(_templateObject(), function (props) {
133
- return props.overlay === true || props.overlay === true && props.brightness === "dark" ? "".concat(props.theme.mediumBlack) : props.brightness === "dark" ? "transparent" : "".concat(props.theme.white);
131
+ return props.overlay === true ? "".concat(props.theme.overlayColor) : "transparent";
132
+ }, function (props) {
133
+ return props.overlay === true && "0.8";
134
134
  }, function (props) {
135
135
  return props.overlay === true ? "100%" : "";
136
136
  }, function (props) {
@@ -151,6 +151,8 @@ var BackgroundProgressBar = _styledComponents["default"].div(_templateObject(),
151
151
  return props.overlay === true ? "0" : "";
152
152
  }, function (props) {
153
153
  return props.overlay === true ? "0" : "";
154
+ }, function (props) {
155
+ return props.overlay ? 1300 : "";
154
156
  });
155
157
 
156
158
  var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), function (props) {
@@ -158,9 +160,15 @@ var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), functi
158
160
  }, function (props) {
159
161
  return props.overlay === true ? "80%" : "100%";
160
162
  }, function (props) {
161
- return (props.brightness === "dark" || props.overlay === true) && "".concat(props.theme.white, "4D") || "".concat(props.theme.black, "4D");
163
+ return props.theme.thickness;
164
+ }, function (props) {
165
+ return props.theme.totalLineColor;
166
+ }, function (props) {
167
+ return props.theme.borderRadius;
168
+ }, function (props) {
169
+ return props.helperText !== "" && "8px";
162
170
  }, function (props) {
163
- return props.theme.yellow;
171
+ return props.backgroundType === "dark" ? props.theme.trackLineColorOnDark : props.theme.trackLineColor;
164
172
  }, function (props) {
165
173
  return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
166
174
  }, function (props) {
@@ -176,14 +184,59 @@ var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), functi
176
184
  var InfoProgressBar = _styledComponents["default"].div(_templateObject3());
177
185
 
178
186
  var ProgressBarLabel = _styledComponents["default"].div(_templateObject4(), function (props) {
179
- return (props.brightness === "dark" || props.overlay === true) && props.theme.white || props.theme.black;
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;
180
198
  });
181
199
 
182
200
  var ProgressBarProgress = _styledComponents["default"].div(_templateObject5(), function (props) {
183
- return (props.brightness === "dark" || props.overlay === true) && props.theme.white || props.theme.black;
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;
184
212
  }, function (props) {
185
213
  return props.value !== "" && props.showValue === true && "block" || "none";
186
214
  });
187
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
+ };
188
241
  var _default = DxcProgressBar;
189
242
  exports["default"] = _default;
@@ -3,7 +3,7 @@
3
3
  ## Usage
4
4
 
5
5
  ```js
6
- import { DxcProgressBar } from "@diaas/dxc-react-cdk";
6
+ import { DxcProgressBar } from "@dxc-technology/halstack-react";
7
7
 
8
8
  <DxcProgressBar onClick={handleClick} label="Test Button" />;
9
9
  ```
@@ -47,7 +47,7 @@ import { DxcProgressBar } from "@diaas/dxc-react-cdk";
47
47
 
48
48
  ```js
49
49
  import React from "react";
50
- import { DxcSpinner } from "@diaas/dxc-react-cdk";
50
+ import { DxcSpinner } from "@dxc-technology/halstack-react";
51
51
 
52
52
  function App() {
53
53
  return (
@@ -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 .MuiButtonBase-root {\n padding: 0px;\n margin: 0px 5px;\n width: 40px;\n height: 40px;\n &.Mui-disabled {\n color: ", ";\n }\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 &.Mui-disabled {\n .MuiIconButton-label {\n color: ", ";\n > div > :nth-child(2) path {\n color: ", ";\n }\n }\n }\n &.Mui-focusVisible {\n background-color: ", ";\n opacity: 0.1;\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 .MuiTouchRipple-child {\n background-color: ", ";\n }\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;
@@ -62,13 +62,9 @@ var DxcRadio = function DxcRadio(_ref) {
62
62
  label = _ref.label,
63
63
  _ref$labelPosition = _ref.labelPosition,
64
64
  labelPosition = _ref$labelPosition === void 0 ? "before" : _ref$labelPosition,
65
- _ref$theme = _ref.theme,
66
- theme = _ref$theme === void 0 ? "light" : _ref$theme,
67
65
  name = _ref.name,
68
66
  _ref$disabled = _ref.disabled,
69
67
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
70
- _ref$disableRipple = _ref.disableRipple,
71
- disableRipple = _ref$disableRipple === void 0 ? false : _ref$disableRipple,
72
68
  onClick = _ref.onClick,
73
69
  _ref$required = _ref.required,
74
70
  required = _ref$required === void 0 ? false : _ref$required,
@@ -81,7 +77,8 @@ var DxcRadio = function DxcRadio(_ref) {
81
77
  innerChecked = _useState2[0],
82
78
  setInnerChecked = _useState2[1];
83
79
 
84
- var colorsTheme = (0, _react.useContext)(_ThemeContext["default"]) || _variables.colors;
80
+ var colorsTheme = (0, _useTheme["default"])();
81
+ var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
85
82
 
86
83
  var handlerRadioChange = function handlerRadioChange(value) {
87
84
  if (checked == null) {
@@ -94,14 +91,14 @@ var DxcRadio = function DxcRadio(_ref) {
94
91
  };
95
92
 
96
93
  return _react["default"].createElement(_styledComponents.ThemeProvider, {
97
- theme: colorsTheme
94
+ theme: colorsTheme.radio
98
95
  }, _react["default"].createElement(RadioContainer, {
99
96
  id: name,
100
- brightness: theme,
101
97
  labelPosition: labelPosition,
102
98
  disabled: disabled,
103
99
  margin: margin,
104
- size: size
100
+ size: size,
101
+ backgroundType: backgroundType
105
102
  }, _react["default"].createElement(_Radio["default"], {
106
103
  checked: checked != null && checked || innerChecked,
107
104
  name: name,
@@ -109,16 +106,14 @@ var DxcRadio = function DxcRadio(_ref) {
109
106
  value: value,
110
107
  label: label,
111
108
  disabled: disabled,
112
- disableRipple: disableRipple
109
+ disableRipple: true
113
110
  }), _react["default"].createElement(LabelContainer, {
114
111
  checked: checked || innerChecked,
115
112
  labelPosition: labelPosition,
116
- brightness: theme,
117
113
  disabled: disabled,
118
- onClick: !disabled && handlerRadioChange || null
119
- }, required && _react["default"].createElement(_RequiredComponent["default"], {
120
- brightness: theme
121
- }), label)));
114
+ onClick: !disabled && handlerRadioChange || null,
115
+ backgroundType: backgroundType
116
+ }, required && _react["default"].createElement(_RequiredComponent["default"], null), label)));
122
117
  };
123
118
 
124
119
  var sizes = {
@@ -154,29 +149,41 @@ var RadioContainer = _styledComponents["default"].span(_templateObject(), functi
154
149
  }, function (props) {
155
150
  return props.disabled === true ? "not-allowed" : "default";
156
151
  }, function (props) {
157
- return props.brightness === "dark" ? props.theme.darkGrey : props.theme.lightGrey;
152
+ return props.labelPosition === "after" ? "padding-right" : "padding-left";
153
+ }, function (props) {
154
+ return props.theme.circleLabelSpacing;
155
+ }, function (props) {
156
+ return props.labelPosition === "after" ? "0px" : "";
157
+ }, function (props) {
158
+ return props.labelPosition === "before" ? "0px" : "";
159
+ }, function (props) {
160
+ return props.labelPosition === "after" ? "0px" : "";
158
161
  }, function (props) {
159
- return props.brightness === "dark" ? props.theme.white : props.theme.black;
162
+ return props.labelPosition === "before" ? "0px" : "";
160
163
  }, function (props) {
161
- return props.brightness === "dark" ? props.theme.yellow : props.theme.black;
164
+ return props.theme.circleSize;
162
165
  }, function (props) {
163
- return props.brightness === "dark" ? props.theme.darkGrey : props.theme.lightGrey;
166
+ return props.theme.circleSize;
164
167
  }, function (props) {
165
- return props.brightness === "dark" ? props.theme.darkGrey : props.theme.lightGrey;
168
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
166
169
  }, function (props) {
167
- return props.theme.darkGrey;
170
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
168
171
  }, function (props) {
169
- return props.brightness === "dark" ? props.theme.white : props.theme.darkGrey;
172
+ return props.backgroundType === "dark" ? props.theme.focusColorOnDark : props.theme.focusColor;
170
173
  }, function (props) {
171
- return props.brightness === "dark" ? props.theme.yellow : props.theme.black;
174
+ return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
172
175
  });
173
176
 
174
177
  var LabelContainer = _styledComponents["default"].span(_templateObject2(), function (props) {
175
- if (props.disabled) {
176
- return props.brightness === "dark" ? props.theme.darkGrey : props.theme.lightGrey;
177
- } else {
178
- return props.brightness === "dark" ? props.theme.white : props.theme.black;
179
- }
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;
180
187
  }, function (props) {
181
188
  return props.disabled === true ? "not-allowed" : "pointer";
182
189
  });
@@ -187,10 +194,8 @@ DxcRadio.propTypes = {
187
194
  value: _propTypes["default"].any,
188
195
  label: _propTypes["default"].string,
189
196
  labelPosition: _propTypes["default"].oneOf(["after", "before", ""]),
190
- theme: _propTypes["default"].oneOf(["light", "dark", ""]),
191
197
  name: _propTypes["default"].string,
192
198
  disabled: _propTypes["default"].bool,
193
- disableRipple: _propTypes["default"].bool,
194
199
  onClick: _propTypes["default"].func,
195
200
  required: _propTypes["default"].bool,
196
201
  margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
@@ -3,7 +3,7 @@
3
3
  ## Usage
4
4
 
5
5
  ```js
6
- import { DxcRadio } from "@diaas/dxc-react-cdk";
6
+ import { DxcRadio } from "@dxc-technology/halstack-react";
7
7
 
8
8
  <DxcRadio onChange={handleNewValue} label="Test Radio" checked={checked} />;
9
9
  ```