@dxc-technology/halstack-react 0.0.0-e884f9f → 0.0.0-e9cf865

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 (112) hide show
  1. package/BackgroundColorContext.d.ts +10 -0
  2. package/BackgroundColorContext.js +1 -3
  3. package/ThemeContext.d.ts +15 -0
  4. package/ThemeContext.js +5 -8
  5. package/V3Select/V3Select.js +2 -2
  6. package/V3Textarea/V3Textarea.js +2 -2
  7. package/accordion/Accordion.js +2 -2
  8. package/accordion-group/AccordionGroup.js +2 -2
  9. package/accordion-group/AccordionGroup.stories.tsx +225 -0
  10. package/alert/Alert.js +2 -2
  11. package/badge/Badge.js +1 -1
  12. package/box/Box.js +2 -2
  13. package/button/Button.d.ts +1 -1
  14. package/button/Button.js +6 -4
  15. package/button/types.d.ts +2 -2
  16. package/card/Card.js +1 -1
  17. package/checkbox/Checkbox.js +2 -2
  18. package/chip/Chip.d.ts +4 -0
  19. package/chip/Chip.js +1 -23
  20. package/chip/types.d.ts +53 -0
  21. package/chip/types.js +5 -0
  22. package/common/variables.js +19 -22
  23. package/date/Date.js +1 -1
  24. package/date-input/DateInput.js +4 -7
  25. package/dialog/Dialog.js +2 -2
  26. package/dropdown/Dropdown.js +1 -1
  27. package/dropdown/types.d.ts +1 -1
  28. package/file-input/FileInput.d.ts +1 -1
  29. package/file-input/FileInput.js +58 -48
  30. package/file-input/FileItem.js +8 -6
  31. package/file-input/types.d.ts +32 -7
  32. package/footer/Footer.d.ts +1 -1
  33. package/footer/Footer.js +11 -17
  34. package/footer/{Footer.stories.jsx → Footer.stories.tsx} +1 -22
  35. package/footer/Icons.d.ts +2 -0
  36. package/footer/Icons.js +3 -3
  37. package/footer/types.d.ts +21 -17
  38. package/header/Header.js +2 -2
  39. package/header/Icons.d.ts +2 -0
  40. package/heading/Heading.js +1 -1
  41. package/input-text/InputText.js +2 -2
  42. package/layout/ApplicationLayout.d.ts +10 -0
  43. package/layout/ApplicationLayout.js +8 -18
  44. package/layout/ApplicationLayout.stories.tsx +171 -0
  45. package/layout/types.d.ts +57 -0
  46. package/layout/types.js +5 -0
  47. package/link/Link.js +1 -1
  48. package/list/List.d.ts +7 -0
  49. package/list/List.js +37 -0
  50. package/list/List.stories.tsx +70 -0
  51. package/main.d.ts +7 -3
  52. package/main.js +34 -2
  53. package/number-input/NumberInput.js +3 -6
  54. package/number-input/NumberInputContext.d.ts +4 -0
  55. package/number-input/NumberInputContext.js +5 -2
  56. package/number-input/numberInputContextTypes.d.ts +19 -0
  57. package/number-input/numberInputContextTypes.js +5 -0
  58. package/package.json +1 -1
  59. package/paginator/Paginator.js +2 -8
  60. package/password-input/PasswordInput.js +19 -18
  61. package/password-input/types.d.ts +17 -10
  62. package/progress-bar/ProgressBar.js +2 -2
  63. package/radio/Radio.js +2 -2
  64. package/resultsetTable/ResultsetTable.d.ts +4 -0
  65. package/resultsetTable/ResultsetTable.js +4 -27
  66. package/resultsetTable/types.d.ts +67 -0
  67. package/resultsetTable/types.js +5 -0
  68. package/row/Row.d.ts +11 -0
  69. package/row/Row.js +124 -0
  70. package/row/Row.stories.tsx +223 -0
  71. package/select/Select.js +15 -17
  72. package/sidenav/Sidenav.js +2 -2
  73. package/slider/Slider.js +4 -4
  74. package/spinner/Spinner.js +2 -2
  75. package/stack/Stack.d.ts +10 -0
  76. package/stack/Stack.js +94 -0
  77. package/stack/Stack.stories.tsx +150 -0
  78. package/switch/Switch.js +2 -2
  79. package/table/Table.js +3 -3
  80. package/tabs/Tabs.js +1 -1
  81. package/tabs/Tabs.stories.tsx +121 -0
  82. package/tabs/types.d.ts +1 -1
  83. package/tag/Tag.js +1 -1
  84. package/text/Text.d.ts +7 -0
  85. package/text/Text.js +30 -0
  86. package/text/Text.stories.tsx +19 -0
  87. package/text-input/TextInput.d.ts +4 -0
  88. package/text-input/TextInput.js +42 -81
  89. package/text-input/TextInput.stories.tsx +456 -0
  90. package/text-input/types.d.ts +159 -0
  91. package/text-input/types.js +5 -0
  92. package/textarea/Textarea.js +29 -32
  93. package/textarea/index.d.ts +18 -8
  94. package/toggle/Toggle.js +1 -1
  95. package/toggle-group/ToggleGroup.d.ts +4 -0
  96. package/toggle-group/ToggleGroup.js +8 -34
  97. package/toggle-group/types.d.ts +84 -0
  98. package/toggle-group/types.js +5 -0
  99. package/upload/buttons-upload/ButtonsUpload.js +2 -2
  100. package/upload/dragAndDropArea/DragAndDropArea.js +2 -2
  101. package/upload/file-upload/FileToUpload.js +1 -1
  102. package/upload/files-upload/FilesToUpload.js +1 -1
  103. package/upload/transaction/Transaction.js +2 -2
  104. package/upload/transactions/Transactions.js +1 -1
  105. package/useTheme.d.ts +2 -0
  106. package/useTheme.js +1 -1
  107. package/wizard/Wizard.js +2 -2
  108. package/wizard/types.d.ts +1 -1
  109. package/chip/index.d.ts +0 -22
  110. package/resultsetTable/index.d.ts +0 -19
  111. package/text-input/index.d.ts +0 -135
  112. package/toggle-group/index.d.ts +0 -21
