@dxc-technology/halstack-react 0.0.0-f6d6be5 → 0.0.0-f70a97e
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 +1 -10
- package/BackgroundColorContext.js +4 -21
- package/HalstackContext.d.ts +43 -138
- package/HalstackContext.js +10 -35
- package/accordion/Accordion.js +23 -63
- package/accordion/Accordion.stories.tsx +1 -15
- package/accordion/Accordion.test.js +18 -33
- package/accordion/types.d.ts +5 -5
- package/accordion-group/AccordionGroup.js +15 -42
- package/accordion-group/AccordionGroup.stories.tsx +1 -1
- package/accordion-group/AccordionGroup.test.js +42 -60
- package/accordion-group/AccordionGroupAccordion.js +9 -21
- package/accordion-group/types.d.ts +6 -6
- package/action-icon/ActionIcon.d.ts +4 -0
- package/action-icon/ActionIcon.js +47 -0
- package/action-icon/ActionIcon.stories.tsx +41 -0
- package/action-icon/ActionIcon.test.js +64 -0
- package/action-icon/types.d.ts +26 -0
- package/alert/Alert.js +15 -50
- package/alert/Alert.test.js +28 -45
- package/alert/types.d.ts +5 -5
- package/badge/Badge.d.ts +1 -1
- package/badge/Badge.js +141 -43
- package/badge/Badge.stories.tsx +210 -0
- package/badge/Badge.test.js +30 -0
- package/badge/types.d.ts +52 -3
- package/bleed/Bleed.js +13 -21
- package/bleed/types.d.ts +2 -2
- package/box/Box.js +11 -33
- package/box/Box.test.js +1 -6
- package/box/types.d.ts +3 -3
- package/bulleted-list/BulletedList.js +18 -54
- package/bulleted-list/BulletedList.stories.tsx +1 -92
- package/bulleted-list/types.d.ts +5 -5
- package/button/Button.js +36 -59
- package/button/Button.stories.tsx +33 -132
- package/button/Button.test.js +13 -21
- package/button/types.d.ts +5 -5
- package/card/Card.js +21 -44
- package/card/Card.test.js +10 -21
- package/card/types.d.ts +5 -5
- package/checkbox/Checkbox.js +85 -120
- package/checkbox/Checkbox.stories.tsx +16 -54
- package/checkbox/Checkbox.test.js +107 -63
- package/checkbox/types.d.ts +8 -4
- package/chip/Chip.js +12 -31
- package/chip/Chip.stories.tsx +1 -1
- package/chip/Chip.test.js +15 -28
- package/chip/types.d.ts +4 -4
- package/common/coreTokens.d.ts +105 -14
- package/common/coreTokens.js +40 -23
- package/common/utils.js +2 -8
- package/common/variables.d.ts +44 -139
- package/common/variables.js +55 -157
- package/container/Container.d.ts +4 -0
- package/container/Container.js +194 -0
- package/container/Container.stories.tsx +214 -0
- package/container/types.d.ts +74 -0
- package/container/types.js +5 -0
- package/contextual-menu/ContextualMenu.d.ts +7 -0
- package/contextual-menu/ContextualMenu.js +71 -0
- package/contextual-menu/ContextualMenu.stories.tsx +182 -0
- package/contextual-menu/ContextualMenu.test.js +71 -0
- package/contextual-menu/MenuItemAction.d.ts +4 -0
- package/contextual-menu/MenuItemAction.js +46 -0
- package/contextual-menu/types.d.ts +22 -0
- package/contextual-menu/types.js +5 -0
- package/date-input/Calendar.js +13 -57
- package/date-input/DateInput.js +50 -96
- package/date-input/DateInput.stories.tsx +11 -30
- package/date-input/DateInput.test.js +674 -701
- package/date-input/DatePicker.js +11 -42
- package/date-input/Icons.d.ts +6 -6
- package/date-input/Icons.js +6 -23
- package/date-input/YearPicker.js +8 -34
- package/date-input/types.d.ts +28 -22
- package/dialog/Dialog.js +13 -40
- package/dialog/Dialog.stories.tsx +170 -0
- package/dialog/Dialog.test.js +125 -187
- package/dialog/types.d.ts +18 -13
- package/divider/Divider.d.ts +4 -0
- package/divider/Divider.js +36 -0
- package/divider/Divider.stories.tsx +223 -0
- package/divider/Divider.test.js +38 -0
- package/divider/types.d.ts +19 -0
- package/divider/types.js +5 -0
- package/dropdown/Dropdown.js +48 -100
- package/dropdown/Dropdown.test.js +391 -378
- package/dropdown/DropdownMenu.js +8 -19
- package/dropdown/DropdownMenuItem.js +5 -17
- package/dropdown/types.d.ts +18 -20
- package/file-input/FileInput.js +180 -248
- package/file-input/FileInput.stories.tsx +1 -1
- package/file-input/FileInput.test.js +356 -354
- package/file-input/FileItem.js +12 -39
- package/file-input/types.d.ts +9 -9
- package/flex/Flex.js +25 -39
- package/flex/types.d.ts +6 -6
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +38 -65
- package/footer/Footer.stories.tsx +19 -0
- package/footer/Footer.test.js +18 -32
- package/footer/Icons.d.ts +3 -2
- package/footer/Icons.js +66 -7
- package/footer/types.d.ts +16 -16
- package/grid/Grid.js +1 -16
- package/grid/types.d.ts +10 -10
- package/header/Header.d.ts +1 -1
- package/header/Header.js +28 -84
- package/header/Header.test.js +12 -25
- package/header/Icons.d.ts +2 -2
- package/header/Icons.js +2 -7
- package/header/types.d.ts +7 -8
- package/heading/Heading.js +9 -31
- package/heading/Heading.test.js +70 -87
- package/heading/types.d.ts +7 -7
- package/icon/Icon.d.ts +4 -0
- package/icon/Icon.js +33 -0
- package/icon/Icon.stories.tsx +26 -0
- package/icon/types.d.ts +4 -0
- package/icon/types.js +5 -0
- package/image/Image.d.ts +2 -2
- package/image/Image.js +17 -32
- package/image/Image.stories.tsx +3 -1
- package/image/types.d.ts +2 -2
- package/inset/Inset.js +13 -21
- package/inset/types.d.ts +2 -2
- package/layout/ApplicationLayout.d.ts +2 -2
- package/layout/ApplicationLayout.js +14 -54
- package/layout/Icons.d.ts +5 -5
- package/layout/Icons.js +1 -5
- package/layout/SidenavContext.d.ts +1 -1
- package/layout/SidenavContext.js +3 -9
- package/layout/types.d.ts +3 -3
- package/link/Link.js +21 -42
- package/link/Link.test.js +23 -41
- package/link/types.d.ts +14 -14
- package/main.d.ts +7 -4
- package/main.js +32 -60
- package/nav-tabs/NavTabs.js +17 -46
- package/nav-tabs/NavTabs.stories.tsx +7 -5
- package/nav-tabs/NavTabs.test.js +38 -44
- package/nav-tabs/Tab.js +22 -50
- package/nav-tabs/types.d.ts +9 -9
- package/number-input/NumberInput.d.ts +1 -1
- package/number-input/NumberInput.js +45 -37
- package/number-input/NumberInput.stories.tsx +42 -26
- package/number-input/NumberInput.test.js +839 -575
- package/number-input/types.d.ts +11 -5
- package/package.json +29 -27
- package/paginator/Icons.d.ts +5 -5
- package/paginator/Icons.js +5 -19
- package/paginator/Paginator.js +15 -43
- package/paginator/Paginator.test.js +224 -207
- package/paginator/types.d.ts +3 -3
- package/paragraph/Paragraph.js +3 -19
- package/paragraph/Paragraph.stories.tsx +0 -17
- package/password-input/Icons.d.ts +3 -3
- package/password-input/Icons.js +1 -5
- package/password-input/PasswordInput.js +26 -48
- package/password-input/PasswordInput.stories.tsx +1 -34
- package/password-input/PasswordInput.test.js +153 -129
- package/password-input/types.d.ts +8 -7
- package/progress-bar/ProgressBar.js +21 -53
- package/progress-bar/{ProgressBar.stories.jsx → ProgressBar.stories.tsx} +1 -1
- package/progress-bar/ProgressBar.test.js +35 -52
- package/progress-bar/types.d.ts +3 -3
- package/quick-nav/QuickNav.js +4 -27
- package/quick-nav/QuickNav.stories.tsx +1 -1
- package/quick-nav/types.d.ts +10 -10
- package/radio-group/Radio.d.ts +1 -1
- package/radio-group/Radio.js +22 -54
- package/radio-group/RadioGroup.js +37 -83
- package/radio-group/RadioGroup.stories.tsx +10 -10
- package/radio-group/RadioGroup.test.js +504 -470
- package/radio-group/types.d.ts +8 -8
- package/resultset-table/Icons.d.ts +7 -0
- package/{resultsetTable → resultset-table}/Icons.js +1 -5
- package/resultset-table/ResultsetTable.d.ts +7 -0
- package/{resultsetTable → resultset-table}/ResultsetTable.js +35 -64
- package/{resultsetTable → resultset-table}/ResultsetTable.stories.tsx +102 -5
- package/{resultsetTable → resultset-table}/ResultsetTable.test.js +138 -92
- package/{resultsetTable → resultset-table}/types.d.ts +13 -7
- package/resultset-table/types.js +5 -0
- package/select/Icons.d.ts +7 -7
- package/select/Icons.js +1 -5
- package/select/Listbox.js +13 -39
- package/select/Option.js +17 -27
- package/select/Select.js +87 -163
- package/select/Select.test.js +1942 -1800
- package/select/types.d.ts +14 -15
- package/sidenav/Icons.d.ts +4 -4
- package/sidenav/Icons.js +1 -5
- package/sidenav/Sidenav.js +28 -69
- package/sidenav/Sidenav.test.js +3 -10
- package/sidenav/types.d.ts +18 -18
- package/slider/Slider.js +68 -125
- package/slider/Slider.test.js +107 -103
- package/slider/types.d.ts +4 -4
- package/spinner/Spinner.js +16 -54
- package/spinner/Spinner.test.js +25 -34
- package/spinner/types.d.ts +3 -3
- package/status-light/StatusLight.d.ts +4 -0
- package/status-light/StatusLight.js +51 -0
- package/status-light/StatusLight.stories.tsx +74 -0
- package/status-light/StatusLight.test.js +25 -0
- package/status-light/types.d.ts +17 -0
- package/status-light/types.js +5 -0
- package/switch/Switch.js +49 -97
- package/switch/Switch.stories.tsx +0 -34
- package/switch/Switch.test.js +51 -96
- package/switch/types.d.ts +4 -4
- package/table/DropdownTheme.js +62 -0
- package/table/Table.d.ts +6 -2
- package/table/Table.js +85 -33
- package/table/{Table.stories.jsx → Table.stories.tsx} +304 -2
- package/table/Table.test.js +93 -6
- package/table/types.d.ts +48 -6
- package/tabs/Tab.js +17 -33
- package/tabs/Tabs.js +52 -129
- package/tabs/Tabs.stories.tsx +1 -1
- package/tabs/Tabs.test.js +62 -118
- package/tabs/types.d.ts +19 -19
- package/tag/Tag.js +21 -51
- package/tag/Tag.test.js +19 -30
- package/tag/types.d.ts +7 -7
- package/text-input/Icons.d.ts +5 -5
- package/text-input/Icons.js +1 -5
- package/text-input/Suggestion.js +9 -26
- package/text-input/Suggestions.d.ts +1 -1
- package/text-input/Suggestions.js +15 -65
- package/text-input/TextInput.js +192 -284
- package/text-input/TextInput.stories.tsx +48 -152
- package/text-input/TextInput.test.js +1227 -1194
- package/text-input/types.d.ts +25 -17
- package/textarea/Textarea.js +67 -109
- package/textarea/{Textarea.stories.jsx → Textarea.stories.tsx} +58 -100
- package/textarea/Textarea.test.js +150 -179
- package/textarea/types.d.ts +9 -5
- package/toggle-group/ToggleGroup.js +21 -61
- package/toggle-group/ToggleGroup.stories.tsx +1 -1
- package/toggle-group/ToggleGroup.test.js +48 -81
- package/toggle-group/types.d.ts +10 -10
- package/typography/Typography.js +4 -13
- package/typography/types.d.ts +1 -1
- package/useTheme.d.ts +41 -136
- package/useTheme.js +1 -8
- package/useTranslatedLabels.js +1 -7
- package/utils/BaseTypography.d.ts +2 -2
- package/utils/BaseTypography.js +16 -30
- package/utils/FocusLock.js +25 -39
- package/wizard/Wizard.js +14 -49
- package/wizard/Wizard.test.js +53 -80
- package/wizard/types.d.ts +7 -7
- package/common/OpenSans.css +0 -69
- package/common/fonts/OpenSans-Bold.ttf +0 -0
- package/common/fonts/OpenSans-BoldItalic.ttf +0 -0
- package/common/fonts/OpenSans-ExtraBold.ttf +0 -0
- package/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- package/common/fonts/OpenSans-Italic.ttf +0 -0
- package/common/fonts/OpenSans-Light.ttf +0 -0
- package/common/fonts/OpenSans-LightItalic.ttf +0 -0
- package/common/fonts/OpenSans-Regular.ttf +0 -0
- package/common/fonts/OpenSans-SemiBold.ttf +0 -0
- package/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
- package/resultsetTable/Icons.d.ts +0 -7
- package/resultsetTable/ResultsetTable.d.ts +0 -4
- package/slider/Slider.stories.tsx +0 -240
- /package/{resultsetTable → action-icon}/types.js +0 -0
- /package/spinner/{Spinner.stories.jsx → Spinner.stories.tsx} +0 -0
package/text-input/TextInput.js
CHANGED
|
@@ -1,68 +1,45 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
var _typeof3 = require("@babel/runtime/helpers/typeof");
|
|
6
|
-
|
|
7
5
|
Object.defineProperty(exports, "__esModule", {
|
|
8
6
|
value: true
|
|
9
7
|
});
|
|
10
8
|
exports["default"] = void 0;
|
|
11
|
-
|
|
12
9
|
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
13
|
-
|
|
14
10
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
15
|
-
|
|
16
11
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
17
|
-
|
|
18
12
|
var _react = _interopRequireWildcard(require("react"));
|
|
19
|
-
|
|
20
13
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
21
|
-
|
|
22
14
|
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
23
|
-
|
|
24
15
|
var _useTranslatedLabels = _interopRequireDefault(require("../useTranslatedLabels"));
|
|
25
|
-
|
|
26
16
|
var _variables = require("../common/variables");
|
|
27
|
-
|
|
28
17
|
var _utils = require("../common/utils");
|
|
29
|
-
|
|
30
|
-
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext"));
|
|
31
|
-
|
|
32
18
|
var _NumberInput = require("../number-input/NumberInput");
|
|
33
|
-
|
|
34
19
|
var _Suggestions = _interopRequireDefault(require("./Suggestions"));
|
|
35
|
-
|
|
36
20
|
var Popover = _interopRequireWildcard(require("@radix-ui/react-popover"));
|
|
37
|
-
|
|
38
21
|
var _Icons = _interopRequireDefault(require("./Icons"));
|
|
39
|
-
|
|
40
22
|
var _uuid = require("uuid");
|
|
41
|
-
|
|
42
|
-
var
|
|
43
|
-
|
|
44
|
-
function _getRequireWildcardCache(
|
|
45
|
-
|
|
46
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof3(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
47
|
-
|
|
23
|
+
var _ActionIcon = _interopRequireDefault(require("../action-icon/ActionIcon"));
|
|
24
|
+
var _Flex = _interopRequireDefault(require("../flex/Flex"));
|
|
25
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10;
|
|
26
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
27
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof3(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
48
28
|
var sizes = {
|
|
49
29
|
small: "240px",
|
|
50
30
|
medium: "360px",
|
|
51
31
|
large: "480px",
|
|
52
32
|
fillParent: "100%"
|
|
53
33
|
};
|
|
54
|
-
|
|
55
34
|
var AutosuggestWrapper = function AutosuggestWrapper(_ref) {
|
|
56
35
|
var condition = _ref.condition,
|
|
57
|
-
|
|
58
|
-
|
|
36
|
+
wrapper = _ref.wrapper,
|
|
37
|
+
children = _ref.children;
|
|
59
38
|
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, condition ? wrapper(children) : children);
|
|
60
39
|
};
|
|
61
|
-
|
|
62
40
|
var calculateWidth = function calculateWidth(margin, size) {
|
|
63
41
|
return size === "fillParent" ? "calc(".concat(sizes[size], " - ").concat((0, _utils.getMargin)(margin, "left"), " - ").concat((0, _utils.getMargin)(margin, "right"), ")") : sizes[size];
|
|
64
42
|
};
|
|
65
|
-
|
|
66
43
|
var makeCancelable = function makeCancelable(promise) {
|
|
67
44
|
var hasCanceled_ = false;
|
|
68
45
|
var wrappedPromise = new Promise(function (resolve, reject) {
|
|
@@ -83,129 +60,126 @@ var makeCancelable = function makeCancelable(promise) {
|
|
|
83
60
|
}
|
|
84
61
|
};
|
|
85
62
|
};
|
|
86
|
-
|
|
87
63
|
var hasSuggestions = function hasSuggestions(suggestions) {
|
|
88
64
|
return typeof suggestions === "function" || (suggestions === null || suggestions === void 0 ? void 0 : suggestions.length) > 0;
|
|
89
65
|
};
|
|
90
|
-
|
|
91
66
|
var isRequired = function isRequired(value, optional) {
|
|
92
67
|
return value === "" && !optional;
|
|
93
68
|
};
|
|
94
|
-
|
|
95
69
|
var isLengthIncorrect = function isLengthIncorrect(value, minLength, maxLength) {
|
|
96
70
|
return value != null && (value.length < minLength || value.length > maxLength);
|
|
97
71
|
};
|
|
98
|
-
|
|
99
72
|
var isNumberIncorrect = function isNumberIncorrect(value, minNumber, maxNumber) {
|
|
100
73
|
return value < minNumber || value > maxNumber;
|
|
101
74
|
};
|
|
102
|
-
|
|
103
75
|
var patternMismatch = function patternMismatch(pattern, value) {
|
|
104
76
|
return pattern != null && !new RegExp(pattern).test(value);
|
|
105
77
|
};
|
|
106
|
-
|
|
78
|
+
var useWidth = function useWidth(target) {
|
|
79
|
+
var _useState = (0, _react.useState)(0),
|
|
80
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
81
|
+
width = _useState2[0],
|
|
82
|
+
setWidth = _useState2[1];
|
|
83
|
+
(0, _react.useEffect)(function () {
|
|
84
|
+
if (target != null) {
|
|
85
|
+
setWidth(target.getBoundingClientRect().width);
|
|
86
|
+
var triggerObserver = new ResizeObserver(function (entries) {
|
|
87
|
+
var rect = entries[0].target.getBoundingClientRect();
|
|
88
|
+
setWidth(rect === null || rect === void 0 ? void 0 : rect.width);
|
|
89
|
+
});
|
|
90
|
+
triggerObserver.observe(target);
|
|
91
|
+
return function () {
|
|
92
|
+
triggerObserver.unobserve(target);
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
}, [target]);
|
|
96
|
+
return width;
|
|
97
|
+
};
|
|
107
98
|
var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, ref) {
|
|
108
99
|
var label = _ref2.label,
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
100
|
+
_ref2$name = _ref2.name,
|
|
101
|
+
name = _ref2$name === void 0 ? "" : _ref2$name,
|
|
102
|
+
_ref2$defaultValue = _ref2.defaultValue,
|
|
103
|
+
defaultValue = _ref2$defaultValue === void 0 ? "" : _ref2$defaultValue,
|
|
104
|
+
value = _ref2.value,
|
|
105
|
+
helperText = _ref2.helperText,
|
|
106
|
+
_ref2$placeholder = _ref2.placeholder,
|
|
107
|
+
placeholder = _ref2$placeholder === void 0 ? "" : _ref2$placeholder,
|
|
108
|
+
action = _ref2.action,
|
|
109
|
+
_ref2$clearable = _ref2.clearable,
|
|
110
|
+
clearable = _ref2$clearable === void 0 ? false : _ref2$clearable,
|
|
111
|
+
_ref2$disabled = _ref2.disabled,
|
|
112
|
+
disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
|
|
113
|
+
_ref2$readOnly = _ref2.readOnly,
|
|
114
|
+
readOnly = _ref2$readOnly === void 0 ? false : _ref2$readOnly,
|
|
115
|
+
_ref2$optional = _ref2.optional,
|
|
116
|
+
optional = _ref2$optional === void 0 ? false : _ref2$optional,
|
|
117
|
+
_ref2$prefix = _ref2.prefix,
|
|
118
|
+
prefix = _ref2$prefix === void 0 ? "" : _ref2$prefix,
|
|
119
|
+
_ref2$suffix = _ref2.suffix,
|
|
120
|
+
suffix = _ref2$suffix === void 0 ? "" : _ref2$suffix,
|
|
121
|
+
onChange = _ref2.onChange,
|
|
122
|
+
onBlur = _ref2.onBlur,
|
|
123
|
+
error = _ref2.error,
|
|
124
|
+
suggestions = _ref2.suggestions,
|
|
125
|
+
pattern = _ref2.pattern,
|
|
126
|
+
minLength = _ref2.minLength,
|
|
127
|
+
maxLength = _ref2.maxLength,
|
|
128
|
+
_ref2$autocomplete = _ref2.autocomplete,
|
|
129
|
+
autocomplete = _ref2$autocomplete === void 0 ? "off" : _ref2$autocomplete,
|
|
130
|
+
margin = _ref2.margin,
|
|
131
|
+
_ref2$size = _ref2.size,
|
|
132
|
+
size = _ref2$size === void 0 ? "medium" : _ref2$size,
|
|
133
|
+
_ref2$tabIndex = _ref2.tabIndex,
|
|
134
|
+
tabIndex = _ref2$tabIndex === void 0 ? 0 : _ref2$tabIndex;
|
|
135
|
+
var _useState3 = (0, _react.useState)("input-".concat((0, _uuid.v4)())),
|
|
136
|
+
_useState4 = (0, _slicedToArray2["default"])(_useState3, 1),
|
|
137
|
+
inputId = _useState4[0];
|
|
147
138
|
var autosuggestId = "suggestions-".concat(inputId);
|
|
148
139
|
var errorId = "error-".concat(inputId);
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
setInnerValue = _useState4[1];
|
|
154
|
-
|
|
155
|
-
var _useState5 = (0, _react.useState)(false),
|
|
156
|
-
_useState6 = (0, _slicedToArray2["default"])(_useState5, 2),
|
|
157
|
-
isOpen = _useState6[0],
|
|
158
|
-
changeIsOpen = _useState6[1];
|
|
159
|
-
|
|
140
|
+
var _useState5 = (0, _react.useState)(defaultValue),
|
|
141
|
+
_useState6 = (0, _slicedToArray2["default"])(_useState5, 2),
|
|
142
|
+
innerValue = _useState6[0],
|
|
143
|
+
setInnerValue = _useState6[1];
|
|
160
144
|
var _useState7 = (0, _react.useState)(false),
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
145
|
+
_useState8 = (0, _slicedToArray2["default"])(_useState7, 2),
|
|
146
|
+
isOpen = _useState8[0],
|
|
147
|
+
changeIsOpen = _useState8[1];
|
|
165
148
|
var _useState9 = (0, _react.useState)(false),
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
149
|
+
_useState10 = (0, _slicedToArray2["default"])(_useState9, 2),
|
|
150
|
+
isSearching = _useState10[0],
|
|
151
|
+
changeIsSearching = _useState10[1];
|
|
152
|
+
var _useState11 = (0, _react.useState)(false),
|
|
153
|
+
_useState12 = (0, _slicedToArray2["default"])(_useState11, 2),
|
|
154
|
+
isAutosuggestError = _useState12[0],
|
|
155
|
+
changeIsAutosuggestError = _useState12[1];
|
|
156
|
+
var _useState13 = (0, _react.useState)([]),
|
|
157
|
+
_useState14 = (0, _slicedToArray2["default"])(_useState13, 2),
|
|
158
|
+
filteredSuggestions = _useState14[0],
|
|
159
|
+
changeFilteredSuggestions = _useState14[1];
|
|
160
|
+
var _useState15 = (0, _react.useState)(-1),
|
|
161
|
+
_useState16 = (0, _slicedToArray2["default"])(_useState15, 2),
|
|
162
|
+
visualFocusIndex = _useState16[0],
|
|
163
|
+
changeVisualFocusIndex = _useState16[1];
|
|
180
164
|
var inputRef = (0, _react.useRef)(null);
|
|
165
|
+
var inputContainerRef = (0, _react.useRef)(null);
|
|
181
166
|
var actionRef = (0, _react.useRef)(null);
|
|
167
|
+
var width = useWidth(inputContainerRef.current);
|
|
182
168
|
var colorsTheme = (0, _useTheme["default"])();
|
|
183
169
|
var translatedLabels = (0, _useTranslatedLabels["default"])();
|
|
184
|
-
var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
|
|
185
170
|
var numberInputContext = (0, _react.useContext)(_NumberInput.NumberInputContext);
|
|
186
|
-
|
|
187
171
|
var getNumberErrorMessage = function getNumberErrorMessage(value) {
|
|
188
172
|
if (value < (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber)) return translatedLabels.numberInput.valueGreaterThanOrEqualToErrorMessage(numberInputContext.minNumber);else if (value > (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber)) return translatedLabels.numberInput.valueLessThanOrEqualToErrorMessage(numberInputContext.maxNumber);
|
|
189
173
|
};
|
|
190
|
-
|
|
191
|
-
var getTextInputWidth = (0, _react.useCallback)(function () {
|
|
192
|
-
var _inputRef$current, _inputRef$current$par;
|
|
193
|
-
|
|
194
|
-
var rect = inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 ? void 0 : (_inputRef$current$par = _inputRef$current.parentElement) === null || _inputRef$current$par === void 0 ? void 0 : _inputRef$current$par.getBoundingClientRect();
|
|
195
|
-
return rect === null || rect === void 0 ? void 0 : rect.width;
|
|
196
|
-
}, []);
|
|
197
|
-
|
|
198
174
|
var openSuggestions = function openSuggestions() {
|
|
199
175
|
hasSuggestions(suggestions) && changeIsOpen(true);
|
|
200
176
|
};
|
|
201
|
-
|
|
202
177
|
var closeSuggestions = function closeSuggestions() {
|
|
203
178
|
if (hasSuggestions(suggestions)) {
|
|
204
179
|
changeIsOpen(false);
|
|
205
180
|
changeVisualFocusIndex(-1);
|
|
206
181
|
}
|
|
207
182
|
};
|
|
208
|
-
|
|
209
183
|
var changeValue = function changeValue(newValue) {
|
|
210
184
|
var formattedValue = typeof newValue === "number" ? newValue.toString() : newValue;
|
|
211
185
|
value !== null && value !== void 0 ? value : setInnerValue(formattedValue);
|
|
@@ -225,21 +199,41 @@ var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, re
|
|
|
225
199
|
value: formattedValue
|
|
226
200
|
});
|
|
227
201
|
};
|
|
228
|
-
|
|
202
|
+
var decrementNumber = function decrementNumber() {
|
|
203
|
+
var currentValue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : value !== null && value !== void 0 ? value : innerValue;
|
|
204
|
+
if (!disabled && !readOnly) {
|
|
205
|
+
var numberValue = Number(currentValue);
|
|
206
|
+
var steppedValue = Math.round((numberValue - (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.stepNumber) + Number.EPSILON) * 100) / 100;
|
|
207
|
+
if (currentValue !== "") {
|
|
208
|
+
if (numberValue < (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber) || steppedValue < (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber)) changeValue(numberValue);else if (numberValue > (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber)) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber);else if (numberValue === (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber)) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber);else changeValue(steppedValue);
|
|
209
|
+
} else {
|
|
210
|
+
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber) >= 0) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber);else if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber) < 0) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber);else changeValue(-numberInputContext.stepNumber);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
};
|
|
214
|
+
var incrementNumber = function incrementNumber() {
|
|
215
|
+
var currentValue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : value !== null && value !== void 0 ? value : innerValue;
|
|
216
|
+
if (!disabled && !readOnly) {
|
|
217
|
+
var numberValue = Number(currentValue);
|
|
218
|
+
var steppedValue = Math.round((numberValue + (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.stepNumber) + Number.EPSILON) * 100) / 100;
|
|
219
|
+
if (currentValue !== "") {
|
|
220
|
+
if (numberValue > (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber) || steppedValue > (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber)) changeValue(numberValue);else if (numberValue < (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber)) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber);else if (numberValue === (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber)) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber);else changeValue(steppedValue);
|
|
221
|
+
} else {
|
|
222
|
+
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber) > 0) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber);else if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber) <= 0) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber);else changeValue(numberInputContext.stepNumber);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
};
|
|
229
226
|
var handleInputContainerOnClick = function handleInputContainerOnClick() {
|
|
230
227
|
document.activeElement !== actionRef.current && inputRef.current.focus();
|
|
231
228
|
};
|
|
232
|
-
|
|
233
229
|
var handleInputContainerOnMouseDown = function handleInputContainerOnMouseDown(event) {
|
|
234
230
|
// Avoid input to lose the focus when the container is pressed
|
|
235
231
|
document.activeElement === inputRef.current && event.preventDefault();
|
|
236
232
|
};
|
|
237
|
-
|
|
238
233
|
var handleInputOnChange = function handleInputOnChange(event) {
|
|
239
234
|
openSuggestions();
|
|
240
235
|
changeValue(event.target.value);
|
|
241
236
|
};
|
|
242
|
-
|
|
243
237
|
var handleInputOnBlur = function handleInputOnBlur(event) {
|
|
244
238
|
closeSuggestions();
|
|
245
239
|
if (isRequired(event.target.value, optional)) onBlur === null || onBlur === void 0 ? void 0 : onBlur({
|
|
@@ -258,116 +252,72 @@ var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, re
|
|
|
258
252
|
value: event.target.value
|
|
259
253
|
});
|
|
260
254
|
};
|
|
261
|
-
|
|
262
255
|
var handleInputOnKeyDown = function handleInputOnKeyDown(event) {
|
|
263
256
|
switch (event.key) {
|
|
264
257
|
case "Down":
|
|
265
258
|
case "ArrowDown":
|
|
266
259
|
event.preventDefault();
|
|
267
|
-
|
|
268
|
-
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number") {
|
|
269
|
-
decrementNumber();
|
|
270
|
-
} else {
|
|
260
|
+
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number") decrementNumber();else {
|
|
271
261
|
openSuggestions();
|
|
272
|
-
|
|
273
262
|
if (!isAutosuggestError && !isSearching && filteredSuggestions.length > 0) {
|
|
274
263
|
changeVisualFocusIndex(function (visualFocusedSuggIndex) {
|
|
275
264
|
if (visualFocusedSuggIndex < filteredSuggestions.length - 1) return visualFocusedSuggIndex + 1;else if (visualFocusedSuggIndex === filteredSuggestions.length - 1) return 0;
|
|
276
265
|
});
|
|
277
266
|
}
|
|
278
267
|
}
|
|
279
|
-
|
|
280
268
|
break;
|
|
281
|
-
|
|
282
269
|
case "Up":
|
|
283
270
|
case "ArrowUp":
|
|
284
271
|
event.preventDefault();
|
|
285
|
-
|
|
286
|
-
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number") {
|
|
287
|
-
incrementNumber();
|
|
288
|
-
} else {
|
|
272
|
+
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number") incrementNumber();else {
|
|
289
273
|
openSuggestions();
|
|
290
|
-
|
|
291
274
|
if (!isAutosuggestError && !isSearching && filteredSuggestions.length > 0) {
|
|
292
275
|
changeVisualFocusIndex(function (visualFocusedSuggIndex) {
|
|
293
276
|
if (visualFocusedSuggIndex === 0 || visualFocusedSuggIndex === -1) return filteredSuggestions.length > 0 ? filteredSuggestions.length - 1 : suggestions.length - 1;else return visualFocusedSuggIndex - 1;
|
|
294
277
|
});
|
|
295
278
|
}
|
|
296
279
|
}
|
|
297
|
-
|
|
298
280
|
break;
|
|
299
|
-
|
|
300
281
|
case "Esc":
|
|
301
282
|
case "Escape":
|
|
302
283
|
event.preventDefault();
|
|
303
|
-
|
|
304
284
|
if (hasSuggestions(suggestions)) {
|
|
305
285
|
changeValue("");
|
|
306
286
|
isOpen && closeSuggestions();
|
|
307
287
|
}
|
|
308
|
-
|
|
309
288
|
break;
|
|
310
|
-
|
|
311
289
|
case "Enter":
|
|
312
290
|
if (hasSuggestions(suggestions) && !isSearching) {
|
|
313
291
|
var validFocusedSuggestion = filteredSuggestions.length > 0 && visualFocusIndex >= 0 && visualFocusIndex < filteredSuggestions.length;
|
|
314
292
|
validFocusedSuggestion && changeValue(filteredSuggestions[visualFocusIndex]);
|
|
315
293
|
isOpen && closeSuggestions();
|
|
316
294
|
}
|
|
317
|
-
|
|
318
295
|
break;
|
|
319
296
|
}
|
|
320
297
|
};
|
|
321
|
-
|
|
298
|
+
var handleNumberInputWheel = function handleNumberInputWheel(event) {
|
|
299
|
+
if (document.activeElement === inputRef.current) event.deltaY < 0 ? incrementNumber(inputRef.current.value) : decrementNumber(inputRef.current.value);
|
|
300
|
+
};
|
|
322
301
|
var handleClearActionOnClick = function handleClearActionOnClick() {
|
|
323
302
|
changeValue("");
|
|
324
303
|
inputRef.current.focus();
|
|
325
304
|
suggestions && closeSuggestions();
|
|
326
305
|
};
|
|
327
|
-
|
|
328
306
|
var handleDecrementActionOnClick = function handleDecrementActionOnClick() {
|
|
329
307
|
decrementNumber();
|
|
330
308
|
inputRef.current.focus();
|
|
331
309
|
};
|
|
332
|
-
|
|
333
310
|
var handleIncrementActionOnClick = function handleIncrementActionOnClick() {
|
|
334
311
|
incrementNumber();
|
|
335
312
|
inputRef.current.focus();
|
|
336
313
|
};
|
|
337
|
-
|
|
338
314
|
var setNumberProps = function setNumberProps(type, min, max, step) {
|
|
339
|
-
var _inputRef$
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current4 = inputRef.current) === null || _inputRef$current4 === void 0 ? void 0 : _inputRef$current4.setAttribute("
|
|
344
|
-
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current5 = inputRef.current) === null || _inputRef$current5 === void 0 ? void 0 : _inputRef$current5.setAttribute("type", type);
|
|
345
|
-
};
|
|
346
|
-
|
|
347
|
-
var decrementNumber = function decrementNumber() {
|
|
348
|
-
var currentValue = value !== null && value !== void 0 ? value : innerValue;
|
|
349
|
-
var numberValue = Number(currentValue);
|
|
350
|
-
var steppedValue = Math.round((numberValue - (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.stepNumber) + Number.EPSILON) * 100) / 100;
|
|
351
|
-
|
|
352
|
-
if (currentValue !== "") {
|
|
353
|
-
if (numberValue < (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber) || steppedValue < (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber)) changeValue(numberValue);else if (numberValue > (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber)) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber);else if (numberValue === (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber)) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber);else changeValue(steppedValue);
|
|
354
|
-
} else {
|
|
355
|
-
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber) >= 0) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber);else if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber) < 0) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber);else changeValue(-numberInputContext.stepNumber);
|
|
356
|
-
}
|
|
357
|
-
};
|
|
358
|
-
|
|
359
|
-
var incrementNumber = function incrementNumber() {
|
|
360
|
-
var currentValue = value !== null && value !== void 0 ? value : innerValue;
|
|
361
|
-
var numberValue = Number(currentValue);
|
|
362
|
-
var steppedValue = Math.round((numberValue + (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.stepNumber) + Number.EPSILON) * 100) / 100;
|
|
363
|
-
|
|
364
|
-
if (currentValue !== "") {
|
|
365
|
-
if (numberValue > (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber) || steppedValue > (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber)) changeValue(numberValue);else if (numberValue < (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber)) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber);else if (numberValue === (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber)) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber);else changeValue(steppedValue);
|
|
366
|
-
} else {
|
|
367
|
-
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber) > 0) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber);else if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber) <= 0) changeValue(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber);else changeValue(numberInputContext.stepNumber);
|
|
368
|
-
}
|
|
315
|
+
var _inputRef$current, _inputRef$current2, _inputRef$current3, _inputRef$current4;
|
|
316
|
+
min && (inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 ? void 0 : _inputRef$current.setAttribute("min", min));
|
|
317
|
+
max && (inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current2 = inputRef.current) === null || _inputRef$current2 === void 0 ? void 0 : _inputRef$current2.setAttribute("max", max));
|
|
318
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current3 = inputRef.current) === null || _inputRef$current3 === void 0 ? void 0 : _inputRef$current3.setAttribute("step", step);
|
|
319
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current4 = inputRef.current) === null || _inputRef$current4 === void 0 ? void 0 : _inputRef$current4.setAttribute("type", type);
|
|
369
320
|
};
|
|
370
|
-
|
|
371
321
|
(0, _react.useEffect)(function () {
|
|
372
322
|
if (typeof suggestions === "function") {
|
|
373
323
|
changeIsSearching(true);
|
|
@@ -393,7 +343,6 @@ var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, re
|
|
|
393
343
|
}));
|
|
394
344
|
changeVisualFocusIndex(-1);
|
|
395
345
|
}
|
|
396
|
-
|
|
397
346
|
numberInputContext != null && setNumberProps(numberInputContext.typeNumber, numberInputContext.minNumber, numberInputContext.maxNumber, numberInputContext.stepNumber);
|
|
398
347
|
}, [value, innerValue, suggestions, numberInputContext]);
|
|
399
348
|
return /*#__PURE__*/_react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
@@ -405,21 +354,10 @@ var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, re
|
|
|
405
354
|
}, label && /*#__PURE__*/_react["default"].createElement(Label, {
|
|
406
355
|
htmlFor: inputId,
|
|
407
356
|
disabled: disabled,
|
|
408
|
-
backgroundType: backgroundType,
|
|
409
357
|
hasHelperText: helperText ? true : false
|
|
410
358
|
}, label, " ", optional && /*#__PURE__*/_react["default"].createElement(OptionalLabel, null, translatedLabels.formFields.optionalLabel)), helperText && /*#__PURE__*/_react["default"].createElement(HelperText, {
|
|
411
|
-
disabled: disabled
|
|
412
|
-
|
|
413
|
-
}, helperText), /*#__PURE__*/_react["default"].createElement(InputContainer, {
|
|
414
|
-
error: error ? true : false,
|
|
415
|
-
disabled: disabled,
|
|
416
|
-
backgroundType: backgroundType,
|
|
417
|
-
onClick: handleInputContainerOnClick,
|
|
418
|
-
onMouseDown: handleInputContainerOnMouseDown
|
|
419
|
-
}, prefix && /*#__PURE__*/_react["default"].createElement(Prefix, {
|
|
420
|
-
disabled: disabled,
|
|
421
|
-
backgroundType: backgroundType
|
|
422
|
-
}, prefix), /*#__PURE__*/_react["default"].createElement(AutosuggestWrapper, {
|
|
359
|
+
disabled: disabled
|
|
360
|
+
}, helperText), /*#__PURE__*/_react["default"].createElement(AutosuggestWrapper, {
|
|
423
361
|
condition: hasSuggestions(suggestions),
|
|
424
362
|
wrapper: function wrapper(children) {
|
|
425
363
|
return /*#__PURE__*/_react["default"].createElement(Popover.Root, {
|
|
@@ -427,8 +365,11 @@ var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, re
|
|
|
427
365
|
}, /*#__PURE__*/_react["default"].createElement(Popover.Trigger, {
|
|
428
366
|
asChild: true,
|
|
429
367
|
"aria-controls": undefined
|
|
430
|
-
}, children), /*#__PURE__*/_react["default"].createElement(Popover.Content, {
|
|
368
|
+
}, children), /*#__PURE__*/_react["default"].createElement(Popover.Portal, null, /*#__PURE__*/_react["default"].createElement(Popover.Content, {
|
|
431
369
|
sideOffset: 5,
|
|
370
|
+
style: {
|
|
371
|
+
zIndex: "2147483647"
|
|
372
|
+
},
|
|
432
373
|
onOpenAutoFocus: function onOpenAutoFocus(event) {
|
|
433
374
|
// Avoid select to lose focus when the list is opened
|
|
434
375
|
event.preventDefault();
|
|
@@ -449,9 +390,24 @@ var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, re
|
|
|
449
390
|
changeValue(suggestion);
|
|
450
391
|
closeSuggestions();
|
|
451
392
|
},
|
|
452
|
-
|
|
453
|
-
|
|
393
|
+
styles: {
|
|
394
|
+
width: width
|
|
395
|
+
}
|
|
396
|
+
}))));
|
|
454
397
|
}
|
|
398
|
+
}, /*#__PURE__*/_react["default"].createElement(InputContainer, {
|
|
399
|
+
error: error ? true : false,
|
|
400
|
+
disabled: disabled,
|
|
401
|
+
readOnly: readOnly,
|
|
402
|
+
onClick: handleInputContainerOnClick,
|
|
403
|
+
onMouseDown: handleInputContainerOnMouseDown,
|
|
404
|
+
ref: inputContainerRef
|
|
405
|
+
}, prefix && /*#__PURE__*/_react["default"].createElement(Prefix, {
|
|
406
|
+
disabled: disabled
|
|
407
|
+
}, prefix), /*#__PURE__*/_react["default"].createElement(_Flex["default"], {
|
|
408
|
+
gap: "0.25rem",
|
|
409
|
+
alignItems: "center",
|
|
410
|
+
grow: 1
|
|
455
411
|
}, /*#__PURE__*/_react["default"].createElement(Input, {
|
|
456
412
|
id: inputId,
|
|
457
413
|
name: name,
|
|
@@ -459,14 +415,15 @@ var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, re
|
|
|
459
415
|
placeholder: placeholder,
|
|
460
416
|
onBlur: handleInputOnBlur,
|
|
461
417
|
onChange: handleInputOnChange,
|
|
462
|
-
onFocus: openSuggestions,
|
|
463
|
-
onKeyDown: handleInputOnKeyDown,
|
|
418
|
+
onFocus: !readOnly ? openSuggestions : undefined,
|
|
419
|
+
onKeyDown: !readOnly ? handleInputOnKeyDown : undefined,
|
|
464
420
|
onMouseDown: function onMouseDown(event) {
|
|
465
421
|
event.stopPropagation();
|
|
466
422
|
},
|
|
423
|
+
onWheel: (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number" ? handleNumberInputWheel : undefined,
|
|
467
424
|
disabled: disabled,
|
|
425
|
+
readOnly: readOnly,
|
|
468
426
|
ref: inputRef,
|
|
469
|
-
backgroundType: backgroundType,
|
|
470
427
|
pattern: pattern,
|
|
471
428
|
minLength: minLength,
|
|
472
429
|
maxLength: maxLength,
|
|
@@ -481,68 +438,42 @@ var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref2, re
|
|
|
481
438
|
"aria-activedescendant": hasSuggestions(suggestions) && isOpen && visualFocusIndex !== -1 ? "suggestion-".concat(visualFocusIndex) : undefined,
|
|
482
439
|
"aria-invalid": error ? true : false,
|
|
483
440
|
"aria-errormessage": error ? errorId : undefined,
|
|
484
|
-
"aria-required":
|
|
485
|
-
})
|
|
486
|
-
backgroundType: backgroundType,
|
|
441
|
+
"aria-required": !disabled && !optional
|
|
442
|
+
}), !disabled && error && /*#__PURE__*/_react["default"].createElement(ErrorIcon, {
|
|
487
443
|
"aria-label": "Error"
|
|
488
|
-
}, _Icons["default"].error), !disabled && clearable && (value !== null && value !== void 0 ? value : innerValue).length > 0 && /*#__PURE__*/_react["default"].createElement(
|
|
489
|
-
"aria-label": translatedLabels.textInput.clearFieldActionTitle,
|
|
444
|
+
}, _Icons["default"].error), !disabled && !readOnly && clearable && (value !== null && value !== void 0 ? value : innerValue).length > 0 && /*#__PURE__*/_react["default"].createElement(_ActionIcon["default"], {
|
|
490
445
|
onClick: handleClearActionOnClick,
|
|
491
|
-
|
|
492
|
-
event.stopPropagation();
|
|
493
|
-
},
|
|
446
|
+
icon: _Icons["default"].clear,
|
|
494
447
|
tabIndex: tabIndex,
|
|
495
|
-
title: translatedLabels.textInput.clearFieldActionTitle
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
"aria-label": translatedLabels.numberInput.decrementValueTitle,
|
|
500
|
-
disabled: disabled,
|
|
501
|
-
onClick: handleDecrementActionOnClick,
|
|
502
|
-
onMouseDown: function onMouseDown(event) {
|
|
503
|
-
event.stopPropagation();
|
|
504
|
-
},
|
|
505
|
-
ref: actionRef,
|
|
448
|
+
title: translatedLabels.textInput.clearFieldActionTitle
|
|
449
|
+
}), (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number" && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_ActionIcon["default"], {
|
|
450
|
+
onClick: !readOnly ? handleDecrementActionOnClick : undefined,
|
|
451
|
+
icon: _Icons["default"].decrement,
|
|
506
452
|
tabIndex: tabIndex,
|
|
507
|
-
title: translatedLabels.numberInput.decrementValueTitle,
|
|
508
|
-
type: "button",
|
|
509
|
-
backgroundType: backgroundType
|
|
510
|
-
}, _Icons["default"].decrement), /*#__PURE__*/_react["default"].createElement(Action, {
|
|
511
|
-
"aria-label": translatedLabels.numberInput.incrementValueTitle,
|
|
512
|
-
disabled: disabled,
|
|
513
|
-
onClick: handleIncrementActionOnClick,
|
|
514
|
-
onMouseDown: function onMouseDown(event) {
|
|
515
|
-
event.stopPropagation();
|
|
516
|
-
},
|
|
517
453
|
ref: actionRef,
|
|
454
|
+
title: translatedLabels.numberInput.decrementValueTitle,
|
|
455
|
+
disabled: disabled
|
|
456
|
+
}), /*#__PURE__*/_react["default"].createElement(_ActionIcon["default"], {
|
|
457
|
+
onClick: !readOnly ? handleIncrementActionOnClick : undefined,
|
|
458
|
+
icon: _Icons["default"].increment,
|
|
518
459
|
tabIndex: tabIndex,
|
|
519
|
-
title: translatedLabels.numberInput.incrementValueTitle,
|
|
520
|
-
type: "button",
|
|
521
|
-
backgroundType: backgroundType
|
|
522
|
-
}, _Icons["default"].increment)), action && /*#__PURE__*/_react["default"].createElement(Action, {
|
|
523
|
-
"aria-label": action.title,
|
|
524
|
-
disabled: disabled,
|
|
525
|
-
onClick: action.onClick,
|
|
526
|
-
onMouseDown: function onMouseDown(event) {
|
|
527
|
-
event.stopPropagation();
|
|
528
|
-
},
|
|
529
460
|
ref: actionRef,
|
|
461
|
+
title: translatedLabels.numberInput.incrementValueTitle,
|
|
462
|
+
disabled: disabled
|
|
463
|
+
})), action && /*#__PURE__*/_react["default"].createElement(_ActionIcon["default"], {
|
|
464
|
+
onClick: !readOnly ? action.onClick : undefined,
|
|
465
|
+
icon: action.icon,
|
|
530
466
|
tabIndex: tabIndex,
|
|
467
|
+
ref: actionRef,
|
|
531
468
|
title: action.title,
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
}) : action.icon), suffix && /*#__PURE__*/_react["default"].createElement(Suffix, {
|
|
537
|
-
disabled: disabled,
|
|
538
|
-
backgroundType: backgroundType
|
|
539
|
-
}, suffix)), !disabled && typeof error === "string" && /*#__PURE__*/_react["default"].createElement(Error, {
|
|
469
|
+
disabled: disabled
|
|
470
|
+
})), suffix && /*#__PURE__*/_react["default"].createElement(Suffix, {
|
|
471
|
+
disabled: disabled
|
|
472
|
+
}, suffix))), !disabled && typeof error === "string" && /*#__PURE__*/_react["default"].createElement(Error, {
|
|
540
473
|
id: errorId,
|
|
541
|
-
backgroundType: backgroundType,
|
|
542
474
|
"aria-live": error ? "assertive" : "off"
|
|
543
475
|
}, error)));
|
|
544
476
|
});
|
|
545
|
-
|
|
546
477
|
var TextInputContainer = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n width: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"])), function (props) {
|
|
547
478
|
return calculateWidth(props.margin, props.size);
|
|
548
479
|
}, function (props) {
|
|
@@ -556,9 +487,8 @@ var TextInputContainer = _styledComponents["default"].div(_templateObject || (_t
|
|
|
556
487
|
}, function (props) {
|
|
557
488
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
558
489
|
});
|
|
559
|
-
|
|
560
490
|
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) {
|
|
561
|
-
return props.disabled ? props.
|
|
491
|
+
return props.disabled ? props.theme.disabledLabelFontColor : props.theme.labelFontColor;
|
|
562
492
|
}, function (props) {
|
|
563
493
|
return props.theme.fontFamily;
|
|
564
494
|
}, function (props) {
|
|
@@ -572,13 +502,11 @@ var Label = _styledComponents["default"].label(_templateObject2 || (_templateObj
|
|
|
572
502
|
}, function (props) {
|
|
573
503
|
return !props.hasHelperText && "margin-bottom: 0.25rem";
|
|
574
504
|
});
|
|
575
|
-
|
|
576
505
|
var OptionalLabel = _styledComponents["default"].span(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n font-weight: ", ";\n"])), function (props) {
|
|
577
506
|
return props.theme.optionalLabelFontWeight;
|
|
578
507
|
});
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledHelperTextFontColorOnDark : props.theme.disabledHelperTextFontColor : props.backgroundType === "dark" ? props.theme.helperTextFontColorOnDark : props.theme.helperTextFontColor;
|
|
508
|
+
var HelperText = _styledComponents["default"].span(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: ", ";\n margin-bottom: 0.25rem;\n"])), function (props) {
|
|
509
|
+
return props.disabled ? props.theme.disabledHelperTextFontColor : props.theme.helperTextFontColor;
|
|
582
510
|
}, function (props) {
|
|
583
511
|
return props.theme.fontFamily;
|
|
584
512
|
}, function (props) {
|
|
@@ -590,21 +518,17 @@ var HelperText = _styledComponents["default"].span(_templateObject4 || (_templat
|
|
|
590
518
|
}, function (props) {
|
|
591
519
|
return props.theme.helperTextLineHeight;
|
|
592
520
|
});
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
if (props.disabled) return props.backgroundType === "dark" ? "background-color: ".concat(props.theme.disabledContainerFillColorOnDark, ";") : "background-color: ".concat(props.theme.disabledContainerFillColor, ";");
|
|
521
|
+
var InputContainer = _styledComponents["default"].div(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n position: relative;\n display: flex;\n align-items: center;\n height: calc(2.5rem - 2px);\n padding: 0 0.5rem;\n\n ", "\n box-shadow: 0 0 0 2px transparent;\n border-radius: 4px;\n border: 1px solid\n ", ";\n ", "\n\n ", ";\n"])), function (props) {
|
|
522
|
+
if (props.disabled) return "background-color: ".concat(props.theme.disabledContainerFillColor, ";");
|
|
596
523
|
}, function (props) {
|
|
597
|
-
if (props.disabled) return props.
|
|
524
|
+
if (props.disabled) return props.theme.disabledBorderColor;else if (props.readOnly) return props.theme.readOnlyBorderColor;else return props.theme.enabledBorderColor;
|
|
598
525
|
}, function (props) {
|
|
599
|
-
return props.error && !props.disabled && "border-color: transparent;\n box-shadow: 0 0 0 2px ".concat(props.
|
|
526
|
+
return props.error && !props.disabled && "border-color: transparent;\n box-shadow: 0 0 0 2px ".concat(props.theme.errorBorderColor, ";\n ");
|
|
600
527
|
}, function (props) {
|
|
601
|
-
return props.disabled
|
|
602
|
-
}, function (props) {
|
|
603
|
-
return !props.disabled && "\n &:hover {\n border-color: ".concat(props.error ? "transparent" : props.backgroundType === "dark" ? props.theme.hoverBorderColorOnDark : props.theme.hoverBorderColor, ";\n ").concat(props.error ? "box-shadow: 0 0 0 2px ".concat(props.backgroundType === "dark" ? props.theme.hoverErrorBorderColorOnDark : props.theme.hoverErrorBorderColor, ";") : "", "\n }\n &:focus-within {\n border-color: transparent;\n box-shadow: 0 0 0 2px ").concat(props.backgroundType === "dark" ? props.theme.focusBorderColorOnDark : props.theme.focusBorderColor, ";\n }\n ");
|
|
528
|
+
return !props.disabled ? "\n &:hover {\n border-color: ".concat(props.error ? "transparent" : props.readOnly ? props.theme.hoverReadOnlyBorderColor : props.theme.hoverBorderColor, ";\n ").concat(props.error ? "box-shadow: 0 0 0 2px ".concat(props.theme.hoverErrorBorderColor, ";") : "", "\n }\n &:focus-within {\n border-color: transparent;\n box-shadow: 0 0 0 2px ").concat(props.theme.focusBorderColor, ";\n }\n ") : "cursor: not-allowed;";
|
|
604
529
|
});
|
|
605
|
-
|
|
606
530
|
var Input = _styledComponents["default"].input(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2["default"])(["\n height: calc(2.5rem - 2px);\n width: 100%;\n background: none;\n border: none;\n outline: none;\n padding: 0 0.5rem;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n\n color: ", ";\n\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: 1.5em;\n ", "\n\n ::placeholder {\n color: ", ";\n }\n"])), function (props) {
|
|
607
|
-
return props.disabled ? props.
|
|
531
|
+
return props.disabled ? props.theme.disabledValueFontColor : props.theme.valueFontColor;
|
|
608
532
|
}, function (props) {
|
|
609
533
|
return props.theme.fontFamily;
|
|
610
534
|
}, function (props) {
|
|
@@ -616,42 +540,26 @@ var Input = _styledComponents["default"].input(_templateObject6 || (_templateObj
|
|
|
616
540
|
}, function (props) {
|
|
617
541
|
return props.disabled && "cursor: not-allowed;";
|
|
618
542
|
}, function (props) {
|
|
619
|
-
return props.disabled ? props.
|
|
620
|
-
});
|
|
621
|
-
|
|
622
|
-
var Action = _styledComponents["default"].button(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n border: 1px solid transparent;\n border-radius: 2px;\n width: 24px;\n height: 24px;\n padding: 3px;\n margin-left: 0.25rem;\n ", "\n\n box-shadow: 0 0 0 2px transparent;\n background-color: ", ";\n\n color: ", ";\n\n ", "\n\n img, svg {\n width: 16px;\n height: 16px;\n }\n"])), function (props) {
|
|
623
|
-
return props.disabled ? "cursor: not-allowed;" : "cursor: pointer;";
|
|
624
|
-
}, function (props) {
|
|
625
|
-
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledActionBackgroundColorOnDark : props.theme.disabledActionBackgroundColor : props.backgroundType === "dark" ? props.theme.actionBackgroundColorOnDark : props.theme.actionBackgroundColor;
|
|
626
|
-
}, function (props) {
|
|
627
|
-
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledActionIconColorOnDark : props.theme.disabledActionIconColor : props.backgroundType === "dark" ? props.theme.actionIconColorOnDark : props.theme.actionIconColor;
|
|
628
|
-
}, function (props) {
|
|
629
|
-
return !props.disabled && "\n &:focus, \n &:focus-visible {\n outline: none;\n box-shadow: 0 0 0 2px ".concat(props.backgroundType === "dark" ? props.theme.focusActionBorderColorOnDark : props.theme.focusActionBorderColor, ";\n color: ").concat(props.backgroundType === "dark" ? props.theme.focusActionIconColorOnDark : props.theme.focusActionIconColor, ";\n }\n &:hover {\n background-color: ").concat(props.backgroundType === "dark" ? props.theme.hoverActionBackgroundColorOnDark : props.theme.hoverActionBackgroundColor, ";\n color: ").concat(props.backgroundType === "dark" ? props.theme.hoverActionIconColorOnDark : props.theme.hoverActionIconColor, ";\n }\n &:active {\n background-color: ").concat(props.backgroundType === "dark" ? props.theme.activeActionBackgroundColorOnDark : props.theme.activeActionBackgroundColor, ";\n color: ").concat(props.backgroundType === "dark" ? props.theme.activeActionIconColorOnDark : props.theme.activeActionIconColor, ";\n }\n ");
|
|
543
|
+
return props.disabled ? props.theme.disabledPlaceholderFontColor : props.theme.placeholderFontColor;
|
|
630
544
|
});
|
|
631
|
-
|
|
632
|
-
var
|
|
633
|
-
var color = props.disabled ? props.backgroundType === "dark" ? props.theme.disabledPrefixColorOnDark : props.theme.disabledPrefixColor : props.backgroundType === "dark" ? props.theme.prefixColorOnDark : props.theme.prefixColor;
|
|
545
|
+
var Prefix = _styledComponents["default"].span(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n height: 1.5rem;\n line-height: 1.5rem;\n margin-left: 0.25rem;\n padding: 0 0.5rem 0 0;\n ", ";\n font-family: ", ";\n font-size: 1rem;\n pointer-events: none;\n"])), function (props) {
|
|
546
|
+
var color = props.disabled ? props.theme.disabledPrefixColor : props.theme.prefixColor;
|
|
634
547
|
return "color: ".concat(color, "; border-right: 1px solid ").concat(color, ";");
|
|
635
548
|
}, function (props) {
|
|
636
549
|
return props.theme.fontFamily;
|
|
637
550
|
});
|
|
638
|
-
|
|
639
|
-
var
|
|
640
|
-
var color = props.disabled ? props.backgroundType === "dark" ? props.theme.disabledSuffixColorOnDark : props.theme.disabledSuffixColor : props.backgroundType === "dark" ? props.theme.suffixColorOnDark : props.theme.suffixColor;
|
|
551
|
+
var Suffix = _styledComponents["default"].span(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["\n height: 1.5rem;\n line-height: 1.5rem;\n margin: 0 0.25rem;\n padding: 0 0 0 0.5rem;\n ", ";\n font-family: ", ";\n font-size: 1rem;\n pointer-events: none;\n"])), function (props) {
|
|
552
|
+
var color = props.disabled ? props.theme.disabledSuffixColor : props.theme.suffixColor;
|
|
641
553
|
return "color: ".concat(color, "; border-left: 1px solid ").concat(color, ";");
|
|
642
554
|
}, function (props) {
|
|
643
555
|
return props.theme.fontFamily;
|
|
644
556
|
});
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
return props.backgroundType === "dark" ? props.theme.errorIconColorOnDark : props.theme.errorIconColor;
|
|
557
|
+
var ErrorIcon = _styledComponents["default"].span(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n padding: 3px;\n height: 18px;\n width: 18px;\n color: ", ";\n\n svg {\n line-height: 18px;\n font-size: 1.25rem;\n }\n"])), function (props) {
|
|
558
|
+
return props.theme.errorIconColor;
|
|
648
559
|
});
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
return props.backgroundType === "dark" ? props.theme.errorMessageColorOnDark : props.theme.errorMessageColor;
|
|
560
|
+
var Error = _styledComponents["default"].span(_templateObject10 || (_templateObject10 = (0, _taggedTemplateLiteral2["default"])(["\n min-height: 1.5em;\n color: ", ";\n font-family: ", ";\n font-size: 0.75rem;\n font-weight: 400;\n line-height: 1.5em;\n margin-top: 0.25rem;\n"])), function (props) {
|
|
561
|
+
return props.theme.errorMessageColor;
|
|
652
562
|
}, function (props) {
|
|
653
563
|
return props.theme.fontFamily;
|
|
654
564
|
});
|
|
655
|
-
|
|
656
|
-
var _default = DxcTextInput;
|
|
657
|
-
exports["default"] = _default;
|
|
565
|
+
var _default = exports["default"] = DxcTextInput;
|