@dxc-technology/halstack-react 3.2.0 → 4.0.0
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.js +46 -0
- package/ThemeContext.js +250 -0
- package/V3Select/V3Select.js +549 -0
- package/V3Select/index.d.ts +27 -0
- package/V3Textarea/V3Textarea.js +264 -0
- package/V3Textarea/index.d.ts +27 -0
- package/{dist/accordion → accordion}/Accordion.js +119 -50
- package/accordion/index.d.ts +28 -0
- package/{dist/accordion-group → accordion-group}/AccordionGroup.js +33 -1
- package/accordion-group/index.d.ts +16 -0
- package/alert/Alert.js +403 -0
- package/alert/index.d.ts +51 -0
- package/badge/Badge.js +63 -0
- package/{dist/box → box}/Box.js +27 -18
- package/box/index.d.ts +25 -0
- package/button/Button.js +238 -0
- package/button/Button.stories.js +27 -0
- package/button/index.d.ts +24 -0
- package/{dist/card → card}/Card.js +16 -9
- package/card/index.d.ts +22 -0
- package/{dist/checkbox → checkbox}/Checkbox.js +89 -23
- package/checkbox/index.d.ts +24 -0
- package/{dist/chip → chip}/Chip.js +63 -21
- package/chip/index.d.ts +22 -0
- package/{dist/common → common}/OpenSans.css +0 -0
- package/{dist/common → common}/RequiredComponent.js +0 -0
- 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/common/utils.js +22 -0
- package/common/variables.js +1567 -0
- package/{dist/date → date}/Date.js +60 -38
- package/date/index.d.ts +27 -0
- package/date-input/DateInput.js +400 -0
- package/date-input/index.d.ts +95 -0
- package/{dist/dialog → dialog}/Dialog.js +44 -29
- package/dialog/index.d.ts +18 -0
- package/{dist/dropdown → dropdown}/Dropdown.js +162 -74
- package/dropdown/index.d.ts +26 -0
- package/file-input/FileInput.js +644 -0
- package/file-input/FileItem.js +287 -0
- package/file-input/index.d.ts +81 -0
- package/{dist/footer → footer}/Footer.js +79 -37
- package/footer/Icons.js +77 -0
- package/footer/index.d.ts +25 -0
- package/{dist/header → header}/Header.js +157 -72
- package/header/Icons.js +59 -0
- package/header/index.d.ts +25 -0
- package/heading/Heading.js +230 -0
- package/heading/index.d.ts +17 -0
- package/input-text/Icons.js +22 -0
- package/{dist/input-text → input-text}/InputText.js +162 -66
- package/input-text/index.d.ts +36 -0
- package/{dist/layout → layout}/ApplicationLayout.js +7 -11
- package/layout/Icons.js +55 -0
- package/{dist/link → link}/Link.js +76 -39
- package/link/index.d.ts +23 -0
- package/main.d.ts +40 -0
- package/{dist/main.js → main.js} +71 -15
- package/number-input/NumberInput.js +136 -0
- package/number-input/NumberInputContext.js +16 -0
- package/number-input/index.d.ts +113 -0
- package/package.json +25 -19
- package/paginator/Icons.js +66 -0
- package/{dist/paginator → paginator}/Paginator.js +86 -42
- package/paginator/index.d.ts +20 -0
- package/password-input/PasswordInput.js +203 -0
- package/password-input/index.d.ts +94 -0
- package/{dist/progress-bar → progress-bar}/ProgressBar.js +88 -38
- package/progress-bar/index.d.ts +18 -0
- package/{dist/radio → radio}/Radio.js +28 -9
- package/radio/index.d.ts +23 -0
- package/{dist/resultsetTable → resultsetTable}/ResultsetTable.js +65 -40
- package/resultsetTable/index.d.ts +19 -0
- package/select/Select.js +1138 -0
- package/select/index.d.ts +131 -0
- package/{dist/sidenav → sidenav}/Sidenav.js +47 -23
- package/sidenav/index.d.ts +13 -0
- package/slider/Slider.js +404 -0
- package/slider/index.d.ts +29 -0
- package/spinner/Spinner.js +381 -0
- package/spinner/index.d.ts +17 -0
- package/{dist/switch → switch}/Switch.js +42 -14
- package/switch/index.d.ts +24 -0
- package/{dist/table → table}/Table.js +45 -11
- package/table/index.d.ts +13 -0
- package/{dist/tabs → tabs}/Tabs.js +37 -19
- package/tabs/index.d.ts +19 -0
- package/{dist/tag → tag}/Tag.js +50 -36
- package/tag/index.d.ts +24 -0
- package/text-input/TextInput.js +992 -0
- package/text-input/index.d.ts +135 -0
- package/textarea/Textarea.js +369 -0
- package/textarea/index.d.ts +117 -0
- package/{dist/toggle → toggle}/Toggle.js +0 -0
- package/toggle/index.d.ts +21 -0
- package/toggle-group/ToggleGroup.js +327 -0
- package/toggle-group/index.d.ts +21 -0
- package/{dist/upload → upload}/Upload.js +1 -5
- package/{dist/upload → upload}/buttons-upload/ButtonsUpload.js +28 -16
- package/upload/buttons-upload/Icons.js +40 -0
- package/{dist/upload → upload}/dragAndDropArea/DragAndDropArea.js +61 -25
- package/upload/dragAndDropArea/Icons.js +39 -0
- package/{dist/upload → upload}/file-upload/FileToUpload.js +52 -25
- package/upload/file-upload/Icons.js +66 -0
- package/{dist/upload → upload}/files-upload/FilesToUpload.js +3 -3
- package/upload/index.d.ts +15 -0
- package/upload/transaction/Icons.js +160 -0
- package/{dist/upload → upload}/transaction/Transaction.js +37 -41
- package/{dist/upload → upload}/transactions/Transactions.js +24 -8
- package/{dist/useTheme.js → useTheme.js} +0 -0
- package/wizard/Icons.js +65 -0
- package/{dist/wizard → wizard}/Wizard.js +106 -56
- package/wizard/index.d.ts +18 -0
- package/README.md +0 -66
- package/babel.config.js +0 -8
- package/dist/ThemeContext.js +0 -201
- 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.js +0 -318
- 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/badge/Badge.js +0 -40
- package/dist/button/Button.js +0 -219
- 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/utils.js +0 -42
- package/dist/common/variables.js +0 -523
- 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/heading/Heading.js +0 -163
- 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.js +0 -490
- package/dist/select/Select.stories.js +0 -235
- package/dist/select/readme.md +0 -72
- package/dist/slider/Slider.js +0 -267
- package/dist/slider/Slider.stories.js +0 -241
- package/dist/slider/readme.md +0 -64
- package/dist/spinner/Spinner.js +0 -198
- 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/textarea/Textarea.js +0 -238
- package/dist/toggle/Toggle.stories.js +0 -297
- package/dist/toggle/readme.md +0 -80
- package/dist/toggle-group/ToggleGroup.js +0 -223
- 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/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 -393
- package/test/Dialog.test.js +0 -23
- package/test/Dropdown.test.js +0 -130
- package/test/Footer.test.js +0 -99
- package/test/Header.test.js +0 -39
- package/test/Heading.test.js +0 -35
- package/test/InputText.test.js +0 -240
- package/test/Link.test.js +0 -42
- package/test/Paginator.test.js +0 -177
- package/test/ProgressBar.test.js +0 -35
- package/test/Radio.test.js +0 -37
- package/test/ResultsetTable.test.js +0 -330
- package/test/Select.test.js +0 -192
- package/test/Sidenav.test.js +0 -45
- package/test/Slider.test.js +0 -82
- package/test/Spinner.test.js +0 -27
- package/test/Switch.test.js +0 -45
- package/test/Table.test.js +0 -36
- package/test/Tabs.test.js +0 -109
- package/test/TabsForSections.test.js +0 -34
- package/test/Tag.test.js +0 -32
- package/test/TextArea.test.js +0 -52
- package/test/ToggleGroup.test.js +0 -81
- package/test/Upload.test.js +0 -60
- package/test/Wizard.test.js +0 -130
- package/test/mocks/pngMock.js +0 -1
- package/test/mocks/svgMock.js +0 -1
|
@@ -41,10 +41,12 @@ var _utils = require("../common/utils.js");
|
|
|
41
41
|
|
|
42
42
|
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
43
43
|
|
|
44
|
-
var
|
|
44
|
+
var _Icons = _interopRequireDefault(require("./Icons"));
|
|
45
|
+
|
|
46
|
+
var _BackgroundColorContext = _interopRequireWildcard(require("../BackgroundColorContext.js"));
|
|
45
47
|
|
|
46
48
|
function _templateObject10() {
|
|
47
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
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"]);
|
|
48
50
|
|
|
49
51
|
_templateObject10 = function _templateObject10() {
|
|
50
52
|
return data;
|
|
@@ -54,7 +56,7 @@ function _templateObject10() {
|
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
function _templateObject9() {
|
|
57
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n ", ";\n"]);
|
|
59
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n ", ";\n font-weight: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n color: ", ";\n"]);
|
|
58
60
|
|
|
59
61
|
_templateObject9 = function _templateObject9() {
|
|
60
62
|
return data;
|
|
@@ -64,7 +66,7 @@ function _templateObject9() {
|
|
|
64
66
|
}
|
|
65
67
|
|
|
66
68
|
function _templateObject8() {
|
|
67
|
-
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 overflow: hidden;\n\n img,\n svg {\n height: 100%;\n width: 100%;\n }\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"]);
|
|
68
70
|
|
|
69
71
|
_templateObject8 = function _templateObject8() {
|
|
70
72
|
return data;
|
|
@@ -84,7 +86,7 @@ function _templateObject7() {
|
|
|
84
86
|
}
|
|
85
87
|
|
|
86
88
|
function _templateObject6() {
|
|
87
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n position: absolute;\n top: 20px;\n left: 0px;\n font-family: ", ";\n
|
|
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"]);
|
|
88
90
|
|
|
89
91
|
_templateObject6 = function _templateObject6() {
|
|
90
92
|
return data;
|
|
@@ -94,7 +96,7 @@ function _templateObject6() {
|
|
|
94
96
|
}
|
|
95
97
|
|
|
96
98
|
function _templateObject5() {
|
|
97
|
-
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 z-index: 1;\n opacity: ", ";\n ", ";\n overflow: hidden;\n\n img,\n svg {\n height: 100%;\n width: 100%;\n }\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"]);
|
|
98
100
|
|
|
99
101
|
_templateObject5 = function _templateObject5() {
|
|
100
102
|
return data;
|
|
@@ -104,7 +106,7 @@ function _templateObject5() {
|
|
|
104
106
|
}
|
|
105
107
|
|
|
106
108
|
function _templateObject4() {
|
|
107
|
-
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"]);
|
|
108
110
|
|
|
109
111
|
_templateObject4 = function _templateObject4() {
|
|
110
112
|
return data;
|
|
@@ -114,7 +116,7 @@ function _templateObject4() {
|
|
|
114
116
|
}
|
|
115
117
|
|
|
116
118
|
function _templateObject3() {
|
|
117
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n .MuiPaper-root {\n max-height: 250px;\n overflow: auto;\n ::-webkit-scrollbar {\n width: 3px;\n }\n ::-webkit-scrollbar-track {\n background-color: ", ";\n border-radius: 3px;\n }\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"]);
|
|
118
120
|
|
|
119
121
|
_templateObject3 = function _templateObject3() {
|
|
120
122
|
return data;
|
|
@@ -134,7 +136,7 @@ function _templateObject2() {
|
|
|
134
136
|
}
|
|
135
137
|
|
|
136
138
|
function _templateObject() {
|
|
137
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n padding-left: 12px;\n"]);
|
|
139
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n padding-left: 12px;\n color: red;\n"]);
|
|
138
140
|
|
|
139
141
|
_templateObject = function _templateObject() {
|
|
140
142
|
return data;
|
|
@@ -164,7 +166,7 @@ var makeCancelable = function makeCancelable(promise) {
|
|
|
164
166
|
};
|
|
165
167
|
};
|
|
166
168
|
|
|
167
|
-
var
|
|
169
|
+
var DxcInput = function DxcInput(_ref) {
|
|
168
170
|
var _ref$label = _ref.label,
|
|
169
171
|
label = _ref$label === void 0 ? " " : _ref$label,
|
|
170
172
|
_ref$name = _ref.name,
|
|
@@ -236,6 +238,7 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
236
238
|
changeIsError = _useState12[1];
|
|
237
239
|
|
|
238
240
|
var colorsTheme = (0, _useTheme["default"])();
|
|
241
|
+
var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
|
|
239
242
|
|
|
240
243
|
var changeValue = function changeValue(newValue) {
|
|
241
244
|
if (value === null || value === undefined) {
|
|
@@ -314,6 +317,42 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
314
317
|
}
|
|
315
318
|
};
|
|
316
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
|
+
|
|
317
356
|
return _react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
318
357
|
theme: colorsTheme.inputText
|
|
319
358
|
}, _react["default"].createElement(TextContainer, {
|
|
@@ -323,23 +362,29 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
323
362
|
required: required,
|
|
324
363
|
assistiveText: assistiveText,
|
|
325
364
|
margin: margin,
|
|
326
|
-
size: size
|
|
365
|
+
size: size,
|
|
366
|
+
backgroundType: backgroundType
|
|
327
367
|
}, prefixIcon ? _react["default"].createElement(PrefixIconContainer, {
|
|
328
368
|
tabIndex: typeof onClickPrefix === "function" && !disabled ? tabIndex : -1,
|
|
329
369
|
disabled: disabled,
|
|
330
370
|
onClick: !disabled ? onClickPrefix : null,
|
|
331
|
-
interactuable: typeof onClickPrefix === "function" && !disabled
|
|
371
|
+
interactuable: typeof onClickPrefix === "function" && !disabled,
|
|
372
|
+
backgroundType: backgroundType,
|
|
373
|
+
onKeyPress: handlePrefixKeyPress
|
|
332
374
|
}, (0, _typeof2["default"])(prefixIcon) === "object" ? prefixIcon : _react["default"].createElement(prefixIcon)) : prefixIconSrc && _react["default"].createElement(PrefixIcon, {
|
|
333
375
|
tabIndex: typeof onClickPrefix === "function" && !disabled ? tabIndex : -1,
|
|
334
376
|
src: prefixIconSrc,
|
|
335
377
|
disabled: disabled,
|
|
336
378
|
onClick: !disabled ? onClickPrefix : null,
|
|
337
|
-
interactuable: typeof onClickPrefix === "function" && !disabled
|
|
379
|
+
interactuable: typeof onClickPrefix === "function" && !disabled,
|
|
380
|
+
onKeyPress: handlePrefixKeyPress
|
|
338
381
|
}) || prefix && _react["default"].createElement(PrefixLabel, {
|
|
339
382
|
tabIndex: typeof onClickPrefix === "function" && !disabled ? tabIndex : -1,
|
|
340
383
|
disabled: disabled,
|
|
341
384
|
onClick: !disabled ? onClickPrefix : null,
|
|
342
|
-
interactuable: typeof onClickPrefix === "function" && !disabled
|
|
385
|
+
interactuable: typeof onClickPrefix === "function" && !disabled,
|
|
386
|
+
backgroundType: backgroundType,
|
|
387
|
+
onKeyPress: handlePrefixKeyPress
|
|
343
388
|
}, prefix), _react["default"].createElement(_TextField["default"], {
|
|
344
389
|
error: invalid,
|
|
345
390
|
value: value != null ? value : innerValue,
|
|
@@ -363,18 +408,23 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
363
408
|
tabIndex: typeof onClickSuffix === "function" && !disabled ? tabIndex : -1,
|
|
364
409
|
disabled: disabled,
|
|
365
410
|
onClick: onClickSuffix,
|
|
366
|
-
interactuable: typeof onClickSuffix === "function" && !disabled
|
|
411
|
+
interactuable: typeof onClickSuffix === "function" && !disabled,
|
|
412
|
+
backgroundType: backgroundType,
|
|
413
|
+
onKeyPress: handleSuffixKeyPress
|
|
367
414
|
}, (0, _typeof2["default"])(suffixIcon) === "object" ? suffixIcon : _react["default"].createElement(suffixIcon)) : suffixIconSrc && _react["default"].createElement(SuffixIcon, {
|
|
368
415
|
tabIndex: typeof onClickSuffix === "function" && !disabled ? tabIndex : -1,
|
|
369
416
|
disabled: disabled,
|
|
370
417
|
src: suffixIconSrc,
|
|
371
418
|
onClick: onClickSuffix,
|
|
372
|
-
interactuable: typeof onClickSuffix === "function" && !disabled
|
|
419
|
+
interactuable: typeof onClickSuffix === "function" && !disabled,
|
|
420
|
+
onKeyPress: handleSuffixKeyPress
|
|
373
421
|
}) || _react["default"].createElement(SuffixLabel, {
|
|
374
422
|
tabIndex: typeof onClickSuffix === "function" && !disabled ? tabIndex : -1,
|
|
375
423
|
onClick: onClickSuffix,
|
|
376
424
|
disabled: disabled,
|
|
377
|
-
interactuable: typeof onClickSuffix === "function" && !disabled
|
|
425
|
+
interactuable: typeof onClickSuffix === "function" && !disabled,
|
|
426
|
+
backgroundType: backgroundType,
|
|
427
|
+
onKeyPress: handleSuffixKeyPress
|
|
378
428
|
}, suffix))
|
|
379
429
|
},
|
|
380
430
|
inputProps: {
|
|
@@ -392,22 +442,9 @@ var DxcInputText = function DxcInputText(_ref) {
|
|
|
392
442
|
marginTop: "0px"
|
|
393
443
|
}
|
|
394
444
|
}
|
|
395
|
-
}, _react["default"].createElement(
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
}, _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) {
|
|
399
|
-
return _react["default"].createElement(_MenuItem["default"], {
|
|
400
|
-
key: suggestion,
|
|
401
|
-
onMouseDown: function onMouseDown(event) {
|
|
402
|
-
return event.preventDefault();
|
|
403
|
-
},
|
|
404
|
-
onClick: function onClick() {
|
|
405
|
-
return handlerSuggestionClicked(suggestion);
|
|
406
|
-
}
|
|
407
|
-
}, suggestion);
|
|
408
|
-
}), isSearching && _react["default"].createElement(_MenuItem["default"], null, "Searching..."), isError && _react["default"].createElement(_MenuItem["default"], null, "Error fetching data", _react["default"].createElement(ErrorIcon, {
|
|
409
|
-
src: _error["default"]
|
|
410
|
-
})))))));
|
|
445
|
+
}, _react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
|
|
446
|
+
color: colorsTheme.inputText.optionBackgroundColor
|
|
447
|
+
}, _react["default"].createElement(ThemedSuggestions, null))));
|
|
411
448
|
};
|
|
412
449
|
|
|
413
450
|
var sizes = {
|
|
@@ -417,7 +454,7 @@ var sizes = {
|
|
|
417
454
|
fillParent: "100%"
|
|
418
455
|
};
|
|
419
456
|
|
|
420
|
-
var
|
|
457
|
+
var ErrorIconContainer = _styledComponents["default"].div(_templateObject());
|
|
421
458
|
|
|
422
459
|
var calculateWidth = function calculateWidth(margin, size) {
|
|
423
460
|
if (size === "fillParent") {
|
|
@@ -443,14 +480,38 @@ var DxcSuggestions = (0, _styledComponents["default"])(_Popper["default"])(_temp
|
|
|
443
480
|
|
|
444
481
|
var SuggestionsContainer = _styledComponents["default"].div(_templateObject3(), function (props) {
|
|
445
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;
|
|
446
501
|
}, function (props) {
|
|
447
502
|
return props.theme.scrollBarTrackColor;
|
|
448
503
|
}, function (props) {
|
|
449
504
|
return props.theme.scrollBarThumbColor;
|
|
505
|
+
}, function (props) {
|
|
506
|
+
return props.theme.optionPaddingBottom;
|
|
507
|
+
}, function (props) {
|
|
508
|
+
return props.theme.optionPaddingTop;
|
|
450
509
|
}, function (props) {
|
|
451
510
|
return props.theme.hoverOptionColor;
|
|
452
511
|
}, function (props) {
|
|
453
|
-
return props.theme.
|
|
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;
|
|
454
515
|
});
|
|
455
516
|
|
|
456
517
|
var PrefixIcon = _styledComponents["default"].img(_templateObject4(), function (props) {
|
|
@@ -460,15 +521,23 @@ var PrefixIcon = _styledComponents["default"].img(_templateObject4(), function (
|
|
|
460
521
|
});
|
|
461
522
|
|
|
462
523
|
var PrefixIconContainer = _styledComponents["default"].div(_templateObject5(), function (props) {
|
|
524
|
+
return props.backgroundType === "dark" ? props.theme.prefixIconColorOnDark : props.theme.prefixIconColor;
|
|
525
|
+
}, function (props) {
|
|
463
526
|
return props.disabled && 0.5 || 1;
|
|
464
527
|
}, function (props) {
|
|
465
528
|
return getCursor(props.interactuable, props.disabled);
|
|
466
529
|
});
|
|
467
530
|
|
|
468
531
|
var PrefixLabel = _styledComponents["default"].span(_templateObject6(), function (props) {
|
|
532
|
+
return props.theme.prefixLabelFontWeight;
|
|
533
|
+
}, function (props) {
|
|
469
534
|
return props.theme.fontFamily;
|
|
470
535
|
}, function (props) {
|
|
471
|
-
return props.theme.
|
|
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;
|
|
472
541
|
}, function (props) {
|
|
473
542
|
return props.disabled && 0.5 || 1;
|
|
474
543
|
}, function (props) {
|
|
@@ -482,6 +551,8 @@ var SuffixIcon = _styledComponents["default"].img(_templateObject7(), function (
|
|
|
482
551
|
});
|
|
483
552
|
|
|
484
553
|
var SuffixIconContainer = _styledComponents["default"].div(_templateObject8(), function (props) {
|
|
554
|
+
return props.backgroundType === "dark" ? props.theme.suffixIconColorOnDark : props.theme.suffixIconColor;
|
|
555
|
+
}, function (props) {
|
|
485
556
|
return props.disabled && 0.5 || 1;
|
|
486
557
|
}, function (props) {
|
|
487
558
|
return getCursor(props.interactuable, props.disabled);
|
|
@@ -489,11 +560,19 @@ var SuffixIconContainer = _styledComponents["default"].div(_templateObject8(), f
|
|
|
489
560
|
|
|
490
561
|
var SuffixLabel = _styledComponents["default"].span(_templateObject9(), function (props) {
|
|
491
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;
|
|
492
573
|
});
|
|
493
574
|
|
|
494
575
|
var TextContainer = _styledComponents["default"].div(_templateObject10(), function (props) {
|
|
495
|
-
return props.theme.fontSizeBase;
|
|
496
|
-
}, function (props) {
|
|
497
576
|
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
498
577
|
}, function (props) {
|
|
499
578
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
|
|
@@ -507,18 +586,30 @@ var TextContainer = _styledComponents["default"].div(_templateObject10(), functi
|
|
|
507
586
|
return calculateWidth(props.margin, props.size);
|
|
508
587
|
}, function (props) {
|
|
509
588
|
return props.theme.fontFamily;
|
|
589
|
+
}, function (props) {
|
|
590
|
+
return props.theme.assistiveTextFontWeight;
|
|
510
591
|
}, function (props) {
|
|
511
592
|
return props.theme.fontFamily;
|
|
512
593
|
}, function (props) {
|
|
513
|
-
return props.theme.
|
|
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;
|
|
514
601
|
}, function (props) {
|
|
515
|
-
return props.theme.
|
|
602
|
+
return props.theme.labelFontStyle;
|
|
516
603
|
}, function (props) {
|
|
517
|
-
return props.theme.
|
|
604
|
+
return props.theme.labelFontWeight;
|
|
605
|
+
}, function (props) {
|
|
606
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
518
607
|
}, function (props) {
|
|
519
608
|
return (props.prefixIconSrc || props.prefix || props.prefixIcon) && "32px" || "inherit";
|
|
520
609
|
}, function (props) {
|
|
521
|
-
return props.theme.
|
|
610
|
+
return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
|
|
611
|
+
}, function (props) {
|
|
612
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
522
613
|
}, function (props) {
|
|
523
614
|
return props.prefixIconSrc || props.prefixIcon || (props.prefix || props.suffix) && "translate(8px, 1.5px) scale(0.75);" || "translate(0, 1.5px) scale(0.75);";
|
|
524
615
|
}, function (props) {
|
|
@@ -526,58 +617,63 @@ var TextContainer = _styledComponents["default"].div(_templateObject10(), functi
|
|
|
526
617
|
}, function (props) {
|
|
527
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);";
|
|
528
619
|
}, function (props) {
|
|
529
|
-
return props.theme.
|
|
620
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
530
621
|
}, function (props) {
|
|
531
622
|
return props.theme.fontFamily;
|
|
532
623
|
}, function (props) {
|
|
533
|
-
return props.theme.
|
|
624
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
534
625
|
}, function (props) {
|
|
535
|
-
return props.theme.
|
|
626
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
536
627
|
}, function (props) {
|
|
537
|
-
return props.theme.
|
|
628
|
+
return props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor;
|
|
538
629
|
}, function (props) {
|
|
539
|
-
return props.theme.
|
|
630
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
540
631
|
}, function (props) {
|
|
541
632
|
return props.theme.fontFamily;
|
|
542
633
|
}, function (props) {
|
|
543
|
-
return "
|
|
634
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
|
|
544
635
|
}, function (props) {
|
|
545
|
-
return "
|
|
636
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
|
|
546
637
|
}, function (props) {
|
|
547
|
-
return "
|
|
638
|
+
return "calc(".concat(props.theme.underlineThickness, " + 1px) solid ").concat(props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor);
|
|
548
639
|
}, function (props) {
|
|
549
|
-
return props.theme.
|
|
640
|
+
return props.theme.underlineThickness;
|
|
550
641
|
}, function (props) {
|
|
551
|
-
return props.theme.
|
|
642
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
552
643
|
}, function (props) {
|
|
553
|
-
return props.theme.
|
|
644
|
+
return props.theme.underlineThickness;
|
|
554
645
|
}, function (props) {
|
|
555
|
-
return "
|
|
646
|
+
return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
|
|
556
647
|
}, function (props) {
|
|
557
|
-
return
|
|
648
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
558
649
|
}, function (props) {
|
|
559
|
-
return props.theme.
|
|
650
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor, " !important");
|
|
560
651
|
}, function (props) {
|
|
561
|
-
return props.theme.
|
|
652
|
+
return props.theme.valueFontSize;
|
|
562
653
|
}, function (props) {
|
|
563
|
-
return props.theme.
|
|
654
|
+
return props.theme.valueFontStyle;
|
|
564
655
|
}, function (props) {
|
|
565
|
-
return props.theme.
|
|
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;
|
|
566
663
|
}, function (props) {
|
|
567
|
-
return props.theme.
|
|
664
|
+
return props.theme.fontFamily;
|
|
568
665
|
}, function (props) {
|
|
569
|
-
return props.theme.
|
|
666
|
+
return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
|
|
570
667
|
}, function (props) {
|
|
571
|
-
return props.theme.
|
|
668
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
572
669
|
}, function (props) {
|
|
573
|
-
return props.theme.
|
|
670
|
+
return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
|
|
574
671
|
});
|
|
575
672
|
|
|
576
|
-
|
|
673
|
+
DxcInput.propTypes = {
|
|
577
674
|
label: _propTypes["default"].string,
|
|
578
675
|
name: _propTypes["default"].string,
|
|
579
676
|
value: _propTypes["default"].string,
|
|
580
|
-
theme: _propTypes["default"].oneOf(["light", "dark", ""]),
|
|
581
677
|
assistiveText: _propTypes["default"].string,
|
|
582
678
|
disabled: _propTypes["default"].bool,
|
|
583
679
|
prefix: _propTypes["default"].string,
|
|
@@ -605,5 +701,5 @@ DxcInputText.propTypes = {
|
|
|
605
701
|
autocompleteOptions: _propTypes["default"].any,
|
|
606
702
|
tabIndex: _propTypes["default"].number
|
|
607
703
|
};
|
|
608
|
-
var _default =
|
|
704
|
+
var _default = DxcInput;
|
|
609
705
|
exports["default"] = _default;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
type Size = "small" | "medium" | "large" | "fillParent";
|
|
2
|
+
type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
3
|
+
type Margin = {
|
|
4
|
+
top?: Space;
|
|
5
|
+
bottom?: Space;
|
|
6
|
+
left?: Space;
|
|
7
|
+
right?: Space;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
type Props = {
|
|
11
|
+
label?: string;
|
|
12
|
+
name?: string;
|
|
13
|
+
value?: string;
|
|
14
|
+
assistiveText?: string;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
prefix?: string;
|
|
17
|
+
suffix?: string;
|
|
18
|
+
prefixIcon?: any;
|
|
19
|
+
suffixIcon?: any;
|
|
20
|
+
prefixIconSrc?: string;
|
|
21
|
+
suffixIconSrc?: string;
|
|
22
|
+
onClickPrefix?: void;
|
|
23
|
+
onClickSuffix?: void;
|
|
24
|
+
onChange?: void;
|
|
25
|
+
onBlur?: void;
|
|
26
|
+
invalid?: boolean;
|
|
27
|
+
required?: void;
|
|
28
|
+
isMasked?: boolean;
|
|
29
|
+
placeholder?: string;
|
|
30
|
+
autocompleteOptions?: any;
|
|
31
|
+
margin?: Space | Margin;
|
|
32
|
+
size?: Size;
|
|
33
|
+
tabIndex?: number;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export default function DxcInput(props: Props): JSX.Element;
|
|
@@ -25,16 +25,12 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
25
25
|
|
|
26
26
|
var _variables = require("../common/variables.js");
|
|
27
27
|
|
|
28
|
-
var
|
|
29
|
-
|
|
30
|
-
var _twitter = _interopRequireDefault(require("./twitter.svg"));
|
|
31
|
-
|
|
32
|
-
var _facebook = _interopRequireDefault(require("./facebook.svg"));
|
|
28
|
+
var _Icons = require("./Icons");
|
|
33
29
|
|
|
34
30
|
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
35
31
|
|
|
36
32
|
function _templateObject10() {
|
|
37
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n justify-content: center;\n position: sticky;\n top: 45vh;\n width: 42px;\n min-height: 42px;\n background-color: ", ";\n border-radius: 50%;\n transform: ", ";\n transition: transform 0.4s ease-in-out;\n z-index:
|
|
33
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n justify-content: center;\n position: sticky;\n top: 45vh;\n width: 42px;\n min-height: 42px;\n background-color: ", ";\n border-radius: 50%;\n transform: ", ";\n transition: transform 0.4s ease-in-out;\n z-index: 1250;\n cursor: pointer;\n & > svg {\n fill: ", ";\n }\n"]);
|
|
38
34
|
|
|
39
35
|
_templateObject10 = function _templateObject10() {
|
|
40
36
|
return data;
|
|
@@ -114,7 +110,7 @@ function _templateObject3() {
|
|
|
114
110
|
}
|
|
115
111
|
|
|
116
112
|
function _templateObject2() {
|
|
117
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index:
|
|
113
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index: 1250;\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n"]);
|
|
118
114
|
|
|
119
115
|
_templateObject2 = function _templateObject2() {
|
|
120
116
|
return data;
|
|
@@ -124,7 +120,7 @@ function _templateObject2() {
|
|
|
124
120
|
}
|
|
125
121
|
|
|
126
122
|
function _templateObject() {
|
|
127
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: column;\n position: absolute;\n top: 64px;\n bottom: 0;\n left: 0;\n right:0;\n"]);
|
|
123
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: column;\n position: absolute;\n top: 64px;\n bottom: 0;\n left: 0;\n right: 0;\n"]);
|
|
128
124
|
|
|
129
125
|
_templateObject = function _templateObject() {
|
|
130
126
|
return data;
|
|
@@ -183,13 +179,13 @@ var defaultFooter = function defaultFooter() {
|
|
|
183
179
|
}],
|
|
184
180
|
socialLinks: [{
|
|
185
181
|
href: "https://www.linkedin.com/company/dxctechnology",
|
|
186
|
-
|
|
182
|
+
logo: _Icons.linkedinLogo
|
|
187
183
|
}, {
|
|
188
184
|
href: "https://twitter.com/dxctechnology",
|
|
189
|
-
|
|
185
|
+
logo: _Icons.twitterLogo
|
|
190
186
|
}, {
|
|
191
187
|
href: "https://www.facebook.com/DXCTechnology/",
|
|
192
|
-
|
|
188
|
+
logo: _Icons.facebookLogo
|
|
193
189
|
}]
|
|
194
190
|
});
|
|
195
191
|
};
|
package/layout/Icons.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.linkedinLogo = exports.twitterLogo = exports.facebookLogo = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var facebookLogo = _react["default"].createElement("svg", {
|
|
13
|
+
version: "1.1",
|
|
14
|
+
id: "Capa_1",
|
|
15
|
+
x: "0px",
|
|
16
|
+
y: "0px",
|
|
17
|
+
width: "438.536px",
|
|
18
|
+
height: "438.536px",
|
|
19
|
+
viewBox: "0 0 438.536 438.536",
|
|
20
|
+
fill: "#FFFFFF"
|
|
21
|
+
}, _react["default"].createElement("g", null, _react["default"].createElement("path", {
|
|
22
|
+
d: "M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123 C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126 h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225 C438.532,59.576,430.49,40.204,414.41,24.123z M373.155,225.548h-49.963V406.84h-74.802V225.548H210.99V163.02h37.401v-37.402 c0-26.838,6.283-47.107,18.843-60.813c12.559-13.706,33.304-20.555,62.242-20.555h49.963v62.526h-31.401 c-10.663,0-17.467,1.853-20.417,5.568c-2.949,3.711-4.428,10.23-4.428,19.558v31.119h56.534L373.155,225.548z"
|
|
23
|
+
})));
|
|
24
|
+
|
|
25
|
+
exports.facebookLogo = facebookLogo;
|
|
26
|
+
|
|
27
|
+
var twitterLogo = _react["default"].createElement("svg", {
|
|
28
|
+
version: "1.1",
|
|
29
|
+
id: "Capa_1",
|
|
30
|
+
x: "0px",
|
|
31
|
+
y: "0px",
|
|
32
|
+
width: "438.536px",
|
|
33
|
+
height: "438.536px",
|
|
34
|
+
viewBox: "0 0 438.536 438.536",
|
|
35
|
+
fill: "#FFFFFF"
|
|
36
|
+
}, _react["default"].createElement("g", null, _react["default"].createElement("path", {
|
|
37
|
+
d: "M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123 C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126 h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225 C438.532,59.576,430.49,40.204,414.41,24.123z M335.471,168.735c0.191,1.713,0.288,4.278,0.288,7.71 c0,15.989-2.334,32.025-6.995,48.104c-4.661,16.087-11.8,31.504-21.416,46.254c-9.606,14.749-21.074,27.791-34.396,39.115 c-13.325,11.32-29.311,20.365-47.968,27.117c-18.648,6.762-38.637,10.143-59.953,10.143c-33.116,0-63.76-8.952-91.931-26.836 c4.568,0.568,9.329,0.855,14.275,0.855c27.6,0,52.439-8.565,74.519-25.7c-12.941-0.185-24.506-4.179-34.688-11.991 c-10.185-7.803-17.273-17.699-21.271-29.691c4.947,0.76,8.658,1.137,11.132,1.137c4.187,0,9.042-0.76,14.56-2.279 c-13.894-2.669-25.598-9.562-35.115-20.697c-9.519-11.136-14.277-23.84-14.277-38.114v-0.571 c10.085,4.755,19.602,7.229,28.549,7.422c-17.321-11.613-25.981-28.265-25.981-49.963c0-10.66,2.758-20.747,8.278-30.264 c15.035,18.464,33.311,33.213,54.816,44.252c21.507,11.038,44.54,17.227,69.092,18.558c-0.95-3.616-1.427-8.186-1.427-13.704 c0-16.562,5.853-30.692,17.56-42.399c11.703-11.706,25.837-17.561,42.394-17.561c17.515,0,32.079,6.283,43.688,18.846 c13.134-2.474,25.892-7.33,38.26-14.56c-4.757,14.652-13.613,25.788-26.55,33.402c12.368-1.716,23.88-4.95,34.537-9.708 C357.458,149.793,347.462,160.166,335.471,168.735z"
|
|
38
|
+
})));
|
|
39
|
+
|
|
40
|
+
exports.twitterLogo = twitterLogo;
|
|
41
|
+
|
|
42
|
+
var linkedinLogo = _react["default"].createElement("svg", {
|
|
43
|
+
version: "1.1",
|
|
44
|
+
id: "Capa_1",
|
|
45
|
+
x: "0px",
|
|
46
|
+
y: "0px",
|
|
47
|
+
width: "438.536px",
|
|
48
|
+
height: "438.536px",
|
|
49
|
+
viewBox: "0 0 438.536 438.536",
|
|
50
|
+
fill: "#FFFFFF"
|
|
51
|
+
}, _react["default"].createElement("g", null, _react["default"].createElement("path", {
|
|
52
|
+
d: "M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123 C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126 h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225 C438.532,59.576,430.49,40.204,414.41,24.123z M133.618,367.157H67.666V169.016h65.952V367.157z M127.626,132.332 c-6.851,6.567-15.893,9.851-27.124,9.851h-0.288c-10.848,0-19.648-3.284-26.407-9.851c-6.76-6.567-10.138-14.703-10.138-24.41 c0-9.897,3.476-18.083,10.421-24.556c6.95-6.471,15.942-9.708,26.98-9.708c11.039,0,19.89,3.237,26.553,9.708 c6.661,6.473,10.088,14.659,10.277,24.556C137.899,117.625,134.477,125.761,127.626,132.332z M370.873,367.157h-65.952v-105.92 c0-29.879-11.036-44.823-33.116-44.823c-8.374,0-15.42,2.331-21.128,6.995c-5.715,4.661-9.996,10.324-12.847,16.991 c-1.335,3.422-1.999,8.75-1.999,15.981v110.775h-65.952c0.571-119.529,0.571-185.579,0-198.142h65.952v27.974 c13.867-21.681,33.558-32.544,59.101-32.544c22.84,0,41.21,7.52,55.104,22.554c13.895,15.037,20.841,37.214,20.841,66.519v113.64 H370.873z"
|
|
53
|
+
})));
|
|
54
|
+
|
|
55
|
+
exports.linkedinLogo = linkedinLogo;
|