@dxc-technology/halstack-react 0.0.0-abb5d48 → 0.0.0-acb1a24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/BackgroundColorContext.js +46 -0
- package/dist/ThemeContext.js +171 -106
- package/dist/V3Select/V3Select.js +549 -0
- package/dist/V3Select/index.d.ts +27 -0
- package/dist/V3Textarea/V3Textarea.js +264 -0
- package/dist/V3Textarea/index.d.ts +27 -0
- package/dist/accordion/Accordion.js +119 -52
- package/dist/accordion/index.d.ts +28 -0
- package/dist/accordion-group/AccordionGroup.js +34 -4
- package/dist/accordion-group/index.d.ts +16 -0
- package/dist/alert/Alert.js +170 -83
- package/dist/alert/index.d.ts +51 -0
- package/dist/badge/Badge.js +28 -7
- package/dist/box/Box.js +27 -20
- package/dist/box/index.d.ts +25 -0
- package/dist/button/Button.js +42 -25
- package/dist/button/index.d.ts +24 -0
- package/dist/card/Card.js +16 -9
- package/dist/card/index.d.ts +22 -0
- package/dist/checkbox/Checkbox.js +89 -25
- package/dist/checkbox/index.d.ts +24 -0
- package/dist/chip/Chip.js +63 -23
- package/dist/chip/index.d.ts +22 -0
- package/dist/common/utils.js +2 -22
- package/dist/common/variables.js +1351 -299
- package/dist/date/Date.js +60 -40
- package/dist/date/index.d.ts +27 -0
- package/dist/date-input/DateInput.js +400 -0
- package/dist/date-input/index.d.ts +95 -0
- package/dist/dialog/Dialog.js +44 -31
- package/dist/dialog/index.d.ts +18 -0
- package/dist/dropdown/Dropdown.js +162 -76
- package/dist/dropdown/index.d.ts +26 -0
- package/dist/file-input/FileInput.js +644 -0
- package/dist/file-input/FileItem.js +287 -0
- package/dist/file-input/index.d.ts +81 -0
- package/dist/footer/Footer.js +79 -39
- package/dist/footer/Icons.js +77 -0
- package/dist/footer/index.d.ts +25 -0
- package/dist/header/Header.js +158 -73
- package/dist/header/Icons.js +59 -0
- package/dist/header/index.d.ts +25 -0
- package/dist/heading/Heading.js +103 -38
- package/dist/heading/index.d.ts +17 -0
- package/dist/input-text/Icons.js +22 -0
- package/dist/input-text/InputText.js +181 -75
- package/dist/input-text/index.d.ts +36 -0
- package/dist/layout/ApplicationLayout.js +14 -18
- package/dist/layout/Icons.js +55 -0
- package/dist/link/Link.js +77 -41
- package/dist/link/index.d.ts +23 -0
- package/dist/main.d.ts +40 -0
- package/dist/main.js +72 -16
- package/dist/number-input/NumberInput.js +136 -0
- package/dist/number-input/NumberInputContext.js +16 -0
- package/dist/number-input/index.d.ts +113 -0
- package/dist/paginator/Icons.js +66 -0
- package/dist/paginator/Paginator.js +85 -43
- package/dist/paginator/index.d.ts +20 -0
- package/dist/password-input/PasswordInput.js +203 -0
- package/dist/password-input/index.d.ts +94 -0
- package/dist/progress-bar/ProgressBar.js +88 -40
- package/dist/progress-bar/index.d.ts +18 -0
- package/dist/radio/Radio.js +28 -11
- package/dist/radio/index.d.ts +23 -0
- package/dist/resultsetTable/ResultsetTable.js +65 -40
- package/dist/resultsetTable/index.d.ts +19 -0
- package/dist/select/Select.js +887 -283
- package/dist/select/index.d.ts +53 -0
- package/dist/sidenav/Sidenav.js +47 -25
- package/dist/sidenav/index.d.ts +13 -0
- package/dist/slider/Slider.js +204 -69
- package/dist/slider/index.d.ts +29 -0
- package/dist/spinner/Spinner.js +244 -63
- package/dist/spinner/index.d.ts +17 -0
- package/dist/switch/Switch.js +42 -16
- package/dist/switch/index.d.ts +24 -0
- package/dist/table/Table.js +45 -13
- package/dist/table/index.d.ts +13 -0
- package/dist/tabs/Tabs.js +37 -21
- package/dist/tabs/index.d.ts +19 -0
- package/dist/tag/Tag.js +50 -36
- package/dist/tag/index.d.ts +24 -0
- package/dist/text-input/TextInput.js +974 -0
- package/dist/text-input/index.d.ts +135 -0
- package/dist/textarea/Textarea.js +238 -109
- package/dist/textarea/index.d.ts +117 -0
- package/dist/toggle/Toggle.js +0 -2
- package/dist/toggle/index.d.ts +21 -0
- package/dist/toggle-group/ToggleGroup.js +139 -37
- package/dist/toggle-group/index.d.ts +21 -0
- package/dist/upload/Upload.js +1 -7
- package/dist/upload/buttons-upload/ButtonsUpload.js +28 -18
- package/dist/upload/buttons-upload/Icons.js +40 -0
- package/dist/upload/dragAndDropArea/DragAndDropArea.js +61 -27
- package/dist/upload/dragAndDropArea/Icons.js +39 -0
- package/dist/upload/file-upload/FileToUpload.js +52 -27
- package/dist/upload/file-upload/Icons.js +66 -0
- package/dist/upload/files-upload/FilesToUpload.js +3 -5
- package/dist/upload/index.d.ts +15 -0
- package/dist/upload/transaction/Icons.js +160 -0
- package/dist/upload/transaction/Transaction.js +37 -43
- package/dist/upload/transactions/Transactions.js +24 -10
- package/dist/wizard/Icons.js +65 -0
- package/dist/wizard/Wizard.js +106 -58
- package/dist/wizard/index.d.ts +18 -0
- package/package.json +11 -13
- package/test/AccordionGroup.test.js +16 -0
- package/test/Date.test.js +15 -13
- package/test/DateInput.test.js +242 -0
- package/test/Dropdown.test.js +15 -0
- package/test/FileInput.test.js +201 -0
- package/test/Footer.test.js +2 -7
- package/test/Header.test.js +5 -10
- package/test/Heading.test.js +60 -12
- package/test/Link.test.js +3 -2
- package/test/NumberInput.test.js +259 -0
- package/test/Paginator.test.js +6 -2
- package/test/PasswordInput.test.js +83 -0
- package/test/ResultsetTable.test.js +6 -6
- package/test/Select.test.js +371 -148
- package/test/Slider.test.js +9 -17
- package/test/Spinner.test.js +5 -0
- package/test/TextInput.test.js +732 -0
- package/test/Textarea.test.js +193 -0
- package/test/ToggleGroup.test.js +5 -1
- package/test/Upload.test.js +1 -1
- package/test/V3Select.test.js +212 -0
- package/test/{TextArea.test.js → V3TextArea.test.js} +6 -7
- package/dist/accordion/Accordion.stories.js +0 -207
- package/dist/accordion/readme.md +0 -96
- package/dist/accordion-group/AccordionGroup.stories.js +0 -207
- package/dist/accordion-group/readme.md +0 -70
- package/dist/alert/Alert.stories.js +0 -158
- package/dist/alert/close.svg +0 -4
- package/dist/alert/error.svg +0 -4
- package/dist/alert/info.svg +0 -4
- package/dist/alert/readme.md +0 -43
- package/dist/alert/success.svg +0 -4
- package/dist/alert/warning.svg +0 -4
- package/dist/button/Button.stories.js +0 -224
- package/dist/button/readme.md +0 -93
- package/dist/checkbox/Checkbox.stories.js +0 -144
- package/dist/checkbox/readme.md +0 -116
- package/dist/common/services/example-service.js +0 -10
- package/dist/common/services/example-service.test.js +0 -12
- package/dist/date/Date.stories.js +0 -205
- package/dist/date/calendar.svg +0 -1
- package/dist/date/calendar_dark.svg +0 -1
- package/dist/date/readme.md +0 -73
- package/dist/dialog/Dialog.stories.js +0 -217
- package/dist/dialog/readme.md +0 -32
- package/dist/dropdown/Dropdown.stories.js +0 -249
- package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
- package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
- package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
- package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
- package/dist/dropdown/readme.md +0 -69
- package/dist/footer/Footer.stories.js +0 -94
- package/dist/footer/dxc_logo_wht.png +0 -0
- package/dist/footer/readme.md +0 -41
- package/dist/header/Header.stories.js +0 -176
- package/dist/header/close_icon.svg +0 -1
- package/dist/header/dxc_logo_black.png +0 -0
- package/dist/header/dxc_logo_blk_rgb.svg +0 -6
- package/dist/header/dxc_logo_white.png +0 -0
- package/dist/header/hamb_menu_black.svg +0 -1
- package/dist/header/hamb_menu_white.svg +0 -1
- package/dist/header/readme.md +0 -33
- package/dist/input-text/InputText.stories.js +0 -209
- package/dist/input-text/error.svg +0 -1
- package/dist/input-text/readme.md +0 -91
- package/dist/layout/facebook.svg +0 -45
- package/dist/layout/linkedin.svg +0 -50
- package/dist/layout/twitter.svg +0 -53
- package/dist/link/readme.md +0 -51
- package/dist/paginator/images/next.svg +0 -3
- package/dist/paginator/images/nextPage.svg +0 -3
- package/dist/paginator/images/previous.svg +0 -3
- package/dist/paginator/images/previousPage.svg +0 -3
- package/dist/paginator/readme.md +0 -50
- package/dist/progress-bar/ProgressBar.stories.js +0 -280
- package/dist/progress-bar/readme.md +0 -63
- package/dist/radio/Radio.stories.js +0 -166
- package/dist/radio/readme.md +0 -70
- package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
- package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
- package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
- package/dist/select/Select.stories.js +0 -235
- package/dist/select/readme.md +0 -72
- package/dist/slider/Slider.stories.js +0 -241
- package/dist/slider/readme.md +0 -64
- package/dist/spinner/Spinner.stories.js +0 -183
- package/dist/spinner/readme.md +0 -65
- package/dist/switch/Switch.stories.js +0 -134
- package/dist/switch/readme.md +0 -133
- package/dist/tabs/Tabs.stories.js +0 -130
- package/dist/tabs/readme.md +0 -78
- package/dist/tabs-for-sections/TabsForSections.js +0 -92
- package/dist/tabs-for-sections/readme.md +0 -78
- package/dist/toggle/Toggle.stories.js +0 -297
- package/dist/toggle/readme.md +0 -80
- package/dist/toggle-group/readme.md +0 -82
- package/dist/upload/Upload.stories.js +0 -72
- package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
- package/dist/upload/buttons-upload/upload-button.svg +0 -1
- package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
- package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
- package/dist/upload/file-upload/audio-icon.svg +0 -4
- package/dist/upload/file-upload/close.svg +0 -4
- package/dist/upload/file-upload/file-icon.svg +0 -4
- package/dist/upload/file-upload/video-icon.svg +0 -4
- package/dist/upload/readme.md +0 -37
- package/dist/upload/transaction/audio-icon-err.svg +0 -4
- package/dist/upload/transaction/audio-icon.svg +0 -4
- package/dist/upload/transaction/error-icon.svg +0 -4
- package/dist/upload/transaction/file-icon-err.svg +0 -4
- package/dist/upload/transaction/file-icon.svg +0 -4
- package/dist/upload/transaction/image-icon-err.svg +0 -4
- package/dist/upload/transaction/image-icon.svg +0 -4
- package/dist/upload/transaction/success-icon.svg +0 -4
- package/dist/upload/transaction/video-icon-err.svg +0 -4
- package/dist/upload/transaction/video-icon.svg +0 -4
- package/dist/wizard/invalid_icon.svg +0 -6
- package/dist/wizard/valid_icon.svg +0 -6
- package/dist/wizard/validation-wrong.svg +0 -6
- package/test/TabsForSections.test.js +0 -34
|
@@ -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 input. 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 input. 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 DxcNumberInput(props: Props): JSX.Element;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.lastIcon = exports.nextIcon = exports.previousIcon = exports.firstIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var firstIcon = _react["default"].createElement("svg", {
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
width: "12.41",
|
|
15
|
+
height: "12",
|
|
16
|
+
viewBox: "0 0 12.41 12"
|
|
17
|
+
}, _react["default"].createElement("path", {
|
|
18
|
+
id: "Path_2463",
|
|
19
|
+
"data-name": "Path 2463",
|
|
20
|
+
d: "M18.41,16.59,13.82,12l4.59-4.59L17,6l-6,6,6,6ZM6,6H8V18H6Z",
|
|
21
|
+
transform: "translate(-6 -6)"
|
|
22
|
+
}));
|
|
23
|
+
|
|
24
|
+
exports.firstIcon = firstIcon;
|
|
25
|
+
|
|
26
|
+
var previousIcon = _react["default"].createElement("svg", {
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
width: "7.41",
|
|
29
|
+
height: "12",
|
|
30
|
+
viewBox: "0 0 7.41 12"
|
|
31
|
+
}, _react["default"].createElement("path", {
|
|
32
|
+
id: "Path_2459",
|
|
33
|
+
"data-name": "Path 2459",
|
|
34
|
+
d: "M15.41,7.41,14,6,8,12l6,6,1.41-1.41L10.83,12Z",
|
|
35
|
+
transform: "translate(-8 -6)"
|
|
36
|
+
}));
|
|
37
|
+
|
|
38
|
+
exports.previousIcon = previousIcon;
|
|
39
|
+
|
|
40
|
+
var nextIcon = _react["default"].createElement("svg", {
|
|
41
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
42
|
+
width: "7.41",
|
|
43
|
+
height: "12",
|
|
44
|
+
viewBox: "0 0 7.41 12"
|
|
45
|
+
}, _react["default"].createElement("path", {
|
|
46
|
+
id: "Path_2461",
|
|
47
|
+
"data-name": "Path 2461",
|
|
48
|
+
d: "M10,6,8.59,7.41,13.17,12,8.59,16.59,10,18l6-6Z",
|
|
49
|
+
transform: "translate(-8.59 -6)"
|
|
50
|
+
}));
|
|
51
|
+
|
|
52
|
+
exports.nextIcon = nextIcon;
|
|
53
|
+
|
|
54
|
+
var lastIcon = _react["default"].createElement("svg", {
|
|
55
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56
|
+
width: "12.41",
|
|
57
|
+
height: "12",
|
|
58
|
+
viewBox: "0 0 12.41 12"
|
|
59
|
+
}, _react["default"].createElement("path", {
|
|
60
|
+
id: "Path_2465",
|
|
61
|
+
"data-name": "Path 2465",
|
|
62
|
+
d: "M5.59,7.41,10.18,12,5.59,16.59,7,18l6-6L7,6ZM16,6h2V18H16Z",
|
|
63
|
+
transform: "translate(-5.59 -6)"
|
|
64
|
+
}));
|
|
65
|
+
|
|
66
|
+
exports.lastIcon = lastIcon;
|
|
@@ -25,18 +25,22 @@ var _Button = _interopRequireDefault(require("../button/Button"));
|
|
|
25
25
|
|
|
26
26
|
var _Select = _interopRequireDefault(require("../select/Select"));
|
|
27
27
|
|
|
28
|
-
var
|
|
28
|
+
var _Icons = require("./Icons");
|
|
29
29
|
|
|
30
|
-
var
|
|
30
|
+
var _BackgroundColorContext = require("../BackgroundColorContext.js");
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
function _templateObject9() {
|
|
33
|
+
var data = (0, _taggedTemplateLiteral2["default"])([""]);
|
|
33
34
|
|
|
34
|
-
|
|
35
|
+
_templateObject9 = function _templateObject9() {
|
|
36
|
+
return data;
|
|
37
|
+
};
|
|
35
38
|
|
|
36
|
-
|
|
39
|
+
return data;
|
|
40
|
+
}
|
|
37
41
|
|
|
38
42
|
function _templateObject8() {
|
|
39
|
-
var data = (0, _taggedTemplateLiteral2["default"])([""]);
|
|
43
|
+
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"]);
|
|
40
44
|
|
|
41
45
|
_templateObject8 = function _templateObject8() {
|
|
42
46
|
return data;
|
|
@@ -46,7 +50,7 @@ function _templateObject8() {
|
|
|
46
50
|
}
|
|
47
51
|
|
|
48
52
|
function _templateObject7() {
|
|
49
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n
|
|
53
|
+
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"]);
|
|
50
54
|
|
|
51
55
|
_templateObject7 = function _templateObject7() {
|
|
52
56
|
return data;
|
|
@@ -56,7 +60,7 @@ function _templateObject7() {
|
|
|
56
60
|
}
|
|
57
61
|
|
|
58
62
|
function _templateObject6() {
|
|
59
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
63
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: ", ";\n margin-left: ", ";\n"]);
|
|
60
64
|
|
|
61
65
|
_templateObject6 = function _templateObject6() {
|
|
62
66
|
return data;
|
|
@@ -66,7 +70,7 @@ function _templateObject6() {
|
|
|
66
70
|
}
|
|
67
71
|
|
|
68
72
|
function _templateObject5() {
|
|
69
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right:
|
|
73
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: 10px;\n margin-left: 10px;\n"]);
|
|
70
74
|
|
|
71
75
|
_templateObject5 = function _templateObject5() {
|
|
72
76
|
return data;
|
|
@@ -76,7 +80,7 @@ function _templateObject5() {
|
|
|
76
80
|
}
|
|
77
81
|
|
|
78
82
|
function _templateObject4() {
|
|
79
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right:
|
|
83
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: 15px;\n"]);
|
|
80
84
|
|
|
81
85
|
_templateObject4 = function _templateObject4() {
|
|
82
86
|
return data;
|
|
@@ -86,7 +90,7 @@ function _templateObject4() {
|
|
|
86
90
|
}
|
|
87
91
|
|
|
88
92
|
function _templateObject3() {
|
|
89
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right:
|
|
93
|
+
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"]);
|
|
90
94
|
|
|
91
95
|
_templateObject3 = function _templateObject3() {
|
|
92
96
|
return data;
|
|
@@ -96,7 +100,7 @@ function _templateObject3() {
|
|
|
96
100
|
}
|
|
97
101
|
|
|
98
102
|
function _templateObject2() {
|
|
99
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n
|
|
103
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n max-width: 100px;\n"]);
|
|
100
104
|
|
|
101
105
|
_templateObject2 = function _templateObject2() {
|
|
102
106
|
return data;
|
|
@@ -106,7 +110,7 @@ function _templateObject2() {
|
|
|
106
110
|
}
|
|
107
111
|
|
|
108
112
|
function _templateObject() {
|
|
109
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n font-
|
|
113
|
+
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
114
|
|
|
111
115
|
_templateObject = function _templateObject() {
|
|
112
116
|
return data;
|
|
@@ -135,20 +139,27 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
135
139
|
var colorsTheme = (0, _useTheme["default"])();
|
|
136
140
|
return _react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
137
141
|
theme: colorsTheme.paginator
|
|
142
|
+
}, _react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
|
|
143
|
+
color: colorsTheme.paginator.backgroundColor
|
|
138
144
|
}, _react["default"].createElement(DxcPaginatorContainer, {
|
|
139
145
|
disabled: currentPageInternal === 1
|
|
140
|
-
}, _react["default"].createElement(LabelsContainer, null, itemsPerPageOptions && _react["default"].createElement(ItemsPageContainer, null, _react["default"].createElement(ItemsLabel, null, "Items per page "), _react["default"].createElement(_Select["default"], {
|
|
146
|
+
}, _react["default"].createElement(LabelsContainer, null, itemsPerPageOptions && _react["default"].createElement(ItemsPageContainer, null, _react["default"].createElement(ItemsLabel, null, "Items per page "), _react["default"].createElement(SelectContainer, null, _react["default"].createElement(_Select["default"], {
|
|
141
147
|
options: itemsPerPageOptions.map(function (num) {
|
|
142
148
|
return {
|
|
143
|
-
label: num,
|
|
144
|
-
value: num
|
|
149
|
+
label: num.toString(),
|
|
150
|
+
value: num.toString()
|
|
145
151
|
};
|
|
146
152
|
}),
|
|
147
|
-
onChange:
|
|
148
|
-
|
|
149
|
-
|
|
153
|
+
onChange: function onChange(newValue) {
|
|
154
|
+
itemsPerPageFunction(Number(newValue.value));
|
|
155
|
+
},
|
|
156
|
+
value: itemsPerPage.toString(),
|
|
157
|
+
size: "fillParent",
|
|
158
|
+
margin: {
|
|
159
|
+
top: "xsmall"
|
|
160
|
+
},
|
|
150
161
|
tabIndex: tabIndex
|
|
151
|
-
})), _react["default"].createElement(TotalItemsContainer, null, minItemsPerPage, " to ", maxItemsPerPage, " of ", totalItems), onPageChange && _react["default"].createElement(_Button["default"], {
|
|
162
|
+
}))), _react["default"].createElement(TotalItemsContainer, null, minItemsPerPage, " to ", maxItemsPerPage, " of ", totalItems), onPageChange && _react["default"].createElement(_Button["default"], {
|
|
152
163
|
size: "small",
|
|
153
164
|
mode: "secondary",
|
|
154
165
|
disabled: currentPageInternal === 1 || currentPageInternal === 0,
|
|
@@ -156,7 +167,7 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
156
167
|
left: "xxsmall",
|
|
157
168
|
right: "xxsmall"
|
|
158
169
|
},
|
|
159
|
-
|
|
170
|
+
icon: _Icons.firstIcon,
|
|
160
171
|
tabIndex: tabIndex,
|
|
161
172
|
onClick: function onClick() {
|
|
162
173
|
onPageChange(1);
|
|
@@ -169,23 +180,28 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
169
180
|
left: "xxsmall",
|
|
170
181
|
right: "xxsmall"
|
|
171
182
|
},
|
|
172
|
-
|
|
183
|
+
icon: _Icons.previousIcon,
|
|
173
184
|
tabIndex: tabIndex,
|
|
174
185
|
onClick: function onClick() {
|
|
175
186
|
onPageChange(currentPage - 1);
|
|
176
187
|
}
|
|
177
|
-
}), showGoToPage && _react["default"].createElement(PageToSelectContainer, null, _react["default"].createElement(GoToLabel, null, "Go to page: "), _react["default"].createElement(_Select["default"], {
|
|
188
|
+
}), showGoToPage && _react["default"].createElement(PageToSelectContainer, null, _react["default"].createElement(GoToLabel, null, "Go to page: "), _react["default"].createElement(SelectContainer, null, _react["default"].createElement(_Select["default"], {
|
|
178
189
|
options: (0, _toConsumableArray2["default"])(Array(totalPages).keys()).map(function (num) {
|
|
179
190
|
return {
|
|
180
|
-
label: num + 1,
|
|
181
|
-
value: num + 1
|
|
191
|
+
label: (num + 1).toString(),
|
|
192
|
+
value: (num + 1).toString()
|
|
182
193
|
};
|
|
183
194
|
}),
|
|
184
|
-
onChange:
|
|
185
|
-
|
|
186
|
-
|
|
195
|
+
onChange: function onChange(newValue) {
|
|
196
|
+
onPageChange(Number(newValue.value));
|
|
197
|
+
},
|
|
198
|
+
value: currentPage.toString(),
|
|
199
|
+
size: "fillParent",
|
|
200
|
+
margin: {
|
|
201
|
+
top: "xsmall"
|
|
202
|
+
},
|
|
187
203
|
tabIndex: tabIndex
|
|
188
|
-
})) || _react["default"].createElement(TextContainer, null, "Page: ", currentPageInternal, " of ", totalPages), onPageChange && _react["default"].createElement(_Button["default"], {
|
|
204
|
+
}))) || _react["default"].createElement(TextContainer, null, "Page: ", currentPageInternal, " of ", totalPages), onPageChange && _react["default"].createElement(_Button["default"], {
|
|
189
205
|
size: "small",
|
|
190
206
|
mode: "secondary",
|
|
191
207
|
disabled: currentPageInternal === totalPages,
|
|
@@ -193,7 +209,7 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
193
209
|
left: "xxsmall",
|
|
194
210
|
right: "xxsmall"
|
|
195
211
|
},
|
|
196
|
-
|
|
212
|
+
icon: _Icons.nextIcon,
|
|
197
213
|
tabIndex: tabIndex,
|
|
198
214
|
onClick: function onClick() {
|
|
199
215
|
onPageChange(currentPage + 1);
|
|
@@ -206,39 +222,65 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
206
222
|
left: "xxsmall",
|
|
207
223
|
right: "xxsmall"
|
|
208
224
|
},
|
|
209
|
-
|
|
225
|
+
icon: _Icons.lastIcon,
|
|
210
226
|
tabIndex: tabIndex,
|
|
211
227
|
onClick: function onClick() {
|
|
212
228
|
onPageChange(totalPages);
|
|
213
229
|
}
|
|
214
|
-
}))));
|
|
230
|
+
})))));
|
|
215
231
|
};
|
|
216
232
|
|
|
217
233
|
var DxcPaginatorContainer = _styledComponents["default"].div(_templateObject(), function (props) {
|
|
218
|
-
return props.theme.
|
|
234
|
+
return props.theme.height;
|
|
235
|
+
}, function (props) {
|
|
236
|
+
return props.theme.width;
|
|
219
237
|
}, function (props) {
|
|
220
238
|
return props.theme.fontFamily;
|
|
221
239
|
}, function (props) {
|
|
222
|
-
return props.theme.
|
|
240
|
+
return props.theme.fontSize;
|
|
241
|
+
}, function (props) {
|
|
242
|
+
return props.theme.fontWeight;
|
|
223
243
|
}, function (props) {
|
|
224
|
-
return props.theme.
|
|
244
|
+
return props.theme.fontStyle;
|
|
245
|
+
}, function (props) {
|
|
246
|
+
return props.theme.fontTextTransform;
|
|
247
|
+
}, function (props) {
|
|
248
|
+
return props.theme.backgroundColor;
|
|
249
|
+
}, function (props) {
|
|
250
|
+
return props.theme.fontColor;
|
|
225
251
|
});
|
|
226
252
|
|
|
227
|
-
var
|
|
253
|
+
var SelectContainer = _styledComponents["default"].div(_templateObject2());
|
|
254
|
+
|
|
255
|
+
var ItemsPageContainer = _styledComponents["default"].span(_templateObject3(), function (props) {
|
|
256
|
+
return props.theme.itemsPerPageSelectorMarginRight;
|
|
257
|
+
}, function (props) {
|
|
258
|
+
return props.theme.itemsPerPageSelectorMarginLeft;
|
|
259
|
+
});
|
|
228
260
|
|
|
229
|
-
var ItemsLabel = _styledComponents["default"].span(
|
|
261
|
+
var ItemsLabel = _styledComponents["default"].span(_templateObject4());
|
|
230
262
|
|
|
231
|
-
var GoToLabel = _styledComponents["default"].span(
|
|
263
|
+
var GoToLabel = _styledComponents["default"].span(_templateObject5());
|
|
232
264
|
|
|
233
|
-
var TotalItemsContainer = _styledComponents["default"].span(
|
|
265
|
+
var TotalItemsContainer = _styledComponents["default"].span(_templateObject6(), function (props) {
|
|
266
|
+
return props.theme.totalItemsContainerMarginRight;
|
|
267
|
+
}, function (props) {
|
|
268
|
+
return props.theme.totalItemsContainerMarginLeft;
|
|
269
|
+
});
|
|
234
270
|
|
|
235
|
-
var LabelsContainer = _styledComponents["default"].div(
|
|
236
|
-
return props.theme.
|
|
271
|
+
var LabelsContainer = _styledComponents["default"].div(_templateObject7(), function (props) {
|
|
272
|
+
return props.theme.marginRight;
|
|
273
|
+
}, function (props) {
|
|
274
|
+
return props.theme.marginLeft;
|
|
237
275
|
});
|
|
238
276
|
|
|
239
|
-
var PageToSelectContainer = _styledComponents["default"].span(
|
|
277
|
+
var PageToSelectContainer = _styledComponents["default"].span(_templateObject8(), function (props) {
|
|
278
|
+
return props.theme.pageSelectorMarginRight;
|
|
279
|
+
}, function (props) {
|
|
280
|
+
return props.theme.pageSelectorMarginLeft;
|
|
281
|
+
});
|
|
240
282
|
|
|
241
|
-
var TextContainer = _styledComponents["default"].span(
|
|
283
|
+
var TextContainer = _styledComponents["default"].span(_templateObject9());
|
|
242
284
|
|
|
243
285
|
DxcPaginator.propTypes = {
|
|
244
286
|
currentPage: _propTypes["default"].number,
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
|
|
9
|
+
type Props = {
|
|
10
|
+
currentPage?: number;
|
|
11
|
+
itemsPerPage?: number;
|
|
12
|
+
itemsPerPageOptions?: number[];
|
|
13
|
+
totalItems?: number
|
|
14
|
+
showGoToPage?: boolean,
|
|
15
|
+
onPageChange?: void;
|
|
16
|
+
itemsPerPageFunction?: void;
|
|
17
|
+
tabIndex?: number;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export default function DxcPaginator(props: Props): JSX.Element;
|
|
@@ -0,0 +1,203 @@
|
|
|
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 _TextInput = _interopRequireDefault(require("../text-input/TextInput"));
|
|
25
|
+
|
|
26
|
+
var _variables = require("../common/variables.js");
|
|
27
|
+
|
|
28
|
+
function _templateObject() {
|
|
29
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n & ::-ms-reveal {\n display: none;\n }\n"]);
|
|
30
|
+
|
|
31
|
+
_templateObject = function _templateObject() {
|
|
32
|
+
return data;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
return data;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
var DxcPasswordInput = _react["default"].forwardRef(function (_ref, ref) {
|
|
39
|
+
var _ref$label = _ref.label,
|
|
40
|
+
label = _ref$label === void 0 ? "" : _ref$label,
|
|
41
|
+
_ref$name = _ref.name,
|
|
42
|
+
name = _ref$name === void 0 ? "" : _ref$name,
|
|
43
|
+
value = _ref.value,
|
|
44
|
+
_ref$helperText = _ref.helperText,
|
|
45
|
+
helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
|
|
46
|
+
_ref$clearable = _ref.clearable,
|
|
47
|
+
clearable = _ref$clearable === void 0 ? false : _ref$clearable,
|
|
48
|
+
onChange = _ref.onChange,
|
|
49
|
+
onBlur = _ref.onBlur,
|
|
50
|
+
_ref$error = _ref.error,
|
|
51
|
+
error = _ref$error === void 0 ? "" : _ref$error,
|
|
52
|
+
pattern = _ref.pattern,
|
|
53
|
+
length = _ref.length,
|
|
54
|
+
_ref$autocomplete = _ref.autocomplete,
|
|
55
|
+
autocomplete = _ref$autocomplete === void 0 ? "off" : _ref$autocomplete,
|
|
56
|
+
margin = _ref.margin,
|
|
57
|
+
_ref$size = _ref.size,
|
|
58
|
+
size = _ref$size === void 0 ? "medium" : _ref$size,
|
|
59
|
+
_ref$tabIndex = _ref.tabIndex,
|
|
60
|
+
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
61
|
+
|
|
62
|
+
var _useState = (0, _react.useState)(false),
|
|
63
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
64
|
+
isPasswordVisible = _useState2[0],
|
|
65
|
+
setIsPasswordVisible = _useState2[1];
|
|
66
|
+
|
|
67
|
+
var inputRef = (0, _react.useRef)(null);
|
|
68
|
+
|
|
69
|
+
var setInputType = function setInputType(type) {
|
|
70
|
+
var _inputRef$current, _inputRef$current$chi;
|
|
71
|
+
|
|
72
|
+
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);
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
var setAriaAttributes = function setAriaAttributes(ariaExpanded, ariaLabel) {
|
|
76
|
+
if (error && clearable && value) {
|
|
77
|
+
var _inputRef$current2, _inputRef$current2$ch, _inputRef$current2$ch2, _inputRef$current3, _inputRef$current3$ch, _inputRef$current3$ch2;
|
|
78
|
+
|
|
79
|
+
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);
|
|
80
|
+
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);
|
|
81
|
+
} else if (error || clearable && !value) {
|
|
82
|
+
var _inputRef$current4, _inputRef$current4$ch, _inputRef$current4$ch2, _inputRef$current5, _inputRef$current5$ch, _inputRef$current5$ch2;
|
|
83
|
+
|
|
84
|
+
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);
|
|
85
|
+
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);
|
|
86
|
+
} else {
|
|
87
|
+
var _inputRef$current6, _inputRef$current6$ch, _inputRef$current6$ch2, _inputRef$current7, _inputRef$current7$ch, _inputRef$current7$ch2;
|
|
88
|
+
|
|
89
|
+
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);
|
|
90
|
+
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);
|
|
91
|
+
}
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
var getIconTitle = function getIconTitle() {
|
|
95
|
+
return isPasswordVisible ? "Hide password" : "Show password";
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
(0, _react.useEffect)(function () {
|
|
99
|
+
setAriaAttributes(false, "Show");
|
|
100
|
+
|
|
101
|
+
if (isPasswordVisible) {
|
|
102
|
+
setInputType("text");
|
|
103
|
+
setAriaAttributes(true, "Hide");
|
|
104
|
+
} else {
|
|
105
|
+
setInputType("password");
|
|
106
|
+
setAriaAttributes(false, "Show");
|
|
107
|
+
}
|
|
108
|
+
}, [isPasswordVisible]);
|
|
109
|
+
|
|
110
|
+
var viewPassword = function viewPassword() {
|
|
111
|
+
setInputType("text");
|
|
112
|
+
setIsPasswordVisible(true);
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
var hidePassword = function hidePassword() {
|
|
116
|
+
setInputType("password");
|
|
117
|
+
setIsPasswordVisible(false);
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
var action = {
|
|
121
|
+
onClick: isPasswordVisible ? hidePassword : viewPassword,
|
|
122
|
+
icon: isPasswordVisible ? _react["default"].createElement("svg", {
|
|
123
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
124
|
+
height: "24px",
|
|
125
|
+
viewBox: "0 0 24 24",
|
|
126
|
+
width: "24px",
|
|
127
|
+
fill: "#000000"
|
|
128
|
+
}, _react["default"].createElement("path", {
|
|
129
|
+
d: "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z",
|
|
130
|
+
fill: "none"
|
|
131
|
+
}), _react["default"].createElement("path", {
|
|
132
|
+
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"
|
|
133
|
+
})) : _react["default"].createElement("svg", {
|
|
134
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
135
|
+
height: "24px",
|
|
136
|
+
viewBox: "0 0 24 24",
|
|
137
|
+
width: "24px",
|
|
138
|
+
fill: "#000000"
|
|
139
|
+
}, _react["default"].createElement("path", {
|
|
140
|
+
d: "M0 0h24v24H0V0z",
|
|
141
|
+
fill: "none"
|
|
142
|
+
}), _react["default"].createElement("path", {
|
|
143
|
+
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"
|
|
144
|
+
})),
|
|
145
|
+
title: getIconTitle()
|
|
146
|
+
};
|
|
147
|
+
return _react["default"].createElement(PasswordInput, {
|
|
148
|
+
ref: ref
|
|
149
|
+
}, _react["default"].createElement(_TextInput["default"], {
|
|
150
|
+
ref: inputRef,
|
|
151
|
+
label: label,
|
|
152
|
+
name: name,
|
|
153
|
+
value: value,
|
|
154
|
+
helperText: helperText,
|
|
155
|
+
action: action,
|
|
156
|
+
error: error,
|
|
157
|
+
clearable: clearable,
|
|
158
|
+
onChange: onChange,
|
|
159
|
+
onBlur: onBlur,
|
|
160
|
+
margin: margin,
|
|
161
|
+
size: size,
|
|
162
|
+
pattern: pattern,
|
|
163
|
+
length: length,
|
|
164
|
+
autocomplete: autocomplete,
|
|
165
|
+
tabIndex: tabIndex
|
|
166
|
+
}));
|
|
167
|
+
});
|
|
168
|
+
|
|
169
|
+
var sizes = {
|
|
170
|
+
small: "240px",
|
|
171
|
+
medium: "360px",
|
|
172
|
+
large: "480px",
|
|
173
|
+
fillParent: "100%"
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
var PasswordInput = _styledComponents["default"].div(_templateObject());
|
|
177
|
+
|
|
178
|
+
DxcPasswordInput.propTypes = {
|
|
179
|
+
label: _propTypes["default"].string,
|
|
180
|
+
name: _propTypes["default"].string,
|
|
181
|
+
value: _propTypes["default"].string,
|
|
182
|
+
helperText: _propTypes["default"].string,
|
|
183
|
+
error: _propTypes["default"].string,
|
|
184
|
+
clearable: _propTypes["default"].bool,
|
|
185
|
+
onChange: _propTypes["default"].func,
|
|
186
|
+
onBlur: _propTypes["default"].func,
|
|
187
|
+
autocomplete: _propTypes["default"].string,
|
|
188
|
+
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
189
|
+
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
190
|
+
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
191
|
+
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
192
|
+
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
193
|
+
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
|
|
194
|
+
size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
|
|
195
|
+
pattern: _propTypes["default"].string,
|
|
196
|
+
length: _propTypes["default"].shape({
|
|
197
|
+
min: _propTypes["default"].number,
|
|
198
|
+
max: _propTypes["default"].number
|
|
199
|
+
}),
|
|
200
|
+
tabIndex: _propTypes["default"].number
|
|
201
|
+
};
|
|
202
|
+
var _default = DxcPasswordInput;
|
|
203
|
+
exports["default"] = _default;
|