@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
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
/* eslint-disable prefer-template */
|
|
13
|
+
var NumberContext = _react["default"].createContext();
|
|
14
|
+
|
|
15
|
+
var _default = NumberContext;
|
|
16
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,113 @@
|
|
|
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
|
+
type Props = {
|
|
10
|
+
/**
|
|
11
|
+
* Text to be placed above the number.
|
|
12
|
+
*/
|
|
13
|
+
label?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Name attribute of the input element.
|
|
16
|
+
*/
|
|
17
|
+
name?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Value of the input element. If undefined, the component will be uncontrolled and the value will be managed internally by the component.
|
|
20
|
+
*/
|
|
21
|
+
value?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Helper text to be placed above the number.
|
|
24
|
+
*/
|
|
25
|
+
helperText?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Text to be put as placeholder of the number.
|
|
28
|
+
*/
|
|
29
|
+
placeholder?: string;
|
|
30
|
+
/**
|
|
31
|
+
* If true, the component will be disabled.
|
|
32
|
+
*/
|
|
33
|
+
disabled?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* If true, the number will be optional, showing '(Optional)'
|
|
36
|
+
* next to the label. Otherwise, the field will be considered required
|
|
37
|
+
* and an error will be passed as a parameter to the OnBlur and onChange
|
|
38
|
+
* functions when it has not been filled.
|
|
39
|
+
*/
|
|
40
|
+
optional?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Prefix to be placed before the number value.
|
|
43
|
+
*/
|
|
44
|
+
prefix?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Suffix to be placed after the number value.
|
|
47
|
+
*/
|
|
48
|
+
suffix?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Minimum value allowed by the number. If the typed value by the user is
|
|
51
|
+
* lower than min, the onBlur and onChange functions will be called with
|
|
52
|
+
* the current value and an internal error informing that the current
|
|
53
|
+
* value is not correct. If a valid state is reached, the error parameter
|
|
54
|
+
* will be null in both events.
|
|
55
|
+
*/
|
|
56
|
+
min?: number;
|
|
57
|
+
/**
|
|
58
|
+
* Maximum value allowed by the number. If the typed value by the user
|
|
59
|
+
* surpasses max, the onBlur and onChange functions will be called with
|
|
60
|
+
* the current value and an internal error informing that the current
|
|
61
|
+
* value is not correct. If a valid state is reached, the error parameter
|
|
62
|
+
* will be null in both events.
|
|
63
|
+
*/
|
|
64
|
+
max?: number;
|
|
65
|
+
/**
|
|
66
|
+
* The step interval to use when using the up and down arrows to adjust the value.
|
|
67
|
+
*/
|
|
68
|
+
step?: number;
|
|
69
|
+
/**
|
|
70
|
+
* This function will be called when the user types within the input
|
|
71
|
+
* element of the component. An object including the current value and
|
|
72
|
+
* the error (if the value entered is not valid) will be passed to this
|
|
73
|
+
* function. If there is no error, error will be null.
|
|
74
|
+
*/
|
|
75
|
+
onChange?: (val: { value: string; error: string }) => void;
|
|
76
|
+
/**
|
|
77
|
+
* This function will be called when the input element loses the focus.
|
|
78
|
+
* An object including the input value and the error (if the value
|
|
79
|
+
* entered is not valid) will be passed to this function. If there is no error,
|
|
80
|
+
* error will be null.
|
|
81
|
+
*/
|
|
82
|
+
onBlur?: (val: { value: string; error: string }) => void;
|
|
83
|
+
/**
|
|
84
|
+
* If it is defined, the component will change its appearance, showing
|
|
85
|
+
* the error below the input component. If it is not defined, the error
|
|
86
|
+
* messages will be managed internally, but never displayed on its own.
|
|
87
|
+
*/
|
|
88
|
+
error?: string;
|
|
89
|
+
/**
|
|
90
|
+
* HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
|
|
91
|
+
* Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
|
|
92
|
+
*/
|
|
93
|
+
autocomplete?: string;
|
|
94
|
+
/**
|
|
95
|
+
* Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
|
|
96
|
+
* You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
|
|
97
|
+
*/
|
|
98
|
+
margin?: Space | Margin;
|
|
99
|
+
/**
|
|
100
|
+
* Size of the component ('small' | 'medium' | 'large' | 'fillParent').
|
|
101
|
+
*/
|
|
102
|
+
size?: Size;
|
|
103
|
+
/**
|
|
104
|
+
* Value of the tabindex attribute.
|
|
105
|
+
*/
|
|
106
|
+
tabIndex?: number;
|
|
107
|
+
/**
|
|
108
|
+
* Reference to the component.
|
|
109
|
+
*/
|
|
110
|
+
ref?: React.RefObject<HTMLDivElement>;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export default function DxcNumber(props: Props): JSX.Element;
|
|
@@ -33,7 +33,7 @@ var _next = _interopRequireDefault(require("./images/next.svg"));
|
|
|
33
33
|
|
|
34
34
|
var _nextPage = _interopRequireDefault(require("./images/nextPage.svg"));
|
|
35
35
|
|
|
36
|
-
require("../
|
|
36
|
+
var _BackgroundColorContext = require("../BackgroundColorContext.js");
|
|
37
37
|
|
|
38
38
|
function _templateObject8() {
|
|
39
39
|
var data = (0, _taggedTemplateLiteral2["default"])([""]);
|
|
@@ -46,7 +46,7 @@ function _templateObject8() {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
function _templateObject7() {
|
|
49
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right:
|
|
49
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: ", ";\n margin-left: ", ";\n\n label {\n height: 0px;\n }\n label + .MuiInput-formControl {\n margin-top: 0px;\n }\n"]);
|
|
50
50
|
|
|
51
51
|
_templateObject7 = function _templateObject7() {
|
|
52
52
|
return data;
|
|
@@ -56,7 +56,7 @@ function _templateObject7() {
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
function _templateObject6() {
|
|
59
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n width: 100%;\n justify-content: flex-end;\n align-items: center;\n margin: 0
|
|
59
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n width: 100%;\n justify-content: flex-end;\n align-items: center;\n margin: 0 ", " 0 ", ";\n"]);
|
|
60
60
|
|
|
61
61
|
_templateObject6 = function _templateObject6() {
|
|
62
62
|
return data;
|
|
@@ -66,7 +66,7 @@ function _templateObject6() {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
function _templateObject5() {
|
|
69
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right:
|
|
69
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: ", ";\n margin-left: ", ";\n"]);
|
|
70
70
|
|
|
71
71
|
_templateObject5 = function _templateObject5() {
|
|
72
72
|
return data;
|
|
@@ -96,7 +96,7 @@ function _templateObject3() {
|
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
function _templateObject2() {
|
|
99
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right:
|
|
99
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: ", ";\n margin-left: ", ";\n\n label {\n height: 0px;\n }\n label + .MuiInput-formControl {\n margin-top: 0px;\n }\n"]);
|
|
100
100
|
|
|
101
101
|
_templateObject2 = function _templateObject2() {
|
|
102
102
|
return data;
|
|
@@ -106,7 +106,7 @@ function _templateObject2() {
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
function _templateObject() {
|
|
109
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n height:
|
|
109
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n height: ", ";\n width: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n font-style: ", ";\n text-transform: ", ";\n background-color: ", ";\n color: ", ";\n\n button {\n &:disabled {\n background-color: transparent !important;\n opacity: 0.3 !important;\n }\n }\n"]);
|
|
110
110
|
|
|
111
111
|
_templateObject = function _templateObject() {
|
|
112
112
|
return data;
|
|
@@ -125,7 +125,9 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
125
125
|
totalItems = _ref$totalItems === void 0 ? 1 : _ref$totalItems,
|
|
126
126
|
showGoToPage = _ref.showGoToPage,
|
|
127
127
|
onPageChange = _ref.onPageChange,
|
|
128
|
-
itemsPerPageFunction = _ref.itemsPerPageFunction
|
|
128
|
+
itemsPerPageFunction = _ref.itemsPerPageFunction,
|
|
129
|
+
_ref$tabIndex = _ref.tabIndex,
|
|
130
|
+
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
129
131
|
var totalPages = Math.ceil(totalItems / itemsPerPage);
|
|
130
132
|
var currentPageInternal = currentPage === -1 ? totalPages : currentPage;
|
|
131
133
|
var minItemsPerPage = currentPageInternal === 1 || currentPageInternal === 0 ? currentPageInternal : (currentPageInternal - 1) * itemsPerPage + 1;
|
|
@@ -133,6 +135,8 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
133
135
|
var colorsTheme = (0, _useTheme["default"])();
|
|
134
136
|
return _react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
135
137
|
theme: colorsTheme.paginator
|
|
138
|
+
}, _react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
|
|
139
|
+
color: colorsTheme.paginator.backgroundColor
|
|
136
140
|
}, _react["default"].createElement(DxcPaginatorContainer, {
|
|
137
141
|
disabled: currentPageInternal === 1
|
|
138
142
|
}, _react["default"].createElement(LabelsContainer, null, itemsPerPageOptions && _react["default"].createElement(ItemsPageContainer, null, _react["default"].createElement(ItemsLabel, null, "Items per page "), _react["default"].createElement(_Select["default"], {
|
|
@@ -144,7 +148,8 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
144
148
|
}),
|
|
145
149
|
onChange: itemsPerPageFunction,
|
|
146
150
|
value: itemsPerPage,
|
|
147
|
-
size: "small"
|
|
151
|
+
size: "small",
|
|
152
|
+
tabIndex: tabIndex
|
|
148
153
|
})), _react["default"].createElement(TotalItemsContainer, null, minItemsPerPage, " to ", maxItemsPerPage, " of ", totalItems), onPageChange && _react["default"].createElement(_Button["default"], {
|
|
149
154
|
size: "small",
|
|
150
155
|
mode: "secondary",
|
|
@@ -154,6 +159,7 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
154
159
|
right: "xxsmall"
|
|
155
160
|
},
|
|
156
161
|
iconSrc: _previousPage["default"],
|
|
162
|
+
tabIndex: tabIndex,
|
|
157
163
|
onClick: function onClick() {
|
|
158
164
|
onPageChange(1);
|
|
159
165
|
}
|
|
@@ -166,6 +172,7 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
166
172
|
right: "xxsmall"
|
|
167
173
|
},
|
|
168
174
|
iconSrc: _previous["default"],
|
|
175
|
+
tabIndex: tabIndex,
|
|
169
176
|
onClick: function onClick() {
|
|
170
177
|
onPageChange(currentPage - 1);
|
|
171
178
|
}
|
|
@@ -178,7 +185,8 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
178
185
|
}),
|
|
179
186
|
onChange: onPageChange,
|
|
180
187
|
value: currentPage,
|
|
181
|
-
size: "small"
|
|
188
|
+
size: "small",
|
|
189
|
+
tabIndex: tabIndex
|
|
182
190
|
})) || _react["default"].createElement(TextContainer, null, "Page: ", currentPageInternal, " of ", totalPages), onPageChange && _react["default"].createElement(_Button["default"], {
|
|
183
191
|
size: "small",
|
|
184
192
|
mode: "secondary",
|
|
@@ -188,6 +196,7 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
188
196
|
right: "xxsmall"
|
|
189
197
|
},
|
|
190
198
|
iconSrc: _next["default"],
|
|
199
|
+
tabIndex: tabIndex,
|
|
191
200
|
onClick: function onClick() {
|
|
192
201
|
onPageChange(currentPage + 1);
|
|
193
202
|
}
|
|
@@ -200,29 +209,60 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
200
209
|
right: "xxsmall"
|
|
201
210
|
},
|
|
202
211
|
iconSrc: _nextPage["default"],
|
|
212
|
+
tabIndex: tabIndex,
|
|
203
213
|
onClick: function onClick() {
|
|
204
214
|
onPageChange(totalPages);
|
|
205
215
|
}
|
|
206
|
-
}))));
|
|
216
|
+
})))));
|
|
207
217
|
};
|
|
208
218
|
|
|
209
219
|
var DxcPaginatorContainer = _styledComponents["default"].div(_templateObject(), function (props) {
|
|
210
|
-
return props.theme.
|
|
220
|
+
return props.theme.height;
|
|
221
|
+
}, function (props) {
|
|
222
|
+
return props.theme.width;
|
|
223
|
+
}, function (props) {
|
|
224
|
+
return props.theme.fontFamily;
|
|
225
|
+
}, function (props) {
|
|
226
|
+
return props.theme.fontSize;
|
|
227
|
+
}, function (props) {
|
|
228
|
+
return props.theme.fontWeight;
|
|
229
|
+
}, function (props) {
|
|
230
|
+
return props.theme.fontStyle;
|
|
231
|
+
}, function (props) {
|
|
232
|
+
return props.theme.fontTextTransform;
|
|
233
|
+
}, function (props) {
|
|
234
|
+
return props.theme.backgroundColor;
|
|
211
235
|
}, function (props) {
|
|
212
|
-
return props.theme.
|
|
236
|
+
return props.theme.fontColor;
|
|
213
237
|
});
|
|
214
238
|
|
|
215
|
-
var ItemsPageContainer = _styledComponents["default"].span(_templateObject2())
|
|
239
|
+
var ItemsPageContainer = _styledComponents["default"].span(_templateObject2(), function (props) {
|
|
240
|
+
return props.theme.itemsPerPageSelectorMarginRight;
|
|
241
|
+
}, function (props) {
|
|
242
|
+
return props.theme.itemsPerPageSelectorMarginLeft;
|
|
243
|
+
});
|
|
216
244
|
|
|
217
245
|
var ItemsLabel = _styledComponents["default"].span(_templateObject3());
|
|
218
246
|
|
|
219
247
|
var GoToLabel = _styledComponents["default"].span(_templateObject4());
|
|
220
248
|
|
|
221
|
-
var TotalItemsContainer = _styledComponents["default"].span(_templateObject5())
|
|
249
|
+
var TotalItemsContainer = _styledComponents["default"].span(_templateObject5(), function (props) {
|
|
250
|
+
return props.theme.totalItemsContainerMarginRight;
|
|
251
|
+
}, function (props) {
|
|
252
|
+
return props.theme.totalItemsContainerMarginLeft;
|
|
253
|
+
});
|
|
222
254
|
|
|
223
|
-
var LabelsContainer = _styledComponents["default"].div(_templateObject6())
|
|
255
|
+
var LabelsContainer = _styledComponents["default"].div(_templateObject6(), function (props) {
|
|
256
|
+
return props.theme.marginRight;
|
|
257
|
+
}, function (props) {
|
|
258
|
+
return props.theme.marginLeft;
|
|
259
|
+
});
|
|
224
260
|
|
|
225
|
-
var PageToSelectContainer = _styledComponents["default"].span(_templateObject7())
|
|
261
|
+
var PageToSelectContainer = _styledComponents["default"].span(_templateObject7(), function (props) {
|
|
262
|
+
return props.theme.pageSelectorMarginRight;
|
|
263
|
+
}, function (props) {
|
|
264
|
+
return props.theme.pageSelectorMarginLeft;
|
|
265
|
+
});
|
|
226
266
|
|
|
227
267
|
var TextContainer = _styledComponents["default"].span(_templateObject8());
|
|
228
268
|
|
|
@@ -233,7 +273,8 @@ DxcPaginator.propTypes = {
|
|
|
233
273
|
totalItems: _propTypes["default"].number.isRequired,
|
|
234
274
|
showGoToPage: _propTypes["default"].bool,
|
|
235
275
|
onPageChange: _propTypes["default"].func,
|
|
236
|
-
itemsPerPageFunction: _propTypes["default"].func
|
|
276
|
+
itemsPerPageFunction: _propTypes["default"].func,
|
|
277
|
+
tabIndex: _propTypes["default"].number
|
|
237
278
|
};
|
|
238
279
|
DxcPaginator.defaultProps = {
|
|
239
280
|
currentPage: 1,
|
|
@@ -241,7 +282,8 @@ DxcPaginator.defaultProps = {
|
|
|
241
282
|
itemsPerPageOptions: null,
|
|
242
283
|
showGoToPage: false,
|
|
243
284
|
onPageChange: null,
|
|
244
|
-
itemsPerPageFunction: null
|
|
285
|
+
itemsPerPageFunction: null,
|
|
286
|
+
tabIndex: 0
|
|
245
287
|
};
|
|
246
288
|
var _default = DxcPaginator;
|
|
247
289
|
exports["default"] = _default;
|
|
@@ -0,0 +1,200 @@
|
|
|
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 _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
15
|
+
|
|
16
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
17
|
+
|
|
18
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
19
|
+
|
|
20
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
21
|
+
|
|
22
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
23
|
+
|
|
24
|
+
var _NewInputText = _interopRequireDefault(require("../new-input-text/NewInputText"));
|
|
25
|
+
|
|
26
|
+
var _variables = require("../common/variables.js");
|
|
27
|
+
|
|
28
|
+
require("./styles.css");
|
|
29
|
+
|
|
30
|
+
function _templateObject() {
|
|
31
|
+
var data = (0, _taggedTemplateLiteral2["default"])([""]);
|
|
32
|
+
|
|
33
|
+
_templateObject = function _templateObject() {
|
|
34
|
+
return data;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
return data;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
var DxcPassword = _react["default"].forwardRef(function (_ref, ref) {
|
|
41
|
+
var _ref$label = _ref.label,
|
|
42
|
+
label = _ref$label === void 0 ? "" : _ref$label,
|
|
43
|
+
_ref$name = _ref.name,
|
|
44
|
+
name = _ref$name === void 0 ? "" : _ref$name,
|
|
45
|
+
value = _ref.value,
|
|
46
|
+
_ref$helperText = _ref.helperText,
|
|
47
|
+
helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
|
|
48
|
+
_ref$clearable = _ref.clearable,
|
|
49
|
+
clearable = _ref$clearable === void 0 ? false : _ref$clearable,
|
|
50
|
+
onChange = _ref.onChange,
|
|
51
|
+
onBlur = _ref.onBlur,
|
|
52
|
+
_ref$error = _ref.error,
|
|
53
|
+
error = _ref$error === void 0 ? "" : _ref$error,
|
|
54
|
+
pattern = _ref.pattern,
|
|
55
|
+
length = _ref.length,
|
|
56
|
+
_ref$autocomplete = _ref.autocomplete,
|
|
57
|
+
autocomplete = _ref$autocomplete === void 0 ? "off" : _ref$autocomplete,
|
|
58
|
+
margin = _ref.margin,
|
|
59
|
+
_ref$size = _ref.size,
|
|
60
|
+
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
61
|
+
_ref$tabIndex = _ref.tabIndex,
|
|
62
|
+
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
63
|
+
|
|
64
|
+
var _useState = (0, _react.useState)(false),
|
|
65
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
66
|
+
isPasswordVisible = _useState2[0],
|
|
67
|
+
setIsPasswordVisible = _useState2[1];
|
|
68
|
+
|
|
69
|
+
var inputRef = (0, _react.useRef)(null);
|
|
70
|
+
|
|
71
|
+
var setInputType = function setInputType(type) {
|
|
72
|
+
var _inputRef$current, _inputRef$current$chi;
|
|
73
|
+
|
|
74
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 ? void 0 : (_inputRef$current$chi = _inputRef$current.children[2]) === null || _inputRef$current$chi === void 0 ? void 0 : _inputRef$current$chi.children[0].setAttribute("type", type);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
var setAriaAttributes = function setAriaAttributes(ariaExpanded, ariaLabel) {
|
|
78
|
+
if (error && clearable && value) {
|
|
79
|
+
var _inputRef$current2, _inputRef$current2$ch, _inputRef$current2$ch2, _inputRef$current3, _inputRef$current3$ch, _inputRef$current3$ch2;
|
|
80
|
+
|
|
81
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current2 = inputRef.current) === null || _inputRef$current2 === void 0 ? void 0 : (_inputRef$current2$ch = _inputRef$current2.children[2]) === null || _inputRef$current2$ch === void 0 ? void 0 : (_inputRef$current2$ch2 = _inputRef$current2$ch.children[3]) === null || _inputRef$current2$ch2 === void 0 ? void 0 : _inputRef$current2$ch2.setAttribute("aria-expanded", ariaExpanded);
|
|
82
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current3 = inputRef.current) === null || _inputRef$current3 === void 0 ? void 0 : (_inputRef$current3$ch = _inputRef$current3.children[2]) === null || _inputRef$current3$ch === void 0 ? void 0 : (_inputRef$current3$ch2 = _inputRef$current3$ch.children[3]) === null || _inputRef$current3$ch2 === void 0 ? void 0 : _inputRef$current3$ch2.setAttribute("aria-label", ariaLabel);
|
|
83
|
+
} else if (error || clearable && !value) {
|
|
84
|
+
var _inputRef$current4, _inputRef$current4$ch, _inputRef$current4$ch2, _inputRef$current5, _inputRef$current5$ch, _inputRef$current5$ch2;
|
|
85
|
+
|
|
86
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current4 = inputRef.current) === null || _inputRef$current4 === void 0 ? void 0 : (_inputRef$current4$ch = _inputRef$current4.children[2]) === null || _inputRef$current4$ch === void 0 ? void 0 : (_inputRef$current4$ch2 = _inputRef$current4$ch.children[2]) === null || _inputRef$current4$ch2 === void 0 ? void 0 : _inputRef$current4$ch2.setAttribute("aria-expanded", ariaExpanded);
|
|
87
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current5 = inputRef.current) === null || _inputRef$current5 === void 0 ? void 0 : (_inputRef$current5$ch = _inputRef$current5.children[2]) === null || _inputRef$current5$ch === void 0 ? void 0 : (_inputRef$current5$ch2 = _inputRef$current5$ch.children[2]) === null || _inputRef$current5$ch2 === void 0 ? void 0 : _inputRef$current5$ch2.setAttribute("aria-label", ariaLabel);
|
|
88
|
+
} else {
|
|
89
|
+
var _inputRef$current6, _inputRef$current6$ch, _inputRef$current6$ch2, _inputRef$current7, _inputRef$current7$ch, _inputRef$current7$ch2;
|
|
90
|
+
|
|
91
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current6 = inputRef.current) === null || _inputRef$current6 === void 0 ? void 0 : (_inputRef$current6$ch = _inputRef$current6.children[2]) === null || _inputRef$current6$ch === void 0 ? void 0 : (_inputRef$current6$ch2 = _inputRef$current6$ch.children[1]) === null || _inputRef$current6$ch2 === void 0 ? void 0 : _inputRef$current6$ch2.setAttribute("aria-expanded", ariaExpanded);
|
|
92
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current7 = inputRef.current) === null || _inputRef$current7 === void 0 ? void 0 : (_inputRef$current7$ch = _inputRef$current7.children[2]) === null || _inputRef$current7$ch === void 0 ? void 0 : (_inputRef$current7$ch2 = _inputRef$current7$ch.children[1]) === null || _inputRef$current7$ch2 === void 0 ? void 0 : _inputRef$current7$ch2.setAttribute("aria-label", ariaLabel);
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
(0, _react.useEffect)(function () {
|
|
97
|
+
setAriaAttributes(false, "Show");
|
|
98
|
+
|
|
99
|
+
if (isPasswordVisible) {
|
|
100
|
+
setInputType("text");
|
|
101
|
+
setAriaAttributes(true, "Hide");
|
|
102
|
+
} else {
|
|
103
|
+
setInputType("password");
|
|
104
|
+
setAriaAttributes(false, "Show");
|
|
105
|
+
}
|
|
106
|
+
}, [isPasswordVisible]);
|
|
107
|
+
|
|
108
|
+
var viewPassword = function viewPassword() {
|
|
109
|
+
setInputType("text");
|
|
110
|
+
setIsPasswordVisible(true);
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
var hidePassword = function hidePassword() {
|
|
114
|
+
setInputType("password");
|
|
115
|
+
setIsPasswordVisible(false);
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
var action = {
|
|
119
|
+
onClick: isPasswordVisible ? hidePassword : viewPassword,
|
|
120
|
+
icon: isPasswordVisible ? _react["default"].createElement("svg", {
|
|
121
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
122
|
+
height: "24px",
|
|
123
|
+
viewBox: "0 0 24 24",
|
|
124
|
+
width: "24px",
|
|
125
|
+
fill: "#000000"
|
|
126
|
+
}, _react["default"].createElement("path", {
|
|
127
|
+
d: "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z",
|
|
128
|
+
fill: "none"
|
|
129
|
+
}), _react["default"].createElement("path", {
|
|
130
|
+
d: "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z"
|
|
131
|
+
})) : _react["default"].createElement("svg", {
|
|
132
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
133
|
+
height: "24px",
|
|
134
|
+
viewBox: "0 0 24 24",
|
|
135
|
+
width: "24px",
|
|
136
|
+
fill: "#000000"
|
|
137
|
+
}, _react["default"].createElement("path", {
|
|
138
|
+
d: "M0 0h24v24H0V0z",
|
|
139
|
+
fill: "none"
|
|
140
|
+
}), _react["default"].createElement("path", {
|
|
141
|
+
d: "M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z"
|
|
142
|
+
}))
|
|
143
|
+
};
|
|
144
|
+
return _react["default"].createElement(DXCPassword, {
|
|
145
|
+
ref: ref
|
|
146
|
+
}, _react["default"].createElement(_NewInputText["default"], {
|
|
147
|
+
ref: inputRef,
|
|
148
|
+
label: label,
|
|
149
|
+
name: name,
|
|
150
|
+
value: value,
|
|
151
|
+
helperText: helperText,
|
|
152
|
+
action: action,
|
|
153
|
+
error: error,
|
|
154
|
+
clearable: clearable,
|
|
155
|
+
onChange: onChange,
|
|
156
|
+
onBlur: onBlur,
|
|
157
|
+
margin: margin,
|
|
158
|
+
size: size,
|
|
159
|
+
pattern: pattern,
|
|
160
|
+
length: length,
|
|
161
|
+
autocomplete: autocomplete,
|
|
162
|
+
tabIndex: tabIndex
|
|
163
|
+
}));
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
var sizes = {
|
|
167
|
+
small: "240px",
|
|
168
|
+
medium: "360px",
|
|
169
|
+
large: "480px",
|
|
170
|
+
fillParent: "100%"
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
var DXCPassword = _styledComponents["default"].div(_templateObject());
|
|
174
|
+
|
|
175
|
+
DxcPassword.propTypes = {
|
|
176
|
+
label: _propTypes["default"].string,
|
|
177
|
+
name: _propTypes["default"].string,
|
|
178
|
+
value: _propTypes["default"].string,
|
|
179
|
+
helperText: _propTypes["default"].string,
|
|
180
|
+
error: _propTypes["default"].string,
|
|
181
|
+
clearable: _propTypes["default"].bool,
|
|
182
|
+
onChange: _propTypes["default"].func,
|
|
183
|
+
onBlur: _propTypes["default"].func,
|
|
184
|
+
autocomplete: _propTypes["default"].string,
|
|
185
|
+
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
186
|
+
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
187
|
+
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
188
|
+
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
189
|
+
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
190
|
+
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
191
|
+
size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
|
|
192
|
+
pattern: _propTypes["default"].string,
|
|
193
|
+
length: _propTypes["default"].shape({
|
|
194
|
+
min: _propTypes["default"].number,
|
|
195
|
+
max: _propTypes["default"].number
|
|
196
|
+
}),
|
|
197
|
+
tabIndex: _propTypes["default"].number
|
|
198
|
+
};
|
|
199
|
+
var _default = DxcPassword;
|
|
200
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,94 @@
|
|
|
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
|
+
/**
|
|
12
|
+
* Text to be placed above the password.
|
|
13
|
+
*/
|
|
14
|
+
label?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Name attribute of the input element.
|
|
17
|
+
*/
|
|
18
|
+
name?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Value of the input element. If undefined, the component will be uncontrolled and the value will be managed internally by the component.
|
|
21
|
+
*/
|
|
22
|
+
value?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Helper text to be placed above the password.
|
|
25
|
+
*/
|
|
26
|
+
helperText?: string;
|
|
27
|
+
/**
|
|
28
|
+
* If true, the password will have an action to clear the entered value.
|
|
29
|
+
*/
|
|
30
|
+
clearable?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* This function will be called when the user types within the input
|
|
33
|
+
* element of the component. An object including the current value and
|
|
34
|
+
* the error (if the value entered is not valid) will be passed to this
|
|
35
|
+
* function. If there is no error, error will be null.
|
|
36
|
+
* */
|
|
37
|
+
onChange?: (val: { value: string; error: string }) => void;
|
|
38
|
+
/**
|
|
39
|
+
* This function will be called when the input element loses the focus.
|
|
40
|
+
* An object including the input value and the error (if the value entered is
|
|
41
|
+
* not valid) will be passed to this function. If there is no error, error will be null.
|
|
42
|
+
*/
|
|
43
|
+
onBlur?: (val: { value: string; error: string }) => void;
|
|
44
|
+
/**
|
|
45
|
+
* If it is defined, the component will change its appearance, showing
|
|
46
|
+
* the error below the password component. If it is not defined, the
|
|
47
|
+
* error messages will be managed internally, but never displayed on its own.
|
|
48
|
+
*/
|
|
49
|
+
error?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Regular expression that defines the valid format allowed by the
|
|
52
|
+
* password. This will be checked both when the input element loses the
|
|
53
|
+
* focus and while typing within it. If the string entered does not match
|
|
54
|
+
* the pattern, the onBlur and onChange functions will be called with the
|
|
55
|
+
* current value and an internal error informing that this value does not
|
|
56
|
+
* match the pattern. If the pattern is met, the error parameter of both
|
|
57
|
+
* events will be null.
|
|
58
|
+
*/
|
|
59
|
+
pattern?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Specifies the minimun and maximum length allowed by the password.
|
|
62
|
+
* This will be checked both when the input element loses the
|
|
63
|
+
* focus and while typing within it. If the string entered does not
|
|
64
|
+
* comply the length, the onBlur and onChange functions will be called
|
|
65
|
+
* with the current value and an internal error informing that the value
|
|
66
|
+
* length does not comply the specified range. If a valid length is
|
|
67
|
+
* reached, the error parameter of both events will be null.
|
|
68
|
+
*/
|
|
69
|
+
length?: { min?: number; max?: number };
|
|
70
|
+
/**
|
|
71
|
+
* HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
|
|
72
|
+
* Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
|
|
73
|
+
*/
|
|
74
|
+
autocomplete?: string;
|
|
75
|
+
/**
|
|
76
|
+
* Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
|
|
77
|
+
* You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
|
|
78
|
+
*/
|
|
79
|
+
margin?: Space | Margin;
|
|
80
|
+
/**
|
|
81
|
+
* Size of the component ('small' | 'medium' | 'large' | 'fillParent').
|
|
82
|
+
*/
|
|
83
|
+
size?: Size;
|
|
84
|
+
/**
|
|
85
|
+
* Value of the tabindex attribute.
|
|
86
|
+
*/
|
|
87
|
+
tabIndex?: number;
|
|
88
|
+
/**
|
|
89
|
+
* Reference to the component.
|
|
90
|
+
*/
|
|
91
|
+
ref?: React.RefObject<HTMLDivElement>;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
export default function DxcPassword(props: Props): JSX.Element;
|