@dxc-technology/halstack-react 0.0.0-3fa9e5c → 0.0.0-422fa7b
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/dist/BackgroundColorContext.js +46 -0
- package/dist/ThemeContext.js +181 -114
- package/dist/accordion/Accordion.js +131 -46
- package/dist/accordion-group/AccordionGroup.js +34 -4
- package/dist/alert/Alert.js +180 -80
- package/dist/alert/index.d.ts +51 -0
- package/dist/badge/Badge.js +28 -7
- package/dist/box/Box.js +29 -18
- package/dist/button/Button.js +60 -21
- package/dist/card/Card.js +72 -35
- package/dist/checkbox/Checkbox.js +97 -26
- package/dist/chip/Chip.js +92 -32
- package/dist/common/utils.js +2 -22
- package/dist/common/variables.js +1352 -185
- package/dist/date/Date.js +65 -38
- package/dist/dialog/Dialog.js +54 -31
- package/dist/dropdown/Dropdown.js +173 -75
- package/dist/file-input/FileInput.js +644 -0
- package/dist/file-input/FileItem.js +280 -0
- package/dist/file-input/index.d.ts +81 -0
- package/dist/footer/Footer.js +73 -44
- package/dist/footer/dxc_logo.svg +15 -0
- package/dist/header/Header.js +91 -56
- package/dist/header/dxc_logo_black.svg +8 -0
- package/dist/heading/Heading.js +81 -16
- package/dist/input-text/InputText.js +245 -99
- package/dist/layout/ApplicationLayout.js +11 -10
- package/dist/link/Link.js +84 -34
- package/dist/main.d.ts +8 -0
- package/dist/main.js +65 -1
- package/dist/new-date/NewDate.js +400 -0
- package/dist/new-date/index.d.ts +95 -0
- package/dist/new-input-text/NewInputText.js +967 -0
- package/dist/new-input-text/index.d.ts +135 -0
- package/dist/new-select/NewSelect.js +836 -0
- package/dist/new-select/index.d.ts +53 -0
- package/dist/new-textarea/NewTextarea.js +365 -0
- package/dist/new-textarea/index.d.ts +117 -0
- package/dist/number/Number.js +136 -0
- package/dist/number/NumberContext.js +16 -0
- package/dist/number/index.d.ts +113 -0
- package/dist/paginator/Paginator.js +60 -18
- package/dist/password/Password.js +200 -0
- package/dist/password/index.d.ts +94 -0
- package/dist/password/styles.css +3 -0
- package/dist/progress-bar/ProgressBar.js +91 -33
- package/dist/radio/Radio.js +30 -11
- package/dist/resultsetTable/ResultsetTable.js +76 -44
- package/dist/select/Select.js +221 -147
- package/dist/sidenav/Sidenav.js +64 -8
- package/dist/slider/Slider.js +117 -55
- package/dist/spinner/Spinner.js +247 -56
- package/dist/switch/Switch.js +51 -19
- package/dist/table/Table.js +47 -5
- package/dist/tabs/Tabs.js +50 -14
- package/dist/tag/Tag.js +68 -35
- package/dist/textarea/Textarea.js +77 -33
- package/dist/toggle/Toggle.js +3 -3
- package/dist/toggle-group/ToggleGroup.js +53 -39
- package/dist/upload/Upload.js +13 -8
- package/dist/upload/buttons-upload/ButtonsUpload.js +28 -8
- package/dist/upload/dragAndDropArea/DragAndDropArea.js +70 -19
- package/dist/upload/file-upload/FileToUpload.js +46 -16
- package/dist/upload/files-upload/FilesToUpload.js +9 -6
- package/dist/upload/transaction/Transaction.js +41 -18
- package/dist/upload/transactions/Transactions.js +32 -10
- package/dist/wizard/Wizard.js +126 -40
- package/dist/wizard/invalid_icon.svg +4 -5
- package/dist/wizard/valid_icon.svg +4 -5
- package/package.json +6 -4
- package/test/AccordionGroup.test.js +16 -0
- package/test/Date.test.js +13 -13
- package/test/Dropdown.test.js +15 -0
- package/test/FileInput.test.js +201 -0
- package/test/Link.test.js +3 -2
- package/test/NewDate.test.js +232 -0
- package/test/NewInputText.test.js +734 -0
- package/test/NewTextarea.test.js +195 -0
- package/test/Number.test.js +257 -0
- package/test/Paginator.test.js +1 -1
- package/test/Password.test.js +83 -0
- package/test/ResultsetTable.test.js +1 -2
- package/test/Select.test.js +44 -24
- package/test/Spinner.test.js +5 -0
- package/dist/accordion/Accordion.stories.js +0 -207
- package/dist/accordion/readme.md +0 -96
- package/dist/accordion-group/AccordionGroup.stories.js +0 -207
- package/dist/accordion-group/readme.md +0 -70
- package/dist/alert/Alert.stories.js +0 -158
- package/dist/alert/close.svg +0 -4
- package/dist/alert/error.svg +0 -4
- package/dist/alert/info.svg +0 -4
- package/dist/alert/readme.md +0 -43
- package/dist/alert/success.svg +0 -4
- package/dist/alert/warning.svg +0 -4
- package/dist/button/Button.stories.js +0 -224
- package/dist/button/readme.md +0 -93
- package/dist/common/services/example-service.js +0 -10
- package/dist/common/services/example-service.test.js +0 -12
- package/dist/date/calendar.svg +0 -1
- package/dist/date/calendar_dark.svg +0 -1
- 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/dxc_logo_wht.png +0 -0
- 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/select/Select.stories.js +0 -235
- package/dist/select/readme.md +0 -72
- package/dist/toggle-group/readme.md +0 -82
|
@@ -9,13 +9,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
9
9
|
});
|
|
10
10
|
exports["default"] = void 0;
|
|
11
11
|
|
|
12
|
+
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
13
|
+
|
|
12
14
|
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
13
15
|
|
|
14
16
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
15
17
|
|
|
16
|
-
var
|
|
17
|
-
|
|
18
|
-
var _react = _interopRequireDefault(require("react"));
|
|
18
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
19
19
|
|
|
20
20
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
21
21
|
|
|
@@ -23,14 +23,24 @@ var _LinearProgress = _interopRequireDefault(require("@material-ui/core/LinearPr
|
|
|
23
23
|
|
|
24
24
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
25
25
|
|
|
26
|
-
require("../common/OpenSans.css");
|
|
27
|
-
|
|
28
26
|
var _variables = require("../common/variables.js");
|
|
29
27
|
|
|
30
28
|
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
31
29
|
|
|
30
|
+
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
|
|
31
|
+
|
|
32
|
+
function _templateObject6() {
|
|
33
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n line-height: 1.5em;\n"]);
|
|
34
|
+
|
|
35
|
+
_templateObject6 = function _templateObject6() {
|
|
36
|
+
return data;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
return data;
|
|
40
|
+
}
|
|
41
|
+
|
|
32
42
|
function _templateObject5() {
|
|
33
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n font-
|
|
43
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n font-weight: ", ";\n text-transform: ", ";\n color: ", ";\n display: ", ";\n flex-shrink: 0;\n"]);
|
|
34
44
|
|
|
35
45
|
_templateObject5 = function _templateObject5() {
|
|
36
46
|
return data;
|
|
@@ -40,7 +50,7 @@ function _templateObject5() {
|
|
|
40
50
|
}
|
|
41
51
|
|
|
42
52
|
function _templateObject4() {
|
|
43
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
53
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n font-weight: ", ";\n text-transform: ", ";\n color: ", ";\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-overflow: ellipsis;\n"]);
|
|
44
54
|
|
|
45
55
|
_templateObject4 = function _templateObject4() {
|
|
46
56
|
return data;
|
|
@@ -50,7 +60,7 @@ function _templateObject4() {
|
|
|
50
60
|
}
|
|
51
61
|
|
|
52
62
|
function _templateObject3() {
|
|
53
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n width: 685px;\n flex-wrap: wrap;\n width: 100%;\n"]);
|
|
63
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n width: 685px;\n flex-wrap: wrap;\n width: 100%;\n margin-bottom: 8px;\n align-items: baseline;\n justify-content: space-between;\n"]);
|
|
54
64
|
|
|
55
65
|
_templateObject3 = function _templateObject3() {
|
|
56
66
|
return data;
|
|
@@ -60,7 +70,7 @@ function _templateObject3() {
|
|
|
60
70
|
}
|
|
61
71
|
|
|
62
72
|
function _templateObject2() {
|
|
63
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index: ", ";\n width: ", ";\n .MuiLinearProgress-root {\n height:
|
|
73
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n z-index: ", ";\n width: ", ";\n .MuiLinearProgress-root {\n height: ", ";\n background-color: ", ";\n border-radius: ", ";\n margin-bottom: ", ";\n }\n .MuiLinearProgress-bar {\n background-color: ", ";\n }\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"]);
|
|
64
74
|
|
|
65
75
|
_templateObject2 = function _templateObject2() {
|
|
66
76
|
return data;
|
|
@@ -70,7 +80,7 @@ function _templateObject2() {
|
|
|
70
80
|
}
|
|
71
81
|
|
|
72
82
|
function _templateObject() {
|
|
73
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n background-color: ", ";\n opacity: ", ";\n width: ", ";\n display: flex;\n flex-wrap: wrap;\n justify-content: ", ";\n height: ", ";\n align-items: ", ";\n min-width:
|
|
83
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n background-color: ", ";\n opacity: ", ";\n width: ", ";\n display: flex;\n flex-wrap: wrap;\n justify-content: ", ";\n height: ", ";\n align-items: ", ";\n min-width: 100px;\n max-width: ", ";\n position: ", ";\n top: ", ";\n bottom: ", ";\n left: ", ";\n right: ", ";\n z-index: ", ";\n width: 100%;\n"]);
|
|
74
84
|
|
|
75
85
|
_templateObject = function _templateObject() {
|
|
76
86
|
return data;
|
|
@@ -82,6 +92,8 @@ function _templateObject() {
|
|
|
82
92
|
var DxcProgressBar = function DxcProgressBar(_ref) {
|
|
83
93
|
var _ref$label = _ref.label,
|
|
84
94
|
label = _ref$label === void 0 ? "" : _ref$label,
|
|
95
|
+
_ref$helperText = _ref.helperText,
|
|
96
|
+
helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
|
|
85
97
|
_ref$overlay = _ref.overlay,
|
|
86
98
|
overlay = _ref$overlay === void 0 ? true : _ref$overlay,
|
|
87
99
|
value = _ref.value,
|
|
@@ -89,35 +101,30 @@ var DxcProgressBar = function DxcProgressBar(_ref) {
|
|
|
89
101
|
showValue = _ref$showValue === void 0 ? false : _ref$showValue,
|
|
90
102
|
margin = _ref.margin;
|
|
91
103
|
var colorsTheme = (0, _useTheme["default"])();
|
|
104
|
+
var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
|
|
92
105
|
return _react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
93
106
|
theme: colorsTheme.progressBar
|
|
94
107
|
}, _react["default"].createElement(BackgroundProgressBar, {
|
|
95
108
|
overlay: overlay
|
|
96
109
|
}, _react["default"].createElement(DXCProgressBar, {
|
|
97
110
|
overlay: overlay,
|
|
98
|
-
margin: margin
|
|
111
|
+
margin: margin,
|
|
112
|
+
backgroundType: backgroundType
|
|
99
113
|
}, _react["default"].createElement(InfoProgressBar, null, _react["default"].createElement(ProgressBarLabel, {
|
|
100
|
-
overlay: overlay
|
|
114
|
+
overlay: overlay,
|
|
115
|
+
backgroundType: backgroundType
|
|
101
116
|
}, label), _react["default"].createElement(ProgressBarProgress, {
|
|
102
117
|
overlay: overlay,
|
|
103
|
-
showValue: showValue
|
|
118
|
+
showValue: showValue,
|
|
119
|
+
backgroundType: backgroundType
|
|
104
120
|
}, value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100, " %")), _react["default"].createElement(_LinearProgress["default"], {
|
|
105
121
|
variant: showValue ? "determinate" : "indeterminate",
|
|
106
|
-
value: value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100
|
|
107
|
-
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
overlay: _propTypes["default"].bool,
|
|
113
|
-
value: _propTypes["default"].number,
|
|
114
|
-
showValue: _propTypes["default"].bool,
|
|
115
|
-
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
116
|
-
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
117
|
-
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
118
|
-
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
119
|
-
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
120
|
-
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
|
|
122
|
+
value: value === "" ? 0 : value >= 0 && value <= 100 ? value : value < 0 ? 0 : 100,
|
|
123
|
+
helperText: helperText
|
|
124
|
+
}), helperText && _react["default"].createElement(HelperText, {
|
|
125
|
+
overlay: overlay,
|
|
126
|
+
backgroundType: backgroundType
|
|
127
|
+
}, helperText))));
|
|
121
128
|
};
|
|
122
129
|
|
|
123
130
|
var BackgroundProgressBar = _styledComponents["default"].div(_templateObject(), function (props) {
|
|
@@ -145,7 +152,7 @@ var BackgroundProgressBar = _styledComponents["default"].div(_templateObject(),
|
|
|
145
152
|
}, function (props) {
|
|
146
153
|
return props.overlay === true ? "0" : "";
|
|
147
154
|
}, function (props) {
|
|
148
|
-
return props.overlay ?
|
|
155
|
+
return props.overlay ? 1300 : "";
|
|
149
156
|
});
|
|
150
157
|
|
|
151
158
|
var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), function (props) {
|
|
@@ -153,9 +160,15 @@ var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), functi
|
|
|
153
160
|
}, function (props) {
|
|
154
161
|
return props.overlay === true ? "80%" : "100%";
|
|
155
162
|
}, function (props) {
|
|
156
|
-
return props.theme.
|
|
163
|
+
return props.theme.thickness;
|
|
164
|
+
}, function (props) {
|
|
165
|
+
return props.theme.totalLineColor;
|
|
157
166
|
}, function (props) {
|
|
158
|
-
return props.theme.
|
|
167
|
+
return props.theme.borderRadius;
|
|
168
|
+
}, function (props) {
|
|
169
|
+
return props.helperText !== "" && "8px";
|
|
170
|
+
}, function (props) {
|
|
171
|
+
return props.backgroundType === "dark" ? props.theme.trackLineColorOnDark : props.theme.trackLineColor;
|
|
159
172
|
}, function (props) {
|
|
160
173
|
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
161
174
|
}, function (props) {
|
|
@@ -171,14 +184,59 @@ var DXCProgressBar = _styledComponents["default"].div(_templateObject2(), functi
|
|
|
171
184
|
var InfoProgressBar = _styledComponents["default"].div(_templateObject3());
|
|
172
185
|
|
|
173
186
|
var ProgressBarLabel = _styledComponents["default"].div(_templateObject4(), function (props) {
|
|
174
|
-
return props.
|
|
187
|
+
return props.theme.labelFontFamily;
|
|
188
|
+
}, function (props) {
|
|
189
|
+
return props.theme.labelFontStyle;
|
|
190
|
+
}, function (props) {
|
|
191
|
+
return props.theme.labelFontSize;
|
|
192
|
+
}, function (props) {
|
|
193
|
+
return props.theme.labelFontWeight;
|
|
194
|
+
}, function (props) {
|
|
195
|
+
return props.theme.labelFontTextTransform;
|
|
196
|
+
}, function (props) {
|
|
197
|
+
return props.backgroundType === "dark" ? props.theme.labelFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.labelFontColor;
|
|
175
198
|
});
|
|
176
199
|
|
|
177
200
|
var ProgressBarProgress = _styledComponents["default"].div(_templateObject5(), function (props) {
|
|
178
|
-
return props.
|
|
201
|
+
return props.theme.valueFontFamily;
|
|
202
|
+
}, function (props) {
|
|
203
|
+
return props.theme.valueFontStyle;
|
|
204
|
+
}, function (props) {
|
|
205
|
+
return props.theme.valueFontSize;
|
|
206
|
+
}, function (props) {
|
|
207
|
+
return props.theme.valueFontWeight;
|
|
208
|
+
}, function (props) {
|
|
209
|
+
return props.theme.valueFontTextTransform;
|
|
210
|
+
}, function (props) {
|
|
211
|
+
return props.backgroundType === "dark" ? props.theme.valueFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.valueFontColor;
|
|
179
212
|
}, function (props) {
|
|
180
213
|
return props.value !== "" && props.showValue === true && "block" || "none";
|
|
181
214
|
});
|
|
182
215
|
|
|
216
|
+
var HelperText = _styledComponents["default"].span(_templateObject6(), function (props) {
|
|
217
|
+
return props.backgroundType === "dark" ? props.theme.helperTextFontColorOnDark : props.overlay === true ? "#FFFFFF" : props.theme.helperTextFontColor;
|
|
218
|
+
}, function (props) {
|
|
219
|
+
return props.theme.fontFamily;
|
|
220
|
+
}, function (props) {
|
|
221
|
+
return props.theme.helperTextFontSize;
|
|
222
|
+
}, function (props) {
|
|
223
|
+
return props.theme.helperTextFontStyle;
|
|
224
|
+
}, function (props) {
|
|
225
|
+
return props.theme.helperTextFontWeight;
|
|
226
|
+
});
|
|
227
|
+
|
|
228
|
+
DxcProgressBar.propTypes = {
|
|
229
|
+
label: _propTypes["default"].string,
|
|
230
|
+
helperText: _propTypes["default"].string,
|
|
231
|
+
overlay: _propTypes["default"].bool,
|
|
232
|
+
value: _propTypes["default"].number,
|
|
233
|
+
showValue: _propTypes["default"].bool,
|
|
234
|
+
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
235
|
+
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
236
|
+
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
237
|
+
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
238
|
+
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
239
|
+
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
|
|
240
|
+
};
|
|
183
241
|
var _default = DxcProgressBar;
|
|
184
242
|
exports["default"] = _default;
|
package/dist/radio/Radio.js
CHANGED
|
@@ -27,16 +27,16 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
27
27
|
|
|
28
28
|
var _RequiredComponent = _interopRequireDefault(require("../common/RequiredComponent"));
|
|
29
29
|
|
|
30
|
-
require("../common/OpenSans.css");
|
|
31
|
-
|
|
32
30
|
var _variables = require("../common/variables.js");
|
|
33
31
|
|
|
34
32
|
var _utils = require("../common/utils.js");
|
|
35
33
|
|
|
36
34
|
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
37
35
|
|
|
36
|
+
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext.js"));
|
|
37
|
+
|
|
38
38
|
function _templateObject2() {
|
|
39
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family:
|
|
39
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n cursor: ", ";\n"]);
|
|
40
40
|
|
|
41
41
|
_templateObject2 = function _templateObject2() {
|
|
42
42
|
return data;
|
|
@@ -46,7 +46,7 @@ function _templateObject2() {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
function _templateObject() {
|
|
49
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n\n display: inline-flex;\n align-items: center;\n max-height: 42px;\n position: relative;\n flex-direction: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n cursor: ", ";\n .MuiButtonBase-root {\n width: auto;\n height: auto;\n padding: 10px;\n margin: 2px;\n padding-left: ", ";\n padding-right: ", ";\n margin-left: ", ";\n margin-right: ", ";\n .MuiIconButton-label {\n .MuiSvgIcon-root {\n height:
|
|
49
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n\n display: inline-flex;\n align-items: center;\n max-height: 42px;\n position: relative;\n flex-direction: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n cursor: ", ";\n .MuiButtonBase-root {\n width: auto;\n height: auto;\n padding: 10px;\n margin: 2px;\n ", ": ", ";\n padding-left: ", ";\n padding-right: ", ";\n margin-left: ", ";\n margin-right: ", ";\n .MuiIconButton-label {\n .MuiSvgIcon-root {\n height: ", ";\n width: ", ";\n }\n color: ", ";\n\n > div > :nth-child(2) path {\n color: ", ";\n }\n }\n\n &.Mui-focusVisible {\n background-color: transparent;\n .MuiSvgIcon-root {\n outline: ", "\n auto 1px;\n }\n }\n :hover {\n background-color: transparent;\n }\n .MuiTouchRipple-ripple {\n height: 40px !important;\n width: 40px !important;\n top: 0px !important;\n left: 0px !important;\n }\n }\n .MuiRadio-colorSecondary.Mui-checked {\n color: ", ";\n :hover {\n background-color: transparent;\n }\n }\n"]);
|
|
50
50
|
|
|
51
51
|
_templateObject = function _templateObject() {
|
|
52
52
|
return data;
|
|
@@ -78,6 +78,7 @@ var DxcRadio = function DxcRadio(_ref) {
|
|
|
78
78
|
setInnerChecked = _useState2[1];
|
|
79
79
|
|
|
80
80
|
var colorsTheme = (0, _useTheme["default"])();
|
|
81
|
+
var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
|
|
81
82
|
|
|
82
83
|
var handlerRadioChange = function handlerRadioChange(value) {
|
|
83
84
|
if (checked == null) {
|
|
@@ -96,7 +97,8 @@ var DxcRadio = function DxcRadio(_ref) {
|
|
|
96
97
|
labelPosition: labelPosition,
|
|
97
98
|
disabled: disabled,
|
|
98
99
|
margin: margin,
|
|
99
|
-
size: size
|
|
100
|
+
size: size,
|
|
101
|
+
backgroundType: backgroundType
|
|
100
102
|
}, _react["default"].createElement(_Radio["default"], {
|
|
101
103
|
checked: checked != null && checked || innerChecked,
|
|
102
104
|
name: name,
|
|
@@ -109,7 +111,8 @@ var DxcRadio = function DxcRadio(_ref) {
|
|
|
109
111
|
checked: checked || innerChecked,
|
|
110
112
|
labelPosition: labelPosition,
|
|
111
113
|
disabled: disabled,
|
|
112
|
-
onClick: !disabled && handlerRadioChange || null
|
|
114
|
+
onClick: !disabled && handlerRadioChange || null,
|
|
115
|
+
backgroundType: backgroundType
|
|
113
116
|
}, required && _react["default"].createElement(_RequiredComponent["default"], null), label)));
|
|
114
117
|
};
|
|
115
118
|
|
|
@@ -145,6 +148,10 @@ var RadioContainer = _styledComponents["default"].span(_templateObject(), functi
|
|
|
145
148
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
146
149
|
}, function (props) {
|
|
147
150
|
return props.disabled === true ? "not-allowed" : "default";
|
|
151
|
+
}, function (props) {
|
|
152
|
+
return props.labelPosition === "after" ? "padding-right" : "padding-left";
|
|
153
|
+
}, function (props) {
|
|
154
|
+
return props.theme.circleLabelSpacing;
|
|
148
155
|
}, function (props) {
|
|
149
156
|
return props.labelPosition === "after" ? "0px" : "";
|
|
150
157
|
}, function (props) {
|
|
@@ -154,17 +161,29 @@ var RadioContainer = _styledComponents["default"].span(_templateObject(), functi
|
|
|
154
161
|
}, function (props) {
|
|
155
162
|
return props.labelPosition === "before" ? "0px" : "";
|
|
156
163
|
}, function (props) {
|
|
157
|
-
return props.
|
|
164
|
+
return props.theme.circleSize;
|
|
165
|
+
}, function (props) {
|
|
166
|
+
return props.theme.circleSize;
|
|
158
167
|
}, function (props) {
|
|
159
|
-
return props.disabled && props.theme.disabledColor || props.theme.color;
|
|
168
|
+
return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
|
|
160
169
|
}, function (props) {
|
|
161
|
-
return props.theme.
|
|
170
|
+
return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
|
|
162
171
|
}, function (props) {
|
|
163
|
-
return props.
|
|
172
|
+
return props.backgroundType === "dark" ? props.theme.focusColorOnDark : props.theme.focusColor;
|
|
173
|
+
}, function (props) {
|
|
174
|
+
return props.backgroundType === "dark" ? props.disabled && props.theme.disabledColorOnDark || props.theme.colorOnDark : props.disabled && props.theme.disabledColor || props.theme.color;
|
|
164
175
|
});
|
|
165
176
|
|
|
166
177
|
var LabelContainer = _styledComponents["default"].span(_templateObject2(), function (props) {
|
|
167
|
-
return props.
|
|
178
|
+
return props.theme.fontFamily;
|
|
179
|
+
}, function (props) {
|
|
180
|
+
return props.theme.fontSize;
|
|
181
|
+
}, function (props) {
|
|
182
|
+
return props.theme.fontWeight;
|
|
183
|
+
}, function (props) {
|
|
184
|
+
return props.theme.fontStyle;
|
|
185
|
+
}, function (props) {
|
|
186
|
+
return props.backgroundType === "dark" ? props.disabled && props.theme.disabledFontColorOnDark || props.theme.fontColorOnDark : props.disabled && props.theme.disabledFontColor || props.theme.fontColor;
|
|
168
187
|
}, function (props) {
|
|
169
188
|
return props.disabled === true ? "not-allowed" : "pointer";
|
|
170
189
|
});
|
|
@@ -29,16 +29,10 @@ var _Table = _interopRequireDefault(require("../table/Table"));
|
|
|
29
29
|
|
|
30
30
|
var _Paginator = _interopRequireDefault(require("../paginator/Paginator"));
|
|
31
31
|
|
|
32
|
-
var _arrow_upward24px_wht = _interopRequireDefault(require("./arrow_upward-24px_wht.svg"));
|
|
33
|
-
|
|
34
|
-
var _arrow_downward24px_wht = _interopRequireDefault(require("./arrow_downward-24px_wht.svg"));
|
|
35
|
-
|
|
36
|
-
var _unfold_more24px_wht = _interopRequireDefault(require("./unfold_more-24px_wht.svg"));
|
|
37
|
-
|
|
38
32
|
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
39
33
|
|
|
40
34
|
function _templateObject9() {
|
|
41
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
35
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: ", ";\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n overflow: hidden;\n"]);
|
|
42
36
|
|
|
43
37
|
_templateObject9 = function _templateObject9() {
|
|
44
38
|
return data;
|
|
@@ -58,7 +52,7 @@ function _templateObject8() {
|
|
|
58
52
|
}
|
|
59
53
|
|
|
60
54
|
function _templateObject7() {
|
|
61
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n
|
|
55
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n justify-content: ", ";\n width: 100%;\n"]);
|
|
62
56
|
|
|
63
57
|
_templateObject7 = function _templateObject7() {
|
|
64
58
|
return data;
|
|
@@ -88,7 +82,7 @@ function _templateObject5() {
|
|
|
88
82
|
}
|
|
89
83
|
|
|
90
84
|
function _templateObject4() {
|
|
91
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n top: 409px;\n left: 390px;\n height: 14px;\n cursor: pointer;\n"]);
|
|
85
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n top: 409px;\n left: 390px;\n height: 14px;\n cursor: pointer;\n color: ", ";\n\n svg {\n height: 100%;\n width: 100%;\n }\n"]);
|
|
92
86
|
|
|
93
87
|
_templateObject4 = function _templateObject4() {
|
|
94
88
|
return data;
|
|
@@ -98,7 +92,7 @@ function _templateObject4() {
|
|
|
98
92
|
}
|
|
99
93
|
|
|
100
94
|
function _templateObject3() {
|
|
101
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n > div:nth-child(1) {\n position: absolute;\n left: calc(50% - 68.5px);\n bottom: calc(50% - 68.5px - 30px);\n }\n & tr {\n height:
|
|
95
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n > div:nth-child(1) {\n position: absolute;\n left: calc(50% - 68.5px);\n bottom: calc(50% - 68.5px - 30px);\n }\n & tr {\n height: ", ";\n }\n"]);
|
|
102
96
|
|
|
103
97
|
_templateObject3 = function _templateObject3() {
|
|
104
98
|
return data;
|
|
@@ -108,7 +102,7 @@ function _templateObject3() {
|
|
|
108
102
|
}
|
|
109
103
|
|
|
110
104
|
function _templateObject2() {
|
|
111
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["
|
|
105
|
+
var data = (0, _taggedTemplateLiteral2["default"])([""]);
|
|
112
106
|
|
|
113
107
|
_templateObject2 = function _templateObject2() {
|
|
114
108
|
return data;
|
|
@@ -159,6 +153,51 @@ var getMaxItemsPerPageIndex = function getMaxItemsPerPageIndex(minItemsPerPageIn
|
|
|
159
153
|
return minItemsPerPageIndex + itemsPerPage > resultset.length ? resultset.length : itemsPerPage * page - 1;
|
|
160
154
|
};
|
|
161
155
|
|
|
156
|
+
var ArrowUp = function ArrowUp() {
|
|
157
|
+
return _react["default"].createElement("svg", {
|
|
158
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
159
|
+
height: "24",
|
|
160
|
+
viewBox: "0 0 24 24",
|
|
161
|
+
width: "24",
|
|
162
|
+
fill: "currentColor"
|
|
163
|
+
}, _react["default"].createElement("path", {
|
|
164
|
+
d: "M0 0h24v24H0V0z",
|
|
165
|
+
fill: "none"
|
|
166
|
+
}), _react["default"].createElement("path", {
|
|
167
|
+
d: "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"
|
|
168
|
+
}));
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
var ArrowDown = function ArrowDown() {
|
|
172
|
+
return _react["default"].createElement("svg", {
|
|
173
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
174
|
+
height: "24",
|
|
175
|
+
viewBox: "0 0 24 24",
|
|
176
|
+
width: "24",
|
|
177
|
+
fill: "currentColor"
|
|
178
|
+
}, _react["default"].createElement("path", {
|
|
179
|
+
d: "M0 0h24v24H0V0z",
|
|
180
|
+
fill: "none"
|
|
181
|
+
}), _react["default"].createElement("path", {
|
|
182
|
+
d: "M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
|
|
183
|
+
}));
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
var BothArrows = function BothArrows() {
|
|
187
|
+
return _react["default"].createElement("svg", {
|
|
188
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
189
|
+
height: "24",
|
|
190
|
+
viewBox: "0 0 24 24",
|
|
191
|
+
width: "24",
|
|
192
|
+
fill: "currentColor"
|
|
193
|
+
}, _react["default"].createElement("path", {
|
|
194
|
+
d: "M0 0h24v24H0z",
|
|
195
|
+
fill: "none"
|
|
196
|
+
}), _react["default"].createElement("path", {
|
|
197
|
+
d: "M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z"
|
|
198
|
+
}));
|
|
199
|
+
};
|
|
200
|
+
|
|
162
201
|
var DxcResultsetTable = function DxcResultsetTable(_ref) {
|
|
163
202
|
var columns = _ref.columns,
|
|
164
203
|
rows = _ref.rows,
|
|
@@ -166,7 +205,9 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
|
|
|
166
205
|
itemsPerPage = _ref$itemsPerPage === void 0 ? 5 : _ref$itemsPerPage,
|
|
167
206
|
itemsPerPageOptions = _ref.itemsPerPageOptions,
|
|
168
207
|
itemsPerPageFunction = _ref.itemsPerPageFunction,
|
|
169
|
-
margin = _ref.margin
|
|
208
|
+
margin = _ref.margin,
|
|
209
|
+
_ref$tabIndex = _ref.tabIndex,
|
|
210
|
+
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
170
211
|
var colorsTheme = (0, _useTheme["default"])();
|
|
171
212
|
|
|
172
213
|
var _useState = (0, _react.useState)(1),
|
|
@@ -202,7 +243,7 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
|
|
|
202
243
|
};
|
|
203
244
|
|
|
204
245
|
var getIconForSortableColumn = function getIconForSortableColumn(clickedColumnIndex) {
|
|
205
|
-
return sortColumnIndex === clickedColumnIndex ? sortOrder === "asc" ?
|
|
246
|
+
return sortColumnIndex === clickedColumnIndex ? sortOrder === "asc" ? _react["default"].createElement(ArrowUp, null) : _react["default"].createElement(ArrowDown, null) : _react["default"].createElement(BothArrows, null);
|
|
206
247
|
};
|
|
207
248
|
|
|
208
249
|
(0, _react.useEffect)(function () {
|
|
@@ -222,26 +263,18 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
|
|
|
222
263
|
theme: colorsTheme.table
|
|
223
264
|
}, _react["default"].createElement(DxcResultsetTableContainer, {
|
|
224
265
|
margin: margin
|
|
225
|
-
}, _react["default"].createElement(TableContainer, null, _react["default"].createElement(_Table["default"], {
|
|
226
|
-
margin: {
|
|
227
|
-
top: margin,
|
|
228
|
-
right: margin,
|
|
229
|
-
bottom: "0px",
|
|
230
|
-
left: margin
|
|
231
|
-
}
|
|
232
|
-
}, _react["default"].createElement(HeaderRow, null, _react["default"].createElement("tr", null, columns.map(function (column, index) {
|
|
266
|
+
}, _react["default"].createElement(TableContainer, null, _react["default"].createElement(_Table["default"], null, _react["default"].createElement(HeaderRow, null, _react["default"].createElement("tr", null, columns.map(function (column, index) {
|
|
233
267
|
return _react["default"].createElement(TableHeader, {
|
|
234
268
|
key: "tableHeader_".concat(index)
|
|
235
269
|
}, _react["default"].createElement(HeaderContainer, {
|
|
236
270
|
key: "headerContainer_".concat(index),
|
|
237
271
|
onClick: function onClick() {
|
|
238
272
|
return column.isSortable && changeSorting(index);
|
|
239
|
-
}
|
|
273
|
+
},
|
|
274
|
+
tabIndex: column.isSortable ? tabIndex : -1
|
|
240
275
|
}, _react["default"].createElement(TitleDiv, {
|
|
241
276
|
isSortable: column.isSortable
|
|
242
|
-
}, column.displayValue), column.isSortable && _react["default"].createElement(SortIcon,
|
|
243
|
-
src: getIconForSortableColumn(index)
|
|
244
|
-
})));
|
|
277
|
+
}, column.displayValue), column.isSortable && _react["default"].createElement(SortIcon, null, getIconForSortableColumn(index))));
|
|
245
278
|
}))), _react["default"].createElement(TableRowGroup, null, filteredResultset.map(function (cells, index) {
|
|
246
279
|
return _react["default"].createElement("tr", {
|
|
247
280
|
key: "resultSetTableCell_".concat(index)
|
|
@@ -250,30 +283,29 @@ var DxcResultsetTable = function DxcResultsetTable(_ref) {
|
|
|
250
283
|
key: "resultSetTableCellContent_".concat(index)
|
|
251
284
|
}, cellContent.displayValue);
|
|
252
285
|
}));
|
|
253
|
-
})))), _react["default"].createElement(PaginatorContainer, {
|
|
254
|
-
margin: margin
|
|
255
|
-
}, _react["default"].createElement(_Paginator["default"], {
|
|
286
|
+
})))), _react["default"].createElement(PaginatorContainer, null, _react["default"].createElement(_Paginator["default"], {
|
|
256
287
|
totalItems: rows.length,
|
|
257
288
|
itemsPerPage: itemsPerPage,
|
|
258
289
|
itemsPerPageOptions: itemsPerPageOptions,
|
|
259
290
|
itemsPerPageFunction: itemsPerPageFunction,
|
|
260
291
|
currentPage: page,
|
|
261
292
|
showGoToPage: true,
|
|
262
|
-
onPageChange: goToPage
|
|
293
|
+
onPageChange: goToPage,
|
|
294
|
+
tabIndex: tabIndex
|
|
263
295
|
}))));
|
|
264
296
|
};
|
|
265
297
|
|
|
266
298
|
var TableContainer = _styledComponents["default"].div(_templateObject());
|
|
267
299
|
|
|
268
|
-
var PaginatorContainer = _styledComponents["default"].div(_templateObject2()
|
|
269
|
-
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
270
|
-
}, function (props) {
|
|
271
|
-
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
272
|
-
});
|
|
300
|
+
var PaginatorContainer = _styledComponents["default"].div(_templateObject2());
|
|
273
301
|
|
|
274
|
-
var TableRowGroup = _styledComponents["default"].tbody(_templateObject3())
|
|
302
|
+
var TableRowGroup = _styledComponents["default"].tbody(_templateObject3(), function (props) {
|
|
303
|
+
return props.theme.rowHeight || "70px";
|
|
304
|
+
});
|
|
275
305
|
|
|
276
|
-
var SortIcon = _styledComponents["default"].
|
|
306
|
+
var SortIcon = _styledComponents["default"].div(_templateObject4(), function (props) {
|
|
307
|
+
return props.theme.sortIconColor;
|
|
308
|
+
});
|
|
277
309
|
|
|
278
310
|
var TitleDiv = _styledComponents["default"].div(_templateObject5(), function (props) {
|
|
279
311
|
return props.isSortable && "pointer" || "default";
|
|
@@ -281,11 +313,15 @@ var TitleDiv = _styledComponents["default"].div(_templateObject5(), function (pr
|
|
|
281
313
|
|
|
282
314
|
var TableHeader = _styledComponents["default"].th(_templateObject6());
|
|
283
315
|
|
|
284
|
-
var HeaderContainer = _styledComponents["default"].div(_templateObject7())
|
|
316
|
+
var HeaderContainer = _styledComponents["default"].div(_templateObject7(), function (props) {
|
|
317
|
+
return props.theme.headerTextAlign === "center" ? "center" : props.theme.headerTextAlign === "right" ? "flex-end" : "flex-start";
|
|
318
|
+
});
|
|
285
319
|
|
|
286
320
|
var HeaderRow = _styledComponents["default"].thead(_templateObject8());
|
|
287
321
|
|
|
288
322
|
var DxcResultsetTableContainer = _styledComponents["default"].div(_templateObject9(), function (props) {
|
|
323
|
+
return props.theme.fontSizeBase;
|
|
324
|
+
}, function (props) {
|
|
289
325
|
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
290
326
|
}, function (props) {
|
|
291
327
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
|
|
@@ -295,10 +331,6 @@ var DxcResultsetTableContainer = _styledComponents["default"].div(_templateObjec
|
|
|
295
331
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.bottom ? _variables.spaces[props.margin.bottom] : "";
|
|
296
332
|
}, function (props) {
|
|
297
333
|
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
298
|
-
}, function (props) {
|
|
299
|
-
return props.theme.scrollBarThumbColor;
|
|
300
|
-
}, function (props) {
|
|
301
|
-
return props.theme.scrollBarTrackColor;
|
|
302
334
|
});
|
|
303
335
|
|
|
304
336
|
DxcResultsetTable.propTypes = {
|
|
@@ -312,15 +344,15 @@ DxcResultsetTable.propTypes = {
|
|
|
312
344
|
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
313
345
|
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
314
346
|
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
315
|
-
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
|
|
347
|
+
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
348
|
+
tabIndex: _propTypes["default"].number
|
|
316
349
|
};
|
|
317
350
|
DxcResultsetTable.defaultProps = {
|
|
318
351
|
rows: [],
|
|
319
352
|
columns: [],
|
|
320
353
|
itemsPerPage: 5,
|
|
321
354
|
itemsPerPageOptions: null,
|
|
322
|
-
itemsPerPageFunction: null
|
|
323
|
-
margin: "xxsmall"
|
|
355
|
+
itemsPerPageFunction: null
|
|
324
356
|
};
|
|
325
357
|
var _default = DxcResultsetTable;
|
|
326
358
|
exports["default"] = _default;
|