@dxc-technology/halstack-react 0.0.0-c4ba791 → 0.0.0-c7ec4d1
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/README.md +1 -1
- package/babel.config.js +6 -2
- package/dist/BackgroundColorContext.js +46 -0
- package/dist/ThemeContext.js +218 -22
- package/dist/V3Select/V3Select.js +549 -0
- package/dist/V3Textarea/V3Textarea.js +264 -0
- package/dist/accordion/Accordion.js +134 -54
- package/dist/accordion-group/AccordionGroup.js +36 -9
- package/dist/alert/Alert.js +183 -84
- package/dist/alert/index.d.ts +51 -0
- package/dist/badge/Badge.js +23 -18
- package/dist/box/Box.js +31 -23
- package/dist/button/Button.js +63 -27
- package/dist/card/Card.js +72 -35
- package/dist/checkbox/Checkbox.js +98 -39
- package/dist/chip/Chip.js +97 -40
- package/dist/common/utils.js +2 -22
- package/dist/common/variables.js +1428 -282
- package/dist/date/Date.js +74 -52
- package/dist/date-input/DateInput.js +400 -0
- package/dist/date-input/index.d.ts +95 -0
- package/dist/dialog/Dialog.js +58 -37
- package/dist/dropdown/Dropdown.js +176 -81
- package/dist/file-input/FileInput.js +644 -0
- package/dist/file-input/FileItem.js +287 -0
- package/dist/file-input/index.d.ts +81 -0
- package/dist/footer/Footer.js +90 -40
- package/dist/footer/Icons.js +77 -0
- package/dist/header/Header.js +192 -95
- package/dist/header/Icons.js +59 -0
- package/dist/heading/Heading.js +93 -16
- package/dist/input-text/Icons.js +22 -0
- package/dist/input-text/InputText.js +251 -116
- package/dist/layout/ApplicationLayout.js +18 -26
- package/dist/layout/Icons.js +55 -0
- package/dist/link/Link.js +86 -41
- package/dist/main.d.ts +8 -0
- package/dist/main.js +74 -18
- package/dist/number-input/NumberInput.js +136 -0
- package/dist/number-input/NumberInputContext.js +16 -0
- package/dist/number-input/index.d.ts +113 -0
- package/dist/paginator/Icons.js +66 -0
- package/dist/paginator/Paginator.js +116 -65
- package/dist/password-input/PasswordInput.js +203 -0
- package/dist/password-input/index.d.ts +94 -0
- package/dist/progress-bar/ProgressBar.js +95 -38
- package/dist/radio/Radio.js +31 -17
- package/dist/resultsetTable/ResultsetTable.js +82 -65
- package/dist/select/Select.js +896 -284
- package/dist/select/index.d.ts +53 -0
- package/dist/sidenav/Sidenav.js +66 -15
- package/dist/slider/Slider.js +211 -73
- package/dist/spinner/Spinner.js +247 -59
- package/dist/switch/Switch.js +50 -27
- package/dist/table/Table.js +51 -24
- package/dist/tabs/Tabs.js +88 -37
- package/dist/tag/Tag.js +68 -35
- package/dist/text-input/TextInput.js +974 -0
- package/dist/text-input/index.d.ts +135 -0
- package/dist/textarea/Textarea.js +248 -106
- package/dist/textarea/index.d.ts +117 -0
- package/dist/toggle/Toggle.js +16 -19
- package/dist/toggle-group/ToggleGroup.js +142 -41
- package/dist/upload/Upload.js +16 -11
- package/dist/upload/buttons-upload/ButtonsUpload.js +32 -19
- package/dist/upload/buttons-upload/Icons.js +40 -0
- package/dist/upload/dragAndDropArea/DragAndDropArea.js +84 -34
- package/dist/upload/dragAndDropArea/Icons.js +39 -0
- package/dist/upload/file-upload/FileToUpload.js +64 -33
- package/dist/upload/file-upload/Icons.js +66 -0
- package/dist/upload/files-upload/FilesToUpload.js +16 -16
- package/dist/upload/transaction/Icons.js +160 -0
- package/dist/upload/transaction/Transaction.js +42 -49
- package/dist/upload/transactions/Transactions.js +38 -20
- package/dist/wizard/Icons.js +65 -0
- package/dist/wizard/Wizard.js +126 -52
- package/package.json +10 -9
- package/test/AccordionGroup.test.js +16 -0
- package/test/Date.test.js +49 -45
- package/test/DateInput.test.js +242 -0
- package/test/Dropdown.test.js +15 -0
- package/test/FileInput.test.js +201 -0
- package/test/Footer.test.js +2 -7
- package/test/Header.test.js +5 -10
- package/test/Heading.test.js +60 -12
- package/test/InputText.test.js +25 -17
- package/test/Link.test.js +3 -2
- package/test/NumberInput.test.js +259 -0
- package/test/Paginator.test.js +40 -57
- package/test/PasswordInput.test.js +83 -0
- package/test/ResultsetTable.test.js +33 -8
- package/test/Slider.test.js +9 -17
- package/test/Spinner.test.js +5 -0
- package/test/TextInput.test.js +732 -0
- package/test/Textarea.test.js +193 -0
- package/test/ToggleGroup.test.js +5 -1
- package/test/Upload.test.js +5 -5
- package/test/{Select.test.js → V3Select.test.js} +56 -36
- package/test/{TextArea.test.js → V3TextArea.test.js} +6 -7
- package/dist/accordion/Accordion.stories.js +0 -207
- package/dist/accordion/readme.md +0 -96
- package/dist/accordion-group/AccordionGroup.stories.js +0 -207
- package/dist/accordion-group/readme.md +0 -70
- package/dist/alert/Alert.stories.js +0 -158
- package/dist/alert/close.svg +0 -4
- package/dist/alert/error.svg +0 -4
- package/dist/alert/info.svg +0 -4
- package/dist/alert/readme.md +0 -43
- package/dist/alert/success.svg +0 -4
- package/dist/alert/warning.svg +0 -4
- package/dist/button/Button.stories.js +0 -224
- package/dist/button/readme.md +0 -93
- package/dist/checkbox/Checkbox.stories.js +0 -144
- package/dist/checkbox/readme.md +0 -116
- package/dist/common/services/example-service.js +0 -10
- package/dist/common/services/example-service.test.js +0 -12
- package/dist/date/Date.stories.js +0 -205
- package/dist/date/calendar.svg +0 -1
- package/dist/date/calendar_dark.svg +0 -1
- package/dist/date/readme.md +0 -73
- package/dist/dialog/Dialog.stories.js +0 -217
- package/dist/dialog/readme.md +0 -32
- package/dist/dropdown/Dropdown.stories.js +0 -249
- package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
- package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
- package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
- package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
- package/dist/dropdown/readme.md +0 -69
- package/dist/footer/Footer.stories.js +0 -94
- package/dist/footer/dxc_logo_wht.png +0 -0
- package/dist/footer/readme.md +0 -41
- package/dist/header/Header.stories.js +0 -176
- package/dist/header/close_icon.svg +0 -1
- package/dist/header/dxc_logo_black.png +0 -0
- package/dist/header/dxc_logo_blk_rgb.svg +0 -6
- package/dist/header/dxc_logo_white.png +0 -0
- package/dist/header/hamb_menu_black.svg +0 -1
- package/dist/header/hamb_menu_white.svg +0 -1
- package/dist/header/readme.md +0 -33
- package/dist/input-text/InputText.stories.js +0 -209
- package/dist/input-text/error.svg +0 -1
- package/dist/input-text/readme.md +0 -91
- package/dist/layout/facebook.svg +0 -45
- package/dist/layout/linkedin.svg +0 -50
- package/dist/layout/twitter.svg +0 -53
- package/dist/link/readme.md +0 -51
- package/dist/paginator/images/next.svg +0 -3
- package/dist/paginator/images/nextPage.svg +0 -3
- package/dist/paginator/images/previous.svg +0 -3
- package/dist/paginator/images/previousPage.svg +0 -3
- package/dist/paginator/readme.md +0 -50
- package/dist/progress-bar/ProgressBar.stories.js +0 -280
- package/dist/progress-bar/readme.md +0 -63
- package/dist/radio/Radio.stories.js +0 -166
- package/dist/radio/readme.md +0 -70
- package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
- package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
- package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
- package/dist/select/Select.stories.js +0 -235
- package/dist/select/readme.md +0 -72
- package/dist/slider/Slider.stories.js +0 -241
- package/dist/slider/readme.md +0 -64
- package/dist/spinner/Spinner.stories.js +0 -183
- package/dist/spinner/readme.md +0 -65
- package/dist/switch/Switch.stories.js +0 -134
- package/dist/switch/readme.md +0 -133
- package/dist/tabs/Tabs.stories.js +0 -130
- package/dist/tabs/readme.md +0 -78
- package/dist/tabs-for-sections/TabsForSections.js +0 -92
- package/dist/tabs-for-sections/readme.md +0 -78
- package/dist/toggle/Toggle.stories.js +0 -297
- package/dist/toggle/readme.md +0 -80
- package/dist/toggle-group/readme.md +0 -82
- package/dist/upload/Upload.stories.js +0 -72
- package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
- package/dist/upload/buttons-upload/upload-button.svg +0 -1
- package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
- package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
- package/dist/upload/file-upload/audio-icon.svg +0 -4
- package/dist/upload/file-upload/close.svg +0 -4
- package/dist/upload/file-upload/file-icon.svg +0 -4
- package/dist/upload/file-upload/video-icon.svg +0 -4
- package/dist/upload/readme.md +0 -37
- package/dist/upload/transaction/audio-icon-err.svg +0 -4
- package/dist/upload/transaction/audio-icon.svg +0 -4
- package/dist/upload/transaction/error-icon.svg +0 -4
- package/dist/upload/transaction/file-icon-err.svg +0 -4
- package/dist/upload/transaction/file-icon.svg +0 -4
- package/dist/upload/transaction/image-icon-err.svg +0 -4
- package/dist/upload/transaction/image-icon.svg +0 -4
- package/dist/upload/transaction/success-icon.svg +0 -4
- package/dist/upload/transaction/video-icon-err.svg +0 -4
- package/dist/upload/transaction/video-icon.svg +0 -4
- package/dist/wizard/invalid_icon.svg +0 -6
- package/dist/wizard/valid_icon.svg +0 -6
- package/dist/wizard/validation-wrong.svg +0 -6
- package/test/TabsForSections.test.js +0 -34
|
@@ -29,24 +29,44 @@ var _Paper = _interopRequireDefault(require("@material-ui/core/Paper"));
|
|
|
29
29
|
|
|
30
30
|
var _MenuItem = _interopRequireDefault(require("@material-ui/core/MenuItem"));
|
|
31
31
|
|
|
32
|
-
var _RequiredComponent = _interopRequireDefault(require("../common/RequiredComponent"));
|
|
33
|
-
|
|
34
32
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
35
33
|
|
|
36
|
-
require("../common/OpenSans.css");
|
|
37
|
-
|
|
38
34
|
var _Popper = _interopRequireDefault(require("@material-ui/core/Popper"));
|
|
39
35
|
|
|
36
|
+
var _RequiredComponent = _interopRequireDefault(require("../common/RequiredComponent"));
|
|
37
|
+
|
|
40
38
|
var _variables = require("../common/variables.js");
|
|
41
39
|
|
|
42
40
|
var _utils = require("../common/utils.js");
|
|
43
41
|
|
|
44
|
-
var
|
|
42
|
+
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
43
|
+
|
|
44
|
+
var _Icons = _interopRequireDefault(require("./Icons"));
|
|
45
|
+
|
|
46
|
+
var _BackgroundColorContext = _interopRequireWildcard(require("../BackgroundColorContext.js"));
|
|
47
|
+
|
|
48
|
+
function _templateObject10() {
|
|
49
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n display: inline-block;\n position: relative;\n height: auto;\n width: ", ";\n\n .MuiTextField-root {\n width: 100%;\n font-family: ", ";\n\n .MuiFormHelperText-root {\n font-weight: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n color: ", " !important;\n margin-top: 6px;\n }\n\n .MuiFormLabel-root {\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n color: ", ";\n padding-left: ", ";\n\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n\n &.Mui-focused {\n color: ", ";\n &.MuiInputLabel-shrink {\n transform: ", ";\n }\n }\n\n &.MuiInputLabel-shrink {\n font-family: ", ";\n\n transform: ", ";\n }\n\n &.Mui-error {\n color: ", ";\n }\n\n &:not(.MuiInputLabel-shrink) {\n font-family: ", ";\n color: ", ";\n\n & + div,\n & + div + p {\n color: ", ";\n }\n }\n\n &.MuiInputLabel-shrink {\n & + div::before {\n border-color: ", ";\n }\n & + div + p {\n color: ", ";\n }\n }\n }\n\n .MuiInputBase-root.MuiInput-root.MuiInput-underline {\n font-family: ", ";\n\n &::before {\n border-bottom: ", ";\n }\n\n &:not(.Mui-error)::before,\n &:not(&.Mui-focused)::before {\n border-bottom: ", ";\n }\n\n &::after {\n border-bottom: ", ";\n }\n\n &.Mui-error {\n &::before {\n border-width: ", ";\n border-color: ", ";\n }\n &::after {\n transform: scaleX(0);\n }\n }\n\n &.Mui-focused {\n &::after {\n border-width: calc(", " + 1px);\n border-color: ", ";\n }\n &.Mui-error::after {\n border-color: ", ";\n }\n }\n\n &.Mui-disabled {\n cursor: not-allowed;\n\n &::before {\n border-bottom: ", ";\n border-bottom-style: solid;\n }\n }\n\n .MuiInputBase-input {\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n color: ", ";\n padding-left: ", ";\n text-overflow: ellipsis;\n\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n }\n\n .MuiInputAdornment-root {\n height: 20px;\n\n &.MuiInputAdornment-positionEnd {\n & > p {\n font-family: ", ";\n margin-right: 8px;\n margin-bottom: 1px;\n }\n }\n &.Mui-disabled {\n cursor: not-allowed;\n opacity: 0.5;\n }\n }\n\n &:hover:not(.Mui-disabled):before &:hover:not(.Mui-error):before {\n border-bottom-color: ", ";\n }\n }\n\n & > p {\n &.Mui-error {\n color: ", " !important;\n }\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n }\n }\n"]);
|
|
50
|
+
|
|
51
|
+
_templateObject10 = function _templateObject10() {
|
|
52
|
+
return data;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
return data;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function _templateObject9() {
|
|
59
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n ", ";\n font-weight: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n color: ", ";\n"]);
|
|
60
|
+
|
|
61
|
+
_templateObject9 = function _templateObject9() {
|
|
62
|
+
return data;
|
|
63
|
+
};
|
|
45
64
|
|
|
46
|
-
|
|
65
|
+
return data;
|
|
66
|
+
}
|
|
47
67
|
|
|
48
68
|
function _templateObject8() {
|
|
49
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
69
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n top: 23px;\n left: 0;\n max-height: 20px;\n max-width: 20px;\n color: ", ";\n margin-right: 8px;\n width: 20px;\n opacity: ", ";\n ", ";\n overflow: hidden;\n\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
|
|
50
70
|
|
|
51
71
|
_templateObject8 = function _templateObject8() {
|
|
52
72
|
return data;
|
|
@@ -56,7 +76,7 @@ function _templateObject8() {
|
|
|
56
76
|
}
|
|
57
77
|
|
|
58
78
|
function _templateObject7() {
|
|
59
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n top: 23px;\n left: 0;\n max-height: 20px;\n max-width: 20px;\n margin-right: 8px;\n width: 20px;\n opacity: ", ";\n
|
|
79
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n top: 23px;\n left: 0;\n max-height: 20px;\n max-width: 20px;\n margin-right: 8px;\n width: 20px;\n opacity: ", ";\n ", ";\n"]);
|
|
60
80
|
|
|
61
81
|
_templateObject7 = function _templateObject7() {
|
|
62
82
|
return data;
|
|
@@ -66,7 +86,7 @@ function _templateObject7() {
|
|
|
66
86
|
}
|
|
67
87
|
|
|
68
88
|
function _templateObject6() {
|
|
69
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n top:
|
|
89
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n position: absolute;\n top: 20px;\n left: 0px;\n font-weight: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n color: ", ";\n max-height: 20px;\n max-width: 20px;\n opacity: ", ";\n z-index: 1;\n ", ";\n"]);
|
|
70
90
|
|
|
71
91
|
_templateObject6 = function _templateObject6() {
|
|
72
92
|
return data;
|
|
@@ -76,7 +96,7 @@ function _templateObject6() {
|
|
|
76
96
|
}
|
|
77
97
|
|
|
78
98
|
function _templateObject5() {
|
|
79
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n position: absolute;\n top: 20px;\n left: 0px;\n
|
|
99
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n position: absolute;\n top: 20px;\n left: 0px;\n width: 20px;\n max-height: 20px;\n max-width: 20px;\n color: ", ";\n z-index: 1;\n opacity: ", ";\n ", ";\n overflow: hidden;\n\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
|
|
80
100
|
|
|
81
101
|
_templateObject5 = function _templateObject5() {
|
|
82
102
|
return data;
|
|
@@ -86,7 +106,7 @@ function _templateObject5() {
|
|
|
86
106
|
}
|
|
87
107
|
|
|
88
108
|
function _templateObject4() {
|
|
89
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n position: absolute;\n top: 20px;\n left: 0px;\n
|
|
109
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n position: absolute;\n top: 20px;\n left: 0px;\n max-height: 20px;\n max-width: 20px;\n z-index: 1;\n opacity: ", ";\n ", ";\n"]);
|
|
90
110
|
|
|
91
111
|
_templateObject4 = function _templateObject4() {
|
|
92
112
|
return data;
|
|
@@ -96,7 +116,7 @@ function _templateObject4() {
|
|
|
96
116
|
}
|
|
97
117
|
|
|
98
118
|
function _templateObject3() {
|
|
99
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
119
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n .MuiPaper-root {\n max-height: 250px;\n background-color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n color: ", ";\n border-color: ", ";\n border-width: ", ";\n border-style: ", ";\n overflow: auto;\n\n ::-webkit-scrollbar {\n width: 3px;\n }\n ::-webkit-scrollbar-track {\n background-color: ", ";\n border-radius: 3px;\n }\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 3px;\n }\n\n li {\n padding-bottom: ", ";\n padding-top: ", ";\n\n &:hover {\n color: ", ";\n background-color: ", ";\n }\n &:active {\n background-color: ", ";\n }\n }\n }\n"]);
|
|
100
120
|
|
|
101
121
|
_templateObject3 = function _templateObject3() {
|
|
102
122
|
return data;
|
|
@@ -106,7 +126,7 @@ function _templateObject3() {
|
|
|
106
126
|
}
|
|
107
127
|
|
|
108
128
|
function _templateObject2() {
|
|
109
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
129
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index: 1301;\n"]);
|
|
110
130
|
|
|
111
131
|
_templateObject2 = function _templateObject2() {
|
|
112
132
|
return data;
|
|
@@ -116,7 +136,7 @@ function _templateObject2() {
|
|
|
116
136
|
}
|
|
117
137
|
|
|
118
138
|
function _templateObject() {
|
|
119
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n padding-left: 12px;\n"]);
|
|
139
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n padding-left: 12px;\n color:red;\n"]);
|
|
120
140
|
|
|
121
141
|
_templateObject = function _templateObject() {
|
|
122
142
|
return data;
|
|
@@ -146,7 +166,7 @@ var makeCancelable = function makeCancelable(promise) {
|
|
|
146
166
|
};
|
|
147
167
|
};
|
|
148
168
|
|
|
149
|
-
var
|
|
169
|
+
var V3DxcInputText = function V3DxcInputText(_ref) {
|
|
150
170
|
var _ref$label = _ref.label,
|
|
151
171
|
label = _ref$label === void 0 ? " " : _ref$label,
|
|
152
172
|
_ref$name = _ref.name,
|
|
@@ -183,7 +203,9 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
183
203
|
margin = _ref.margin,
|
|
184
204
|
_ref$size = _ref.size,
|
|
185
205
|
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
186
|
-
autocompleteOptions = _ref.autocompleteOptions
|
|
206
|
+
autocompleteOptions = _ref.autocompleteOptions,
|
|
207
|
+
_ref$tabIndex = _ref.tabIndex,
|
|
208
|
+
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
187
209
|
|
|
188
210
|
var _useState = (0, _react.useState)(""),
|
|
189
211
|
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
@@ -215,10 +237,8 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
215
237
|
isError = _useState12[0],
|
|
216
238
|
changeIsError = _useState12[1];
|
|
217
239
|
|
|
218
|
-
var
|
|
219
|
-
var
|
|
220
|
-
return (0, _utils.getCustomTheme)(_variables.componentTokens, (0, _utils.getCustomTheme)(_variables.defaultTheme, customTheme));
|
|
221
|
-
}, [customTheme]);
|
|
240
|
+
var colorsTheme = (0, _useTheme["default"])();
|
|
241
|
+
var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
|
|
222
242
|
|
|
223
243
|
var changeValue = function changeValue(newValue) {
|
|
224
244
|
if (value === null || value === undefined) {
|
|
@@ -297,6 +317,42 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
297
317
|
}
|
|
298
318
|
};
|
|
299
319
|
|
|
320
|
+
var handleSuffixKeyPress = function handleSuffixKeyPress(event) {
|
|
321
|
+
event.preventDefault();
|
|
322
|
+
|
|
323
|
+
if (!disabled && (event.nativeEvent.code === "Enter" || event.nativeEvent.code === "Space")) {
|
|
324
|
+
onClickSuffix(event);
|
|
325
|
+
}
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
var handlePrefixKeyPress = function handlePrefixKeyPress(event) {
|
|
329
|
+
event.preventDefault();
|
|
330
|
+
|
|
331
|
+
if (!disabled && (event.nativeEvent.code === "Enter" || event.nativeEvent.code === "Space")) {
|
|
332
|
+
onClickPrefix(event);
|
|
333
|
+
}
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
var ThemedSuggestions = function ThemedSuggestions() {
|
|
337
|
+
var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
|
|
338
|
+
return _react["default"].createElement(SuggestionsContainer, {
|
|
339
|
+
margin: margin,
|
|
340
|
+
size: size,
|
|
341
|
+
backgroundType: backgroundType
|
|
342
|
+
}, _react["default"].createElement(_Paper["default"], null, isOpen && !isSearching && !isError && filteredOptions.length === 0 && _react["default"].createElement(_MenuItem["default"], null, "No matches found."), isOpen && !isSearching && filteredOptions.length > 0 && filteredOptions.map(function (suggestion) {
|
|
343
|
+
return _react["default"].createElement(_MenuItem["default"], {
|
|
344
|
+
key: suggestion,
|
|
345
|
+
disableRipple: true,
|
|
346
|
+
onMouseDown: function onMouseDown(event) {
|
|
347
|
+
return event.preventDefault();
|
|
348
|
+
},
|
|
349
|
+
onClick: function onClick() {
|
|
350
|
+
return handlerSuggestionClicked(suggestion);
|
|
351
|
+
}
|
|
352
|
+
}, suggestion);
|
|
353
|
+
}), isSearching && _react["default"].createElement(_MenuItem["default"], null, "Searching..."), isError && _react["default"].createElement(_MenuItem["default"], null, "Error fetching data", _react["default"].createElement(ErrorIconContainer, null, _Icons["default"]))));
|
|
354
|
+
};
|
|
355
|
+
|
|
300
356
|
return _react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
301
357
|
theme: colorsTheme.inputText
|
|
302
358
|
}, _react["default"].createElement(TextContainer, {
|
|
@@ -306,17 +362,29 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
306
362
|
required: required,
|
|
307
363
|
assistiveText: assistiveText,
|
|
308
364
|
margin: margin,
|
|
309
|
-
size: size
|
|
365
|
+
size: size,
|
|
366
|
+
backgroundType: backgroundType
|
|
310
367
|
}, prefixIcon ? _react["default"].createElement(PrefixIconContainer, {
|
|
368
|
+
tabIndex: typeof onClickPrefix === "function" && !disabled ? tabIndex : -1,
|
|
311
369
|
disabled: disabled,
|
|
312
|
-
onClick: onClickPrefix
|
|
370
|
+
onClick: !disabled ? onClickPrefix : null,
|
|
371
|
+
interactuable: typeof onClickPrefix === "function" && !disabled,
|
|
372
|
+
backgroundType: backgroundType,
|
|
373
|
+
onKeyPress: handlePrefixKeyPress
|
|
313
374
|
}, (0, _typeof2["default"])(prefixIcon) === "object" ? prefixIcon : _react["default"].createElement(prefixIcon)) : prefixIconSrc && _react["default"].createElement(PrefixIcon, {
|
|
375
|
+
tabIndex: typeof onClickPrefix === "function" && !disabled ? tabIndex : -1,
|
|
314
376
|
src: prefixIconSrc,
|
|
315
377
|
disabled: disabled,
|
|
316
|
-
onClick: onClickPrefix
|
|
378
|
+
onClick: !disabled ? onClickPrefix : null,
|
|
379
|
+
interactuable: typeof onClickPrefix === "function" && !disabled,
|
|
380
|
+
onKeyPress: handlePrefixKeyPress
|
|
317
381
|
}) || prefix && _react["default"].createElement(PrefixLabel, {
|
|
382
|
+
tabIndex: typeof onClickPrefix === "function" && !disabled ? tabIndex : -1,
|
|
318
383
|
disabled: disabled,
|
|
319
|
-
onClick: onClickPrefix
|
|
384
|
+
onClick: !disabled ? onClickPrefix : null,
|
|
385
|
+
interactuable: typeof onClickPrefix === "function" && !disabled,
|
|
386
|
+
backgroundType: backgroundType,
|
|
387
|
+
onKeyPress: handlePrefixKeyPress
|
|
320
388
|
}, prefix), _react["default"].createElement(_TextField["default"], {
|
|
321
389
|
error: invalid,
|
|
322
390
|
value: value != null ? value : innerValue,
|
|
@@ -335,18 +403,34 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
335
403
|
type: isMasked ? "password" : "text",
|
|
336
404
|
InputProps: {
|
|
337
405
|
endAdornment: (suffix || suffixIconSrc || suffixIcon) && _react["default"].createElement(_InputAdornment["default"], {
|
|
338
|
-
position: "end"
|
|
339
|
-
onClick: onClickSuffix
|
|
406
|
+
position: "end"
|
|
340
407
|
}, suffixIcon ? _react["default"].createElement(SuffixIconContainer, {
|
|
408
|
+
tabIndex: typeof onClickSuffix === "function" && !disabled ? tabIndex : -1,
|
|
341
409
|
disabled: disabled,
|
|
342
|
-
onClick: onClickSuffix
|
|
410
|
+
onClick: onClickSuffix,
|
|
411
|
+
interactuable: typeof onClickSuffix === "function" && !disabled,
|
|
412
|
+
backgroundType: backgroundType,
|
|
413
|
+
onKeyPress: handleSuffixKeyPress
|
|
343
414
|
}, (0, _typeof2["default"])(suffixIcon) === "object" ? suffixIcon : _react["default"].createElement(suffixIcon)) : suffixIconSrc && _react["default"].createElement(SuffixIcon, {
|
|
415
|
+
tabIndex: typeof onClickSuffix === "function" && !disabled ? tabIndex : -1,
|
|
344
416
|
disabled: disabled,
|
|
345
417
|
src: suffixIconSrc,
|
|
346
|
-
onClick: onClickSuffix
|
|
347
|
-
|
|
418
|
+
onClick: onClickSuffix,
|
|
419
|
+
interactuable: typeof onClickSuffix === "function" && !disabled,
|
|
420
|
+
onKeyPress: handleSuffixKeyPress
|
|
421
|
+
}) || _react["default"].createElement(SuffixLabel, {
|
|
422
|
+
tabIndex: typeof onClickSuffix === "function" && !disabled ? tabIndex : -1,
|
|
423
|
+
onClick: onClickSuffix,
|
|
424
|
+
disabled: disabled,
|
|
425
|
+
interactuable: typeof onClickSuffix === "function" && !disabled,
|
|
426
|
+
backgroundType: backgroundType,
|
|
427
|
+
onKeyPress: handleSuffixKeyPress
|
|
428
|
+
}, suffix))
|
|
429
|
+
},
|
|
430
|
+
inputProps: {
|
|
431
|
+
tabIndex: tabIndex
|
|
348
432
|
}
|
|
349
|
-
})), _react["default"].createElement(
|
|
433
|
+
})), _react["default"].createElement(DxcSuggestions, {
|
|
350
434
|
open: isOpen,
|
|
351
435
|
anchorEl: anchorEl,
|
|
352
436
|
anchororigin: {
|
|
@@ -358,22 +442,9 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
358
442
|
marginTop: "0px"
|
|
359
443
|
}
|
|
360
444
|
}
|
|
361
|
-
}, _react["default"].createElement(
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
}, _react["default"].createElement(_react["default"].Fragment, null, _react["default"].createElement(_Paper["default"], null, isOpen && !isSearching && !isError && filteredOptions.length === 0 && _react["default"].createElement(_MenuItem["default"], null, "No matches found."), isOpen && !isSearching && filteredOptions.length > 0 && filteredOptions.map(function (suggestion) {
|
|
365
|
-
return _react["default"].createElement(_MenuItem["default"], {
|
|
366
|
-
key: suggestion,
|
|
367
|
-
onMouseDown: function onMouseDown(event) {
|
|
368
|
-
return event.preventDefault();
|
|
369
|
-
},
|
|
370
|
-
onClick: function onClick() {
|
|
371
|
-
return handlerSuggestionClicked(suggestion);
|
|
372
|
-
}
|
|
373
|
-
}, suggestion);
|
|
374
|
-
}), isSearching && _react["default"].createElement(_MenuItem["default"], null, "Searching..."), isError && _react["default"].createElement(_MenuItem["default"], null, "Error fetching data", _react["default"].createElement(ErrorIcon, {
|
|
375
|
-
src: _error["default"]
|
|
376
|
-
})))))));
|
|
445
|
+
}, _react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
|
|
446
|
+
color: colorsTheme.inputText.optionBackgroundColor
|
|
447
|
+
}, _react["default"].createElement(ThemedSuggestions, null))));
|
|
377
448
|
};
|
|
378
449
|
|
|
379
450
|
var sizes = {
|
|
@@ -383,7 +454,7 @@ var sizes = {
|
|
|
383
454
|
fillParent: "100%"
|
|
384
455
|
};
|
|
385
456
|
|
|
386
|
-
var
|
|
457
|
+
var ErrorIconContainer = _styledComponents["default"].div(_templateObject());
|
|
387
458
|
|
|
388
459
|
var calculateWidth = function calculateWidth(margin, size) {
|
|
389
460
|
if (size === "fillParent") {
|
|
@@ -393,71 +464,115 @@ var calculateWidth = function calculateWidth(margin, size) {
|
|
|
393
464
|
return sizes[size];
|
|
394
465
|
};
|
|
395
466
|
|
|
396
|
-
var
|
|
467
|
+
var getCursor = function getCursor(interactuable, disabled) {
|
|
468
|
+
if (disabled) {
|
|
469
|
+
return "cursor:not-allowed;";
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
if (interactuable) {
|
|
473
|
+
return "cursor:pointer;";
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
return "cursor:default; outline:none;";
|
|
477
|
+
};
|
|
478
|
+
|
|
479
|
+
var DxcSuggestions = (0, _styledComponents["default"])(_Popper["default"])(_templateObject2());
|
|
480
|
+
|
|
481
|
+
var SuggestionsContainer = _styledComponents["default"].div(_templateObject3(), function (props) {
|
|
397
482
|
return calculateWidth(props.margin, props.size);
|
|
483
|
+
}, function (props) {
|
|
484
|
+
return props.theme.optionBackgroundColor;
|
|
485
|
+
}, function (props) {
|
|
486
|
+
return props.theme.fontFamily;
|
|
487
|
+
}, function (props) {
|
|
488
|
+
return props.theme.optionFontSize;
|
|
489
|
+
}, function (props) {
|
|
490
|
+
return props.theme.optionFontStyle;
|
|
491
|
+
}, function (props) {
|
|
492
|
+
return props.theme.optionFontWeight;
|
|
493
|
+
}, function (props) {
|
|
494
|
+
return props.backgroundType === "dark" ? props.theme.optionFontColorOnDark : props.theme.optionFontColor;
|
|
495
|
+
}, function (props) {
|
|
496
|
+
return props.theme.optionBorderColor;
|
|
497
|
+
}, function (props) {
|
|
498
|
+
return props.theme.optionBorderThickness;
|
|
499
|
+
}, function (props) {
|
|
500
|
+
return props.theme.optionBorderStyle;
|
|
398
501
|
}, function (props) {
|
|
399
502
|
return props.theme.scrollBarTrackColor;
|
|
400
503
|
}, function (props) {
|
|
401
504
|
return props.theme.scrollBarThumbColor;
|
|
505
|
+
}, function (props) {
|
|
506
|
+
return props.theme.optionPaddingBottom;
|
|
507
|
+
}, function (props) {
|
|
508
|
+
return props.theme.optionPaddingTop;
|
|
402
509
|
}, function (props) {
|
|
403
510
|
return props.theme.hoverOptionColor;
|
|
404
511
|
}, function (props) {
|
|
405
|
-
return ""
|
|
512
|
+
return props.backgroundType === "dark" ? props.theme.hoverOptionBackgroundColorOnDark : props.theme.hoverOptionBackgroundColor;
|
|
513
|
+
}, function (props) {
|
|
514
|
+
return props.backgroundType === "dark" ? props.theme.selectedOptionBackgroundColorOnDark : props.theme.selectedOptionBackgroundColor;
|
|
406
515
|
});
|
|
407
516
|
|
|
408
|
-
var PrefixIcon = _styledComponents["default"].img(
|
|
517
|
+
var PrefixIcon = _styledComponents["default"].img(_templateObject4(), function (props) {
|
|
409
518
|
return props.disabled && 0.5 || 1;
|
|
410
519
|
}, function (props) {
|
|
411
|
-
|
|
412
|
-
return "pointer";
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
return "default";
|
|
520
|
+
return getCursor(props.interactuable, props.disabled);
|
|
416
521
|
});
|
|
417
522
|
|
|
418
|
-
var PrefixIconContainer = _styledComponents["default"].div(
|
|
523
|
+
var PrefixIconContainer = _styledComponents["default"].div(_templateObject5(), function (props) {
|
|
524
|
+
return props.backgroundType === "dark" ? props.theme.prefixIconColorOnDark : props.theme.prefixIconColor;
|
|
525
|
+
}, function (props) {
|
|
419
526
|
return props.disabled && 0.5 || 1;
|
|
420
527
|
}, function (props) {
|
|
421
|
-
|
|
422
|
-
return "pointer";
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
return "default";
|
|
528
|
+
return getCursor(props.interactuable, props.disabled);
|
|
426
529
|
});
|
|
427
530
|
|
|
428
|
-
var PrefixLabel = _styledComponents["default"].span(
|
|
429
|
-
return props.theme.
|
|
531
|
+
var PrefixLabel = _styledComponents["default"].span(_templateObject6(), function (props) {
|
|
532
|
+
return props.theme.prefixLabelFontWeight;
|
|
533
|
+
}, function (props) {
|
|
534
|
+
return props.theme.fontFamily;
|
|
535
|
+
}, function (props) {
|
|
536
|
+
return props.theme.prefixLabelFontSize;
|
|
537
|
+
}, function (props) {
|
|
538
|
+
return props.theme.prefixLabelFontStyle;
|
|
539
|
+
}, function (props) {
|
|
540
|
+
return props.backgroundType === "dark" ? props.theme.prefixLabelFontColorOnDark : props.theme.prefixLabelFontColor;
|
|
430
541
|
}, function (props) {
|
|
431
542
|
return props.disabled && 0.5 || 1;
|
|
432
543
|
}, function (props) {
|
|
433
|
-
|
|
434
|
-
return "pointer";
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
return "default";
|
|
544
|
+
return getCursor(props.interactuable, props.disabled);
|
|
438
545
|
});
|
|
439
546
|
|
|
440
|
-
var SuffixIcon = _styledComponents["default"].img(
|
|
547
|
+
var SuffixIcon = _styledComponents["default"].img(_templateObject7(), function (props) {
|
|
441
548
|
return props.disabled && 0.5 || 1;
|
|
442
549
|
}, function (props) {
|
|
443
|
-
|
|
444
|
-
return "pointer";
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
return "default";
|
|
550
|
+
return getCursor(props.interactuable, props.disabled);
|
|
448
551
|
});
|
|
449
552
|
|
|
450
|
-
var SuffixIconContainer = _styledComponents["default"].div(
|
|
553
|
+
var SuffixIconContainer = _styledComponents["default"].div(_templateObject8(), function (props) {
|
|
554
|
+
return props.backgroundType === "dark" ? props.theme.suffixIconColorOnDark : props.theme.suffixIconColor;
|
|
555
|
+
}, function (props) {
|
|
451
556
|
return props.disabled && 0.5 || 1;
|
|
452
557
|
}, function (props) {
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
}
|
|
558
|
+
return getCursor(props.interactuable, props.disabled);
|
|
559
|
+
});
|
|
456
560
|
|
|
457
|
-
|
|
561
|
+
var SuffixLabel = _styledComponents["default"].span(_templateObject9(), function (props) {
|
|
562
|
+
return getCursor(props.interactuable, props.disabled);
|
|
563
|
+
}, function (props) {
|
|
564
|
+
return props.theme.suffixLabelFontWeight;
|
|
565
|
+
}, function (props) {
|
|
566
|
+
return props.theme.fontFamily;
|
|
567
|
+
}, function (props) {
|
|
568
|
+
return props.theme.suffixLabelFontSize;
|
|
569
|
+
}, function (props) {
|
|
570
|
+
return props.theme.suffixLabelFontStyle;
|
|
571
|
+
}, function (props) {
|
|
572
|
+
return props.backgroundType === "dark" ? props.theme.suffixLabelFontColorOnDark : props.theme.suffixLabelFontColor;
|
|
458
573
|
});
|
|
459
574
|
|
|
460
|
-
var TextContainer = _styledComponents["default"].div(
|
|
575
|
+
var TextContainer = _styledComponents["default"].div(_templateObject10(), function (props) {
|
|
461
576
|
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
462
577
|
}, function (props) {
|
|
463
578
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
|
|
@@ -470,76 +585,95 @@ var TextContainer = _styledComponents["default"].div(_templateObject8(), functio
|
|
|
470
585
|
}, function (props) {
|
|
471
586
|
return calculateWidth(props.margin, props.size);
|
|
472
587
|
}, function (props) {
|
|
473
|
-
return props.theme.
|
|
588
|
+
return props.theme.fontFamily;
|
|
589
|
+
}, function (props) {
|
|
590
|
+
return props.theme.assistiveTextFontWeight;
|
|
591
|
+
}, function (props) {
|
|
592
|
+
return props.theme.fontFamily;
|
|
593
|
+
}, function (props) {
|
|
594
|
+
return props.theme.assistiveTextFontSize;
|
|
595
|
+
}, function (props) {
|
|
596
|
+
return props.theme.assistiveTextFontStyle;
|
|
597
|
+
}, function (props) {
|
|
598
|
+
return props.backgroundType === "dark" ? props.theme.assistiveTextFontColorOnDark : props.theme.assistiveTextFontColor;
|
|
599
|
+
}, function (props) {
|
|
600
|
+
return props.theme.labelFontSize;
|
|
601
|
+
}, function (props) {
|
|
602
|
+
return props.theme.labelFontStyle;
|
|
474
603
|
}, function (props) {
|
|
475
|
-
return props.theme.
|
|
604
|
+
return props.theme.labelFontWeight;
|
|
605
|
+
}, function (props) {
|
|
606
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
476
607
|
}, function (props) {
|
|
477
608
|
return (props.prefixIconSrc || props.prefix || props.prefixIcon) && "32px" || "inherit";
|
|
478
609
|
}, function (props) {
|
|
479
|
-
return props.theme.
|
|
610
|
+
return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
|
|
480
611
|
}, function (props) {
|
|
481
|
-
return props.
|
|
612
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
482
613
|
}, function (props) {
|
|
483
|
-
return props.
|
|
614
|
+
return props.prefixIconSrc || props.prefixIcon || (props.prefix || props.suffix) && "translate(8px, 1.5px) scale(0.75);" || "translate(0, 1.5px) scale(0.75);";
|
|
484
615
|
}, function (props) {
|
|
485
|
-
return props.theme.
|
|
616
|
+
return props.theme.fontFamily;
|
|
486
617
|
}, function (props) {
|
|
487
618
|
return props.prefixIcon && "translate(8px, 1.5px) scale(0.75);" || props.prefixIconSrc && "translate(8px, 1.5px) scale(0.75);" || props.prefix && "translate(8px, 1.5px) scale(0.75);" || "translate(0, 1.5px) scale(0.75);";
|
|
488
619
|
}, function (props) {
|
|
489
|
-
return props.theme.
|
|
620
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
490
621
|
}, function (props) {
|
|
491
|
-
return props.theme.
|
|
622
|
+
return props.theme.fontFamily;
|
|
492
623
|
}, function (props) {
|
|
493
|
-
return props.theme.
|
|
624
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
494
625
|
}, function (props) {
|
|
495
|
-
return props.theme.
|
|
626
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
496
627
|
}, function (props) {
|
|
497
|
-
return props.theme.
|
|
628
|
+
return props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor;
|
|
498
629
|
}, function (props) {
|
|
499
|
-
return "
|
|
630
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
500
631
|
}, function (props) {
|
|
501
|
-
return
|
|
632
|
+
return props.theme.fontFamily;
|
|
502
633
|
}, function (props) {
|
|
503
|
-
return "
|
|
634
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
|
|
504
635
|
}, function (props) {
|
|
505
|
-
return props.theme.
|
|
636
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
|
|
506
637
|
}, function (props) {
|
|
507
|
-
return props.theme.
|
|
638
|
+
return "calc(".concat(props.theme.underlineThickness, " + 1px) solid ").concat(props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor);
|
|
508
639
|
}, function (props) {
|
|
509
|
-
return props.theme.
|
|
640
|
+
return props.theme.underlineThickness;
|
|
510
641
|
}, function (props) {
|
|
511
|
-
return props.theme.
|
|
642
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
512
643
|
}, function (props) {
|
|
513
|
-
return props.theme.
|
|
644
|
+
return props.theme.underlineThickness;
|
|
514
645
|
}, function (props) {
|
|
515
|
-
return "
|
|
646
|
+
return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
|
|
516
647
|
}, function (props) {
|
|
517
|
-
return
|
|
648
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
518
649
|
}, function (props) {
|
|
519
|
-
return props.theme.
|
|
650
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor, " !important");
|
|
520
651
|
}, function (props) {
|
|
521
|
-
return props.theme.
|
|
652
|
+
return props.theme.valueFontSize;
|
|
522
653
|
}, function (props) {
|
|
523
|
-
return props.theme.
|
|
654
|
+
return props.theme.valueFontStyle;
|
|
524
655
|
}, function (props) {
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
return "
|
|
656
|
+
return props.theme.valueFontWeight;
|
|
657
|
+
}, function (props) {
|
|
658
|
+
return props.backgroundType === "dark" ? props.theme.valueFontColorOnDark : props.theme.valueFontColor;
|
|
659
|
+
}, function (props) {
|
|
660
|
+
return (props.prefixIconSrc || props.prefix || props.prefixIcon) && "32px" || "inherit";
|
|
661
|
+
}, function (props) {
|
|
662
|
+
return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
|
|
663
|
+
}, function (props) {
|
|
664
|
+
return props.theme.fontFamily;
|
|
530
665
|
}, function (props) {
|
|
531
|
-
return props.theme.
|
|
666
|
+
return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
|
|
532
667
|
}, function (props) {
|
|
533
|
-
return props.theme.
|
|
668
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
534
669
|
}, function (props) {
|
|
535
|
-
return props.theme.
|
|
670
|
+
return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
|
|
536
671
|
});
|
|
537
672
|
|
|
538
|
-
|
|
673
|
+
V3DxcInputText.propTypes = {
|
|
539
674
|
label: _propTypes["default"].string,
|
|
540
675
|
name: _propTypes["default"].string,
|
|
541
676
|
value: _propTypes["default"].string,
|
|
542
|
-
theme: _propTypes["default"].oneOf(["light", "dark", ""]),
|
|
543
677
|
assistiveText: _propTypes["default"].string,
|
|
544
678
|
disabled: _propTypes["default"].bool,
|
|
545
679
|
prefix: _propTypes["default"].string,
|
|
@@ -564,7 +698,8 @@ DxcInputText.propTypes = {
|
|
|
564
698
|
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
565
699
|
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
566
700
|
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
567
|
-
autocompleteOptions: _propTypes["default"].any
|
|
701
|
+
autocompleteOptions: _propTypes["default"].any,
|
|
702
|
+
tabIndex: _propTypes["default"].number
|
|
568
703
|
};
|
|
569
|
-
var _default =
|
|
704
|
+
var _default = V3DxcInputText;
|
|
570
705
|
exports["default"] = _default;
|