@dxc-technology/halstack-react 0.0.0-ee92231 → 0.0.0-f0d662d
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.
- package/BackgroundColorContext.d.ts +10 -0
- package/BackgroundColorContext.js +1 -4
- package/ThemeContext.d.ts +15 -0
- package/ThemeContext.js +5 -8
- package/V3Select/V3Select.js +2 -2
- package/V3Textarea/V3Textarea.js +2 -2
- package/accordion/Accordion.js +2 -2
- package/accordion/Accordion.stories.tsx +307 -0
- package/accordion/types.d.ts +1 -1
- package/accordion-group/AccordionGroup.js +2 -2
- package/accordion-group/AccordionGroup.stories.tsx +225 -0
- package/accordion-group/types.d.ts +1 -1
- package/alert/Alert.js +2 -2
- package/alert/Alert.stories.tsx +170 -0
- package/alert/types.d.ts +1 -1
- package/badge/Badge.js +1 -1
- package/bleed/Bleed.d.ts +3 -0
- package/bleed/Bleed.js +84 -0
- package/bleed/Bleed.stories.tsx +342 -0
- package/bleed/types.d.ts +13 -0
- package/bleed/types.js +5 -0
- package/box/Box.d.ts +1 -1
- package/box/Box.js +4 -7
- package/box/types.d.ts +0 -4
- package/button/Button.d.ts +1 -1
- package/button/Button.js +13 -19
- package/button/Button.stories.tsx +222 -241
- package/button/types.d.ts +5 -9
- package/card/Card.js +5 -6
- package/card/Card.stories.tsx +201 -0
- package/card/ice-cream.jpg +0 -0
- package/card/types.d.ts +4 -6
- package/checkbox/Checkbox.js +2 -2
- package/checkbox/types.d.ts +2 -2
- package/chip/Chip.d.ts +4 -0
- package/chip/Chip.js +5 -27
- package/chip/Chip.stories.tsx +121 -0
- package/chip/types.d.ts +53 -0
- package/chip/types.js +5 -0
- package/common/variables.js +70 -27
- package/date/Date.js +1 -1
- package/date-input/DateInput.js +10 -13
- package/date-input/DateInput.stories.tsx +138 -0
- package/dialog/Dialog.js +4 -3
- package/dialog/Dialog.stories.tsx +212 -0
- package/dropdown/Dropdown.js +1 -1
- package/dropdown/Dropdown.stories.tsx +247 -0
- package/dropdown/types.d.ts +1 -1
- package/file-input/FileInput.d.ts +4 -0
- package/file-input/FileInput.js +167 -109
- package/file-input/FileInput.stories.tsx +507 -0
- package/file-input/FileItem.d.ts +14 -0
- package/file-input/FileItem.js +12 -21
- package/file-input/types.d.ts +112 -0
- package/file-input/types.js +5 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +28 -36
- package/footer/{Footer.stories.jsx → Footer.stories.tsx} +1 -22
- package/footer/Icons.d.ts +2 -0
- package/footer/Icons.js +3 -3
- package/footer/types.d.ts +22 -18
- package/header/Header.js +2 -2
- package/header/Header.stories.tsx +162 -0
- package/header/Icons.d.ts +2 -0
- package/header/types.d.ts +4 -2
- package/heading/Heading.d.ts +4 -0
- package/heading/Heading.js +7 -24
- package/heading/Heading.stories.tsx +54 -0
- package/heading/types.d.ts +33 -0
- package/heading/types.js +5 -0
- package/input-text/InputText.js +2 -2
- package/inset/Inset.d.ts +3 -0
- package/inset/Inset.js +84 -0
- package/inset/Inset.stories.tsx +229 -0
- package/inset/types.d.ts +13 -0
- package/inset/types.js +5 -0
- package/layout/ApplicationLayout.d.ts +10 -0
- package/layout/ApplicationLayout.js +9 -19
- package/layout/ApplicationLayout.stories.tsx +171 -0
- package/layout/types.d.ts +57 -0
- package/layout/types.js +5 -0
- package/link/Link.js +3 -3
- package/link/Link.stories.tsx +146 -0
- package/list/List.d.ts +4 -0
- package/list/List.js +47 -0
- package/list/List.stories.tsx +95 -0
- package/list/types.d.ts +7 -0
- package/list/types.js +5 -0
- package/main.d.ts +7 -3
- package/main.js +34 -2
- package/number-input/NumberInput.d.ts +4 -0
- package/number-input/NumberInput.js +5 -50
- package/number-input/{NumberInput.stories.jsx → NumberInput.stories.tsx} +0 -0
- package/number-input/NumberInputContext.d.ts +4 -0
- package/number-input/NumberInputContext.js +5 -2
- package/number-input/numberInputContextTypes.d.ts +19 -0
- package/number-input/numberInputContextTypes.js +5 -0
- package/number-input/types.d.ts +117 -0
- package/number-input/types.js +5 -0
- package/package.json +4 -2
- package/paginator/Paginator.js +2 -8
- package/password-input/PasswordInput.js +19 -18
- package/password-input/PasswordInput.stories.tsx +3 -3
- package/password-input/types.d.ts +17 -10
- package/progress-bar/ProgressBar.js +4 -4
- package/radio/Radio.js +2 -2
- package/radio/types.d.ts +2 -2
- package/radio-group/Radio.d.ts +4 -0
- package/radio-group/Radio.js +140 -0
- package/radio-group/RadioGroup.d.ts +4 -0
- package/radio-group/RadioGroup.js +273 -0
- package/radio-group/RadioGroup.stories.tsx +79 -0
- package/radio-group/RadioGroup.test.js +248 -0
- package/radio-group/types.d.ts +36 -0
- package/radio-group/types.js +5 -0
- package/resultsetTable/ResultsetTable.d.ts +4 -0
- package/resultsetTable/ResultsetTable.js +5 -28
- package/resultsetTable/ResultsetTable.stories.tsx +275 -0
- package/resultsetTable/types.d.ts +67 -0
- package/resultsetTable/types.js +5 -0
- package/row/Row.d.ts +3 -0
- package/row/Row.js +127 -0
- package/row/Row.stories.tsx +237 -0
- package/row/types.d.ts +10 -0
- package/row/types.js +5 -0
- package/select/Select.d.ts +4 -0
- package/select/Select.js +20 -22
- package/select/Select.stories.tsx +572 -0
- package/select/types.d.ts +170 -0
- package/select/types.js +5 -0
- package/sidenav/Sidenav.d.ts +9 -0
- package/sidenav/Sidenav.js +6 -15
- package/sidenav/Sidenav.stories.tsx +182 -0
- package/sidenav/types.d.ts +50 -0
- package/sidenav/types.js +5 -0
- package/slider/Slider.d.ts +1 -1
- package/slider/Slider.js +43 -32
- package/slider/Slider.stories.tsx +177 -0
- package/slider/types.d.ts +2 -7
- package/spinner/Spinner.js +2 -2
- package/spinner/Spinner.stories.jsx +1 -0
- package/stack/Stack.d.ts +3 -0
- package/stack/Stack.js +97 -0
- package/stack/Stack.stories.tsx +164 -0
- package/stack/types.d.ts +9 -0
- package/stack/types.js +5 -0
- package/switch/Switch.js +2 -2
- package/switch/Switch.stories.tsx +1 -1
- package/table/Table.js +3 -3
- package/table/Table.stories.jsx +2 -1
- package/tabs/Tabs.js +11 -9
- package/tabs/Tabs.stories.tsx +120 -0
- package/tabs/types.d.ts +25 -18
- package/tag/Tag.d.ts +4 -0
- package/tag/Tag.js +4 -25
- package/tag/{Tag.stories.jsx → Tag.stories.tsx} +1 -1
- package/tag/types.d.ts +60 -0
- package/tag/types.js +5 -0
- package/text/Text.d.ts +7 -0
- package/text/Text.js +30 -0
- package/text/Text.stories.tsx +19 -0
- package/text-input/TextInput.d.ts +4 -0
- package/text-input/TextInput.js +54 -85
- package/text-input/TextInput.stories.tsx +456 -0
- package/text-input/types.d.ts +159 -0
- package/text-input/types.js +5 -0
- package/textarea/Textarea.d.ts +4 -0
- package/textarea/Textarea.js +27 -60
- package/textarea/Textarea.stories.jsx +4 -3
- package/textarea/types.d.ts +130 -0
- package/textarea/types.js +5 -0
- package/toggle/Toggle.js +1 -1
- package/toggle-group/ToggleGroup.d.ts +4 -0
- package/toggle-group/ToggleGroup.js +16 -45
- package/toggle-group/ToggleGroup.stories.tsx +173 -0
- package/toggle-group/types.d.ts +97 -0
- package/toggle-group/types.js +5 -0
- package/upload/buttons-upload/ButtonsUpload.js +2 -2
- package/upload/dragAndDropArea/DragAndDropArea.js +2 -2
- package/upload/file-upload/FileToUpload.js +1 -1
- package/upload/files-upload/FilesToUpload.js +1 -1
- package/upload/transaction/Transaction.js +2 -2
- package/upload/transactions/Transactions.js +1 -1
- package/useTheme.d.ts +2 -0
- package/useTheme.js +1 -1
- package/wizard/Wizard.d.ts +4 -0
- package/wizard/Wizard.js +69 -59
- package/wizard/Wizard.stories.tsx +224 -0
- package/wizard/types.d.ts +60 -0
- package/wizard/types.js +5 -0
- package/chip/index.d.ts +0 -22
- package/file-input/index.d.ts +0 -81
- package/heading/index.d.ts +0 -17
- package/number-input/index.d.ts +0 -113
- package/resultsetTable/index.d.ts +0 -19
- package/select/index.d.ts +0 -131
- package/sidenav/index.d.ts +0 -13
- package/tag/index.d.ts +0 -24
- package/text-input/index.d.ts +0 -135
- package/textarea/index.d.ts +0 -117
- package/toggle-group/index.d.ts +0 -21
- package/wizard/Icons.js +0 -65
- package/wizard/index.d.ts +0 -18
package/textarea/Textarea.js
CHANGED
|
@@ -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 _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
15
13
|
|
|
16
14
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
@@ -23,15 +21,13 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
|
23
21
|
|
|
24
22
|
var _utils = require("../common/utils.js");
|
|
25
23
|
|
|
26
|
-
var _useTheme = _interopRequireDefault(require("../useTheme
|
|
27
|
-
|
|
28
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
24
|
+
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
29
25
|
|
|
30
26
|
var _variables = require("../common/variables.js");
|
|
31
27
|
|
|
32
28
|
var _uuid = require("uuid");
|
|
33
29
|
|
|
34
|
-
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext
|
|
30
|
+
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext"));
|
|
35
31
|
|
|
36
32
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
|
|
37
33
|
|
|
@@ -43,10 +39,6 @@ var getNotOptionalErrorMessage = function getNotOptionalErrorMessage() {
|
|
|
43
39
|
return "This field is required. Please, enter a value.";
|
|
44
40
|
};
|
|
45
41
|
|
|
46
|
-
var getLengthErrorMessage = function getLengthErrorMessage(length) {
|
|
47
|
-
return "Min length ".concat(length.min, ", max length ").concat(length.max, ".");
|
|
48
|
-
};
|
|
49
|
-
|
|
50
42
|
var getPatternErrorMessage = function getPatternErrorMessage() {
|
|
51
43
|
return "Please match the format requested.";
|
|
52
44
|
};
|
|
@@ -56,13 +48,11 @@ var patternMatch = function patternMatch(pattern, value) {
|
|
|
56
48
|
};
|
|
57
49
|
|
|
58
50
|
var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref) {
|
|
59
|
-
var
|
|
60
|
-
label = _ref$label === void 0 ? "" : _ref$label,
|
|
51
|
+
var label = _ref.label,
|
|
61
52
|
_ref$name = _ref.name,
|
|
62
53
|
name = _ref$name === void 0 ? "" : _ref$name,
|
|
63
54
|
value = _ref.value,
|
|
64
|
-
|
|
65
|
-
helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
|
|
55
|
+
helperText = _ref.helperText,
|
|
66
56
|
_ref$placeholder = _ref.placeholder,
|
|
67
57
|
placeholder = _ref$placeholder === void 0 ? "" : _ref$placeholder,
|
|
68
58
|
_ref$disabled = _ref.disabled,
|
|
@@ -75,10 +65,10 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
|
|
|
75
65
|
rows = _ref$rows === void 0 ? 4 : _ref$rows,
|
|
76
66
|
onChange = _ref.onChange,
|
|
77
67
|
onBlur = _ref.onBlur,
|
|
78
|
-
|
|
79
|
-
error = _ref$error === void 0 ? "" : _ref$error,
|
|
68
|
+
error = _ref.error,
|
|
80
69
|
pattern = _ref.pattern,
|
|
81
|
-
|
|
70
|
+
minLength = _ref.minLength,
|
|
71
|
+
maxLength = _ref.maxLength,
|
|
82
72
|
_ref$autocomplete = _ref.autocomplete,
|
|
83
73
|
autocomplete = _ref$autocomplete === void 0 ? "off" : _ref$autocomplete,
|
|
84
74
|
margin = _ref.margin,
|
|
@@ -101,12 +91,16 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
|
|
|
101
91
|
var textareaRef = (0, _react.useRef)(null);
|
|
102
92
|
var errorId = "error-message-".concat(textareaId);
|
|
103
93
|
|
|
94
|
+
var getLengthErrorMessage = function getLengthErrorMessage() {
|
|
95
|
+
return "Min length ".concat(minLength, ", max length ").concat(maxLength, ".");
|
|
96
|
+
};
|
|
97
|
+
|
|
104
98
|
var isNotOptional = function isNotOptional(value) {
|
|
105
99
|
return value === "" && !optional;
|
|
106
100
|
};
|
|
107
101
|
|
|
108
102
|
var isLengthIncorrect = function isLengthIncorrect(value) {
|
|
109
|
-
return value !== "" &&
|
|
103
|
+
return value !== "" && minLength && maxLength && (value.length < minLength || value.length > maxLength);
|
|
110
104
|
};
|
|
111
105
|
|
|
112
106
|
var changeValue = function changeValue(newValue) {
|
|
@@ -116,7 +110,7 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
|
|
|
116
110
|
error: getNotOptionalErrorMessage()
|
|
117
111
|
});else if (isLengthIncorrect(newValue)) onChange === null || onChange === void 0 ? void 0 : onChange({
|
|
118
112
|
value: newValue,
|
|
119
|
-
error: getLengthErrorMessage(
|
|
113
|
+
error: getLengthErrorMessage()
|
|
120
114
|
});else if (newValue && pattern && !patternMatch(pattern, newValue)) onChange === null || onChange === void 0 ? void 0 : onChange({
|
|
121
115
|
value: newValue,
|
|
122
116
|
error: getPatternErrorMessage()
|
|
@@ -132,7 +126,7 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
|
|
|
132
126
|
error: getNotOptionalErrorMessage()
|
|
133
127
|
});else if (isLengthIncorrect(event.target.value)) onBlur === null || onBlur === void 0 ? void 0 : onBlur({
|
|
134
128
|
value: event.target.value,
|
|
135
|
-
error: getLengthErrorMessage(
|
|
129
|
+
error: getLengthErrorMessage()
|
|
136
130
|
});else if (event.target.value && pattern && !patternMatch(pattern, event.target.value)) onBlur === null || onBlur === void 0 ? void 0 : onBlur({
|
|
137
131
|
value: event.target.value,
|
|
138
132
|
error: getPatternErrorMessage()
|
|
@@ -161,11 +155,12 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
|
|
|
161
155
|
margin: margin,
|
|
162
156
|
size: size,
|
|
163
157
|
ref: ref
|
|
164
|
-
}, /*#__PURE__*/_react["default"].createElement(Label, {
|
|
158
|
+
}, label && /*#__PURE__*/_react["default"].createElement(Label, {
|
|
165
159
|
htmlFor: textareaId,
|
|
166
160
|
disabled: disabled,
|
|
167
|
-
backgroundType: backgroundType
|
|
168
|
-
|
|
161
|
+
backgroundType: backgroundType,
|
|
162
|
+
helperText: helperText
|
|
163
|
+
}, label, " ", optional && /*#__PURE__*/_react["default"].createElement(OptionalLabel, null, "(Optional)")), helperText && /*#__PURE__*/_react["default"].createElement(HelperText, {
|
|
169
164
|
disabled: disabled,
|
|
170
165
|
backgroundType: backgroundType
|
|
171
166
|
}, helperText), /*#__PURE__*/_react["default"].createElement(Textarea, {
|
|
@@ -179,8 +174,8 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
|
|
|
179
174
|
onBlur: handleTOnBlur,
|
|
180
175
|
disabled: disabled,
|
|
181
176
|
error: error,
|
|
182
|
-
minLength:
|
|
183
|
-
maxLength:
|
|
177
|
+
minLength: minLength,
|
|
178
|
+
maxLength: maxLength,
|
|
184
179
|
autoComplete: autocomplete,
|
|
185
180
|
backgroundType: backgroundType,
|
|
186
181
|
ref: textareaRef,
|
|
@@ -188,7 +183,7 @@ var DxcTextarea = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref)
|
|
|
188
183
|
"aria-invalid": error ? "true" : "false",
|
|
189
184
|
"aria-describedby": error ? errorId : undefined,
|
|
190
185
|
"aria-required": optional ? "false" : "true"
|
|
191
|
-
}), !disabled && /*#__PURE__*/_react["default"].createElement(Error, {
|
|
186
|
+
}), !disabled && typeof error === "string" && /*#__PURE__*/_react["default"].createElement(Error, {
|
|
192
187
|
id: errorId,
|
|
193
188
|
backgroundType: backgroundType
|
|
194
189
|
}, error)));
|
|
@@ -219,7 +214,7 @@ var TextareaContainer = _styledComponents["default"].div(_templateObject || (_te
|
|
|
219
214
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
220
215
|
});
|
|
221
216
|
|
|
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) {
|
|
217
|
+
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
218
|
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledLabelFontColorOnDark : props.theme.disabledLabelFontColor : props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
224
219
|
}, function (props) {
|
|
225
220
|
return props.theme.fontFamily;
|
|
@@ -231,13 +226,15 @@ var Label = _styledComponents["default"].label(_templateObject2 || (_templateObj
|
|
|
231
226
|
return props.theme.labelFontWeight;
|
|
232
227
|
}, function (props) {
|
|
233
228
|
return props.theme.labelLineHeight;
|
|
229
|
+
}, function (props) {
|
|
230
|
+
return !props.helperText && "margin-bottom: 0.25rem";
|
|
234
231
|
});
|
|
235
232
|
|
|
236
233
|
var OptionalLabel = _styledComponents["default"].span(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n font-weight: ", ";\n"])), function (props) {
|
|
237
234
|
return props.theme.optionalLabelFontWeight;
|
|
238
235
|
});
|
|
239
236
|
|
|
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) {
|
|
237
|
+
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
238
|
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledHelperTextFontColorOnDark : props.theme.disabledHelperTextFontColor : props.backgroundType === "dark" ? props.theme.helperTextFontColorOnDark : props.theme.helperTextFontColor;
|
|
242
239
|
}, function (props) {
|
|
243
240
|
return props.theme.fontFamily;
|
|
@@ -251,12 +248,10 @@ var HelperText = _styledComponents["default"].span(_templateObject4 || (_templat
|
|
|
251
248
|
return props.theme.helperTextLineHeight;
|
|
252
249
|
});
|
|
253
250
|
|
|
254
|
-
var Textarea = _styledComponents["default"].textarea(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n ", ";\n ", "\n\n
|
|
251
|
+
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
252
|
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
253
|
}, function (props) {
|
|
257
254
|
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
255
|
}, function (props) {
|
|
261
256
|
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
257
|
}, function (props) {
|
|
@@ -279,39 +274,11 @@ var Textarea = _styledComponents["default"].textarea(_templateObject5 || (_templ
|
|
|
279
274
|
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledPlaceholderFontColorOnDark : props.theme.disabledPlaceholderFontColor : props.backgroundType === "dark" ? props.theme.placeholderFontColorOnDark : props.theme.placeholderFontColor;
|
|
280
275
|
});
|
|
281
276
|
|
|
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) {
|
|
277
|
+
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
278
|
return props.backgroundType === "dark" ? props.theme.errorMessageColorOnDark : props.theme.errorMessageColor;
|
|
284
279
|
}, function (props) {
|
|
285
280
|
return props.theme.fontFamily;
|
|
286
281
|
});
|
|
287
282
|
|
|
288
|
-
DxcTextarea.propTypes = {
|
|
289
|
-
label: _propTypes["default"].string,
|
|
290
|
-
name: _propTypes["default"].string,
|
|
291
|
-
value: _propTypes["default"].string,
|
|
292
|
-
helperText: _propTypes["default"].string,
|
|
293
|
-
placeholder: _propTypes["default"].string,
|
|
294
|
-
verticalGrow: _propTypes["default"].oneOf(["auto", "none", "manual"]),
|
|
295
|
-
rows: _propTypes["default"].number,
|
|
296
|
-
length: _propTypes["default"].shape({
|
|
297
|
-
min: _propTypes["default"].number,
|
|
298
|
-
max: _propTypes["default"].number
|
|
299
|
-
}),
|
|
300
|
-
pattern: _propTypes["default"].string,
|
|
301
|
-
disabled: _propTypes["default"].bool,
|
|
302
|
-
optional: _propTypes["default"].bool,
|
|
303
|
-
onChange: _propTypes["default"].func,
|
|
304
|
-
onBlur: _propTypes["default"].func,
|
|
305
|
-
error: _propTypes["default"].string,
|
|
306
|
-
autocomplete: _propTypes["default"].string,
|
|
307
|
-
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
308
|
-
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
309
|
-
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
310
|
-
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
311
|
-
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
312
|
-
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
313
|
-
size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
|
|
314
|
-
tabIndex: _propTypes["default"].number
|
|
315
|
-
};
|
|
316
283
|
var _default = DxcTextarea;
|
|
317
284
|
exports["default"] = _default;
|
|
@@ -105,15 +105,15 @@ export const Chromatic = () => (
|
|
|
105
105
|
<Title title="Margins" theme="light" level={2} />
|
|
106
106
|
<ExampleContainer>
|
|
107
107
|
<Title title="Xxsmall margin" theme="light" level={4} />
|
|
108
|
-
<DxcTextarea label="
|
|
108
|
+
<DxcTextarea label="Xxsmall" margin="xxsmall" />
|
|
109
109
|
</ExampleContainer>
|
|
110
110
|
<ExampleContainer>
|
|
111
111
|
<Title title="Xsmall margin" theme="light" level={4} />
|
|
112
|
-
<DxcTextarea label="
|
|
112
|
+
<DxcTextarea label="xsmall" margin="xsmall" />
|
|
113
113
|
</ExampleContainer>
|
|
114
114
|
<ExampleContainer>
|
|
115
115
|
<Title title="Small margin" theme="light" level={4} />
|
|
116
|
-
<DxcTextarea label="
|
|
116
|
+
<DxcTextarea label="small" margin="small" />
|
|
117
117
|
</ExampleContainer>
|
|
118
118
|
<ExampleContainer>
|
|
119
119
|
<Title title="Medium margin" theme="light" level={4} />
|
|
@@ -130,6 +130,7 @@ export const Chromatic = () => (
|
|
|
130
130
|
<ExampleContainer>
|
|
131
131
|
<Title title="Xxlarge margin" theme="light" level={4} />
|
|
132
132
|
<DxcTextarea label="Xxlarge" margin="xxlarge" />
|
|
133
|
+
<hr />
|
|
133
134
|
</ExampleContainer>
|
|
134
135
|
</>
|
|
135
136
|
);
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
2
|
+
declare type Margin = {
|
|
3
|
+
top?: Space;
|
|
4
|
+
bottom?: Space;
|
|
5
|
+
left?: Space;
|
|
6
|
+
right?: Space;
|
|
7
|
+
};
|
|
8
|
+
declare type Props = {
|
|
9
|
+
/**
|
|
10
|
+
* Text to be placed above the textarea.
|
|
11
|
+
*/
|
|
12
|
+
label?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Name attribute of the textarea element.
|
|
15
|
+
*/
|
|
16
|
+
name?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Value of the textarea. If undefined, the component will be uncontrolled and the value will be managed internally.
|
|
19
|
+
*/
|
|
20
|
+
value?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Helper text to be placed above the textarea.
|
|
23
|
+
*/
|
|
24
|
+
helperText?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Text to be put as placeholder of the textarea.
|
|
27
|
+
*/
|
|
28
|
+
placeholder?: string;
|
|
29
|
+
/**
|
|
30
|
+
* If true, the component will be disabled.
|
|
31
|
+
*/
|
|
32
|
+
disabled?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* If true, the textarea will be optional, showing '(Optional)'
|
|
35
|
+
* next to the label. Otherwise, the field will be considered required
|
|
36
|
+
* and an error will be passed as a parameter to the OnBlur and onChange functions
|
|
37
|
+
* when it has not been filled.
|
|
38
|
+
*/
|
|
39
|
+
optional?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Defines the textarea's ability to resize vertically. It can be:
|
|
42
|
+
* - 'auto': The textarea grows or shrinks automatically in order to fit the content.
|
|
43
|
+
* - 'manual': The height of the textarea is enabled to be manually modified.
|
|
44
|
+
* - 'none': The textarea has a fixed height and can't be modified.
|
|
45
|
+
*/
|
|
46
|
+
verticalGrow?: "auto" | "manual" | "none";
|
|
47
|
+
/**
|
|
48
|
+
* Number of rows of the textarea.
|
|
49
|
+
*/
|
|
50
|
+
rows?: number;
|
|
51
|
+
/**
|
|
52
|
+
* This function will be called when the user types within the textarea.
|
|
53
|
+
* An object including the current value and the error (if the value
|
|
54
|
+
* entered is not valid) will be passed to this function.
|
|
55
|
+
* If there is no error, error will be null.
|
|
56
|
+
*/
|
|
57
|
+
onChange?: (val: {
|
|
58
|
+
value: string;
|
|
59
|
+
error: string | null;
|
|
60
|
+
}) => void;
|
|
61
|
+
/**
|
|
62
|
+
* This function will be called when the textarea loses the focus. An
|
|
63
|
+
* object including the textarea value and the error (if the value entered
|
|
64
|
+
* is not valid) will be passed to this function. If there is no error,
|
|
65
|
+
* error will be null.
|
|
66
|
+
*/
|
|
67
|
+
onBlur?: (val: {
|
|
68
|
+
value: string;
|
|
69
|
+
error: string | null;
|
|
70
|
+
}) => void;
|
|
71
|
+
/**
|
|
72
|
+
* If it is defined, the component will change its appearance, showing
|
|
73
|
+
* the error below the textarea. If it is not defined, the error
|
|
74
|
+
* messages will be managed internally, but never displayed on its own.
|
|
75
|
+
*/
|
|
76
|
+
error?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Regular expression that defines the valid format allowed by the
|
|
79
|
+
* textarea. This will be checked both when the textarea loses the focus
|
|
80
|
+
* and while typing within it. If the string entered does not match the
|
|
81
|
+
* pattern, the onBlur and onChange functions will be called with the
|
|
82
|
+
* current value and an internal error informing that this value does not
|
|
83
|
+
* match the pattern. If the pattern is met, the error parameter of both
|
|
84
|
+
* events will be null.
|
|
85
|
+
*/
|
|
86
|
+
pattern?: string;
|
|
87
|
+
/**
|
|
88
|
+
* Specifies the minimun length allowed by the textarea.
|
|
89
|
+
* This will be checked both when the textarea loses the
|
|
90
|
+
* focus and while typing within it. If the string entered does not
|
|
91
|
+
* comply the minimum length, the onBlur and onChange functions will be called
|
|
92
|
+
* with the current value and an internal error informing that the value
|
|
93
|
+
* length does not comply the specified range. If a valid length is
|
|
94
|
+
* reached, the error parameter of both events will be null.
|
|
95
|
+
*/
|
|
96
|
+
minLength?: number;
|
|
97
|
+
/**
|
|
98
|
+
* Specifies the maximum length allowed by the textarea.
|
|
99
|
+
* This will be checked both when the textarea loses the
|
|
100
|
+
* focus and while typing within it. If the string entered does not
|
|
101
|
+
* comply the maximum length, the onBlur and onChange functions will be called
|
|
102
|
+
* with the current value and an internal error informing that the value
|
|
103
|
+
* length does not comply the specified range. If a valid length is
|
|
104
|
+
* reached, the error parameter of both events will be null.
|
|
105
|
+
*/
|
|
106
|
+
maxLength?: number;
|
|
107
|
+
/**
|
|
108
|
+
* HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the textarea value.
|
|
109
|
+
* Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
|
|
110
|
+
*/
|
|
111
|
+
autocomplete?: string;
|
|
112
|
+
/**
|
|
113
|
+
* Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
|
|
114
|
+
* You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
|
|
115
|
+
*/
|
|
116
|
+
margin?: Space | Margin;
|
|
117
|
+
/**
|
|
118
|
+
* Size of the component ('small' | 'medium' | 'large' | 'fillParent').
|
|
119
|
+
*/
|
|
120
|
+
size?: "small" | "medium" | "large" | "fillParent";
|
|
121
|
+
/**
|
|
122
|
+
* Value of the tabindex attribute.
|
|
123
|
+
*/
|
|
124
|
+
tabIndex?: number;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* Reference to the component.
|
|
128
|
+
*/
|
|
129
|
+
export declare type RefType = HTMLDivElement;
|
|
130
|
+
export default Props;
|
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
|
|
28
|
+
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
29
29
|
|
|
30
30
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4;
|
|
31
31
|
|
|
@@ -9,12 +9,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
9
9
|
});
|
|
10
10
|
exports["default"] = void 0;
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
13
13
|
|
|
14
14
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
15
15
|
|
|
16
|
-
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
17
|
-
|
|
18
16
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
19
17
|
|
|
20
18
|
var _react = _interopRequireWildcard(require("react"));
|
|
@@ -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
|
|
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
|
-
|
|
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 ? [] :
|
|
49
|
+
var _useState = (0, _react.useState)(multiple ? [] : -1),
|
|
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
|
-
|
|
88
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(multiple ? newSelectedOptions : selectedOption);
|
|
94
89
|
};
|
|
95
90
|
|
|
96
91
|
var handleKeyPress = function handleKeyPress(event, optionValue) {
|
|
@@ -113,16 +108,16 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
|
113
108
|
role: multiple ? "group" : "radiogroup"
|
|
114
109
|
}, options.map(function (option, i) {
|
|
115
110
|
return /*#__PURE__*/_react["default"].createElement(ToggleContainer, {
|
|
116
|
-
selected: multiple ? value ? value.includes(option.value) : selectedValue.includes(option.value) : value ? option.value === value : option.value === selectedValue,
|
|
111
|
+
selected: multiple && Array.isArray(value) ? value ? value.includes(option.value) : Array.isArray(selectedValue) && selectedValue.includes(option.value) : value ? option.value === value : option.value === selectedValue,
|
|
117
112
|
role: multiple ? "switch" : "radio",
|
|
118
|
-
"aria-checked": multiple ? value ? value.includes(option.value) : selectedValue.includes(option.value) : value ? option.value === value : option.value === selectedValue,
|
|
113
|
+
"aria-checked": multiple && Array.isArray(value) ? value ? value.includes(option.value) : Array.isArray(selectedValue) && selectedValue.includes(option.value) : value ? option.value === value : option.value === selectedValue,
|
|
119
114
|
tabIndex: !disabled ? tabIndex : -1,
|
|
120
115
|
onClick: function onClick() {
|
|
121
116
|
return !disabled && handleToggleChange(option.value);
|
|
122
117
|
},
|
|
123
118
|
isFirst: i === 0,
|
|
124
119
|
isLast: i === options.length - 1,
|
|
125
|
-
isIcon: option.
|
|
120
|
+
isIcon: option.icon,
|
|
126
121
|
optionLabel: option.label,
|
|
127
122
|
disabled: disabled,
|
|
128
123
|
onKeyPress: function onKeyPress(event) {
|
|
@@ -131,10 +126,9 @@ var DxcToggleGroup = function DxcToggleGroup(_ref) {
|
|
|
131
126
|
key: "toggle-".concat(i, "-").concat(option.label)
|
|
132
127
|
}, /*#__PURE__*/_react["default"].createElement(OptionContent, null, option.icon && /*#__PURE__*/_react["default"].createElement(IconContainer, {
|
|
133
128
|
optionLabel: option.label
|
|
134
|
-
},
|
|
135
|
-
src: option.
|
|
136
|
-
|
|
137
|
-
}), option.label && /*#__PURE__*/_react["default"].createElement(LabelContainer, null, option.label)));
|
|
129
|
+
}, typeof option.icon === "string" ? /*#__PURE__*/_react["default"].createElement(Icon, {
|
|
130
|
+
src: option.icon
|
|
131
|
+
}) : option.icon), option.label && /*#__PURE__*/_react["default"].createElement(LabelContainer, null, option.label)));
|
|
138
132
|
}))));
|
|
139
133
|
};
|
|
140
134
|
|
|
@@ -208,36 +202,13 @@ var LabelContainer = _styledComponents["default"].span(_templateObject6 || (_tem
|
|
|
208
202
|
return props.theme.optionLabelFontWeight;
|
|
209
203
|
});
|
|
210
204
|
|
|
211
|
-
var OptionContent = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n"])));
|
|
205
|
+
var OptionContent = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n align-items: center;\n"])));
|
|
212
206
|
|
|
213
|
-
var Icon = _styledComponents["default"].img(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["
|
|
214
|
-
return props.optionLabel && props.theme.iconMarginRight;
|
|
215
|
-
});
|
|
207
|
+
var Icon = _styledComponents["default"].img(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])([""])));
|
|
216
208
|
|
|
217
209
|
var IconContainer = _styledComponents["default"].div(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: ", ";\n height: 24px;\n width: 24px;\n overflow: hidden;\n display: flex;\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"])), function (props) {
|
|
218
210
|
return props.optionLabel && props.theme.iconMarginRight;
|
|
219
211
|
});
|
|
220
212
|
|
|
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
213
|
var _default = DxcToggleGroup;
|
|
243
214
|
exports["default"] = _default;
|