@@ -23,7 +23,7 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
23
23
 
24
24
  var _utils = require("../common/utils.js");
25
25
 
26
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
26
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
27
27
 
28
28
  var _propTypes = _interopRequireDefault(require("prop-types"));
29
29
 
@@ -31,7 +31,7 @@ var _variables = require("../common/variables.js");
31
31
 
32
32
  var _uuid = require("uuid");
33
33
 
34
- var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
34
+ var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext"));
35
35
 
36
36
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
37
37
 
@@ -43,10 +43,6 @@ var getNotOptionalErrorMessage = function getNotOptionalErrorMessage() {
43
43
  return "This field is required. Please, enter a value.";
44
44
  };
45
45
 
46
- var getLengthErrorMessage = function getLengthErrorMessage(length) {
47
- return "Min length ".concat(length.min, ", max length ").concat(length.max, ".");
48
- };
49
-
50
46
  var getPatternErrorMessage = function getPatternErrorMessage() {
51
47
  return "Please match the format requested.";
52
48
  };
@@ -56,13 +52,11 @@ var patternMatch = function patternMatch(pattern, value) {
56
52
  };
57
53
 
58
54
  var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref) {
59
- var _ref$label = _ref.label,
60
- label = _ref$label === void 0 ? "" : _ref$label,
55
+ var label = _ref.label,
61
56
  _ref$name = _ref.name,
62
57
  name = _ref$name === void 0 ? "" : _ref$name,
63
58
  value = _ref.value,
64
- _ref$helperText = _ref.helperText,
65
- helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
59
+ helperText = _ref.helperText,
66
60
  _ref$placeholder = _ref.placeholder,
67
61
  placeholder = _ref$placeholder === void 0 ? "" : _ref$placeholder,
68
62
  _ref$disabled = _ref.disabled,
@@ -75,10 +69,10 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
75
69
  rows = _ref$rows === void 0 ? 4 : _ref$rows,
76
70
  onChange = _ref.onChange,
77
71
  onBlur = _ref.onBlur,
78
- _ref$error = _ref.error,
79
- error = _ref$error === void 0 ? "" : _ref$error,
72
+ error = _ref.error,
80
73
  pattern = _ref.pattern,
81
- length = _ref.length,
74
+ minLength = _ref.minLength,
75
+ maxLength = _ref.maxLength,
82
76
  _ref$autocomplete = _ref.autocomplete,
83
77
  autocomplete = _ref$autocomplete === void 0 ? "off" : _ref$autocomplete,
84
78
  margin = _ref.margin,
@@ -101,12 +95,16 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
101
95
  var textareaRef = (0, _react.useRef)(null);
102
96
  var errorId = "error-message-".concat(textareaId);
103
97
 
98
+ var getLengthErrorMessage = function getLengthErrorMessage() {
99
+ return "Min length ".concat(minLength, ", max length ").concat(maxLength, ".");
100
+ };
101
+
104
102
  var isNotOptional = function isNotOptional(value) {
105
103
  return value === "" && !optional;
106
104
  };
107
105
 
108
106
  var isLengthIncorrect = function isLengthIncorrect(value) {
109
- return value !== "" && length && length.min && length.max && (value.length < length.min || value.length > length.max);
107
+ return value !== "" && minLength && maxLength && (value.length < minLength || value.length > maxLength);
110
108
  };
111
109
 
112
110
  var changeValue = function changeValue(newValue) {
@@ -116,7 +114,7 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
116
114
  error: getNotOptionalErrorMessage()
117
115
  });else if (isLengthIncorrect(newValue)) onChange === null || onChange === void 0 ? void 0 : onChange({
118
116
  value: newValue,
119
- error: getLengthErrorMessage(length)
117
+ error: getLengthErrorMessage()
120
118
  });else if (newValue && pattern && !patternMatch(pattern, newValue)) onChange === null || onChange === void 0 ? void 0 : onChange({
121
119
  value: newValue,
122
120
  error: getPatternErrorMessage()
@@ -132,7 +130,7 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
132
130
  error: getNotOptionalErrorMessage()
133
131
  });else if (isLengthIncorrect(event.target.value)) onBlur === null || onBlur === void 0 ? void 0 : onBlur({
134
132
  value: event.target.value,
135
- error: getLengthErrorMessage(length)
133
+ error: getLengthErrorMessage()
136
134
  });else if (event.target.value && pattern && !patternMatch(pattern, event.target.value)) onBlur === null || onBlur === void 0 ? void 0 : onBlur({
137
135
  value: event.target.value,
138
136
  error: getPatternErrorMessage()
@@ -161,11 +159,12 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
161
159
  margin: margin,
162
160
  size: size,
163
161
  ref: ref
164
- }, /*#__PURE__*/_react["default"].createElement(Label, {
162
+ }, label && /*#__PURE__*/_react["default"].createElement(Label, {
165
163
  htmlFor: textareaId,
166
164
  disabled: disabled,
167
- backgroundType: backgroundType
168
- }, label, " ", optional && /*#__PURE__*/_react["default"].createElement(OptionalLabel, null, "(Optional)")), /*#__PURE__*/_react["default"].createElement(HelperText, {
165
+ backgroundType: backgroundType,
166
+ helperText: helperText
167
+ }, label, " ", optional && /*#__PURE__*/_react["default"].createElement(OptionalLabel, null, "(Optional)")), helperText && /*#__PURE__*/_react["default"].createElement(HelperText, {
169
168
  disabled: disabled,
170
169
  backgroundType: backgroundType
171
170
  }, helperText), /*#__PURE__*/_react["default"].createElement(Textarea, {
@@ -179,8 +178,8 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
179
178
  onBlur: handleTOnBlur,
180
179
  disabled: disabled,
181
180
  error: error,
182
- minLength: length === null || length === void 0 ? void 0 : length.min,
183
- maxLength: length === null || length === void 0 ? void 0 : length.max,
181
+ minLength: minLength,
182
+ maxLength: maxLength,
184
183
  autoComplete: autocomplete,
185
184
  backgroundType: backgroundType,
186
185
  ref: textareaRef,
@@ -188,7 +187,7 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
188
187
  "aria-invalid": error ? "true" : "false",
189
188
  "aria-describedby": error ? errorId : undefined,
190
189
  "aria-required": optional ? "false" : "true"
191
- }), !disabled && /*#__PURE__*/_react["default"].createElement(Error, {
190
+ }), !disabled && typeof error === "string" && /*#__PURE__*/_react["default"].createElement(Error, {
192
191
  id: errorId,
193
192
  backgroundType: backgroundType
194
193
  }, error)));
