@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
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
|
4
|
+
|
|
5
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
exports["default"] = void 0;
|
|
11
|
+
|
|
12
|
+
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
13
|
+
|
|
14
|
+
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
15
|
+
|
|
16
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
17
|
+
|
|
18
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
19
|
+
|
|
20
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
21
|
+
|
|
22
|
+
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
23
|
+
|
|
24
|
+
var _TextField = _interopRequireDefault(require("@material-ui/core/TextField"));
|
|
25
|
+
|
|
26
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
27
|
+
|
|
28
|
+
var _variables = require("../common/variables.js");
|
|
29
|
+
|
|
30
|
+
var _utils = require("../common/utils.js");
|
|
31
|
+
|
|
32
|
+
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
33
|
+
|
|
34
|
+
var _RequiredComponent = _interopRequireDefault(require("../common/RequiredComponent"));
|
|
35
|
+
|
|
36
|
+
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
|
|
37
|
+
|
|
38
|
+
function _templateObject() {
|
|
39
|
+
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\n .MuiFormHelperText-root {\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n margin-top: 6px;\n }\n .MuiFormLabel-root {\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n padding-left: \"inherit\";\n\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n\n &.Mui-focused {\n color: ", ";\n &.MuiInputLabel-shrink {\n transform: \"translate(0, 1.5px) scale(0.75);\";\n }\n }\n\n &.MuiInputLabel-shrink {\n font-family: ", ";\n transform: \"translate(0, 1.5px) scale(0.75)\";\n }\n\n &.Mui-error {\n color: ", ";\n }\n\n &:not(.MuiInputLabel-shrink) {\n font-family: ", ";\n color: ", ";\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 .MuiInputBase-root.MuiInput-root.MuiInput-underline {\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 .MuiInputBase-inputMultiline {\n overflow: auto !important;\n\n ::-webkit-scrollbar {\n width: 3px;\n }\n\n ::-webkit-scrollbar-track {\n background-color: ", ";\n border-radius: 3px;\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 3px;\n }\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-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n line-height: ", ";\n padding-left: \"inherit\";\n text-overflow: ellipsis;\n\n &.Mui-disabled {\n cursor: not-allowed;\n color: ", ";\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: ", ";\n }\n &.Mui-disabled {\n color: ", " !important;\n cursor: not-allowed;\n }\n }\n }\n"]);
|
|
40
|
+
|
|
41
|
+
_templateObject = function _templateObject() {
|
|
42
|
+
return data;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
return data;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
var V3DxcTextarea = function V3DxcTextarea(_ref) {
|
|
49
|
+
var _ref$label = _ref.label,
|
|
50
|
+
label = _ref$label === void 0 ? " " : _ref$label,
|
|
51
|
+
_ref$name = _ref.name,
|
|
52
|
+
name = _ref$name === void 0 ? "" : _ref$name,
|
|
53
|
+
value = _ref.value,
|
|
54
|
+
_ref$assistiveText = _ref.assistiveText,
|
|
55
|
+
assistiveText = _ref$assistiveText === void 0 ? "" : _ref$assistiveText,
|
|
56
|
+
_ref$disabled = _ref.disabled,
|
|
57
|
+
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
58
|
+
_ref$onChange = _ref.onChange,
|
|
59
|
+
onChange = _ref$onChange === void 0 ? "" : _ref$onChange,
|
|
60
|
+
_ref$onBlur = _ref.onBlur,
|
|
61
|
+
onBlur = _ref$onBlur === void 0 ? "" : _ref$onBlur,
|
|
62
|
+
_ref$numRows = _ref.numRows,
|
|
63
|
+
numRows = _ref$numRows === void 0 ? 4 : _ref$numRows,
|
|
64
|
+
_ref$invalid = _ref.invalid,
|
|
65
|
+
invalid = _ref$invalid === void 0 ? false : _ref$invalid,
|
|
66
|
+
_ref$required = _ref.required,
|
|
67
|
+
required = _ref$required === void 0 ? false : _ref$required,
|
|
68
|
+
_ref$placeholder = _ref.placeholder,
|
|
69
|
+
placeholder = _ref$placeholder === void 0 ? "" : _ref$placeholder,
|
|
70
|
+
margin = _ref.margin,
|
|
71
|
+
_ref$size = _ref.size,
|
|
72
|
+
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
73
|
+
_ref$tabIndex = _ref.tabIndex,
|
|
74
|
+
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
75
|
+
|
|
76
|
+
var _useState = (0, _react.useState)(""),
|
|
77
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
78
|
+
innerValue = _useState2[0],
|
|
79
|
+
setInnerValue = _useState2[1];
|
|
80
|
+
|
|
81
|
+
var colorsTheme = (0, _useTheme["default"])();
|
|
82
|
+
var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
|
|
83
|
+
|
|
84
|
+
var handlerTextareaChange = function handlerTextareaChange(event) {
|
|
85
|
+
if (value === null || value === undefined) {
|
|
86
|
+
if (typeof onChange === "function") {
|
|
87
|
+
setInnerValue(event.target.value);
|
|
88
|
+
onChange(event.target.value);
|
|
89
|
+
} else {
|
|
90
|
+
setInnerValue(event.target.value);
|
|
91
|
+
}
|
|
92
|
+
} else if (onChange !== "") {
|
|
93
|
+
if (typeof onChange === "function") {
|
|
94
|
+
onChange(event.target.value);
|
|
95
|
+
} else {
|
|
96
|
+
setInnerValue(event.target.value);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
var handlerTextareaBlur = function handlerTextareaBlur(event) {
|
|
102
|
+
setInnerValue(event.target.value);
|
|
103
|
+
|
|
104
|
+
if (onBlur) {
|
|
105
|
+
onBlur(event.target.value);
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
return _react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
110
|
+
theme: colorsTheme.V3Textarea
|
|
111
|
+
}, _react["default"].createElement(TextContainer, {
|
|
112
|
+
required: required,
|
|
113
|
+
assistiveText: assistiveText,
|
|
114
|
+
margin: margin,
|
|
115
|
+
size: size,
|
|
116
|
+
backgroundType: backgroundType
|
|
117
|
+
}, _react["default"].createElement(_TextField["default"], {
|
|
118
|
+
error: invalid,
|
|
119
|
+
value: value !== null ? value : innerValue,
|
|
120
|
+
name: name,
|
|
121
|
+
multiline: true,
|
|
122
|
+
disabled: disabled,
|
|
123
|
+
label: required ? _react["default"].createElement(_react["default"].Fragment, null, _react["default"].createElement(_RequiredComponent["default"], null), label) : label,
|
|
124
|
+
helperText: assistiveText,
|
|
125
|
+
onChange: handlerTextareaChange,
|
|
126
|
+
onBlur: onBlur && handlerTextareaBlur || null,
|
|
127
|
+
rows: numRows,
|
|
128
|
+
placeholder: placeholder,
|
|
129
|
+
inputProps: {
|
|
130
|
+
tabIndex: tabIndex
|
|
131
|
+
}
|
|
132
|
+
})));
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
var sizes = {
|
|
136
|
+
small: "42px",
|
|
137
|
+
medium: "240px",
|
|
138
|
+
large: "480px",
|
|
139
|
+
fillParent: "100%"
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
var calculateWidth = function calculateWidth(margin, size) {
|
|
143
|
+
return size === "fillParent" ? "calc(".concat(sizes[size], " - ").concat((0, _utils.getMargin)(margin, "left"), " - ").concat((0, _utils.getMargin)(margin, "right"), ")") : sizes[size];
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
var TextContainer = _styledComponents["default"].div(_templateObject(), function (props) {
|
|
147
|
+
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
148
|
+
}, function (props) {
|
|
149
|
+
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
|
|
150
|
+
}, function (props) {
|
|
151
|
+
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.right ? _variables.spaces[props.margin.right] : "";
|
|
152
|
+
}, function (props) {
|
|
153
|
+
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.bottom ? _variables.spaces[props.margin.bottom] : "";
|
|
154
|
+
}, function (props) {
|
|
155
|
+
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
156
|
+
}, function (props) {
|
|
157
|
+
return calculateWidth(props.margin, props.size);
|
|
158
|
+
}, function (props) {
|
|
159
|
+
return props.theme.fontFamily;
|
|
160
|
+
}, function (props) {
|
|
161
|
+
return props.theme.assistiveTextFontSize;
|
|
162
|
+
}, function (props) {
|
|
163
|
+
return props.theme.assistiveTextFontStyle;
|
|
164
|
+
}, function (props) {
|
|
165
|
+
return props.theme.assistiveTextFontWeight;
|
|
166
|
+
}, function (props) {
|
|
167
|
+
return props.theme.assistiveTextLetterSpacing;
|
|
168
|
+
}, function (props) {
|
|
169
|
+
return props.theme.labelFontSize;
|
|
170
|
+
}, function (props) {
|
|
171
|
+
return props.theme.labelFontStyle;
|
|
172
|
+
}, function (props) {
|
|
173
|
+
return props.theme.labelFontWeight;
|
|
174
|
+
}, function (props) {
|
|
175
|
+
return props.theme.labelLetterSpacing;
|
|
176
|
+
}, function (props) {
|
|
177
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
178
|
+
}, function (props) {
|
|
179
|
+
return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
|
|
180
|
+
}, function (props) {
|
|
181
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
182
|
+
}, function (props) {
|
|
183
|
+
return props.theme.fontFamily;
|
|
184
|
+
}, function (props) {
|
|
185
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
186
|
+
}, function (props) {
|
|
187
|
+
return props.theme.fontFamily;
|
|
188
|
+
}, function (props) {
|
|
189
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
190
|
+
}, function (props) {
|
|
191
|
+
return props.backgroundType === "dark" ? props.theme.assistiveTextFontColorOnDark : props.theme.assistiveTextFontColor;
|
|
192
|
+
}, function (props) {
|
|
193
|
+
return props.backgroundType ? props.theme.underlineColorOnDark : props.theme.underlineColor;
|
|
194
|
+
}, function (props) {
|
|
195
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.theme.labelFontColor;
|
|
196
|
+
}, function (props) {
|
|
197
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
|
|
198
|
+
}, function (props) {
|
|
199
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.underlineColorOnDark : props.theme.underlineColor);
|
|
200
|
+
}, function (props) {
|
|
201
|
+
return "calc(".concat(props.theme.underlineThickness, " + 1px) solid ").concat(props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor);
|
|
202
|
+
}, function (props) {
|
|
203
|
+
return props.backgroundType === "dark" ? props.theme.scrollBarTrackColorOnDark : props.theme.scrollBarTrackColor;
|
|
204
|
+
}, function (props) {
|
|
205
|
+
return props.backgroundType === "dark" ? props.theme.scrollBarThumbColorOnDark : props.theme.scrollBarThumbColor;
|
|
206
|
+
}, function (props) {
|
|
207
|
+
return props.theme.underlineThickness;
|
|
208
|
+
}, function (props) {
|
|
209
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
210
|
+
}, function (props) {
|
|
211
|
+
return props.theme.underlineThickness;
|
|
212
|
+
}, function (props) {
|
|
213
|
+
return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
|
|
214
|
+
}, function (props) {
|
|
215
|
+
return props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor;
|
|
216
|
+
}, function (props) {
|
|
217
|
+
return "".concat(props.theme.underlineThickness, " solid ").concat(props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor, " !important");
|
|
218
|
+
}, function (props) {
|
|
219
|
+
return props.theme.fontFamily;
|
|
220
|
+
}, function (props) {
|
|
221
|
+
return props.theme.valueFontSize;
|
|
222
|
+
}, function (props) {
|
|
223
|
+
return props.theme.valueFontStyle;
|
|
224
|
+
}, function (props) {
|
|
225
|
+
return props.theme.valueFontWeight;
|
|
226
|
+
}, function (props) {
|
|
227
|
+
return props.theme.valueLetterSpacing;
|
|
228
|
+
}, function (props) {
|
|
229
|
+
return props.backgroundType === "dark" ? props.theme.valueFontColorOnDark : props.theme.valueFontColor;
|
|
230
|
+
}, function (props) {
|
|
231
|
+
return props.theme.valueLineHeight;
|
|
232
|
+
}, function (props) {
|
|
233
|
+
return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
|
|
234
|
+
}, function (props) {
|
|
235
|
+
return props.backgroundType === "dark" ? props.theme.underlineFocusColorOnDark : props.theme.underlineFocusColor;
|
|
236
|
+
}, function (props) {
|
|
237
|
+
return "".concat(props.backgroundType === "dark" ? props.theme.errorColorOnDark : props.theme.errorColor, " !important");
|
|
238
|
+
}, function (props) {
|
|
239
|
+
return props.backgroundType === "dark" ? props.theme.disabledColorOnDark : props.theme.disabledColor;
|
|
240
|
+
});
|
|
241
|
+
|
|
242
|
+
V3DxcTextarea.propTypes = {
|
|
243
|
+
label: _propTypes["default"].string,
|
|
244
|
+
name: _propTypes["default"].string,
|
|
245
|
+
value: _propTypes["default"].string,
|
|
246
|
+
assistiveText: _propTypes["default"].string,
|
|
247
|
+
disabled: _propTypes["default"].bool,
|
|
248
|
+
required: _propTypes["default"].bool,
|
|
249
|
+
invalid: _propTypes["default"].bool,
|
|
250
|
+
placeholder: _propTypes["default"].string,
|
|
251
|
+
onChange: _propTypes["default"].func,
|
|
252
|
+
onBlur: _propTypes["default"].func,
|
|
253
|
+
numRows: _propTypes["default"].number,
|
|
254
|
+
size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
|
|
255
|
+
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
256
|
+
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
257
|
+
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
258
|
+
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
259
|
+
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
260
|
+
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
261
|
+
tabIndex: _propTypes["default"].number
|
|
262
|
+
};
|
|
263
|
+
var _default = V3DxcTextarea;
|
|
264
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
onChange?: void;
|
|
17
|
+
onBlur?: void;
|
|
18
|
+
numRows?: number;
|
|
19
|
+
required?: boolean;
|
|
20
|
+
invalid?: boolean;
|
|
21
|
+
placeholder?: string;
|
|
22
|
+
margin?: Space | Margin;
|
|
23
|
+
size?: Size;
|
|
24
|
+
tabIndex?: number;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export default function V3DxcTextarea(props: Props): JSX.Element;
|
|
@@ -9,10 +9,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
9
9
|
});
|
|
10
10
|
exports["default"] = void 0;
|
|
11
11
|
|
|
12
|
-
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
13
|
-
|
|
14
12
|
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
15
13
|
|
|
14
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
15
|
+
|
|
16
16
|
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
17
17
|
|
|
18
18
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
@@ -37,8 +37,10 @@ var _variables = require("../common/variables.js");
|
|
|
37
37
|
|
|
38
38
|
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
39
39
|
|
|
40
|
+
var _BackgroundColorContext = require("../BackgroundColorContext.js");
|
|
41
|
+
|
|
40
42
|
function _templateObject7() {
|
|
41
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
43
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n height: ", ";\n width: ", ";\n margin-left: ", ";\n margin-right: ", ";\n overflow: hidden;\n color: ", ";\n"]);
|
|
42
44
|
|
|
43
45
|
_templateObject7 = function _templateObject7() {
|
|
44
46
|
return data;
|
|
@@ -48,7 +50,7 @@ function _templateObject7() {
|
|
|
48
50
|
}
|
|
49
51
|
|
|
50
52
|
function _templateObject6() {
|
|
51
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
53
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n height: ", ";\n width: ", ";\n margin-left: ", ";\n margin-right: ", ";\n overflow: hidden;\n color: ", ";\n\n img,\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
|
|
52
54
|
|
|
53
55
|
_templateObject6 = function _templateObject6() {
|
|
54
56
|
return data;
|
|
@@ -58,7 +60,7 @@ function _templateObject6() {
|
|
|
58
60
|
}
|
|
59
61
|
|
|
60
62
|
function _templateObject5() {
|
|
61
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
63
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n padding-left: ", ";\n padding-right: ", ";\n font-size: ", ";\n font-family: ", ";\n font-style: ", ";\n font-weight: ", ";\n color: ", ";\n letter-spacing: ", ";\n flex: 1;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n min-width: ", ";\n text-align: end;\n"]);
|
|
62
64
|
|
|
63
65
|
_templateObject5 = function _templateObject5() {
|
|
64
66
|
return data;
|
|
@@ -88,7 +90,7 @@ function _templateObject3() {
|
|
|
88
90
|
}
|
|
89
91
|
|
|
90
92
|
function _templateObject2() {
|
|
91
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row-reverse;\n align-items: center;\n
|
|
93
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row-reverse;\n align-items: center;\n padding-left: ", ";\n padding-right: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n color: ", ";\n"]);
|
|
92
94
|
|
|
93
95
|
_templateObject2 = function _templateObject2() {
|
|
94
96
|
return data;
|
|
@@ -98,7 +100,7 @@ function _templateObject2() {
|
|
|
98
100
|
}
|
|
99
101
|
|
|
100
102
|
function _templateObject() {
|
|
101
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n
|
|
103
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n min-width: 280px;\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n width: ", ";\n cursor: ", ";\n\n .MuiPaper-root {\n min-width: 0;\n display: flex;\n left: 85px;\n background-color: ", " !important;\n box-shadow: ", ";\n position: static;\n width: 100%;\n border-radius: ", ";\n\n &.Mui-expanded {\n border-radius: ", ";\n }\n &.MuiExpansionPanel-root {\n display: flex;\n flex-direction: column;\n min-height: 48px;\n }\n &.MuiExpansionPanel-rounded {\n border-radius: ", ";\n }\n .MuiButtonBase-root.MuiExpansionPanelSummary-root {\n min-height: 48px;\n height: 48px;\n\n :focus {\n outline-color: ", ";\n outline-style: ", ";\n outline-width: ", ";\n background-color: ", ";\n }\n :hover {\n background-color: ", ";\n }\n :active {\n background-color: ", ";\n }\n &.Mui-disabled {\n opacity: 1;\n }\n }\n .MuiButtonBase-root {\n border-radius: ", ";\n\n &.Mui-expanded {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n .MuiSvgIcon-root {\n opacity: 1;\n }\n }\n &.MuiIconButton-root {\n height: auto;\n }\n .MuiExpansionPanelSummary-content {\n padding-top: ", ";\n padding-bottom: ", ";\n padding-right: ", ";\n padding-left: ", ";\n min-width: 0;\n align-items: baseline;\n &.Mui-expanded {\n div:nth-child(2) {\n opacity: 1;\n }\n }\n :hover {\n div {\n opacity: 1;\n }\n }\n }\n }\n .MuiTouchRipple-root {\n display: none;\n }\n }\n .MuiCollapse-hidden {\n display: none;\n }\n .MuiCollapse-container {\n border-radius: 0px 0px 4px 4px;\n cursor: default;\n width: 100%;\n }\n .MuiIconButton-label {\n & > .MuiSvgIcon-root {\n color: ", ";\n }\n }\n .MuiExpansionPanelDetails-root {\n padding: ", ";\n padding-top: ", ";\n padding-right: ", ";\n padding-bottom: ", ";\n padding-left: ", ";\n }\n"]);
|
|
102
104
|
|
|
103
105
|
_templateObject = function _templateObject() {
|
|
104
106
|
return data;
|
|
@@ -181,42 +183,26 @@ var DxcAccordion = function DxcAccordion(_ref) {
|
|
|
181
183
|
}, _react["default"].createElement(_ExpansionPanelSummary["default"], {
|
|
182
184
|
expandIcon: _react["default"].createElement(_ExpandMore["default"], null),
|
|
183
185
|
tabIndex: disabled ? -1 : tabIndex
|
|
184
|
-
}, _react["default"].createElement(AccordionInfo,
|
|
186
|
+
}, _react["default"].createElement(AccordionInfo, {
|
|
187
|
+
disabled: disabled
|
|
188
|
+
}, _react["default"].createElement(AccordionLabel, null, label), icon ? _react["default"].createElement(IconContainer, {
|
|
189
|
+
disabled: disabled
|
|
190
|
+
}, (0, _typeof2["default"])(icon) === "object" ? icon : _react["default"].createElement(icon)) : iconSrc && _react["default"].createElement(AccordionIcon, {
|
|
185
191
|
src: iconSrc
|
|
186
|
-
})), assistiveText && _react["default"].createElement(AccordionAssistiveText,
|
|
192
|
+
})), assistiveText && _react["default"].createElement(AccordionAssistiveText, {
|
|
193
|
+
disabled: disabled
|
|
194
|
+
}, assistiveText)), _react["default"].createElement(_ExpansionPanelDetails["default"], null, _react["default"].createElement(AccordionContent, {
|
|
195
|
+
disabled: disabled
|
|
196
|
+
}, _react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
|
|
197
|
+
color: colorsTheme.accordion.backgroundColor
|
|
198
|
+
}, children))))));
|
|
187
199
|
};
|
|
188
200
|
|
|
189
201
|
var calculateWidth = function calculateWidth(margin) {
|
|
190
202
|
return "calc(100% - ".concat((0, _utils.getMargin)(margin, "left"), " - ").concat((0, _utils.getMargin)(margin, "right"), ")");
|
|
191
203
|
};
|
|
192
204
|
|
|
193
|
-
DxcAccordion.propTypes = {
|
|
194
|
-
label: _propTypes["default"].string,
|
|
195
|
-
iconSrc: _propTypes["default"].string,
|
|
196
|
-
icon: _propTypes["default"].oneOfType([_propTypes["default"].element, _propTypes["default"].func]),
|
|
197
|
-
assistiveText: _propTypes["default"].string,
|
|
198
|
-
disabled: _propTypes["default"].bool,
|
|
199
|
-
onChange: _propTypes["default"].func,
|
|
200
|
-
isExpanded: _propTypes["default"].bool,
|
|
201
|
-
children: _propTypes["default"].element,
|
|
202
|
-
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
203
|
-
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
204
|
-
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
205
|
-
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
206
|
-
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
207
|
-
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
208
|
-
padding: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
209
|
-
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
210
|
-
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
211
|
-
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
212
|
-
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
213
|
-
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
214
|
-
tabIndex: _propTypes["default"].number
|
|
215
|
-
};
|
|
216
|
-
|
|
217
205
|
var DXCAccordion = _styledComponents["default"].div(_templateObject(), function (props) {
|
|
218
|
-
return props.theme.fontSizeBase;
|
|
219
|
-
}, function (props) {
|
|
220
206
|
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
221
207
|
}, function (props) {
|
|
222
208
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
|
|
@@ -228,22 +214,42 @@ var DXCAccordion = _styledComponents["default"].div(_templateObject(), function
|
|
|
228
214
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
229
215
|
}, function (props) {
|
|
230
216
|
return calculateWidth(props.margin);
|
|
231
|
-
}, function (props) {
|
|
232
|
-
return props.theme.fontFamily;
|
|
233
217
|
}, function (props) {
|
|
234
218
|
return props.disabled && "not-allowed" || "pointer";
|
|
219
|
+
}, function (props) {
|
|
220
|
+
return props.disabled ? props.theme.disabledBackgroundColor : props.theme.backgroundColor;
|
|
221
|
+
}, function (props) {
|
|
222
|
+
return "".concat(props.theme.boxShadowOffsetX, " ").concat(props.theme.boxShadowOffsetY, " ").concat(props.theme.boxShadowBlur, " ").concat(props.theme.boxShadowColor);
|
|
223
|
+
}, function (props) {
|
|
224
|
+
return props.theme.borderRadius;
|
|
225
|
+
}, function (props) {
|
|
226
|
+
return props.theme.borderRadius;
|
|
227
|
+
}, function (props) {
|
|
228
|
+
return props.theme.borderRadius;
|
|
229
|
+
}, function (props) {
|
|
230
|
+
return props.theme.focusBorderColor;
|
|
231
|
+
}, function (props) {
|
|
232
|
+
return props.theme.focusBorderStyle;
|
|
233
|
+
}, function (props) {
|
|
234
|
+
return props.theme.focusBorderThickness;
|
|
235
235
|
}, function (props) {
|
|
236
236
|
return props.theme.backgroundColor;
|
|
237
237
|
}, function (props) {
|
|
238
|
-
return props.theme.
|
|
238
|
+
return "".concat(props.theme.hoverBackgroundColor);
|
|
239
239
|
}, function (props) {
|
|
240
240
|
return "".concat(props.theme.hoverBackgroundColor);
|
|
241
241
|
}, function (props) {
|
|
242
|
-
return props.theme.
|
|
242
|
+
return props.theme.borderRadius;
|
|
243
|
+
}, function (props) {
|
|
244
|
+
return props.theme.titleLabelPaddingTop;
|
|
245
|
+
}, function (props) {
|
|
246
|
+
return props.theme.titleLabelPaddingBottom;
|
|
247
|
+
}, function (props) {
|
|
248
|
+
return props.theme.titleLabelPaddingRight;
|
|
243
249
|
}, function (props) {
|
|
244
|
-
return props.theme.
|
|
250
|
+
return props.theme.titleLabelPaddingLeft;
|
|
245
251
|
}, function (props) {
|
|
246
|
-
return props.theme.arrowColor;
|
|
252
|
+
return props.disabled ? props.theme.disabledArrowColor : props.theme.arrowColor;
|
|
247
253
|
}, function (props) {
|
|
248
254
|
return props.padding && (0, _typeof2["default"])(props.padding) !== "object" ? _variables.spaces[props.padding] : "0px";
|
|
249
255
|
}, function (props) {
|
|
@@ -256,29 +262,92 @@ var DXCAccordion = _styledComponents["default"].div(_templateObject(), function
|
|
|
256
262
|
return props.padding && (0, _typeof2["default"])(props.padding) === "object" && props.padding.left ? _variables.spaces[props.padding.left] : "";
|
|
257
263
|
});
|
|
258
264
|
|
|
259
|
-
var AccordionInfo = _styledComponents["default"].div(_templateObject2())
|
|
265
|
+
var AccordionInfo = _styledComponents["default"].div(_templateObject2(), function (props) {
|
|
266
|
+
return props.theme.titlePaddingLeft;
|
|
267
|
+
}, function (props) {
|
|
268
|
+
return props.theme.titlePaddingRight;
|
|
269
|
+
}, function (props) {
|
|
270
|
+
return props.theme.titleLabelFontFamily;
|
|
271
|
+
}, function (props) {
|
|
272
|
+
return props.theme.titleLabelFontSize;
|
|
273
|
+
}, function (props) {
|
|
274
|
+
return props.theme.titleLabelFontStyle;
|
|
275
|
+
}, function (props) {
|
|
276
|
+
return props.theme.titleFonLabeltWeight;
|
|
277
|
+
}, function (props) {
|
|
278
|
+
return props.disabled ? props.theme.disabledTitleLabelFontColor : props.theme.titleLabelFontColor;
|
|
279
|
+
});
|
|
260
280
|
|
|
261
281
|
var AccordionLabel = _styledComponents["default"].div(_templateObject3());
|
|
262
282
|
|
|
263
|
-
var
|
|
283
|
+
var AccordionContent = _styledComponents["default"].div(_templateObject4());
|
|
264
284
|
|
|
265
285
|
var AccordionAssistiveText = _styledComponents["default"].div(_templateObject5(), function (props) {
|
|
266
|
-
return props.theme.
|
|
286
|
+
return props.theme.assistiveTextPaddingLeft;
|
|
287
|
+
}, function (props) {
|
|
288
|
+
return props.theme.assistiveTextPaddingRight;
|
|
289
|
+
}, function (props) {
|
|
290
|
+
return props.theme.assistiveTextFontSize;
|
|
291
|
+
}, function (props) {
|
|
292
|
+
return props.theme.assistiveTextFontFamily;
|
|
293
|
+
}, function (props) {
|
|
294
|
+
return props.theme.assistiveTextFontStyle;
|
|
267
295
|
}, function (props) {
|
|
268
|
-
return props.theme.
|
|
296
|
+
return props.theme.assistiveTextFontWeight;
|
|
269
297
|
}, function (props) {
|
|
270
|
-
return props.theme.
|
|
298
|
+
return props.disabled ? props.theme.disabledAssistiveTextFontColor : props.theme.assistiveTextFontColor;
|
|
271
299
|
}, function (props) {
|
|
272
|
-
return props.theme.
|
|
300
|
+
return props.theme.assistiveTextLetterSpacing;
|
|
273
301
|
}, function (props) {
|
|
274
|
-
return props.theme.
|
|
302
|
+
return props.theme.assistiveTextMinWidth;
|
|
275
303
|
});
|
|
276
304
|
|
|
277
305
|
var IconContainer = _styledComponents["default"].div(_templateObject6(), function (props) {
|
|
278
|
-
return props.theme.
|
|
306
|
+
return props.theme.iconSize;
|
|
307
|
+
}, function (props) {
|
|
308
|
+
return props.theme.iconSize;
|
|
309
|
+
}, function (props) {
|
|
310
|
+
return props.theme.iconMarginLeft;
|
|
311
|
+
}, function (props) {
|
|
312
|
+
return props.theme.iconMarginRigth;
|
|
313
|
+
}, function (props) {
|
|
314
|
+
return props.disabled ? props.theme.disabledIconColor : props.theme.iconColor;
|
|
279
315
|
});
|
|
280
316
|
|
|
281
|
-
var AccordionIcon = _styledComponents["default"].img(_templateObject7())
|
|
317
|
+
var AccordionIcon = _styledComponents["default"].img(_templateObject7(), function (props) {
|
|
318
|
+
return props.theme.iconSize;
|
|
319
|
+
}, function (props) {
|
|
320
|
+
return props.theme.iconSize;
|
|
321
|
+
}, function (props) {
|
|
322
|
+
return props.theme.iconMarginLeft;
|
|
323
|
+
}, function (props) {
|
|
324
|
+
return props.theme.iconMarginRigth;
|
|
325
|
+
}, function (props) {
|
|
326
|
+
return props.disabled ? props.theme.disabledIconColor : props.theme.iconColor;
|
|
327
|
+
});
|
|
282
328
|
|
|
329
|
+
DxcAccordion.propTypes = {
|
|
330
|
+
label: _propTypes["default"].string,
|
|
331
|
+
iconSrc: _propTypes["default"].string,
|
|
332
|
+
icon: _propTypes["default"].oneOfType([_propTypes["default"].element, _propTypes["default"].func]),
|
|
333
|
+
assistiveText: _propTypes["default"].string,
|
|
334
|
+
disabled: _propTypes["default"].bool,
|
|
335
|
+
onChange: _propTypes["default"].func,
|
|
336
|
+
isExpanded: _propTypes["default"].bool,
|
|
337
|
+
children: _propTypes["default"].element,
|
|
338
|
+
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
339
|
+
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
340
|
+
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
341
|
+
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
342
|
+
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
343
|
+
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
344
|
+
padding: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
345
|
+
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
346
|
+
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
347
|
+
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
348
|
+
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
349
|
+
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
350
|
+
tabIndex: _propTypes["default"].number
|
|
351
|
+
};
|
|
283
352
|
var _default = DxcAccordion;
|
|
284
353
|
exports["default"] = _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
2
|
+
type Margin = {
|
|
3
|
+
top?: Space;
|
|
4
|
+
bottom?: Space;
|
|
5
|
+
left?: Space;
|
|
6
|
+
right?: Space;
|
|
7
|
+
};
|
|
8
|
+
type Padding = {
|
|
9
|
+
top?: Space;
|
|
10
|
+
bottom?: Space;
|
|
11
|
+
left?: Space;
|
|
12
|
+
right?: Space;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
type Props = {
|
|
16
|
+
label?: string;
|
|
17
|
+
iconSrc?: string;
|
|
18
|
+
icon?: any;
|
|
19
|
+
assistiveText?: string;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
onChange?: void;
|
|
22
|
+
isExpanded?: boolean;
|
|
23
|
+
margin?: Space | Margin;
|
|
24
|
+
padding?: Space | Padding;
|
|
25
|
+
tabIndex?: number;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export default function DxcAccordion(props: Props): JSX.Element;
|
|
@@ -34,7 +34,7 @@ var _variables = require("../common/variables.js");
|
|
|
34
34
|
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
35
35
|
|
|
36
36
|
function _templateObject() {
|
|
37
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
37
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n\n cursor: ", ";\n\n & > :not(div:last-child) {\n & > div:first-child {\n border-radius: 0;\n border-bottom: ", ";\n border-color: ", ";\n\n & > .Mui-expanded {\n border-radius: 0;\n }\n\n & > .MuiButtonBase-root {\n border-radius: 0;\n }\n }\n }\n\n & > div:first-child {\n & > div:first-child {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n border-top-left-radius: ", ";\n border-top-right-radius: ", ";\n border-bottom: ", ";\n border-color: ", ";\n\n & > .Mui-expanded {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n border-top-left-radius: ", ";\n border-top-right-radius: ", ";\n }\n\n & > .MuiButtonBase-root {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n border-top-left-radius: ", ";\n border-top-right-radius: ", ";\n }\n }\n }\n\n & > div:last-child {\n & > div:first-child {\n border-bottom-left-radius: ", ";\n border-bottom-right-radius: ", ";\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n\n & > .Mui-expanded {\n border-bottom-left-radius: ", ";\n border-bottom-right-radius: ", ";\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n\n & > .MuiButtonBase-root {\n border-bottom-left-radius: ", ";\n border-bottom-right-radius: ", ";\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n }\n }\n"]);
|
|
38
38
|
|
|
39
39
|
_templateObject = function _templateObject() {
|
|
40
40
|
return data;
|
|
@@ -121,6 +121,38 @@ var AccordionGroupContainer = _styledComponents["default"].div(_templateObject()
|
|
|
121
121
|
return margin && (0, _typeof2["default"])(margin) === "object" && margin.left ? _variables.spaces[margin.left] : "";
|
|
122
122
|
}, function (props) {
|
|
123
123
|
return props.disabled && "not-allowed" || "pointer";
|
|
124
|
+
}, function (props) {
|
|
125
|
+
return "".concat(props.theme.accordionGroupSeparatorBorderThickness, " ").concat(props.theme.accordionGroupSeparatorBorderStyle);
|
|
126
|
+
}, function (props) {
|
|
127
|
+
return props.theme.accordionGroupSeparatorBorderColor;
|
|
128
|
+
}, function (props) {
|
|
129
|
+
return props.theme.borderRadius;
|
|
130
|
+
}, function (props) {
|
|
131
|
+
return props.theme.borderRadius;
|
|
132
|
+
}, function (props) {
|
|
133
|
+
return "".concat(props.theme.accordionGroupSeparatorBorderThickness, " ").concat(props.theme.accordionGroupSeparatorBorderStyle);
|
|
134
|
+
}, function (props) {
|
|
135
|
+
return props.theme.accordionGroupSeparatorBorderColor;
|
|
136
|
+
}, function (props) {
|
|
137
|
+
return props.theme.borderRadius;
|
|
138
|
+
}, function (props) {
|
|
139
|
+
return props.theme.borderRadius;
|
|
140
|
+
}, function (props) {
|
|
141
|
+
return props.theme.borderRadius;
|
|
142
|
+
}, function (props) {
|
|
143
|
+
return props.theme.borderRadius;
|
|
144
|
+
}, function (props) {
|
|
145
|
+
return props.theme.borderRadius;
|
|
146
|
+
}, function (props) {
|
|
147
|
+
return props.theme.borderRadius;
|
|
148
|
+
}, function (props) {
|
|
149
|
+
return props.theme.borderRadius;
|
|
150
|
+
}, function (props) {
|
|
151
|
+
return props.theme.borderRadius;
|
|
152
|
+
}, function (props) {
|
|
153
|
+
return props.theme.borderRadius;
|
|
154
|
+
}, function (props) {
|
|
155
|
+
return props.theme.borderRadius;
|
|
124
156
|
});
|
|
125
157
|
|
|
126
158
|
DxcAccordionGroup.propTypes = {
|