@dxc-technology/halstack-react 0.0.0-b3de035 → 0.0.0-b3e1a2f
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 +47 -0
- package/ThemeContext.d.ts +15 -0
- package/ThemeContext.js +243 -0
- package/{dist/V3Select → V3Select}/V3Select.js +35 -129
- package/{dist/V3Select → V3Select}/index.d.ts +0 -0
- package/{dist/V3Textarea → V3Textarea}/V3Textarea.js +12 -16
- package/{dist/V3Textarea → V3Textarea}/index.d.ts +0 -0
- package/accordion/Accordion.d.ts +4 -0
- package/{dist/accordion → accordion}/Accordion.js +37 -132
- package/accordion/Accordion.stories.tsx +307 -0
- package/accordion/types.d.ts +68 -0
- package/accordion/types.js +5 -0
- package/accordion-group/AccordionGroup.d.ts +7 -0
- package/accordion-group/AccordionGroup.js +170 -0
- package/accordion-group/AccordionGroup.stories.tsx +225 -0
- package/accordion-group/types.d.ts +72 -0
- package/accordion-group/types.js +5 -0
- package/alert/Alert.d.ts +4 -0
- package/{dist/alert → alert}/Alert.js +40 -153
- package/alert/Alert.stories.tsx +170 -0
- package/alert/types.d.ts +49 -0
- package/alert/types.js +5 -0
- package/badge/Badge.js +59 -0
- 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 +4 -0
- package/{dist/box → box}/Box.js +15 -45
- package/box/Box.stories.tsx +132 -0
- package/box/types.d.ts +43 -0
- package/box/types.js +5 -0
- package/button/Button.d.ts +4 -0
- package/{dist/button → button}/Button.js +26 -93
- package/button/Button.stories.tsx +274 -0
- package/button/types.d.ts +53 -0
- package/button/types.js +5 -0
- package/card/Card.d.ts +4 -0
- package/{dist/card → card}/Card.js +34 -124
- package/card/Card.stories.tsx +201 -0
- package/card/ice-cream.jpg +0 -0
- package/card/types.d.ts +67 -0
- package/card/types.js +5 -0
- package/checkbox/Checkbox.d.ts +4 -0
- package/{dist/checkbox → checkbox}/Checkbox.js +15 -61
- package/checkbox/Checkbox.stories.tsx +192 -0
- package/checkbox/types.d.ts +60 -0
- package/checkbox/types.js +5 -0
- package/chip/Chip.d.ts +4 -0
- package/{dist/chip → chip}/Chip.js +22 -88
- package/chip/Chip.stories.tsx +121 -0
- package/chip/types.d.ts +53 -0
- package/chip/types.js +5 -0
- package/{dist/common → common}/OpenSans.css +0 -0
- package/{dist/common → common}/RequiredComponent.js +3 -11
- package/{dist/common → common}/fonts/OpenSans-Bold.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-BoldItalic.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-ExtraBold.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-Italic.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-Light.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-LightItalic.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-Regular.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-SemiBold.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
- package/{dist/common → common}/utils.js +0 -0
- package/{dist/common → common}/variables.js +126 -88
- package/{dist/date → date}/Date.js +17 -23
- package/{dist/date → date}/index.d.ts +0 -0
- package/date-input/DateInput.d.ts +4 -0
- package/{dist/date-input → date-input}/DateInput.js +32 -74
- package/date-input/DateInput.stories.tsx +138 -0
- package/date-input/types.d.ts +100 -0
- package/date-input/types.js +5 -0
- package/dialog/Dialog.d.ts +4 -0
- package/{dist/dialog → dialog}/Dialog.js +24 -76
- package/dialog/Dialog.stories.tsx +212 -0
- package/dialog/types.d.ts +43 -0
- package/dialog/types.js +5 -0
- package/dropdown/Dropdown.d.ts +4 -0
- package/{dist/dropdown → dropdown}/Dropdown.js +45 -172
- package/dropdown/Dropdown.stories.tsx +247 -0
- package/dropdown/types.d.ts +89 -0
- package/dropdown/types.js +5 -0
- package/file-input/FileInput.d.ts +4 -0
- package/file-input/FileInput.js +590 -0
- package/file-input/FileInput.stories.tsx +507 -0
- package/file-input/FileItem.d.ts +14 -0
- package/file-input/FileItem.js +184 -0
- package/file-input/types.d.ts +112 -0
- package/file-input/types.js +5 -0
- package/footer/Footer.d.ts +4 -0
- package/footer/Footer.js +260 -0
- package/footer/Footer.stories.tsx +130 -0
- package/footer/Icons.d.ts +2 -0
- package/{dist/footer → footer}/Icons.js +15 -15
- package/footer/types.d.ts +65 -0
- package/footer/types.js +5 -0
- package/header/Header.d.ts +7 -0
- package/{dist/header → header}/Header.js +58 -204
- package/header/Header.stories.tsx +162 -0
- package/header/Icons.d.ts +2 -0
- package/{dist/header → header}/Icons.js +7 -32
- package/header/types.d.ts +47 -0
- package/header/types.js +5 -0
- package/heading/Heading.d.ts +4 -0
- package/{dist/heading → heading}/Heading.js +25 -96
- package/heading/Heading.stories.tsx +54 -0
- package/heading/types.d.ts +33 -0
- package/heading/types.js +5 -0
- package/{dist/input-text → input-text}/Icons.js +2 -2
- package/{dist/input-text → input-text}/InputText.js +38 -132
- package/{dist/input-text → input-text}/index.d.ts +1 -1
- 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/{dist/layout → layout}/ApplicationLayout.js +39 -141
- package/layout/ApplicationLayout.stories.tsx +171 -0
- package/{dist/layout → layout}/Icons.js +7 -7
- package/layout/types.d.ts +57 -0
- package/layout/types.js +5 -0
- package/link/Link.d.ts +3 -0
- package/{dist/link → link}/Link.js +19 -95
- package/link/Link.stories.tsx +146 -0
- package/link/types.d.ts +74 -0
- package/link/types.js +5 -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 +48 -0
- package/{dist/main.js → main.js} +118 -82
- package/number-input/NumberInput.d.ts +4 -0
- package/number-input/NumberInput.js +83 -0
- package/number-input/NumberInput.stories.tsx +115 -0
- package/number-input/NumberInputContext.d.ts +4 -0
- package/{dist/number-input → 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 +30 -17
- package/{dist/paginator → paginator}/Icons.js +9 -9
- package/paginator/Paginator.d.ts +4 -0
- package/paginator/Paginator.js +192 -0
- package/paginator/Paginator.stories.tsx +63 -0
- package/paginator/types.d.ts +38 -0
- package/paginator/types.js +5 -0
- package/password-input/PasswordInput.d.ts +4 -0
- package/{dist/password-input → password-input}/PasswordInput.js +37 -77
- package/password-input/PasswordInput.stories.tsx +131 -0
- package/password-input/types.d.ts +107 -0
- package/password-input/types.js +5 -0
- package/progress-bar/ProgressBar.d.ts +4 -0
- package/{dist/progress-bar → progress-bar}/ProgressBar.js +22 -94
- package/progress-bar/ProgressBar.stories.jsx +58 -0
- package/progress-bar/types.d.ts +37 -0
- package/progress-bar/types.js +5 -0
- package/radio/Radio.d.ts +4 -0
- package/{dist/radio → radio}/Radio.js +17 -52
- package/radio/Radio.stories.tsx +192 -0
- package/radio/types.d.ts +54 -0
- package/radio/types.js +5 -0
- package/radio-group/Radio.d.ts +4 -0
- package/radio-group/Radio.js +130 -0
- package/radio-group/RadioGroup.d.ts +4 -0
- package/radio-group/RadioGroup.js +268 -0
- package/radio-group/RadioGroup.stories.tsx +79 -0
- package/radio-group/types.d.ts +36 -0
- package/radio-group/types.js +5 -0
- package/resultsetTable/ResultsetTable.d.ts +4 -0
- package/{dist/resultsetTable → resultsetTable}/ResultsetTable.js +39 -146
- 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/{dist/select → select}/Select.js +271 -477
- 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/{dist/sidenav → sidenav}/Sidenav.js +21 -64
- 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 +4 -0
- package/{dist/slider → slider}/Slider.js +74 -161
- package/slider/Slider.stories.tsx +177 -0
- package/slider/types.d.ts +78 -0
- package/slider/types.js +5 -0
- package/spinner/Spinner.d.ts +4 -0
- package/spinner/Spinner.js +250 -0
- package/spinner/Spinner.stories.jsx +103 -0
- package/spinner/types.d.ts +32 -0
- package/spinner/types.js +5 -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.d.ts +4 -0
- package/{dist/switch → switch}/Switch.js +28 -71
- package/switch/Switch.stories.tsx +160 -0
- package/switch/types.d.ts +58 -0
- package/switch/types.js +5 -0
- package/table/Table.d.ts +4 -0
- package/{dist/table → table}/Table.js +12 -26
- package/table/Table.stories.jsx +277 -0
- package/table/types.d.ts +21 -0
- package/table/types.js +5 -0
- package/tabs/Tabs.d.ts +4 -0
- package/tabs/Tabs.js +213 -0
- package/tabs/Tabs.stories.tsx +120 -0
- package/tabs/types.d.ts +78 -0
- package/tabs/types.js +5 -0
- package/tag/Tag.d.ts +4 -0
- package/tag/Tag.js +193 -0
- package/tag/Tag.stories.tsx +145 -0
- 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/{dist/text-input → text-input}/TextInput.js +278 -458
- 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/{dist/textarea → textarea}/Textarea.js +38 -123
- package/textarea/Textarea.stories.jsx +136 -0
- package/textarea/types.d.ts +130 -0
- package/textarea/types.js +5 -0
- package/{dist/toggle → toggle}/Toggle.js +16 -50
- package/{dist/toggle → toggle}/index.d.ts +0 -0
- package/toggle-group/ToggleGroup.d.ts +4 -0
- package/{dist/toggle-group → toggle-group}/ToggleGroup.js +35 -148
- package/toggle-group/ToggleGroup.stories.tsx +173 -0
- package/toggle-group/types.d.ts +97 -0
- package/toggle-group/types.js +5 -0
- package/{dist/upload → upload}/Upload.js +11 -15
- package/upload/buttons-upload/ButtonsUpload.js +111 -0
- package/{dist/upload → upload}/buttons-upload/Icons.js +7 -7
- package/upload/dragAndDropArea/DragAndDropArea.js +225 -0
- package/{dist/upload → upload}/dragAndDropArea/Icons.js +6 -6
- package/upload/file-upload/FileToUpload.js +115 -0
- package/{dist/upload → upload}/file-upload/Icons.js +13 -13
- package/{dist/upload → upload}/files-upload/FilesToUpload.js +13 -27
- package/{dist/upload → upload}/index.d.ts +0 -0
- package/{dist/upload → upload}/transaction/Icons.js +31 -31
- package/upload/transaction/Transaction.js +104 -0
- package/upload/transactions/Transactions.js +94 -0
- package/useTheme.d.ts +2 -0
- package/{dist/useTheme.js → useTheme.js} +1 -1
- package/wizard/Wizard.d.ts +4 -0
- package/wizard/Wizard.js +281 -0
- package/wizard/Wizard.stories.tsx +224 -0
- package/wizard/types.d.ts +60 -0
- package/wizard/types.js +5 -0
- package/README.md +0 -66
- package/babel.config.js +0 -8
- package/dist/BackgroundColorContext.js +0 -46
- package/dist/ThemeContext.js +0 -250
- package/dist/accordion/index.d.ts +0 -28
- package/dist/accordion-group/AccordionGroup.js +0 -186
- package/dist/accordion-group/index.d.ts +0 -16
- package/dist/alert/index.d.ts +0 -51
- package/dist/badge/Badge.js +0 -63
- package/dist/box/index.d.ts +0 -25
- package/dist/button/index.d.ts +0 -24
- package/dist/card/index.d.ts +0 -22
- package/dist/checkbox/index.d.ts +0 -24
- package/dist/chip/index.d.ts +0 -22
- package/dist/date-input/index.d.ts +0 -95
- package/dist/dialog/index.d.ts +0 -18
- package/dist/dropdown/index.d.ts +0 -26
- package/dist/file-input/FileInput.js +0 -644
- package/dist/file-input/FileItem.js +0 -287
- package/dist/file-input/index.d.ts +0 -81
- package/dist/footer/Footer.js +0 -421
- package/dist/footer/index.d.ts +0 -25
- package/dist/header/index.d.ts +0 -25
- package/dist/heading/index.d.ts +0 -17
- package/dist/link/index.d.ts +0 -23
- package/dist/main.d.ts +0 -40
- package/dist/number-input/NumberInput.js +0 -136
- package/dist/number-input/index.d.ts +0 -113
- package/dist/paginator/Paginator.js +0 -283
- package/dist/paginator/index.d.ts +0 -20
- package/dist/password-input/index.d.ts +0 -94
- package/dist/progress-bar/index.d.ts +0 -18
- package/dist/radio/index.d.ts +0 -23
- package/dist/resultsetTable/index.d.ts +0 -19
- package/dist/select/index.d.ts +0 -53
- package/dist/sidenav/index.d.ts +0 -13
- package/dist/slider/index.d.ts +0 -29
- package/dist/spinner/Spinner.js +0 -381
- package/dist/spinner/index.d.ts +0 -17
- package/dist/switch/index.d.ts +0 -24
- package/dist/table/index.d.ts +0 -13
- package/dist/tabs/Tabs.js +0 -343
- package/dist/tabs/index.d.ts +0 -19
- package/dist/tag/Tag.js +0 -282
- package/dist/tag/index.d.ts +0 -24
- package/dist/text-input/index.d.ts +0 -135
- package/dist/textarea/index.d.ts +0 -117
- package/dist/toggle-group/index.d.ts +0 -21
- package/dist/upload/buttons-upload/ButtonsUpload.js +0 -135
- package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -329
- package/dist/upload/file-upload/FileToUpload.js +0 -189
- package/dist/upload/transaction/Transaction.js +0 -148
- package/dist/upload/transactions/Transactions.js +0 -138
- package/dist/wizard/Icons.js +0 -65
- package/dist/wizard/Wizard.js +0 -405
- package/dist/wizard/index.d.ts +0 -18
- package/test/Accordion.test.js +0 -33
- package/test/AccordionGroup.test.js +0 -125
- package/test/Alert.test.js +0 -53
- package/test/Box.test.js +0 -10
- package/test/Button.test.js +0 -18
- package/test/Card.test.js +0 -30
- package/test/Checkbox.test.js +0 -45
- package/test/Chip.test.js +0 -25
- package/test/Date.test.js +0 -395
- package/test/DateInput.test.js +0 -242
- package/test/Dialog.test.js +0 -23
- package/test/Dropdown.test.js +0 -145
- package/test/FileInput.test.js +0 -201
- package/test/Footer.test.js +0 -94
- package/test/Header.test.js +0 -34
- package/test/Heading.test.js +0 -83
- package/test/InputText.test.js +0 -248
- package/test/Link.test.js +0 -43
- package/test/NumberInput.test.js +0 -259
- package/test/Paginator.test.js +0 -177
- package/test/PasswordInput.test.js +0 -83
- package/test/ProgressBar.test.js +0 -35
- package/test/Radio.test.js +0 -37
- package/test/ResultsetTable.test.js +0 -329
- package/test/Sidenav.test.js +0 -45
- package/test/Slider.test.js +0 -74
- package/test/Spinner.test.js +0 -32
- package/test/Switch.test.js +0 -45
- package/test/Table.test.js +0 -36
- package/test/Tabs.test.js +0 -109
- package/test/Tag.test.js +0 -32
- package/test/TextInput.test.js +0 -732
- package/test/Textarea.test.js +0 -193
- package/test/ToggleGroup.test.js +0 -85
- package/test/Upload.test.js +0 -60
- package/test/V3Select.test.js +0 -212
- package/test/V3TextArea.test.js +0 -51
- package/test/Wizard.test.js +0 -130
- package/test/mocks/pngMock.js +0 -1
- package/test/mocks/svgMock.js +0 -1
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
|
4
|
-
|
|
5
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
6
4
|
|
|
5
|
+
var _typeof3 = require("@babel/runtime/helpers/typeof");
|
|
6
|
+
|
|
7
7
|
Object.defineProperty(exports, "__esModule", {
|
|
8
8
|
value: true
|
|
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"));
|
|
@@ -21,9 +19,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
21
19
|
|
|
22
20
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
23
21
|
|
|
24
|
-
var _useTheme = _interopRequireDefault(require("../useTheme
|
|
25
|
-
|
|
26
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
22
|
+
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
27
23
|
|
|
28
24
|
var _variables = require("../common/variables.js");
|
|
29
25
|
|
|
@@ -31,179 +27,63 @@ var _utils = require("../common/utils.js");
|
|
|
31
27
|
|
|
32
28
|
var _uuid = require("uuid");
|
|
33
29
|
|
|
34
|
-
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext
|
|
35
|
-
|
|
36
|
-
var _NumberInputContext = _interopRequireDefault(require("../number-input/NumberInputContext.js"));
|
|
37
|
-
|
|
38
|
-
function _templateObject17() {
|
|
39
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n padding: calc((39px - 1.75em) / 2) 0 calc((39px - 1.75em) / 2) 1em;\n align-items: center;\n font-size: 0.875rem;\n line-height: 1.75em;\n"]);
|
|
40
|
-
|
|
41
|
-
_templateObject17 = function _templateObject17() {
|
|
42
|
-
return data;
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
return data;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
function _templateObject16() {
|
|
49
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n margin-right: 0.5rem;\n height: 18px;\n width: 18px;\n color: ", ";\n\n svg {\n line-height: 1.75em;\n font-size: 0.875rem;\n }\n"]);
|
|
50
|
-
|
|
51
|
-
_templateObject16 = function _templateObject16() {
|
|
52
|
-
return data;
|
|
53
|
-
};
|
|
54
|
-
|
|
55
|
-
return data;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
function _templateObject15() {
|
|
59
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n padding: calc((39px - 1.75em) / 2) 0 calc((39px - 1.75em) / 2) 1em;\n color: ", ";\n font-size: 0.875rem;\n line-height: 1.75em;\n"]);
|
|
60
|
-
|
|
61
|
-
_templateObject15 = function _templateObject15() {
|
|
62
|
-
return data;
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
return data;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
function _templateObject14() {
|
|
69
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n padding: calc((39px - 1.75em) / 2) 0 calc((39px - 1.75em) / 2) 1em;\n line-height: 1.75em;\n list-style-type: none;\n cursor: pointer;\n\n ", "\n"]);
|
|
70
|
-
|
|
71
|
-
_templateObject14 = function _templateObject14() {
|
|
72
|
-
return data;
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
return data;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
function _templateObject13() {
|
|
79
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n background-color: ", ";\n position: absolute;\n z-index: 1;\n max-height: 160px;\n overflow: auto;\n top: calc(100% + 4px);\n left: 0;\n margin: 0;\n padding: 0;\n width: 100%;\n box-sizing: border-box;\n cursor: default;\n border-radius: 4px;\n border: 1px solid ", ";\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n"]);
|
|
80
|
-
|
|
81
|
-
_templateObject13 = function _templateObject13() {
|
|
82
|
-
return data;
|
|
83
|
-
};
|
|
84
|
-
|
|
85
|
-
return data;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
function _templateObject12() {
|
|
89
|
-
var data = (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"]);
|
|
90
|
-
|
|
91
|
-
_templateObject12 = function _templateObject12() {
|
|
92
|
-
return data;
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
return data;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
function _templateObject11() {
|
|
99
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n padding: 3px;\n height: 18px;\n width: 18px;\n margin-left: calc(1rem * 0.25);\n color: ", ";\n\n svg {\n line-height: 18px;\n font-size: 1.25rem;\n }\n"]);
|
|
100
|
-
|
|
101
|
-
_templateObject11 = function _templateObject11() {
|
|
102
|
-
return data;
|
|
103
|
-
};
|
|
104
|
-
|
|
105
|
-
return data;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
function _templateObject10() {
|
|
109
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n height: calc(1rem * 1.5);\n line-height: calc(1rem * 1.5);\n margin: 0 calc(1rem * 0.25);\n padding: 0 0 0 calc(1rem * 0.5);\n ", ";\n font-family: ", ";\n font-size: 1rem;\n pointer-events: none;\n"]);
|
|
110
|
-
|
|
111
|
-
_templateObject10 = function _templateObject10() {
|
|
112
|
-
return data;
|
|
113
|
-
};
|
|
114
|
-
|
|
115
|
-
return data;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
function _templateObject9() {
|
|
119
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n height: calc(1rem * 1.5);\n line-height: calc(1rem * 1.5);\n margin-left: calc(1rem * 0.25);\n padding: 0 calc(1rem * 0.5) 0 0;\n ", ";\n font-family: ", ";\n font-size: 1rem;\n pointer-events: none;\n"]);
|
|
120
|
-
|
|
121
|
-
_templateObject9 = function _templateObject9() {
|
|
122
|
-
return data;
|
|
123
|
-
};
|
|
124
|
-
|
|
125
|
-
return data;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
function _templateObject8() {
|
|
129
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n height: 24px;\n width: 24px;\n font-size: 1rem;\n font-family: ", ";\n border: 1px solid transparent;\n border-radius: 2px;\n padding: 3px;\n margin-left: calc(1rem * 0.25);\n ", "\n\n box-shadow: 0 0 0 2px transparent;\n background-color: ", ";\n\n color: ", ";\n\n ", "\n\n svg {\n line-height: 18px;\n }\n"]);
|
|
130
|
-
|
|
131
|
-
_templateObject8 = function _templateObject8() {
|
|
132
|
-
return data;
|
|
133
|
-
};
|
|
134
|
-
|
|
135
|
-
return data;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
function _templateObject7() {
|
|
139
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n width: 16px;\n height: 16px;\n"]);
|
|
140
|
-
|
|
141
|
-
_templateObject7 = function _templateObject7() {
|
|
142
|
-
return data;
|
|
143
|
-
};
|
|
144
|
-
|
|
145
|
-
return data;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
function _templateObject6() {
|
|
149
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n height: calc(calc(1rem * 2.5) - calc(1px * 2));\n width: 100%;\n background: none;\n border: none;\n outline: none;\n padding: 0 calc(1rem * 0.5);\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"]);
|
|
150
|
-
|
|
151
|
-
_templateObject6 = function _templateObject6() {
|
|
152
|
-
return data;
|
|
153
|
-
};
|
|
154
|
-
|
|
155
|
-
return data;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
function _templateObject5() {
|
|
159
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n position: relative;\n align-items: center;\n height: calc(calc(1rem * 2.5) - calc(1px * 2));\n margin: calc(1rem * 0.25) 0;\n padding: 0 calc(1rem * 0.5);\n\n ", "\n box-shadow: 0 0 0 2px transparent;\n border-radius: 4px;\n border: 1px solid\n ", ";\n ", "\n ", ";\n\n ", ";\n"]);
|
|
160
|
-
|
|
161
|
-
_templateObject5 = function _templateObject5() {
|
|
162
|
-
return data;
|
|
163
|
-
};
|
|
164
|
-
|
|
165
|
-
return data;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
function _templateObject4() {
|
|
169
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: ", ";\n"]);
|
|
170
|
-
|
|
171
|
-
_templateObject4 = function _templateObject4() {
|
|
172
|
-
return data;
|
|
173
|
-
};
|
|
174
|
-
|
|
175
|
-
return data;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
function _templateObject3() {
|
|
179
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n font-weight: ", ";\n"]);
|
|
180
|
-
|
|
181
|
-
_templateObject3 = function _templateObject3() {
|
|
182
|
-
return data;
|
|
183
|
-
};
|
|
184
|
-
|
|
185
|
-
return data;
|
|
186
|
-
}
|
|
30
|
+
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext"));
|
|
187
31
|
|
|
188
|
-
|
|
189
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: ", ";\n"]);
|
|
32
|
+
var _NumberInputContext = _interopRequireDefault(require("../number-input/NumberInputContext"));
|
|
190
33
|
|
|
191
|
-
|
|
192
|
-
return data;
|
|
193
|
-
};
|
|
34
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16, _templateObject17, _templateObject18;
|
|
194
35
|
|
|
195
|
-
|
|
196
|
-
}
|
|
36
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
197
37
|
|
|
198
|
-
function
|
|
199
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: column;\n\n width: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"]);
|
|
38
|
+
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; }
|
|
200
39
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
40
|
+
var textInputIcons = {
|
|
41
|
+
error: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
42
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
+
height: "24px",
|
|
44
|
+
viewBox: "0 0 24 24",
|
|
45
|
+
width: "24px",
|
|
46
|
+
fill: "currentColor"
|
|
47
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
48
|
+
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"
|
|
49
|
+
})),
|
|
50
|
+
clear: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
52
|
+
width: "24",
|
|
53
|
+
height: "24",
|
|
54
|
+
viewBox: "0 0 24 24",
|
|
55
|
+
fill: "currentColor"
|
|
56
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
|
+
d: "M0 0h24v24H0V0z",
|
|
58
|
+
fill: "none"
|
|
59
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
60
|
+
d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
|
|
61
|
+
})),
|
|
62
|
+
increment: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
64
|
+
height: "24px",
|
|
65
|
+
viewBox: "0 0 24 24",
|
|
66
|
+
width: "24px",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
69
|
+
d: "M0 0h24v24H0z",
|
|
70
|
+
fill: "none"
|
|
71
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
72
|
+
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
73
|
+
})),
|
|
74
|
+
decrement: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
75
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
76
|
+
height: "24px",
|
|
77
|
+
viewBox: "0 0 24 24",
|
|
78
|
+
width: "24px",
|
|
79
|
+
fill: "currentColor"
|
|
80
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
81
|
+
d: "M0 0h24v24H0z",
|
|
82
|
+
fill: "none"
|
|
83
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
84
|
+
d: "M19 13H5v-2h14v2z"
|
|
85
|
+
}))
|
|
86
|
+
};
|
|
207
87
|
|
|
208
88
|
var makeCancelable = function makeCancelable(promise) {
|
|
209
89
|
var hasCanceled_ = false;
|
|
@@ -230,10 +110,6 @@ var getNotOptionalErrorMessage = function getNotOptionalErrorMessage() {
|
|
|
230
110
|
return "This field is required. Please, enter a value.";
|
|
231
111
|
};
|
|
232
112
|
|
|
233
|
-
var getLengthErrorMessage = function getLengthErrorMessage(length) {
|
|
234
|
-
return "Min length ".concat(length.min, ", max length ").concat(length.max, ".");
|
|
235
|
-
};
|
|
236
|
-
|
|
237
113
|
var getPatternErrorMessage = function getPatternErrorMessage() {
|
|
238
114
|
return "Please match the format requested.";
|
|
239
115
|
};
|
|
@@ -242,16 +118,25 @@ var patternMatch = function patternMatch(pattern, value) {
|
|
|
242
118
|
return new RegExp(pattern).test(value);
|
|
243
119
|
};
|
|
244
120
|
|
|
245
|
-
var
|
|
246
|
-
var
|
|
121
|
+
var getLastOptionIndex = function getLastOptionIndex(filteredSuggestions) {
|
|
122
|
+
var last = 0;
|
|
123
|
+
|
|
124
|
+
var reducer = function reducer(acc, current) {
|
|
125
|
+
var _current$options;
|
|
247
126
|
|
|
248
|
-
|
|
249
|
-
|
|
127
|
+
return acc + ((_current$options = current.options) === null || _current$options === void 0 ? void 0 : _current$options.length);
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
if (filteredSuggestions.length > 0) filteredSuggestions[0].options ? last = filteredSuggestions.reduce(reducer, 0) - 1 : last = filteredSuggestions.length - 1;
|
|
131
|
+
return last;
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
var DxcTextInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref) {
|
|
135
|
+
var label = _ref.label,
|
|
250
136
|
_ref$name = _ref.name,
|
|
251
137
|
name = _ref$name === void 0 ? "" : _ref$name,
|
|
252
138
|
value = _ref.value,
|
|
253
|
-
|
|
254
|
-
helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
|
|
139
|
+
helperText = _ref.helperText,
|
|
255
140
|
_ref$placeholder = _ref.placeholder,
|
|
256
141
|
placeholder = _ref$placeholder === void 0 ? "" : _ref$placeholder,
|
|
257
142
|
action = _ref.action,
|
|
@@ -267,11 +152,11 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
267
152
|
suffix = _ref$suffix === void 0 ? "" : _ref$suffix,
|
|
268
153
|
onChange = _ref.onChange,
|
|
269
154
|
onBlur = _ref.onBlur,
|
|
270
|
-
|
|
271
|
-
error = _ref$error === void 0 ? "" : _ref$error,
|
|
155
|
+
error = _ref.error,
|
|
272
156
|
suggestions = _ref.suggestions,
|
|
273
157
|
pattern = _ref.pattern,
|
|
274
|
-
|
|
158
|
+
minLength = _ref.minLength,
|
|
159
|
+
maxLength = _ref.maxLength,
|
|
275
160
|
_ref$autocomplete = _ref.autocomplete,
|
|
276
161
|
autocomplete = _ref$autocomplete === void 0 ? "off" : _ref$autocomplete,
|
|
277
162
|
margin = _ref.margin,
|
|
@@ -280,49 +165,39 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
280
165
|
_ref$tabIndex = _ref.tabIndex,
|
|
281
166
|
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
282
167
|
|
|
283
|
-
var _useState = (0, _react.useState)(""),
|
|
284
|
-
_useState2 = (0, _slicedToArray2["default"])(_useState,
|
|
285
|
-
|
|
286
|
-
setInnerValue = _useState2[1];
|
|
168
|
+
var _useState = (0, _react.useState)("input-".concat((0, _uuid.v4)())),
|
|
169
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 1),
|
|
170
|
+
inputId = _useState2[0];
|
|
287
171
|
|
|
288
|
-
var _useState3 = (0, _react.useState)(
|
|
172
|
+
var _useState3 = (0, _react.useState)(""),
|
|
289
173
|
_useState4 = (0, _slicedToArray2["default"])(_useState3, 2),
|
|
290
|
-
|
|
291
|
-
|
|
174
|
+
innerValue = _useState4[0],
|
|
175
|
+
setInnerValue = _useState4[1];
|
|
292
176
|
|
|
293
177
|
var _useState5 = (0, _react.useState)(false),
|
|
294
178
|
_useState6 = (0, _slicedToArray2["default"])(_useState5, 2),
|
|
295
|
-
|
|
296
|
-
|
|
179
|
+
isOpen = _useState6[0],
|
|
180
|
+
changeIsOpen = _useState6[1];
|
|
297
181
|
|
|
298
182
|
var _useState7 = (0, _react.useState)(false),
|
|
299
183
|
_useState8 = (0, _slicedToArray2["default"])(_useState7, 2),
|
|
300
|
-
|
|
301
|
-
|
|
184
|
+
isSearching = _useState8[0],
|
|
185
|
+
changeIsSearching = _useState8[1];
|
|
302
186
|
|
|
303
187
|
var _useState9 = (0, _react.useState)(false),
|
|
304
188
|
_useState10 = (0, _slicedToArray2["default"])(_useState9, 2),
|
|
305
|
-
|
|
306
|
-
|
|
189
|
+
isAutosuggestError = _useState10[0],
|
|
190
|
+
changeIsAutosuggestError = _useState10[1];
|
|
307
191
|
|
|
308
|
-
var _useState11 = (0, _react.useState)(
|
|
192
|
+
var _useState11 = (0, _react.useState)([]),
|
|
309
193
|
_useState12 = (0, _slicedToArray2["default"])(_useState11, 2),
|
|
310
|
-
|
|
311
|
-
|
|
194
|
+
filteredSuggestions = _useState12[0],
|
|
195
|
+
changeFilteredSuggestions = _useState12[1];
|
|
312
196
|
|
|
313
|
-
var _useState13 = (0, _react.useState)(
|
|
197
|
+
var _useState13 = (0, _react.useState)(-1),
|
|
314
198
|
_useState14 = (0, _slicedToArray2["default"])(_useState13, 2),
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
var _useState15 = (0, _react.useState)(-1),
|
|
319
|
-
_useState16 = (0, _slicedToArray2["default"])(_useState15, 2),
|
|
320
|
-
visualFocusedSuggIndex = _useState16[0],
|
|
321
|
-
changeVisualFocusedSuggIndex = _useState16[1];
|
|
322
|
-
|
|
323
|
-
var _useState17 = (0, _react.useState)("input-".concat((0, _uuid.v4)())),
|
|
324
|
-
_useState18 = (0, _slicedToArray2["default"])(_useState17, 1),
|
|
325
|
-
inputId = _useState18[0];
|
|
199
|
+
visualFocusedSuggIndex = _useState14[0],
|
|
200
|
+
changeVisualFocusedSuggIndex = _useState14[1];
|
|
326
201
|
|
|
327
202
|
var suggestionsRef = (0, _react.useRef)(null);
|
|
328
203
|
var inputRef = (0, _react.useRef)(null);
|
|
@@ -332,13 +207,20 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
332
207
|
var autosuggestId = "".concat(inputId, "-listBox");
|
|
333
208
|
var errorId = "error-message-".concat(inputId);
|
|
334
209
|
var numberInputContext = (0, _react.useContext)(_NumberInputContext["default"]);
|
|
210
|
+
var lastOptionIndex = (0, _react.useMemo)(function () {
|
|
211
|
+
return getLastOptionIndex(filteredSuggestions);
|
|
212
|
+
}, [filteredSuggestions]);
|
|
335
213
|
|
|
336
214
|
var isNotOptional = function isNotOptional(value) {
|
|
337
215
|
return value === "" && !optional;
|
|
338
216
|
};
|
|
339
217
|
|
|
340
218
|
var isLengthIncorrect = function isLengthIncorrect(value) {
|
|
341
|
-
return value
|
|
219
|
+
return value && minLength && maxLength && (value.length < minLength || value.length > maxLength);
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
var getLengthErrorMessage = function getLengthErrorMessage() {
|
|
223
|
+
return "Min length ".concat(minLength, ", max length ").concat(maxLength, ".");
|
|
342
224
|
};
|
|
343
225
|
|
|
344
226
|
var isNumberIncorrect = function isNumberIncorrect(value) {
|
|
@@ -355,12 +237,12 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
355
237
|
if (numberInputContext !== null && numberInputContext !== void 0 && numberInputContext.minNumber && parseInt(value) < (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber)) return "Value must be greater than or equal to ".concat(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.minNumber, ".");else if (numberInputContext !== null && numberInputContext !== void 0 && numberInputContext.maxNumber && parseInt(value) > (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber)) return "Value must be less than or equal to ".concat(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.maxNumber, ".");
|
|
356
238
|
};
|
|
357
239
|
|
|
358
|
-
var
|
|
359
|
-
return typeof suggestions === "function" || suggestions
|
|
240
|
+
var hasSuggestions = function hasSuggestions() {
|
|
241
|
+
return typeof suggestions === "function" || (suggestions === null || suggestions === void 0 ? void 0 : suggestions.length) > 0;
|
|
360
242
|
};
|
|
361
243
|
|
|
362
244
|
var openSuggestions = function openSuggestions() {
|
|
363
|
-
|
|
245
|
+
hasSuggestions() && changeIsOpen(true);
|
|
364
246
|
};
|
|
365
247
|
|
|
366
248
|
var closeSuggestions = function closeSuggestions() {
|
|
@@ -376,7 +258,7 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
376
258
|
error: getNotOptionalErrorMessage()
|
|
377
259
|
});else if (isLengthIncorrect(newValue)) onChange === null || onChange === void 0 ? void 0 : onChange({
|
|
378
260
|
value: changedValue,
|
|
379
|
-
error: getLengthErrorMessage(
|
|
261
|
+
error: getLengthErrorMessage()
|
|
380
262
|
});else if (newValue && pattern && !patternMatch(pattern, newValue)) onChange === null || onChange === void 0 ? void 0 : onChange({
|
|
381
263
|
value: changedValue,
|
|
382
264
|
error: getPatternErrorMessage()
|
|
@@ -393,13 +275,14 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
393
275
|
document.activeElement !== actionRef.current && inputRef.current.focus();
|
|
394
276
|
};
|
|
395
277
|
|
|
396
|
-
var
|
|
397
|
-
|
|
398
|
-
|
|
278
|
+
var handleInputContainerOnMouseDown = function handleInputContainerOnMouseDown(event) {
|
|
279
|
+
// Avoid input to lose the focus when the container is pressed
|
|
280
|
+
document.activeElement === inputRef.current && event.preventDefault();
|
|
399
281
|
};
|
|
400
282
|
|
|
401
|
-
var
|
|
283
|
+
var handleIOnChange = function handleIOnChange(event) {
|
|
402
284
|
openSuggestions();
|
|
285
|
+
changeValue(event.target.value);
|
|
403
286
|
};
|
|
404
287
|
|
|
405
288
|
var handleIOnBlur = function handleIOnBlur(event) {
|
|
@@ -409,7 +292,7 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
409
292
|
error: getNotOptionalErrorMessage()
|
|
410
293
|
});else if (isLengthIncorrect(event.target.value)) onBlur === null || onBlur === void 0 ? void 0 : onBlur({
|
|
411
294
|
value: event.target.value,
|
|
412
|
-
error: getLengthErrorMessage(
|
|
295
|
+
error: getLengthErrorMessage()
|
|
413
296
|
});else if (event.target.value && pattern && !patternMatch(pattern, event.target.value)) onBlur === null || onBlur === void 0 ? void 0 : onBlur({
|
|
414
297
|
value: event.target.value,
|
|
415
298
|
error: getPatternErrorMessage()
|
|
@@ -422,15 +305,11 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
422
305
|
});
|
|
423
306
|
};
|
|
424
307
|
|
|
425
|
-
var handleIOnFocus = function handleIOnFocus() {
|
|
426
|
-
openSuggestions();
|
|
427
|
-
};
|
|
428
|
-
|
|
429
308
|
var handleIOnKeyDown = function handleIOnKeyDown(event) {
|
|
430
309
|
switch (event.keyCode) {
|
|
431
310
|
case 40:
|
|
432
311
|
// Arrow Down
|
|
433
|
-
if (numberInputContext) {
|
|
312
|
+
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number") {
|
|
434
313
|
decrementNumber();
|
|
435
314
|
event.preventDefault();
|
|
436
315
|
} else {
|
|
@@ -441,8 +320,6 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
441
320
|
changeVisualFocusedSuggIndex(function (visualFocusedSuggIndex) {
|
|
442
321
|
if (visualFocusedSuggIndex < filteredSuggestions.length - 1) return visualFocusedSuggIndex + 1;else if (visualFocusedSuggIndex === filteredSuggestions.length - 1) return 0;
|
|
443
322
|
});
|
|
444
|
-
changeIsScrollable(true);
|
|
445
|
-
changeIsActiveSuggestion(false);
|
|
446
323
|
}
|
|
447
324
|
}
|
|
448
325
|
|
|
@@ -450,7 +327,7 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
450
327
|
|
|
451
328
|
case 38:
|
|
452
329
|
// Arrow Up
|
|
453
|
-
if (numberInputContext) {
|
|
330
|
+
if ((numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number") {
|
|
454
331
|
incrementNumber();
|
|
455
332
|
event.preventDefault();
|
|
456
333
|
} else {
|
|
@@ -461,8 +338,6 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
461
338
|
changeVisualFocusedSuggIndex(function (visualFocusedSuggIndex) {
|
|
462
339
|
if (visualFocusedSuggIndex === 0 || visualFocusedSuggIndex === -1) return filteredSuggestions.length > 0 ? filteredSuggestions.length - 1 : suggestions.length - 1;else return visualFocusedSuggIndex - 1;
|
|
463
340
|
});
|
|
464
|
-
changeIsScrollable(true);
|
|
465
|
-
changeIsActiveSuggestion(false);
|
|
466
341
|
}
|
|
467
342
|
}
|
|
468
343
|
|
|
@@ -472,7 +347,7 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
472
347
|
// Esc
|
|
473
348
|
event.preventDefault();
|
|
474
349
|
|
|
475
|
-
if (
|
|
350
|
+
if (hasSuggestions()) {
|
|
476
351
|
changeValue("");
|
|
477
352
|
isOpen && closeSuggestions();
|
|
478
353
|
}
|
|
@@ -481,7 +356,7 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
481
356
|
|
|
482
357
|
case 13:
|
|
483
358
|
// Enter
|
|
484
|
-
if (
|
|
359
|
+
if (hasSuggestions() && !isSearching) {
|
|
485
360
|
var validFocusedSuggestion = filteredSuggestions.length > 0 && visualFocusedSuggIndex >= 0 && visualFocusedSuggIndex < filteredSuggestions.length;
|
|
486
361
|
validFocusedSuggestion && changeValue(filteredSuggestions[visualFocusedSuggIndex]);
|
|
487
362
|
isOpen && closeSuggestions();
|
|
@@ -491,6 +366,22 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
491
366
|
}
|
|
492
367
|
};
|
|
493
368
|
|
|
369
|
+
var handleClearActionOnClick = function handleClearActionOnClick() {
|
|
370
|
+
changeValue("");
|
|
371
|
+
inputRef.current.focus();
|
|
372
|
+
suggestions && closeSuggestions();
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
var handleDecrementActionOnClick = function handleDecrementActionOnClick() {
|
|
376
|
+
decrementNumber();
|
|
377
|
+
inputRef.current.focus();
|
|
378
|
+
};
|
|
379
|
+
|
|
380
|
+
var handleIncrementActionOnClick = function handleIncrementActionOnClick() {
|
|
381
|
+
incrementNumber();
|
|
382
|
+
inputRef.current.focus();
|
|
383
|
+
};
|
|
384
|
+
|
|
494
385
|
var setNumberProps = function setNumberProps(type, min, max, step) {
|
|
495
386
|
var _inputRef$current3, _inputRef$current4, _inputRef$current5, _inputRef$current6;
|
|
496
387
|
|
|
@@ -500,72 +391,6 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
500
391
|
step && (inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current6 = inputRef.current) === null || _inputRef$current6 === void 0 ? void 0 : _inputRef$current6.setAttribute("step", step));
|
|
501
392
|
};
|
|
502
393
|
|
|
503
|
-
(0, _react.useLayoutEffect)(function () {
|
|
504
|
-
var _suggestionsRef$curre;
|
|
505
|
-
|
|
506
|
-
isScrollable && (suggestionsRef === null || suggestionsRef === void 0 ? void 0 : (_suggestionsRef$curre = suggestionsRef.current) === null || _suggestionsRef$curre === void 0 ? void 0 : _suggestionsRef$curre.scrollTo({
|
|
507
|
-
top: visualFocusedSuggIndex * 39
|
|
508
|
-
}));
|
|
509
|
-
return changeIsScrollable(false);
|
|
510
|
-
}, [isScrollable, visualFocusedSuggIndex]);
|
|
511
|
-
(0, _react.useEffect)(function () {
|
|
512
|
-
if (typeof suggestions === "function") {
|
|
513
|
-
changeIsSearching(true);
|
|
514
|
-
changeIsAutosuggestError(false);
|
|
515
|
-
changeFilteredSuggestions([]);
|
|
516
|
-
var cancelablePromise = makeCancelable(suggestions(value !== null && value !== void 0 ? value : innerValue));
|
|
517
|
-
cancelablePromise.promise.then(function (promiseResponse) {
|
|
518
|
-
changeIsSearching(false);
|
|
519
|
-
changeIsAutosuggestError(false);
|
|
520
|
-
changeFilteredSuggestions(promiseResponse);
|
|
521
|
-
})["catch"](function (err) {
|
|
522
|
-
if (!err.isCanceled) {
|
|
523
|
-
changeIsSearching(false);
|
|
524
|
-
changeIsAutosuggestError(true);
|
|
525
|
-
}
|
|
526
|
-
});
|
|
527
|
-
return function () {
|
|
528
|
-
cancelablePromise.cancel();
|
|
529
|
-
};
|
|
530
|
-
} else if (suggestions && suggestions.length) {
|
|
531
|
-
changeFilteredSuggestions(suggestions.filter(function (suggestion) {
|
|
532
|
-
return suggestion.toUpperCase().startsWith((value !== null && value !== void 0 ? value : innerValue).toUpperCase());
|
|
533
|
-
}));
|
|
534
|
-
changeVisualFocusedSuggIndex(-1);
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
numberInputContext && setNumberProps(numberInputContext.typeNumber, numberInputContext.minNumber, numberInputContext.maxNumber, numberInputContext.stepNumber);
|
|
538
|
-
}, [value, innerValue, suggestions]);
|
|
539
|
-
var defaultClearAction = {
|
|
540
|
-
onClick: function onClick() {
|
|
541
|
-
changeValue("");
|
|
542
|
-
inputRef.current.focus();
|
|
543
|
-
suggestions && closeSuggestions();
|
|
544
|
-
},
|
|
545
|
-
icon: _react["default"].createElement("svg", {
|
|
546
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
547
|
-
width: "24",
|
|
548
|
-
height: "24",
|
|
549
|
-
viewBox: "0 0 24 24",
|
|
550
|
-
fill: "currentColor"
|
|
551
|
-
}, _react["default"].createElement("path", {
|
|
552
|
-
d: "M0 0h24v24H0V0z",
|
|
553
|
-
fill: "none"
|
|
554
|
-
}), _react["default"].createElement("path", {
|
|
555
|
-
d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
|
|
556
|
-
}))
|
|
557
|
-
};
|
|
558
|
-
|
|
559
|
-
var errorIcon = _react["default"].createElement("svg", {
|
|
560
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
561
|
-
height: "24px",
|
|
562
|
-
viewBox: "0 0 24 24",
|
|
563
|
-
width: "24px",
|
|
564
|
-
fill: "currentColor"
|
|
565
|
-
}, _react["default"].createElement("path", {
|
|
566
|
-
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"
|
|
567
|
-
}));
|
|
568
|
-
|
|
569
394
|
var decrementNumber = function decrementNumber() {
|
|
570
395
|
var numberValue = value !== null && value !== void 0 ? value : innerValue;
|
|
571
396
|
|
|
@@ -606,42 +431,43 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
606
431
|
}
|
|
607
432
|
};
|
|
608
433
|
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
434
|
+
(0, _react.useLayoutEffect)(function () {
|
|
435
|
+
var _suggestionsRef$curre, _visualFocusedOptionE;
|
|
436
|
+
|
|
437
|
+
var visualFocusedOptionEl = suggestionsRef === null || suggestionsRef === void 0 ? void 0 : (_suggestionsRef$curre = suggestionsRef.current) === null || _suggestionsRef$curre === void 0 ? void 0 : _suggestionsRef$curre.querySelectorAll("[role='option']")[visualFocusedSuggIndex];
|
|
438
|
+
visualFocusedOptionEl === null || visualFocusedOptionEl === void 0 ? void 0 : (_visualFocusedOptionE = visualFocusedOptionEl.scrollIntoView) === null || _visualFocusedOptionE === void 0 ? void 0 : _visualFocusedOptionE.call(visualFocusedOptionEl, {
|
|
439
|
+
block: "nearest",
|
|
440
|
+
inline: "start"
|
|
441
|
+
});
|
|
442
|
+
}, [visualFocusedSuggIndex]);
|
|
443
|
+
(0, _react.useEffect)(function () {
|
|
444
|
+
if (typeof suggestions === "function") {
|
|
445
|
+
changeIsSearching(true);
|
|
446
|
+
changeIsAutosuggestError(false);
|
|
447
|
+
changeFilteredSuggestions([]);
|
|
448
|
+
var cancelablePromise = makeCancelable(suggestions(value !== null && value !== void 0 ? value : innerValue));
|
|
449
|
+
cancelablePromise.promise.then(function (promiseResponse) {
|
|
450
|
+
changeIsSearching(false);
|
|
451
|
+
changeIsAutosuggestError(false);
|
|
452
|
+
changeFilteredSuggestions(promiseResponse);
|
|
453
|
+
})["catch"](function (err) {
|
|
454
|
+
if (!err.isCanceled) {
|
|
455
|
+
changeIsSearching(false);
|
|
456
|
+
changeIsAutosuggestError(true);
|
|
457
|
+
}
|
|
458
|
+
});
|
|
459
|
+
return function () {
|
|
460
|
+
cancelablePromise.cancel();
|
|
461
|
+
};
|
|
462
|
+
} else if ((suggestions === null || suggestions === void 0 ? void 0 : suggestions.length) > 0) {
|
|
463
|
+
changeFilteredSuggestions(suggestions.filter(function (suggestion) {
|
|
464
|
+
return suggestion.toUpperCase().startsWith((value !== null && value !== void 0 ? value : innerValue).toUpperCase());
|
|
465
|
+
}));
|
|
466
|
+
changeVisualFocusedSuggIndex(-1);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
(numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number" && setNumberProps(numberInputContext.typeNumber, numberInputContext.minNumber, numberInputContext.maxNumber, numberInputContext.stepNumber);
|
|
470
|
+
}, [value, innerValue, suggestions, numberInputContext]);
|
|
645
471
|
|
|
646
472
|
var HighlightedSuggestion = function HighlightedSuggestion(_ref2) {
|
|
647
473
|
var suggestion = _ref2.suggestion,
|
|
@@ -649,133 +475,151 @@ var DxcTextInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
|
649
475
|
var regEx = new RegExp(value !== null && value !== void 0 ? value : innerValue, "i");
|
|
650
476
|
var matchedWords = suggestion.match(regEx);
|
|
651
477
|
var noMatchedWords = suggestion.replace(regEx, "");
|
|
652
|
-
|
|
478
|
+
var isLastOption = index === lastOptionIndex;
|
|
479
|
+
return /*#__PURE__*/_react["default"].createElement(Suggestion, {
|
|
653
480
|
id: "suggestion-".concat(index),
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
onMouseUp: function onMouseUp(event) {
|
|
658
|
-
if (event.button === 0 && isActiveSuggestion) {
|
|
659
|
-
changeValue(suggestion);
|
|
660
|
-
changeIsActiveSuggestion(false);
|
|
661
|
-
closeSuggestions();
|
|
662
|
-
}
|
|
663
|
-
},
|
|
664
|
-
onMouseEnter: function onMouseEnter() {
|
|
665
|
-
changeVisualFocusedSuggIndex(index);
|
|
666
|
-
},
|
|
667
|
-
onMouseLeave: function onMouseLeave() {
|
|
668
|
-
changeIsActiveSuggestion(false);
|
|
481
|
+
onClick: function onClick() {
|
|
482
|
+
changeValue(suggestion);
|
|
483
|
+
closeSuggestions();
|
|
669
484
|
},
|
|
670
485
|
visualFocused: visualFocusedSuggIndex === index,
|
|
671
|
-
active: visualFocusedSuggIndex === index && isActiveSuggestion,
|
|
672
486
|
role: "option",
|
|
673
487
|
"aria-selected": visualFocusedSuggIndex === index && "true"
|
|
674
|
-
},
|
|
488
|
+
}, /*#__PURE__*/_react["default"].createElement(StyledSuggestion, {
|
|
489
|
+
last: isLastOption,
|
|
490
|
+
visualFocused: visualFocusedSuggIndex === index
|
|
491
|
+
}, typeof suggestions === "function" ? suggestion : /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("strong", null, matchedWords), noMatchedWords)));
|
|
675
492
|
};
|
|
676
493
|
|
|
677
|
-
return _react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
494
|
+
return /*#__PURE__*/_react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
678
495
|
theme: colorsTheme.textInput
|
|
679
|
-
}, _react["default"].createElement(DxcInput, {
|
|
496
|
+
}, /*#__PURE__*/_react["default"].createElement(DxcInput, {
|
|
680
497
|
margin: margin,
|
|
681
498
|
ref: ref,
|
|
682
499
|
size: size
|
|
683
|
-
}, _react["default"].createElement(Label, {
|
|
500
|
+
}, label && /*#__PURE__*/_react["default"].createElement(Label, {
|
|
684
501
|
htmlFor: inputId,
|
|
685
502
|
disabled: disabled,
|
|
686
|
-
backgroundType: backgroundType
|
|
687
|
-
|
|
503
|
+
backgroundType: backgroundType,
|
|
504
|
+
helperText: helperText
|
|
505
|
+
}, label, " ", optional && /*#__PURE__*/_react["default"].createElement(OptionalLabel, null, "(Optional)")), helperText && /*#__PURE__*/_react["default"].createElement(HelperText, {
|
|
688
506
|
disabled: disabled,
|
|
689
507
|
backgroundType: backgroundType
|
|
690
|
-
}, helperText), _react["default"].createElement(InputContainer, {
|
|
508
|
+
}, helperText), /*#__PURE__*/_react["default"].createElement(InputContainer, {
|
|
691
509
|
error: error,
|
|
692
510
|
disabled: disabled,
|
|
693
511
|
backgroundType: backgroundType,
|
|
694
|
-
onClick: handleInputContainerOnClick
|
|
695
|
-
|
|
512
|
+
onClick: handleInputContainerOnClick,
|
|
513
|
+
onMouseDown: handleInputContainerOnMouseDown
|
|
514
|
+
}, prefix && /*#__PURE__*/_react["default"].createElement(Prefix, {
|
|
696
515
|
disabled: disabled,
|
|
697
516
|
backgroundType: backgroundType
|
|
698
|
-
}, prefix), _react["default"].createElement(Input, {
|
|
517
|
+
}, prefix), /*#__PURE__*/_react["default"].createElement(Input, {
|
|
699
518
|
id: inputId,
|
|
700
519
|
name: name,
|
|
701
520
|
value: value !== null && value !== void 0 ? value : innerValue,
|
|
702
521
|
placeholder: placeholder,
|
|
703
|
-
onChange: handleIOnChange,
|
|
704
|
-
onClick: handleIOnClick,
|
|
705
522
|
onBlur: handleIOnBlur,
|
|
706
|
-
|
|
523
|
+
onChange: handleIOnChange,
|
|
524
|
+
onFocus: function onFocus() {
|
|
525
|
+
openSuggestions();
|
|
526
|
+
},
|
|
707
527
|
onKeyDown: handleIOnKeyDown,
|
|
528
|
+
onMouseDown: function onMouseDown(event) {
|
|
529
|
+
event.stopPropagation();
|
|
530
|
+
},
|
|
708
531
|
disabled: disabled,
|
|
709
532
|
ref: inputRef,
|
|
710
533
|
backgroundType: backgroundType,
|
|
711
534
|
pattern: pattern,
|
|
712
|
-
minLength:
|
|
713
|
-
maxLength:
|
|
535
|
+
minLength: minLength,
|
|
536
|
+
maxLength: maxLength,
|
|
714
537
|
autoComplete: autocomplete,
|
|
715
538
|
tabIndex: tabIndex,
|
|
716
|
-
role: isTextInputType() &&
|
|
717
|
-
"aria-autocomplete": isTextInputType() &&
|
|
718
|
-
"aria-controls": isTextInputType() &&
|
|
719
|
-
"aria-expanded": isTextInputType() &&
|
|
720
|
-
"aria-activedescendant": isTextInputType() &&
|
|
539
|
+
role: isTextInputType() && hasSuggestions() ? "combobox" : "textbox",
|
|
540
|
+
"aria-autocomplete": isTextInputType() && hasSuggestions() ? "list" : undefined,
|
|
541
|
+
"aria-controls": isTextInputType() && hasSuggestions() ? autosuggestId : undefined,
|
|
542
|
+
"aria-expanded": isTextInputType() && hasSuggestions() ? isOpen ? "true" : "false" : undefined,
|
|
543
|
+
"aria-activedescendant": isTextInputType() && hasSuggestions() && isOpen && visualFocusedSuggIndex !== -1 ? "suggestion-".concat(visualFocusedSuggIndex) : undefined,
|
|
721
544
|
"aria-invalid": error ? "true" : "false",
|
|
722
545
|
"aria-describedby": error ? errorId : undefined,
|
|
723
546
|
"aria-required": optional ? "false" : "true"
|
|
724
|
-
}), !disabled && error && _react["default"].createElement(ErrorIcon, {
|
|
547
|
+
}), !disabled && error && /*#__PURE__*/_react["default"].createElement(ErrorIcon, {
|
|
725
548
|
backgroundType: backgroundType,
|
|
726
549
|
"aria-label": "Error"
|
|
727
|
-
},
|
|
728
|
-
onClick:
|
|
550
|
+
}, textInputIcons.error), !disabled && clearable && (value !== null && value !== void 0 ? value : innerValue).length > 0 && /*#__PURE__*/_react["default"].createElement(Action, {
|
|
551
|
+
onClick: function onClick() {
|
|
552
|
+
return handleClearActionOnClick();
|
|
553
|
+
},
|
|
554
|
+
onMouseDown: function onMouseDown(event) {
|
|
555
|
+
event.stopPropagation();
|
|
556
|
+
},
|
|
729
557
|
backgroundType: backgroundType,
|
|
730
558
|
tabIndex: tabIndex,
|
|
731
|
-
|
|
732
|
-
|
|
559
|
+
title: "Clear field",
|
|
560
|
+
"aria-label": "Clear field"
|
|
561
|
+
}, textInputIcons.clear), (numberInputContext === null || numberInputContext === void 0 ? void 0 : numberInputContext.typeNumber) === "number" ? /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(Action, {
|
|
733
562
|
ref: actionRef,
|
|
734
563
|
disabled: disabled,
|
|
735
|
-
onClick:
|
|
564
|
+
onClick: function onClick() {
|
|
565
|
+
return handleDecrementActionOnClick();
|
|
566
|
+
},
|
|
567
|
+
onMouseDown: function onMouseDown(event) {
|
|
568
|
+
event.stopPropagation();
|
|
569
|
+
},
|
|
736
570
|
backgroundType: backgroundType,
|
|
737
571
|
tabIndex: tabIndex,
|
|
738
|
-
|
|
739
|
-
|
|
572
|
+
title: "Decrement value",
|
|
573
|
+
"aria-label": "Decrement value"
|
|
574
|
+
}, textInputIcons.decrement), /*#__PURE__*/_react["default"].createElement(Action, {
|
|
740
575
|
ref: actionRef,
|
|
741
576
|
disabled: disabled,
|
|
742
|
-
onClick:
|
|
577
|
+
onClick: function onClick() {
|
|
578
|
+
return handleIncrementActionOnClick();
|
|
579
|
+
},
|
|
580
|
+
onMouseDown: function onMouseDown(event) {
|
|
581
|
+
event.stopPropagation();
|
|
582
|
+
},
|
|
743
583
|
backgroundType: backgroundType,
|
|
744
584
|
tabIndex: tabIndex,
|
|
745
|
-
|
|
746
|
-
|
|
585
|
+
title: "Increment value",
|
|
586
|
+
"aria-label": "Increment value"
|
|
587
|
+
}, textInputIcons.increment)) : action && /*#__PURE__*/_react["default"].createElement(Action, {
|
|
747
588
|
ref: actionRef,
|
|
748
589
|
disabled: disabled,
|
|
749
|
-
onClick:
|
|
750
|
-
|
|
590
|
+
onClick: function onClick() {
|
|
591
|
+
return action.onClick();
|
|
592
|
+
},
|
|
593
|
+
onMouseDown: function onMouseDown(event) {
|
|
594
|
+
event.stopPropagation();
|
|
595
|
+
},
|
|
596
|
+
title: action.title,
|
|
597
|
+
"aria-label": action.title,
|
|
751
598
|
backgroundType: backgroundType,
|
|
752
599
|
tabIndex: tabIndex
|
|
753
|
-
}, typeof action.icon === "string" ? _react["default"].createElement(ActionIcon, {
|
|
600
|
+
}, typeof action.icon === "string" ? /*#__PURE__*/_react["default"].createElement(ActionIcon, {
|
|
754
601
|
src: action.icon
|
|
755
|
-
}) : action.icon), suffix && _react["default"].createElement(Suffix, {
|
|
602
|
+
}) : action.icon), suffix && /*#__PURE__*/_react["default"].createElement(Suffix, {
|
|
756
603
|
disabled: disabled,
|
|
757
604
|
backgroundType: backgroundType
|
|
758
|
-
}, suffix), isOpen && _react["default"].createElement(Suggestions, {
|
|
605
|
+
}, suffix), isOpen && (filteredSuggestions.length > 0 || isSearching || isAutosuggestError) && /*#__PURE__*/_react["default"].createElement(Suggestions, {
|
|
759
606
|
id: autosuggestId,
|
|
760
607
|
isError: isAutosuggestError,
|
|
761
608
|
onMouseDown: function onMouseDown(event) {
|
|
762
609
|
event.preventDefault();
|
|
763
610
|
},
|
|
764
|
-
onMouseLeave: function onMouseLeave() {
|
|
765
|
-
changeVisualFocusedSuggIndex(-1);
|
|
766
|
-
},
|
|
767
611
|
ref: suggestionsRef,
|
|
768
612
|
role: "listbox",
|
|
769
613
|
"aria-label": label
|
|
770
|
-
}, !isSearching && !isAutosuggestError && filteredSuggestions.length
|
|
771
|
-
return _react["default"].createElement(HighlightedSuggestion, {
|
|
614
|
+
}, !isSearching && !isAutosuggestError && filteredSuggestions.length > 0 && filteredSuggestions.map(function (suggestion, index) {
|
|
615
|
+
return /*#__PURE__*/_react["default"].createElement(HighlightedSuggestion, {
|
|
772
616
|
key: "suggestion-".concat((0, _uuid.v4)()),
|
|
773
617
|
suggestion: suggestion,
|
|
774
618
|
index: index
|
|
775
619
|
});
|
|
776
|
-
}), isSearching && _react["default"].createElement(SuggestionsSystemMessage, null, "Searching..."), isAutosuggestError && _react["default"].createElement(SuggestionsError, null, _react["default"].createElement(SuggestionsErrorIcon, {
|
|
620
|
+
}), isSearching && /*#__PURE__*/_react["default"].createElement(SuggestionsSystemMessage, null, "Searching..."), isAutosuggestError && /*#__PURE__*/_react["default"].createElement(SuggestionsError, null, /*#__PURE__*/_react["default"].createElement(SuggestionsErrorIcon, {
|
|
777
621
|
backgroundType: backgroundType
|
|
778
|
-
},
|
|
622
|
+
}, textInputIcons.error), "Error fetching data"))), !disabled && typeof error === "string" && /*#__PURE__*/_react["default"].createElement(Error, {
|
|
779
623
|
id: errorId,
|
|
780
624
|
backgroundType: backgroundType
|
|
781
625
|
}, error)));
|
|
@@ -792,7 +636,7 @@ var calculateWidth = function calculateWidth(margin, size) {
|
|
|
792
636
|
return size === "fillParent" ? "calc(".concat(sizes[size], " - ").concat((0, _utils.getMargin)(margin, "left"), " - ").concat((0, _utils.getMargin)(margin, "right"), ")") : sizes[size];
|
|
793
637
|
};
|
|
794
638
|
|
|
795
|
-
var DxcInput = _styledComponents["default"].div(_templateObject(), function (props) {
|
|
639
|
+
var DxcInput = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n\n width: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"])), function (props) {
|
|
796
640
|
return calculateWidth(props.margin, props.size);
|
|
797
641
|
}, function (props) {
|
|
798
642
|
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
@@ -806,7 +650,7 @@ var DxcInput = _styledComponents["default"].div(_templateObject(), function (pro
|
|
|
806
650
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
807
651
|
});
|
|
808
652
|
|
|
809
|
-
var Label = _styledComponents["default"].label(_templateObject2(), function (props) {
|
|
653
|
+
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) {
|
|
810
654
|
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledLabelFontColorOnDark : props.theme.disabledLabelFontColor : props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
811
655
|
}, function (props) {
|
|
812
656
|
return props.theme.fontFamily;
|
|
@@ -818,13 +662,15 @@ var Label = _styledComponents["default"].label(_templateObject2(), function (pro
|
|
|
818
662
|
return props.theme.labelFontWeight;
|
|
819
663
|
}, function (props) {
|
|
820
664
|
return props.theme.labelLineHeight;
|
|
665
|
+
}, function (props) {
|
|
666
|
+
return !props.helperText && "margin-bottom: 0.25rem";
|
|
821
667
|
});
|
|
822
668
|
|
|
823
|
-
var OptionalLabel = _styledComponents["default"].span(_templateObject3(), function (props) {
|
|
669
|
+
var OptionalLabel = _styledComponents["default"].span(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n font-weight: ", ";\n"])), function (props) {
|
|
824
670
|
return props.theme.optionalLabelFontWeight;
|
|
825
671
|
});
|
|
826
672
|
|
|
827
|
-
var HelperText = _styledComponents["default"].span(_templateObject4(), function (props) {
|
|
673
|
+
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) {
|
|
828
674
|
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledHelperTextFontColorOnDark : props.theme.disabledHelperTextFontColor : props.backgroundType === "dark" ? props.theme.helperTextFontColorOnDark : props.theme.helperTextFontColor;
|
|
829
675
|
}, function (props) {
|
|
830
676
|
return props.theme.fontFamily;
|
|
@@ -838,7 +684,7 @@ var HelperText = _styledComponents["default"].span(_templateObject4(), function
|
|
|
838
684
|
return props.theme.helperTextLineHeight;
|
|
839
685
|
});
|
|
840
686
|
|
|
841
|
-
var InputContainer = _styledComponents["default"].div(_templateObject5(), function (props) {
|
|
687
|
+
var InputContainer = _styledComponents["default"].div(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n position: relative;\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 ", ";\n"])), function (props) {
|
|
842
688
|
if (props.disabled) return props.backgroundType === "dark" ? "background-color: ".concat(props.theme.disabledContainerFillColorOnDark, ";") : "background-color: ".concat(props.theme.disabledContainerFillColor, ";");
|
|
843
689
|
}, function (props) {
|
|
844
690
|
if (props.disabled) return props.backgroundType === "dark" ? props.theme.disabledBorderColorOnDark : props.theme.disabledBorderColor;else return props.backgroundType === "dark" ? props.theme.enabledBorderColorOnDark : props.theme.enabledBorderColor;
|
|
@@ -850,7 +696,7 @@ var InputContainer = _styledComponents["default"].div(_templateObject5(), functi
|
|
|
850
696
|
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 ");
|
|
851
697
|
});
|
|
852
698
|
|
|
853
|
-
var Input = _styledComponents["default"].input(_templateObject6(), function (props) {
|
|
699
|
+
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) {
|
|
854
700
|
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledValueFontColorOnDark : props.theme.disabledValueFontColor : props.backgroundType === "dark" ? props.theme.valueFontColorOnDark : props.theme.valueFontColor;
|
|
855
701
|
}, function (props) {
|
|
856
702
|
return props.theme.fontFamily;
|
|
@@ -866,9 +712,9 @@ var Input = _styledComponents["default"].input(_templateObject6(), function (pro
|
|
|
866
712
|
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledPlaceholderFontColorOnDark : props.theme.disabledPlaceholderFontColor : props.backgroundType === "dark" ? props.theme.placeholderFontColorOnDark : props.theme.placeholderFontColor;
|
|
867
713
|
});
|
|
868
714
|
|
|
869
|
-
var ActionIcon = _styledComponents["default"].img(_templateObject7());
|
|
715
|
+
var ActionIcon = _styledComponents["default"].img(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n width: 16px;\n height: 16px;\n"])));
|
|
870
716
|
|
|
871
|
-
var Action = _styledComponents["default"].button(_templateObject8(), function (props) {
|
|
717
|
+
var Action = _styledComponents["default"].button(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n height: 24px;\n width: 24px;\n font-size: 1rem;\n font-family: ", ";\n border: 1px solid transparent;\n border-radius: 2px;\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 svg {\n line-height: 18px;\n }\n"])), function (props) {
|
|
872
718
|
return props.theme.fontFamily;
|
|
873
719
|
}, function (props) {
|
|
874
720
|
return props.disabled ? "cursor: not-allowed;" : "cursor: pointer;";
|
|
@@ -877,37 +723,37 @@ var Action = _styledComponents["default"].button(_templateObject8(), function (p
|
|
|
877
723
|
}, function (props) {
|
|
878
724
|
return props.disabled ? props.backgroundType === "dark" ? props.theme.disabledActionIconColorOnDark : props.theme.disabledActionIconColor : props.backgroundType === "dark" ? props.theme.actionIconColorOnDark : props.theme.actionIconColor;
|
|
879
725
|
}, function (props) {
|
|
880
|
-
return !props.disabled && "\n &:
|
|
726
|
+
return !props.disabled && "\n &:focus {\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 &: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 ");
|
|
881
727
|
});
|
|
882
728
|
|
|
883
|
-
var Prefix = _styledComponents["default"].span(_templateObject9(), function (props) {
|
|
729
|
+
var Prefix = _styledComponents["default"].span(_templateObject9 || (_templateObject9 = (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) {
|
|
884
730
|
var color = props.disabled ? props.backgroundType === "dark" ? props.theme.disabledPrefixColorOnDark : props.theme.disabledPrefixColor : props.backgroundType === "dark" ? props.theme.prefixColorOnDark : props.theme.prefixColor;
|
|
885
731
|
return "color: ".concat(color, "; border-right: 1px solid ").concat(color, ";");
|
|
886
732
|
}, function (props) {
|
|
887
733
|
return props.theme.fontFamily;
|
|
888
734
|
});
|
|
889
735
|
|
|
890
|
-
var Suffix = _styledComponents["default"].span(_templateObject10(), function (props) {
|
|
736
|
+
var Suffix = _styledComponents["default"].span(_templateObject10 || (_templateObject10 = (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) {
|
|
891
737
|
var color = props.disabled ? props.backgroundType === "dark" ? props.theme.disabledSuffixColorOnDark : props.theme.disabledSuffixColor : props.backgroundType === "dark" ? props.theme.suffixColorOnDark : props.theme.suffixColor;
|
|
892
738
|
return "color: ".concat(color, "; border-left: 1px solid ").concat(color, ";");
|
|
893
739
|
}, function (props) {
|
|
894
740
|
return props.theme.fontFamily;
|
|
895
741
|
});
|
|
896
742
|
|
|
897
|
-
var ErrorIcon = _styledComponents["default"].span(_templateObject11(), function (props) {
|
|
743
|
+
var ErrorIcon = _styledComponents["default"].span(_templateObject11 || (_templateObject11 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n padding: 3px;\n height: 18px;\n width: 18px;\n margin-left: 0.25rem;\n color: ", ";\n\n svg {\n line-height: 18px;\n font-size: 1.25rem;\n }\n"])), function (props) {
|
|
898
744
|
return props.backgroundType === "dark" ? props.theme.errorIconColorOnDark : props.theme.errorIconColor;
|
|
899
745
|
});
|
|
900
746
|
|
|
901
|
-
var Error = _styledComponents["default"].span(_templateObject12(), function (props) {
|
|
747
|
+
var Error = _styledComponents["default"].span(_templateObject12 || (_templateObject12 = (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) {
|
|
902
748
|
return props.backgroundType === "dark" ? props.theme.errorMessageColorOnDark : props.theme.errorMessageColor;
|
|
903
749
|
}, function (props) {
|
|
904
750
|
return props.theme.fontFamily;
|
|
905
751
|
});
|
|
906
752
|
|
|
907
|
-
var Suggestions = _styledComponents["default"].ul(_templateObject13(), function (props) {
|
|
908
|
-
return props.isError ? props.theme.
|
|
753
|
+
var Suggestions = _styledComponents["default"].ul(_templateObject13 || (_templateObject13 = (0, _taggedTemplateLiteral2["default"])(["\n position: absolute;\n z-index: 1;\n max-height: 304px;\n overflow-y: auto;\n top: calc(100% + 4px);\n left: 0;\n margin: 0;\n padding: 0.25rem 0;\n width: 100%;\n background-color: ", ";\n border: 1px solid\n ", ";\n border-radius: 0.25rem;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n cursor: default;\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n"])), function (props) {
|
|
754
|
+
return props.isError ? props.theme.errorListDialogBackgroundColor : props.theme.listDialogBackgroundColor;
|
|
909
755
|
}, function (props) {
|
|
910
|
-
return props.isError ? props.theme.
|
|
756
|
+
return props.isError ? props.theme.errorListDialogBorderColor : props.theme.listDialogBorderColor;
|
|
911
757
|
}, function (props) {
|
|
912
758
|
return props.theme.listOptionFontColor;
|
|
913
759
|
}, function (props) {
|
|
@@ -920,55 +766,29 @@ var Suggestions = _styledComponents["default"].ul(_templateObject13(), function
|
|
|
920
766
|
return props.theme.listOptionFontWeight;
|
|
921
767
|
});
|
|
922
768
|
|
|
923
|
-
var Suggestion = _styledComponents["default"].li(_templateObject14(), function (props) {
|
|
924
|
-
return props.
|
|
769
|
+
var Suggestion = _styledComponents["default"].li(_templateObject14 || (_templateObject14 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n padding: 0 0.5rem;\n line-height: 1.715em;\n cursor: pointer;\n\n box-shadow: inset 0 0 0 2px\n ", ";\n &:hover {\n background-color: ", ";\n }\n &:active {\n background-color: ", ";\n }\n"])), function (props) {
|
|
770
|
+
return props.visualFocused ? props.theme.focusListOptionBorderColor : "transparent";
|
|
771
|
+
}, function (props) {
|
|
772
|
+
return props.theme.hoverListOptionBackgroundColor;
|
|
773
|
+
}, function (props) {
|
|
774
|
+
return props.theme.activeListOptionBackgroundColor;
|
|
775
|
+
});
|
|
776
|
+
|
|
777
|
+
var StyledSuggestion = _styledComponents["default"].span(_templateObject15 || (_templateObject15 = (0, _taggedTemplateLiteral2["default"])(["\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n padding: 0.25rem 0.5rem 0.188rem 0.5rem;\n ", ";\n"])), function (props) {
|
|
778
|
+
return props.last || props.visualFocused ? "border-bottom: 1px solid transparent" : "border-bottom: 1px solid ".concat(props.theme.listOptionDividerColor);
|
|
925
779
|
});
|
|
926
780
|
|
|
927
|
-
var SuggestionsSystemMessage = _styledComponents["default"].span(
|
|
781
|
+
var SuggestionsSystemMessage = _styledComponents["default"].span(_templateObject16 || (_templateObject16 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n padding: 0.25rem 1rem;\n color: ", ";\n line-height: 1.715em;\n"])), function (props) {
|
|
928
782
|
return props.theme.systemMessageFontColor;
|
|
929
783
|
});
|
|
930
784
|
|
|
931
|
-
var SuggestionsErrorIcon = _styledComponents["default"].span(
|
|
785
|
+
var SuggestionsErrorIcon = _styledComponents["default"].span(_templateObject17 || (_templateObject17 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n margin-right: 0.5rem;\n height: 18px;\n width: 18px;\n color: ", ";\n"])), function (props) {
|
|
932
786
|
return props.backgroundType === "dark" ? props.theme.errorIconColorOnDark : props.theme.errorIconColor;
|
|
933
787
|
});
|
|
934
788
|
|
|
935
|
-
var SuggestionsError = _styledComponents["default"].span(
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
name: _propTypes["default"].string,
|
|
940
|
-
value: _propTypes["default"].string,
|
|
941
|
-
helperText: _propTypes["default"].string,
|
|
942
|
-
placeholder: _propTypes["default"].string,
|
|
943
|
-
action: _propTypes["default"].shape({
|
|
944
|
-
onClick: _propTypes["default"].func.isRequired,
|
|
945
|
-
icon: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
946
|
-
type: _propTypes["default"].oneOf(["svg"])
|
|
947
|
-
}), _propTypes["default"].string]).isRequired
|
|
948
|
-
}),
|
|
949
|
-
clearable: _propTypes["default"].bool,
|
|
950
|
-
disabled: _propTypes["default"].bool,
|
|
951
|
-
optional: _propTypes["default"].bool,
|
|
952
|
-
prefix: _propTypes["default"].string,
|
|
953
|
-
suffix: _propTypes["default"].string,
|
|
954
|
-
onChange: _propTypes["default"].func,
|
|
955
|
-
onBlur: _propTypes["default"].func,
|
|
956
|
-
error: _propTypes["default"].string,
|
|
957
|
-
autocomplete: _propTypes["default"].string,
|
|
958
|
-
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
959
|
-
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
960
|
-
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
961
|
-
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
962
|
-
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
963
|
-
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
964
|
-
size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
|
|
965
|
-
suggestions: _propTypes["default"].oneOfType([_propTypes["default"].func, _propTypes["default"].array]),
|
|
966
|
-
pattern: _propTypes["default"].string,
|
|
967
|
-
length: _propTypes["default"].shape({
|
|
968
|
-
min: _propTypes["default"].number,
|
|
969
|
-
max: _propTypes["default"].number
|
|
970
|
-
}),
|
|
971
|
-
tabIndex: _propTypes["default"].number
|
|
972
|
-
};
|
|
789
|
+
var SuggestionsError = _styledComponents["default"].span(_templateObject18 || (_templateObject18 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n padding: 0.25rem 1rem;\n align-items: center;\n line-height: 1.715em;\n color: ", ";\n"])), function (props) {
|
|
790
|
+
return props.theme.errorListDialogFontColor;
|
|
791
|
+
});
|
|
792
|
+
|
|
973
793
|
var _default = DxcTextInput;
|
|
974
794
|
exports["default"] = _default;
|