@@ -219,7 +218,7 @@ var TextareaContainer = _styledComponents["default"].div(_templateObject || (_te
219
218
  return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
220
219
  });
221
220
 
222
- var Label = _styledComponents["default"].label(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: ", ";\n"])), function (props) {
221
+ var Label = _styledComponents["default"].label(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: ", ";\n ", "\n"])), function (props) {
223
222
  return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledLabelFontColorOnDark : props.theme.disabledLabelFontColor : props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
224
223
  }, function (props) {
225
224
  return props.theme.fontFamily;
@@ -231,13 +230,15 @@ var Label = _styledComponents["default"].label(_templateObject2 || (_templateObj
231
230
  return props.theme.labelFontWeight;
232
231
  }, function (props) {
233
232
  return props.theme.labelLineHeight;
233
+ }, function (props) {
234
+ return !props.helperText && "margin-bottom: 0.25rem";
234
235
  });
235
236
 
236
237
  var OptionalLabel = _styledComponents["default"].span(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n font-weight: ", ";\n"])), function (props) {
237
238
  return props.theme.optionalLabelFontWeight;
238
239
  });
239
240
 
240
- var HelperText = _styledComponents["default"].span(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: ", ";\n"])), function (props) {
241
+ var HelperText = _styledComponents["default"].span(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: ", ";\n margin-bottom: 0.25rem;\n"])), function (props) {
241
242
  return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledHelperTextFontColorOnDark : props.theme.disabledHelperTextFontColor : props.backgroundType === "dark" ? props.theme.helperTextFontColorOnDark : props.theme.helperTextFontColor;
242
243
  }, function (props) {
243
244
  return props.theme.fontFamily;
@@ -251,12 +252,10 @@ var HelperText = _styledComponents["default"].span(_templateObject4 || (_templat
251
252
  return props.theme.helperTextLineHeight;
252
253
  });
253
254
 
254
- var Textarea = _styledComponents["default"].textarea(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n ", ";\n ", "\n\n margin: ", ";\n padding: 0.5rem 1rem;\n box-shadow: 0 0 0 2px transparent;\n border-radius: 0.25rem;\n border: 1px solid\n ", ";\n ", "\n\n ", ";\n ", ";\n\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: 1.5em;\n\n ::placeholder {\n color: ", ";\n }\n"])), function (props) {
255
+ var Textarea = _styledComponents["default"].textarea(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n ", ";\n ", "\n\n padding: 0.5rem 1rem;\n box-shadow: 0 0 0 2px transparent;\n border-radius: 0.25rem;\n border: 1px solid\n ", ";\n ", "\n\n ", ";\n ", ";\n\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: 1.5em;\n\n ::placeholder {\n color: ", ";\n }\n"])), function (props) {
255
256
  if (props.verticalGrow === "none") return "resize: none;";else if (props.verticalGrow === "auto") return "resize: none; overflow: hidden;";else if (props.verticalGrow === "manual") return "resize: vertical;";else return "resize: none;";
256
257
  }, function (props) {
257
258
  if (props.disabled) return props.backgroundType === "dark" ? "background-color: ".concat(props.theme.disabledContainerFillColorOnDark, ";") : "background-color: ".concat(props.theme.disabledContainerFillColor, ";");else return "background-color: transparent;";
258
- }, function (props) {
259
- return "".concat(props.theme.inputMarginTop, " 0 ").concat(props.theme.inputMarginBottom, " 0");
260
259
  }, function (props) {
261
260
  if (props.disabled) return props.backgroundType === "dark" ? props.theme.disabledBorderColorOnDark : props.theme.disabledBorderColor;else return props.backgroundType === "dark" ? props.theme.enabledBorderColorOnDark : props.theme.enabledBorderColor;
262
261
  }, function (props) {
@@ -279,7 +278,7 @@ var Textarea = _styledComponents["default"].textarea(_templateObject5 || (_templ
279
278
  return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledPlaceholderFontColorOnDark : props.theme.disabledPlaceholderFontColor : props.backgroundType === "dark" ? props.theme.placeholderFontColorOnDark : props.theme.placeholderFontColor;
280
279
  });
281
280
 
282
- var Error = _styledComponents["default"].span(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: 0.75rem;\n font-weight: 400;\n min-height: 1.5em;\n line-height: 1.5em;\n"])), function (props) {
281
+ var Error = _styledComponents["default"].span(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: 0.75rem;\n font-weight: 400;\n min-height: 1.5em;\n line-height: 1.5em;\n margin-top: 0.25rem;\n"])), function (props) {
283
282
  return props.backgroundType === "dark" ? props.theme.errorMessageColorOnDark : props.theme.errorMessageColor;
284
283
  }, function (props) {
285
284
  return props.theme.fontFamily;
@@ -293,10 +292,8 @@ DxcTextarea.propTypes = {
293
292
  placeholder: _propTypes["default"].string,
294
293
  verticalGrow: _propTypes["default"].oneOf(["auto", "none", "manual"]),
295
294
  rows: _propTypes["default"].number,
296
- length: _propTypes["default"].shape({
297
- min: _propTypes["default"].number,
298
- max: _propTypes["default"].number
299
- }),
295
+ minLength: _propTypes["default"].number,
296
+ maxLength: _propTypes["default"].number,
300
297
  pattern: _propTypes["default"].string,
301
298
  disabled: _propTypes["default"].bool,
302
299
  optional: _propTypes["default"].bool,
@@ -33,9 +33,9 @@ type Props = {
33
33
  */
34
34
  disabled?: boolean;
35
35
  /**
36
- * If true, the textarea will be optional, showing '(Optional)'
37
- * next to the label. Otherwise, the field will be considered required
38
- * and an error will be passed as a parameter to the OnBlur and onChange functions
36
+ * If true, the textarea will be optional, showing '(Optional)'
37
+ * next to the label. Otherwise, the field will be considered required
38
+ * and an error will be passed as a parameter to the OnBlur and onChange functions
39
39
  * when it has not been filled.
40
40
  */
41
41
  optional?: boolean;
@@ -53,14 +53,14 @@ type Props = {
53
53
  /**
54
54
  * This function will be called when the user types within the textarea.
55
55
  * An object including the current value and the error (if the value
56
- * entered is not valid) will be passed to this function.
56
+ * entered is not valid) will be passed to this function.
57
57
  * If there is no error, error will be null.
58
58
  */
59
59
  onChange?: (val: { value: string; error: string }) => void;
60
60
  /**
61
61
  * This function will be called when the textarea loses the focus. An
62
62
  * object including the textarea value and the error (if the value entered
63
- * is not valid) will be passed to this function. If there is no error,
63
+ * is not valid) will be passed to this function. If there is no error,
64
64
  * error will be null.
65
65
  */
66
66
  onBlur?: (val: { value: string; error: string }) => void;
@@ -81,15 +81,25 @@ type Props = {
81
81
  */
82
82
  pattern?: string;
83
83
  /**
84
- * Specifies the minimun and maximum length allowed by the textarea.
84
+ * Specifies the minimun length allowed by the textarea.
85
85
  * This will be checked both when the textarea loses the
86
86
  * focus and while typing within it. If the string entered does not
87
- * comply the length, the onBlur and onChange functions will be called
87
+ * comply the minimum length, the onBlur and onChange functions will be called
88
88
  * with the current value and an internal error informing that the value
89
89
  * length does not comply the specified range. If a valid length is
90
90
  * reached, the error parameter of both events will be null.
91
91
  */
92
- length?: { min: number; max: number };
92
+ minLength?: number;
93
+ /**
94
+ * Specifies the maximum length allowed by the textarea.
95
+ * This will be checked both when the textarea loses the
96
+ * focus and while typing within it. If the string entered does not
97
+ * comply the maximum length, the onBlur and onChange functions will be called
98
+ * with the current value and an internal error informing that the value
99
+ * length does not comply the specified range. If a valid length is
100
+ * reached, the error parameter of both events will be null.
101
+ */
102
+ maxLength?: number;
93
103
  /**
94
104
  * HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the textarea value.
95
105
  * Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
package/toggle/Toggle.js CHANGED
@@ -25,7 +25,7 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
25
25
 
26
26
  var _utils = require("../common/utils.js");
27
27
 
28
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
28
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
29
29
 
30
30
  var _templateObject, _templateObject2, _templateObject3, _templateObject4;
31
31
 
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import ToogleGroupPropsType from "./types";
3
+ declare const DxcToggleGroup: ({ label, helperText, value, onChange, disabled, options, margin, multiple, tabIndex, }: ToogleGroupPropsType) => JSX.Element;
4
+ export default DxcToggleGroup;
@@ -9,8 +9,6 @@ Object.defineProperty(exports, "__esModule", {
9
9
  });
10
10
  exports["default"] = void 0;
11
11
 
12
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
13
-
14
12
  var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
13
 
16
14
  var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
@@ -23,11 +21,9 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
23
21
 
24
22
  var _uuid = require("uuid");
25
23
 
26
- var _propTypes = _interopRequireDefault(require("prop-types"));
27
-
28
24
  var _variables = require("../common/variables.js");
29
25
 
30
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
26
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
31
27
 
32
28
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9;
33
29
 
@@ -42,8 +38,7 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
42
38
  onChange = _ref.onChange,
43
39
  _ref$disabled = _ref.disabled,
44
40
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
45
- _ref$options = _ref.options,
46
- options = _ref$options === void 0 ? [] : _ref$options,
41
+ options = _ref.options,
47
42
  margin = _ref.margin,
48
43
  _ref$multiple = _ref.multiple,
49
44
  multiple = _ref$multiple === void 0 ? false : _ref$multiple,
@@ -51,7 +46,7 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
51
46
  tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
52
47
  var colorsTheme = (0, _useTheme["default"])();
53
48
 
54
- var _useState = (0, _react.useState)(multiple ? [] : null),
49
+ var _useState = (0, _react.useState)(multiple ? [] : ""),
55
50
  _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
56
51
  selectedValue = _useState2[0],
57
52
  setSelectedValue = _useState2[1];
@@ -64,7 +59,7 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
64
59
  var newSelectedOptions;
65
60
 
66
61
  if (value == null) {
67
- if (multiple) {
62
+ if (multiple && Array.isArray(selectedValue)) {
68
63
  newSelectedOptions = selectedValue.map(function (value) {
69
64
  return value;
70
65
  });
@@ -79,9 +74,9 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
79
74
  setSelectedValue(newSelectedOptions);
80
75
  } else setSelectedValue(selectedOption === selectedValue ? null : selectedOption);
81
76
  } else if (multiple) {
82
- newSelectedOptions = value.map(function (v) {
77
+ newSelectedOptions = Array.isArray(value) ? value.map(function (v) {
83
78
  return v;
84
- });
79
+ }) : value;
85
80
 
86
81
  if (newSelectedOptions.includes(selectedOption)) {
87
82
  var _index = newSelectedOptions.indexOf(selectedOption);
@@ -90,7 +85,7 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
90
85
  } else newSelectedOptions.push(selectedOption);
91
86
  }
92
87
 
93
- typeof onChange === "function" && onChange(multiple ? newSelectedOptions : selectedOption);
88
+ onChange === null || onChange === void 0 ? void 0 : onChange(multiple ? newSelectedOptions : selectedOption);
94
89
  };
95
90
 
96
91
  var handleKeyPress = function handleKeyPress(event, optionValue) {
@@ -208,7 +203,7 @@ var LabelContainer = _styledComponents["default"].span(_templateObject6 || (_tem
208
203
  return props.theme.optionLabelFontWeight;
209
204
  });
210
205
 
211
- var OptionContent = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n"])));
206
+ var OptionContent = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n align-items: center;\n"])));
212
207
 
213
208
  var Icon = _styledComponents["default"].img(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["\n height: 24px;\n width: 24px;\n margin-right: ", ";\n"])), function (props) {
214
209
  return props.optionLabel && props.theme.iconMarginRight;
@@ -218,26 +213,5 @@ var IconContainer = _styledComponents["default"].div(_templateObject9 || (_templ
218
213
  return props.optionLabel && props.theme.iconMarginRight;
219
214
  });
220
215
 
221
- DxcToggleGroup.propTypes = {
222
- label: _propTypes["default"].string,
223
- helperText: _propTypes["default"].string,
224
- value: _propTypes["default"].any,
225
- onChange: _propTypes["default"].func,
226
- disabled: _propTypes["default"].bool,
227
- multiple: _propTypes["default"].bool,
228
- options: _propTypes["default"].arrayOf(_propTypes["default"].shape({
229
- value: _propTypes["default"].any.isRequired,
230
- label: _propTypes["default"].string,
231
- icon: _propTypes["default"].oneOfType([_propTypes["default"].element, _propTypes["default"].func]),
232
- iconSrc: _propTypes["default"].string
233
- })),
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
- tabIndex: _propTypes["default"].number
241
- };
242
216
  var _default = DxcToggleGroup;
243
217
  exports["default"] = _default;
@@ -0,0 +1,84 @@
1
+ /// <reference types="react" />
2
+ declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
+ declare type Margin = {
4
+ top?: Space;
5
+ bottom?: Space;
6
+ left?: Space;
7
+ right?: Space;
8
+ };
9
+ declare type SVG = React.SVGProps<SVGSVGElement> | React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
10
+ declare type OptionCommons = {
11
+ /**
12
+ * Number with the option inner value.
13
+ */
14
+ value: string;
15
+ /**
16
+ * @deprecated URL of the icon that will be placed. IconSrc and label can't be used at same time.
17
+ */
18
+ iconSrc?: string;
19
+ };
20
+ declare type OptionIcon = OptionCommons & {
21
+ /**
22
+ * String with the option display value.
23
+ */
24
+ label?: string;
25
+ /**
26
+ * Element used as the icon. Icon and label can't be used at same time.
27
+ */
28
+ icon: SVG;
29
+ };
30
+ declare type OptionLabel = OptionCommons & {
31
+ /**
32
+ * String with the option display value.
33
+ */
34
+ label: string;
35
+ /**
36
+ * Element used as the icon. Icon and label can't be used at same time.
37
+ */
38
+ icon?: SVG;
39
+ };
40
+ declare type Option = OptionIcon | OptionLabel;
41
+ declare type Props = {
42
+ /**
43
+ * Text to be placed above the component.
44
+ */
45
+ label?: string;
46
+ /**
47
+ * Helper text to be placed above the component.
48
+ */
49
+ helperText?: string;
50
+ /**
51
+ * The key(s) of the selected value(s). If the toggle group component doesn't allow multiple selection,
52
+ * it must be one unique value. If the component allows multiple selection, value must be an array.
53
+ * If undefined, the component will be uncontrolled and the value will be managed internally by the component.
54
+ */
55
+ value?: string | string[];
56
+ /**
57
+ * This function will be called every time the selection changes. The number with the key of the selected
58
+ * value will be passed as a parameter to this function.
59
+ * If multiple selection is allowed, an array of keys will be passed.
60
+ */
61
+ onChange?: (optionIndex: number | number[]) => void;
62
+ /**
63
+ * If true, the component will be disabled.
64
+ */
65
+ disabled?: boolean;
66
+ /**
67
+ * An array of objects representing the selectable options.
68
+ */
69
+ options: Option[];
70
+ /**
71
+ * If true, the toggle group will support multiple selection. In that case, value must be an array of numbers with the keys of the selected values.
72
+ */
73
+ multiple?: boolean;
74
+ /**
75
+ * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
76
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
77
+ */
78
+ margin?: Space | Margin;
79
+ /**
80
+ * Value of the tabindex.
81
+ */
82
+ tabIndex?: number;
83
+ };
84
+ export default Props;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -21,9 +21,9 @@ var _Button = _interopRequireDefault(require("../../button/Button"));
21
21
 
22
22
  var _Icons = require("./Icons");
23
23
 
24
- var _useTheme = _interopRequireDefault(require("../../useTheme.js"));
24
+ var _useTheme = _interopRequireDefault(require("../../useTheme"));
25
25
 
26
- var _BackgroundColorContext = require("../../BackgroundColorContext.js");
26
+ var _BackgroundColorContext = require("../../BackgroundColorContext");
27
27
 
28
28
  var _templateObject, _templateObject2, _templateObject3;
29
29
 
@@ -23,9 +23,9 @@ var _Icons = require("./Icons");
23
23
 
24
24
  var _Button = _interopRequireDefault(require("../../button/Button"));
25
25
 
26
- var _useTheme = _interopRequireDefault(require("../../useTheme.js"));
26
+ var _useTheme = _interopRequireDefault(require("../../useTheme"));
27
27
 
28
- var _BackgroundColorContext = require("../../BackgroundColorContext.js");
28
+ var _BackgroundColorContext = require("../../BackgroundColorContext");
29
29
 
30
30
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11;
31
31
 
@@ -19,7 +19,7 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
19
19
 
20
20
  var _Icons = require("./Icons");
21
21
 
22
- var _useTheme = _interopRequireDefault(require("../../useTheme.js"));
22
+ var _useTheme = _interopRequireDefault(require("../../useTheme"));
23
23
 
24
24
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8;
25
25
 
@@ -21,7 +21,7 @@ var _FileToUpload = _interopRequireDefault(require("../file-upload/FileToUpload"
21
21
 
22
22
  var _ButtonsUpload = _interopRequireDefault(require("../buttons-upload/ButtonsUpload"));
23
23
 
24
- var _useTheme = _interopRequireDefault(require("../../useTheme.js"));
24
+ var _useTheme = _interopRequireDefault(require("../../useTheme"));
25
25
 
26
26
  var _templateObject, _templateObject2;
27
27
 
@@ -23,9 +23,9 @@ var _Icons = require("./Icons");
23
23
 
24
24
  var _Spinner = _interopRequireDefault(require("../../spinner/Spinner"));
25
25
 
26
- var _useTheme = _interopRequireDefault(require("../../useTheme.js"));
26
+ var _useTheme = _interopRequireDefault(require("../../useTheme"));
27
27
 
28
- var _BackgroundColorContext = require("../../BackgroundColorContext.js");
28
+ var _BackgroundColorContext = require("../../BackgroundColorContext");
29
29
 
30
30
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
31
31
 
@@ -19,7 +19,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
19
19
 
20
20
  var _Transaction = _interopRequireDefault(require("../transaction/Transaction"));
21
21
 
22
- var _useTheme = _interopRequireDefault(require("../../useTheme.js"));
22
+ var _useTheme = _interopRequireDefault(require("../../useTheme"));
23
23
 
24
24
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
25
25
 
package/useTheme.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare const useTheme: () => any;
2
+ export default useTheme;
package/useTheme.js CHANGED
@@ -11,7 +11,7 @@ var _react = require("react");
11
11
 
12
12
  var _variables = require("./common/variables.js");
13
13
 
14
- var _ThemeContext = _interopRequireDefault(require("./ThemeContext.js"));
14
+ var _ThemeContext = _interopRequireDefault(require("./ThemeContext"));
15
15
 
16
16
  var useTheme = function useTheme() {
17
17
  var colorsTheme = (0, _react.useContext)(_ThemeContext["default"]);
package/wizard/Wizard.js CHANGED
@@ -21,7 +21,7 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
21
21
 
22
22
  var _variables = require("../common/variables.js");
23
23
 
24
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
24
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
25
25
 
26
26
  var _Icons = require("./Icons");
27
27
 
@@ -146,7 +146,7 @@ var IconContainer = _styledComponents["default"].div(_templateObject5 || (_templ
146
146
  }, function (props) {
147
147
  return props.disabled ? props.theme.disabledCircleHeight : props.current ? props.theme.selectedCircleHeight : props.theme.circleHeight;
148
148
  }, function (props) {
149
- return "\n ".concat(!props.current && !props.disabled ? "border: ".concat(props.theme.circleBorderThickness, " ").concat(props.theme.circleBorderStyle, " ").concat(props.theme.circleBorderColor, ";") : props.current ? "border: ".concat(props.theme.selectedCircleBorderThickness, " ").concat(props.theme.selectedCircleBorderStyle, " ").concat(props.theme.selectedCircleBorderColor, ";") : props.disabled ? "border: ".concat(props.theme.disabledCircleBorderThickness, " ").concat(props.theme.disabledCircleBorderStyle, " ").concat(props.theme.disabledCircleBorderColor, ";") : "", "\n background: ").concat(props.disabled ? "".concat(props.theme.disabledBackgroundColor) : props.current ? "".concat(props.theme.stepContainerSelectedBackgroundColor) : "".concat(props.theme.stepContainerBackgroundColor), ";\n ");
149
+ return "\n ".concat(!props.current && !props.disabled ? "border: ".concat(props.theme.circleBorderThickness, " ").concat(props.theme.circleBorderStyle, " ").concat(props.theme.circleBorderColor, ";") : props.current && !props.disabled ? "border: ".concat(props.theme.selectedCircleBorderThickness, " ").concat(props.theme.selectedCircleBorderStyle, " ").concat(props.theme.selectedCircleBorderColor, ";") : props.disabled ? "border: ".concat(props.theme.disabledCircleBorderThickness, " ").concat(props.theme.disabledCircleBorderStyle, " ").concat(props.theme.disabledCircleBorderColor, ";") : "", "\n background: ").concat(props.disabled ? "".concat(props.theme.disabledBackgroundColor) : props.current ? "".concat(props.theme.stepContainerSelectedBackgroundColor) : "".concat(props.theme.stepContainerBackgroundColor), ";\n ");
150
150
  }, function (props) {
151
151
  return props.disabled ? "color: ".concat(props.theme.disabledFontColor, ";") : "color: ".concat(props.current ? props.theme.stepContainerSelectedFontColor : props.theme.stepContainerFontColor, ";");
152
152
  }, function (props) {
package/wizard/types.d.ts CHANGED
@@ -50,7 +50,7 @@ declare type Props = {
50
50
  /**
51
51
  * An array of objects representing the steps.
52
52
  */
53
- steps: [Step, ...Step[]];
53
+ steps: Step[];
54
54
  /**
55
55
  * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
56
56
  * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
package/chip/index.d.ts DELETED
@@ -1,22 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
-
9
- type Props = {
10
- label?: string;
11
- suffixIcon?: any;
12
- preffixIcon?: any;
13
- suffixIconSrc?: string;
14
- onClickSuffix?: void;
15
- prefixIconSrc?: string;
16
- onClickPrefix?: void;
17
- disabled?: boolean;
18
- margin?: Space | Margin;
19
- tabIndex?: number;
20
- };
21
-
22
- export default function DxcChip(props: Props): JSX.Element;
@@ -1,19 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
-
9
- type Props = {
10
- columns?: any;
11
- rows?: any;
12
- itemsPerPage?: number;
13
- itemsPerPageOptions?: number[];
14
- itemsPerPageFunction?: void,
15
- margin?: Space | Margin;
16
- tabIndex?: number;
17
- };
18
-
19
- export default function DxcResultsetTable(props: Props): JSX.Element;