@dxc-technology/halstack-react 0.0.0-da224ae → 0.0.0-da4b2be
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BackgroundColorContext.d.ts +10 -0
- package/BackgroundColorContext.js +2 -5
- package/HalstackContext.d.ts +1336 -0
- package/HalstackContext.js +335 -0
- package/accordion/Accordion.d.ts +1 -1
- package/accordion/Accordion.js +118 -142
- package/accordion/Accordion.stories.tsx +395 -0
- package/accordion/Accordion.test.js +71 -0
- package/accordion/types.d.ts +9 -8
- package/accordion-group/AccordionGroup.d.ts +5 -4
- package/accordion-group/AccordionGroup.js +34 -76
- package/accordion-group/AccordionGroup.stories.tsx +251 -0
- package/accordion-group/AccordionGroup.test.js +126 -0
- package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
- package/accordion-group/AccordionGroupAccordion.js +43 -0
- package/accordion-group/types.d.ts +15 -8
- package/alert/Alert.js +11 -12
- package/alert/Alert.stories.tsx +28 -0
- package/alert/Alert.test.js +92 -0
- package/alert/types.d.ts +1 -1
- package/badge/Badge.d.ts +4 -0
- package/badge/Badge.js +6 -4
- package/badge/types.d.ts +5 -0
- package/bleed/Bleed.d.ts +3 -0
- package/bleed/Bleed.js +51 -0
- package/bleed/Bleed.stories.tsx +342 -0
- package/bleed/types.d.ts +37 -0
- package/bleed/types.js +5 -0
- package/box/Box.d.ts +1 -1
- package/box/Box.js +23 -55
- package/box/Box.stories.tsx +38 -51
- package/box/Box.test.js +18 -0
- package/box/types.d.ts +0 -15
- package/bulleted-list/BulletedList.d.ts +7 -0
- package/bulleted-list/BulletedList.js +125 -0
- package/bulleted-list/BulletedList.stories.tsx +206 -0
- package/bulleted-list/types.d.ts +38 -0
- package/bulleted-list/types.js +5 -0
- package/button/Button.d.ts +1 -1
- package/button/Button.js +61 -85
- package/button/Button.stories.tsx +163 -14
- package/button/Button.test.js +35 -0
- package/button/types.d.ts +8 -12
- package/card/Card.js +35 -40
- package/card/Card.stories.tsx +200 -0
- package/card/Card.test.js +50 -0
- package/card/ice-cream.jpg +0 -0
- package/card/types.d.ts +5 -6
- package/checkbox/Checkbox.d.ts +2 -2
- package/checkbox/Checkbox.js +108 -111
- package/checkbox/Checkbox.stories.tsx +198 -130
- package/checkbox/Checkbox.test.js +155 -0
- package/checkbox/types.d.ts +13 -5
- package/chip/Chip.d.ts +4 -0
- package/chip/Chip.js +37 -118
- package/chip/Chip.stories.tsx +123 -30
- package/chip/Chip.test.js +54 -0
- package/chip/types.d.ts +45 -0
- package/chip/types.js +5 -0
- package/common/OpenSans.css +68 -80
- package/common/coreTokens.d.ts +146 -0
- package/common/coreTokens.js +167 -0
- package/common/utils.d.ts +1 -0
- package/common/utils.js +4 -4
- package/common/variables.d.ts +1482 -0
- package/common/variables.js +1100 -1316
- package/date-input/Calendar.d.ts +4 -0
- package/date-input/Calendar.js +258 -0
- package/date-input/DateInput.js +174 -266
- package/date-input/DateInput.stories.tsx +199 -33
- package/date-input/DateInput.test.js +835 -0
- package/date-input/DatePicker.d.ts +4 -0
- package/date-input/DatePicker.js +146 -0
- package/date-input/Icons.d.ts +6 -0
- package/date-input/Icons.js +75 -0
- package/date-input/YearPicker.d.ts +4 -0
- package/date-input/YearPicker.js +126 -0
- package/date-input/types.d.ts +67 -9
- package/dialog/Dialog.d.ts +1 -1
- package/dialog/Dialog.js +69 -103
- package/dialog/Dialog.stories.tsx +154 -171
- package/dialog/Dialog.test.js +369 -0
- package/dialog/types.d.ts +0 -12
- package/dropdown/Dropdown.d.ts +1 -1
- package/dropdown/Dropdown.js +248 -277
- package/dropdown/Dropdown.stories.tsx +438 -0
- package/dropdown/Dropdown.test.js +586 -0
- package/dropdown/DropdownMenu.d.ts +4 -0
- package/dropdown/DropdownMenu.js +74 -0
- package/dropdown/DropdownMenuItem.d.ts +4 -0
- package/dropdown/DropdownMenuItem.js +79 -0
- package/dropdown/types.d.ts +28 -17
- package/file-input/FileInput.d.ts +4 -0
- package/file-input/FileInput.js +183 -168
- package/file-input/FileInput.stories.tsx +618 -0
- package/file-input/FileInput.test.js +457 -0
- package/file-input/FileItem.d.ts +4 -0
- package/file-input/FileItem.js +50 -81
- package/file-input/types.d.ts +129 -0
- package/file-input/types.js +5 -0
- package/flex/Flex.d.ts +4 -0
- package/flex/Flex.js +71 -0
- package/flex/Flex.stories.tsx +112 -0
- package/flex/types.d.ts +97 -0
- package/flex/types.js +5 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +34 -117
- package/footer/Footer.stories.tsx +228 -0
- package/footer/Footer.test.js +97 -0
- package/footer/Icons.d.ts +2 -0
- package/footer/Icons.js +4 -4
- package/footer/types.d.ts +23 -18
- package/grid/Grid.d.ts +7 -0
- package/grid/Grid.js +91 -0
- package/grid/Grid.stories.tsx +219 -0
- package/grid/types.d.ts +115 -0
- package/grid/types.js +5 -0
- package/header/Header.d.ts +3 -2
- package/header/Header.js +110 -131
- package/header/Header.stories.tsx +315 -0
- package/header/Header.test.js +79 -0
- package/header/Icons.d.ts +2 -0
- package/header/Icons.js +2 -2
- package/header/types.d.ts +5 -2
- package/heading/Heading.js +2 -2
- package/heading/Heading.stories.tsx +54 -0
- package/heading/Heading.test.js +186 -0
- package/inset/Inset.d.ts +3 -0
- package/inset/Inset.js +51 -0
- package/inset/Inset.stories.tsx +230 -0
- package/inset/types.d.ts +37 -0
- package/inset/types.js +5 -0
- package/layout/ApplicationLayout.d.ts +20 -0
- package/layout/ApplicationLayout.js +72 -136
- package/layout/ApplicationLayout.stories.tsx +162 -0
- package/layout/Icons.d.ts +5 -0
- package/layout/Icons.js +13 -2
- package/layout/SidenavContext.d.ts +5 -0
- package/layout/SidenavContext.js +19 -0
- package/layout/types.d.ts +41 -0
- package/layout/types.js +5 -0
- package/link/Link.d.ts +3 -2
- package/link/Link.js +64 -89
- package/link/Link.stories.tsx +199 -16
- package/link/Link.test.js +81 -0
- package/link/types.d.ts +7 -27
- package/main.d.ts +13 -12
- package/main.js +68 -54
- package/nav-tabs/NavTabs.d.ts +8 -0
- package/nav-tabs/NavTabs.js +122 -0
- package/nav-tabs/NavTabs.stories.tsx +274 -0
- package/nav-tabs/NavTabs.test.js +82 -0
- package/nav-tabs/Tab.d.ts +4 -0
- package/nav-tabs/Tab.js +146 -0
- package/nav-tabs/types.d.ts +52 -0
- package/nav-tabs/types.js +5 -0
- package/number-input/NumberInput.js +14 -24
- package/number-input/NumberInput.stories.tsx +5 -5
- package/number-input/NumberInput.test.js +542 -0
- package/number-input/NumberInputContext.d.ts +4 -0
- package/number-input/NumberInputContext.js +5 -2
- package/number-input/numberInputContextTypes.d.ts +19 -0
- package/number-input/numberInputContextTypes.js +5 -0
- package/number-input/types.d.ts +17 -10
- package/package.json +22 -23
- package/paginator/Icons.d.ts +5 -0
- package/paginator/Icons.js +16 -28
- package/paginator/Paginator.js +22 -57
- package/paginator/Paginator.stories.tsx +24 -0
- package/paginator/Paginator.test.js +318 -0
- package/paragraph/Paragraph.d.ts +5 -0
- package/paragraph/Paragraph.js +38 -0
- package/paragraph/Paragraph.stories.tsx +44 -0
- package/password-input/PasswordInput.js +23 -19
- package/password-input/PasswordInput.stories.tsx +3 -3
- package/password-input/PasswordInput.test.js +181 -0
- package/password-input/types.d.ts +29 -19
- package/progress-bar/ProgressBar.js +63 -57
- package/progress-bar/ProgressBar.stories.jsx +47 -12
- package/progress-bar/ProgressBar.test.js +110 -0
- package/quick-nav/QuickNav.d.ts +4 -0
- package/quick-nav/QuickNav.js +117 -0
- package/quick-nav/QuickNav.stories.tsx +356 -0
- package/quick-nav/types.d.ts +21 -0
- package/quick-nav/types.js +5 -0
- package/radio-group/Radio.d.ts +4 -0
- package/radio-group/Radio.js +156 -0
- package/radio-group/RadioGroup.d.ts +4 -0
- package/radio-group/RadioGroup.js +281 -0
- package/radio-group/RadioGroup.stories.tsx +214 -0
- package/radio-group/RadioGroup.test.js +722 -0
- package/radio-group/types.d.ts +114 -0
- package/radio-group/types.js +5 -0
- package/resultsetTable/Icons.d.ts +7 -0
- package/resultsetTable/Icons.js +51 -0
- package/resultsetTable/ResultsetTable.d.ts +4 -0
- package/resultsetTable/ResultsetTable.js +54 -133
- package/resultsetTable/ResultsetTable.stories.tsx +300 -0
- package/resultsetTable/ResultsetTable.test.js +325 -0
- package/resultsetTable/types.d.ts +67 -0
- package/resultsetTable/types.js +5 -0
- package/select/Icons.d.ts +10 -0
- package/select/Icons.js +93 -0
- package/select/Listbox.d.ts +4 -0
- package/select/Listbox.js +169 -0
- package/select/Option.d.ts +4 -0
- package/select/Option.js +97 -0
- package/select/Select.d.ts +4 -0
- package/select/Select.js +202 -401
- package/select/Select.stories.tsx +600 -201
- package/select/Select.test.js +2228 -0
- package/select/types.d.ts +210 -0
- package/select/types.js +5 -0
- package/sidenav/Icons.d.ts +7 -0
- package/sidenav/Icons.js +51 -0
- package/sidenav/Sidenav.d.ts +6 -5
- package/sidenav/Sidenav.js +148 -46
- package/sidenav/Sidenav.stories.tsx +282 -0
- package/sidenav/Sidenav.test.js +44 -0
- package/sidenav/types.d.ts +52 -26
- package/slider/Slider.d.ts +2 -2
- package/slider/Slider.js +124 -99
- package/slider/Slider.stories.tsx +72 -9
- package/slider/Slider.test.js +250 -0
- package/slider/types.d.ts +8 -0
- package/spinner/Spinner.js +20 -26
- package/spinner/Spinner.stories.jsx +53 -26
- package/spinner/Spinner.test.js +64 -0
- package/switch/Switch.d.ts +2 -2
- package/switch/Switch.js +153 -70
- package/switch/Switch.stories.tsx +54 -43
- package/switch/Switch.test.js +225 -0
- package/switch/types.d.ts +10 -2
- package/table/Table.js +6 -6
- package/table/Table.stories.jsx +81 -1
- package/table/Table.test.js +26 -0
- package/tabs/Tab.d.ts +4 -0
- package/tabs/Tab.js +132 -0
- package/tabs/Tabs.d.ts +1 -1
- package/tabs/Tabs.js +362 -112
- package/tabs/Tabs.stories.tsx +226 -0
- package/tabs/Tabs.test.js +350 -0
- package/tabs/types.d.ts +39 -18
- package/tag/Tag.d.ts +1 -1
- package/tag/Tag.js +25 -37
- package/tag/Tag.stories.tsx +38 -28
- package/tag/Tag.test.js +60 -0
- package/tag/types.d.ts +23 -14
- package/text-input/Icons.d.ts +8 -0
- package/text-input/Icons.js +60 -0
- package/text-input/Suggestion.d.ts +4 -0
- package/text-input/Suggestion.js +84 -0
- package/text-input/Suggestions.d.ts +4 -0
- package/text-input/Suggestions.js +134 -0
- package/text-input/TextInput.d.ts +4 -0
- package/text-input/TextInput.js +236 -388
- package/text-input/TextInput.stories.tsx +569 -0
- package/text-input/TextInput.test.js +1723 -0
- package/text-input/types.d.ts +197 -0
- package/text-input/types.js +5 -0
- package/textarea/Textarea.d.ts +4 -0
- package/textarea/Textarea.js +41 -82
- package/textarea/Textarea.stories.jsx +96 -15
- package/textarea/Textarea.test.js +435 -0
- package/textarea/types.d.ts +137 -0
- package/textarea/types.js +5 -0
- package/toggle-group/ToggleGroup.d.ts +4 -0
- package/toggle-group/ToggleGroup.js +24 -49
- package/toggle-group/ToggleGroup.stories.tsx +69 -32
- package/toggle-group/ToggleGroup.test.js +156 -0
- package/toggle-group/types.d.ts +105 -0
- package/toggle-group/types.js +5 -0
- package/typography/Typography.d.ts +4 -0
- package/typography/Typography.js +32 -0
- package/typography/Typography.stories.tsx +198 -0
- package/typography/types.d.ts +18 -0
- package/typography/types.js +5 -0
- package/useTheme.d.ts +1235 -0
- package/useTheme.js +3 -3
- package/useTranslatedLabels.d.ts +85 -0
- package/useTranslatedLabels.js +20 -0
- package/utils/BaseTypography.d.ts +21 -0
- package/utils/BaseTypography.js +108 -0
- package/utils/FocusLock.d.ts +13 -0
- package/utils/FocusLock.js +138 -0
- package/wizard/Wizard.d.ts +1 -1
- package/wizard/Wizard.js +113 -59
- package/wizard/{Wizard.stories.jsx → Wizard.stories.tsx} +48 -19
- package/wizard/Wizard.test.js +141 -0
- package/wizard/types.d.ts +10 -10
- package/ThemeContext.js +0 -246
- package/V3Select/V3Select.js +0 -455
- package/V3Select/index.d.ts +0 -27
- package/V3Textarea/V3Textarea.js +0 -260
- package/V3Textarea/index.d.ts +0 -27
- package/chip/index.d.ts +0 -22
- package/common/RequiredComponent.js +0 -32
- package/date/Date.js +0 -373
- package/date/index.d.ts +0 -27
- package/file-input/index.d.ts +0 -81
- package/footer/Footer.stories.jsx +0 -151
- package/input-text/Icons.js +0 -22
- package/input-text/InputText.js +0 -611
- package/input-text/index.d.ts +0 -36
- package/radio/Radio.d.ts +0 -4
- package/radio/Radio.js +0 -174
- package/radio/Radio.stories.tsx +0 -192
- package/radio/types.d.ts +0 -54
- package/resultsetTable/index.d.ts +0 -19
- package/select/index.d.ts +0 -131
- package/text-input/index.d.ts +0 -135
- package/textarea/index.d.ts +0 -117
- package/toggle/Toggle.js +0 -186
- package/toggle/index.d.ts +0 -21
- package/toggle-group/index.d.ts +0 -21
- package/upload/Upload.js +0 -201
- package/upload/buttons-upload/ButtonsUpload.js +0 -111
- package/upload/buttons-upload/Icons.js +0 -40
- package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
- package/upload/dragAndDropArea/Icons.js +0 -39
- package/upload/file-upload/FileToUpload.js +0 -115
- package/upload/file-upload/Icons.js +0 -66
- package/upload/files-upload/FilesToUpload.js +0 -109
- package/upload/index.d.ts +0 -15
- package/upload/transaction/Icons.js +0 -160
- package/upload/transaction/Transaction.js +0 -104
- package/upload/transactions/Transactions.js +0 -94
- package/wizard/Icons.js +0 -65
- /package/{radio → badge}/types.js +0 -0
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
6
|
+
|
|
7
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
8
|
+
|
|
9
|
+
var _react = _interopRequireDefault(require("react"));
|
|
10
|
+
|
|
11
|
+
var _react2 = require("@testing-library/react");
|
|
12
|
+
|
|
13
|
+
var _userEvent = _interopRequireDefault(require("@testing-library/user-event"));
|
|
14
|
+
|
|
15
|
+
var _Paginator = _interopRequireDefault(require("./Paginator.tsx"));
|
|
16
|
+
|
|
17
|
+
// Mocking DOMRect for Radix Primitive Popover
|
|
18
|
+
global.globalThis = global;
|
|
19
|
+
global.DOMRect = {
|
|
20
|
+
fromRect: function fromRect() {
|
|
21
|
+
return {
|
|
22
|
+
top: 0,
|
|
23
|
+
left: 0,
|
|
24
|
+
bottom: 0,
|
|
25
|
+
right: 0,
|
|
26
|
+
width: 0,
|
|
27
|
+
height: 0
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
global.ResizeObserver = /*#__PURE__*/function () {
|
|
33
|
+
function ResizeObserver() {
|
|
34
|
+
(0, _classCallCheck2["default"])(this, ResizeObserver);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
(0, _createClass2["default"])(ResizeObserver, [{
|
|
38
|
+
key: "observe",
|
|
39
|
+
value: function observe() {}
|
|
40
|
+
}, {
|
|
41
|
+
key: "unobserve",
|
|
42
|
+
value: function unobserve() {}
|
|
43
|
+
}, {
|
|
44
|
+
key: "disconnect",
|
|
45
|
+
value: function disconnect() {}
|
|
46
|
+
}]);
|
|
47
|
+
return ResizeObserver;
|
|
48
|
+
}();
|
|
49
|
+
|
|
50
|
+
global.DOMRect = {
|
|
51
|
+
fromRect: function fromRect() {
|
|
52
|
+
return {
|
|
53
|
+
top: 0,
|
|
54
|
+
left: 0,
|
|
55
|
+
bottom: 0,
|
|
56
|
+
right: 0,
|
|
57
|
+
width: 0,
|
|
58
|
+
height: 0
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
describe("Paginator component tests", function () {
|
|
63
|
+
test("Paginator renders with default values", function () {
|
|
64
|
+
var _render = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], null)),
|
|
65
|
+
getByText = _render.getByText;
|
|
66
|
+
|
|
67
|
+
expect(getByText("1 to 1 of 1")).toBeTruthy();
|
|
68
|
+
expect(getByText("Page: 1 of 1")).toBeTruthy();
|
|
69
|
+
});
|
|
70
|
+
test("Paginator renders with currentPage", function () {
|
|
71
|
+
var _render2 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
72
|
+
currentPage: 2
|
|
73
|
+
})),
|
|
74
|
+
getByText = _render2.getByText;
|
|
75
|
+
|
|
76
|
+
expect(getByText("Page: 2 of 1")).toBeTruthy();
|
|
77
|
+
});
|
|
78
|
+
test("Paginator renders with itemsPerPageOptions", function () {
|
|
79
|
+
var _render3 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
80
|
+
currentPage: 1,
|
|
81
|
+
itemsPerPage: 10,
|
|
82
|
+
itemsPerPageOptions: [10, 15],
|
|
83
|
+
totalItems: 20
|
|
84
|
+
})),
|
|
85
|
+
getByText = _render3.getByText;
|
|
86
|
+
|
|
87
|
+
expect(getByText("Items per page:")).toBeTruthy();
|
|
88
|
+
expect(getByText("1 to 10 of 20")).toBeTruthy();
|
|
89
|
+
expect(getByText("Page: 1 of 2")).toBeTruthy();
|
|
90
|
+
});
|
|
91
|
+
test("Paginator renders with totalItems", function () {
|
|
92
|
+
var _render4 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
93
|
+
totalItems: 20
|
|
94
|
+
})),
|
|
95
|
+
getByText = _render4.getByText;
|
|
96
|
+
|
|
97
|
+
expect(getByText("1 to 5 of 20")).toBeTruthy();
|
|
98
|
+
expect(getByText("Page: 1 of 4")).toBeTruthy();
|
|
99
|
+
});
|
|
100
|
+
test("Paginator renders with correct text in second page", function () {
|
|
101
|
+
var _render5 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
102
|
+
currentPage: 2,
|
|
103
|
+
itemsPerPage: 10,
|
|
104
|
+
totalItems: 20
|
|
105
|
+
})),
|
|
106
|
+
getByText = _render5.getByText;
|
|
107
|
+
|
|
108
|
+
expect(getByText("11 to 20 of 20")).toBeTruthy();
|
|
109
|
+
expect(getByText("Page: 2 of 2")).toBeTruthy();
|
|
110
|
+
});
|
|
111
|
+
test("Paginator renders goToPage select", function () {
|
|
112
|
+
var _render6 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
113
|
+
currentPage: 2,
|
|
114
|
+
showGoToPage: true,
|
|
115
|
+
itemsPerPage: 10,
|
|
116
|
+
totalItems: 20
|
|
117
|
+
})),
|
|
118
|
+
getByText = _render6.getByText;
|
|
119
|
+
|
|
120
|
+
expect(getByText("Go to page:")).toBeTruthy();
|
|
121
|
+
});
|
|
122
|
+
test("Paginator goToPage call correct function", function () {
|
|
123
|
+
var onClick = jest.fn();
|
|
124
|
+
|
|
125
|
+
window.HTMLElement.prototype.scrollIntoView = function () {};
|
|
126
|
+
|
|
127
|
+
window.HTMLElement.prototype.scrollTo = function () {};
|
|
128
|
+
|
|
129
|
+
var _render7 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
130
|
+
currentPage: 1,
|
|
131
|
+
itemsPerPage: 10,
|
|
132
|
+
totalItems: 27,
|
|
133
|
+
showGoToPage: true,
|
|
134
|
+
onPageChange: onClick
|
|
135
|
+
})),
|
|
136
|
+
getByText = _render7.getByText,
|
|
137
|
+
getAllByRole = _render7.getAllByRole;
|
|
138
|
+
|
|
139
|
+
var goToPageSelect = getAllByRole("combobox")[0];
|
|
140
|
+
(0, _react2.act)(function () {
|
|
141
|
+
_userEvent["default"].click(goToPageSelect);
|
|
142
|
+
});
|
|
143
|
+
var goToPageOption = getByText("2");
|
|
144
|
+
(0, _react2.act)(function () {
|
|
145
|
+
_userEvent["default"].click(goToPageOption);
|
|
146
|
+
});
|
|
147
|
+
expect(onClick).toHaveBeenCalledWith(2);
|
|
148
|
+
});
|
|
149
|
+
test("Call correct goToPageFunction", function () {
|
|
150
|
+
var onClick = jest.fn();
|
|
151
|
+
|
|
152
|
+
var _render8 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
153
|
+
onPageChange: onClick,
|
|
154
|
+
currentPage: 1,
|
|
155
|
+
itemsPerPage: 10,
|
|
156
|
+
totalItems: 20
|
|
157
|
+
})),
|
|
158
|
+
getAllByRole = _render8.getAllByRole;
|
|
159
|
+
|
|
160
|
+
var nextButton = getAllByRole("button")[2];
|
|
161
|
+
|
|
162
|
+
_userEvent["default"].click(nextButton);
|
|
163
|
+
|
|
164
|
+
expect(onClick).toHaveBeenCalled();
|
|
165
|
+
});
|
|
166
|
+
test("Call correct itemsPerPageFunction", function () {
|
|
167
|
+
var onClick = jest.fn();
|
|
168
|
+
|
|
169
|
+
window.HTMLElement.prototype.scrollIntoView = function () {};
|
|
170
|
+
|
|
171
|
+
window.HTMLElement.prototype.scrollTo = function () {};
|
|
172
|
+
|
|
173
|
+
var _render9 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
174
|
+
currentPage: 1,
|
|
175
|
+
itemsPerPage: 10,
|
|
176
|
+
itemsPerPageOptions: [10, 15],
|
|
177
|
+
itemsPerPageFunction: onClick,
|
|
178
|
+
totalItems: 20
|
|
179
|
+
})),
|
|
180
|
+
getAllByText = _render9.getAllByText,
|
|
181
|
+
getByText = _render9.getByText;
|
|
182
|
+
|
|
183
|
+
var select = getAllByText("10")[0];
|
|
184
|
+
(0, _react2.act)(function () {
|
|
185
|
+
_userEvent["default"].click(select);
|
|
186
|
+
});
|
|
187
|
+
var itemPerPageOption = getByText("15");
|
|
188
|
+
(0, _react2.act)(function () {
|
|
189
|
+
_userEvent["default"].click(itemPerPageOption);
|
|
190
|
+
});
|
|
191
|
+
expect(onClick).toHaveBeenCalledWith(15);
|
|
192
|
+
});
|
|
193
|
+
test("Next button is disable in last page", function () {
|
|
194
|
+
var onClick = jest.fn();
|
|
195
|
+
|
|
196
|
+
var _render10 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
197
|
+
onPageChange: onClick,
|
|
198
|
+
currentPage: 2,
|
|
199
|
+
itemsPerPage: 10,
|
|
200
|
+
totalItems: 20
|
|
201
|
+
})),
|
|
202
|
+
getAllByRole = _render10.getAllByRole;
|
|
203
|
+
|
|
204
|
+
var nextButton = getAllByRole("button")[2];
|
|
205
|
+
expect(nextButton.hasAttribute("disabled")).toBeTruthy();
|
|
206
|
+
|
|
207
|
+
_userEvent["default"].click(nextButton);
|
|
208
|
+
|
|
209
|
+
expect(onClick).toHaveBeenCalledTimes(0);
|
|
210
|
+
});
|
|
211
|
+
test("Last button is disable in last page", function () {
|
|
212
|
+
var onClick = jest.fn();
|
|
213
|
+
|
|
214
|
+
var _render11 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
215
|
+
onPageChange: onClick,
|
|
216
|
+
currentPage: 2,
|
|
217
|
+
itemsPerPage: 10,
|
|
218
|
+
totalItems: 20
|
|
219
|
+
})),
|
|
220
|
+
getAllByRole = _render11.getAllByRole;
|
|
221
|
+
|
|
222
|
+
var lastButton = getAllByRole("button")[3];
|
|
223
|
+
expect(lastButton.hasAttribute("disabled")).toBeTruthy();
|
|
224
|
+
|
|
225
|
+
_userEvent["default"].click(lastButton);
|
|
226
|
+
|
|
227
|
+
expect(onClick).toHaveBeenCalledTimes(0);
|
|
228
|
+
});
|
|
229
|
+
test("First button is disable in first page", function () {
|
|
230
|
+
var onClick = jest.fn();
|
|
231
|
+
|
|
232
|
+
var _render12 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
233
|
+
onPageChange: onClick,
|
|
234
|
+
currentPage: 1,
|
|
235
|
+
itemsPerPage: 10,
|
|
236
|
+
totalItems: 20
|
|
237
|
+
})),
|
|
238
|
+
getAllByRole = _render12.getAllByRole;
|
|
239
|
+
|
|
240
|
+
var lastButton = getAllByRole("button")[0];
|
|
241
|
+
expect(lastButton.hasAttribute("disabled")).toBeTruthy();
|
|
242
|
+
|
|
243
|
+
_userEvent["default"].click(lastButton);
|
|
244
|
+
|
|
245
|
+
expect(onClick).toHaveBeenCalledTimes(0);
|
|
246
|
+
});
|
|
247
|
+
test("Previous button is disable in first page", function () {
|
|
248
|
+
var onClick = jest.fn();
|
|
249
|
+
|
|
250
|
+
var _render13 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
251
|
+
onPageChange: onClick,
|
|
252
|
+
currentPage: 1,
|
|
253
|
+
itemsPerPage: 10,
|
|
254
|
+
totalItems: 20
|
|
255
|
+
})),
|
|
256
|
+
getAllByRole = _render13.getAllByRole;
|
|
257
|
+
|
|
258
|
+
var lastButton = getAllByRole("button")[1];
|
|
259
|
+
expect(lastButton.hasAttribute("disabled")).toBeTruthy();
|
|
260
|
+
|
|
261
|
+
_userEvent["default"].click(lastButton);
|
|
262
|
+
|
|
263
|
+
expect(onClick).toHaveBeenCalledTimes(0);
|
|
264
|
+
});
|
|
265
|
+
test("Last and next buttons are disable in last page", function () {
|
|
266
|
+
var onClick = jest.fn();
|
|
267
|
+
|
|
268
|
+
var _render14 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
269
|
+
onPageChange: onClick,
|
|
270
|
+
currentPage: 2,
|
|
271
|
+
itemsPerPage: 10,
|
|
272
|
+
totalItems: 20
|
|
273
|
+
})),
|
|
274
|
+
getAllByRole = _render14.getAllByRole;
|
|
275
|
+
|
|
276
|
+
var firstButton = getAllByRole("button")[0];
|
|
277
|
+
var prevButton = getAllByRole("button")[1];
|
|
278
|
+
var nextButton = getAllByRole("button")[2];
|
|
279
|
+
var lastButton = getAllByRole("button")[3];
|
|
280
|
+
expect(firstButton.hasAttribute("disabled")).toBeFalsy();
|
|
281
|
+
expect(prevButton.hasAttribute("disabled")).toBeFalsy();
|
|
282
|
+
expect(nextButton.hasAttribute("disabled")).toBeTruthy();
|
|
283
|
+
expect(lastButton.hasAttribute("disabled")).toBeTruthy();
|
|
284
|
+
});
|
|
285
|
+
test("First and previous buttons are disable in first page", function () {
|
|
286
|
+
var onClick = jest.fn();
|
|
287
|
+
|
|
288
|
+
var _render15 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
289
|
+
onPageChange: onClick,
|
|
290
|
+
currentPage: 1,
|
|
291
|
+
itemsPerPage: 10,
|
|
292
|
+
totalItems: 20
|
|
293
|
+
})),
|
|
294
|
+
getAllByRole = _render15.getAllByRole;
|
|
295
|
+
|
|
296
|
+
var firstButton = getAllByRole("button")[0];
|
|
297
|
+
var prevButton = getAllByRole("button")[1];
|
|
298
|
+
var nextButton = getAllByRole("button")[2];
|
|
299
|
+
var lastButton = getAllByRole("button")[3];
|
|
300
|
+
expect(firstButton.hasAttribute("disabled")).toBeTruthy();
|
|
301
|
+
expect(prevButton.hasAttribute("disabled")).toBeTruthy();
|
|
302
|
+
expect(nextButton.hasAttribute("disabled")).toBeFalsy();
|
|
303
|
+
expect(lastButton.hasAttribute("disabled")).toBeFalsy();
|
|
304
|
+
});
|
|
305
|
+
test("itemsPerPage is 0 and showGoToPage is true", function () {
|
|
306
|
+
var _render16 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Paginator["default"], {
|
|
307
|
+
itemsPerPage: 0,
|
|
308
|
+
itemsPerPageOptions: [5, 10, 15],
|
|
309
|
+
totalItems: 27,
|
|
310
|
+
showGoToPage: true
|
|
311
|
+
})),
|
|
312
|
+
getByText = _render16.getByText,
|
|
313
|
+
getAllByRole = _render16.getAllByRole;
|
|
314
|
+
|
|
315
|
+
expect(getByText("Items per page:")).toBeTruthy();
|
|
316
|
+
expect(getAllByRole("combobox")).toBeTruthy();
|
|
317
|
+
});
|
|
318
|
+
});
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
exports["default"] = void 0;
|
|
11
|
+
|
|
12
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
13
|
+
|
|
14
|
+
var _BackgroundColorContext = _interopRequireDefault(require("../BackgroundColorContext"));
|
|
15
|
+
|
|
16
|
+
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
17
|
+
|
|
18
|
+
var _BaseTypography = _interopRequireDefault(require("../utils/BaseTypography"));
|
|
19
|
+
|
|
20
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
|
|
22
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
+
|
|
24
|
+
var DxcParagraph = function DxcParagraph(_ref) {
|
|
25
|
+
var children = _ref.children;
|
|
26
|
+
var colorsTheme = (0, _useTheme["default"])();
|
|
27
|
+
var backgroundType = (0, _react.useContext)(_BackgroundColorContext["default"]);
|
|
28
|
+
return /*#__PURE__*/_react["default"].createElement(_BaseTypography["default"], {
|
|
29
|
+
as: "p",
|
|
30
|
+
display: colorsTheme.paragraph.display,
|
|
31
|
+
fontSize: colorsTheme.paragraph.fontSize,
|
|
32
|
+
fontWeight: colorsTheme.paragraph.fontWeight,
|
|
33
|
+
color: backgroundType && backgroundType === "dark" ? colorsTheme.paragraph.fontColorOnDark : colorsTheme.paragraph.fontColor
|
|
34
|
+
}, children);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
var _default = DxcParagraph;
|
|
38
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Title from "../../.storybook/components/Title";
|
|
3
|
+
import DxcParagraph from "./Paragraph";
|
|
4
|
+
import { BackgroundColorProvider } from "../BackgroundColorContext";
|
|
5
|
+
import ExampleContainer from "../../.storybook/components/ExampleContainer";
|
|
6
|
+
import DarkContainer from "../../.storybook/components/DarkSection";
|
|
7
|
+
|
|
8
|
+
export default {
|
|
9
|
+
title: "Paragraph",
|
|
10
|
+
component: DxcParagraph,
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export const Chromatic = () => (
|
|
14
|
+
<>
|
|
15
|
+
<ExampleContainer>
|
|
16
|
+
<Title title="Default Paragraph" level={4} />
|
|
17
|
+
<DxcParagraph>
|
|
18
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id tortor sit amet velit auctor cursus id eget
|
|
19
|
+
nisl. Vivamus luctus egestas eros, at mattis libero eleifend ac. Integer vel urna rutrum, pretium arcu
|
|
20
|
+
dignissim, fringilla turpis. Nullam luctus odio quis magna finibus, a pharetra magna euismod. Nullam efficitur
|
|
21
|
+
semper pellentesque. Nulla eget arcu ac diam fringilla vehicula. In imperdiet nisl hendrerit, elementum metus
|
|
22
|
+
eu, ornare risus. Aenean neque nibh, vestibulum vitae elit vel, imperdiet suscipit leo. Curabitur blandit
|
|
23
|
+
iaculis pretium. Fusce id imperdiet dui, ut laoreet justo. Sed maximus sollicitudin ipsum, et varius massa
|
|
24
|
+
condimentum eget. Vivamus id mauris et nisl mattis consequat et id lectus. Quisque mollis lacinia nisl.
|
|
25
|
+
Suspendisse sed quam tincidunt, commodo dolor vel, tincidunt nisl.
|
|
26
|
+
</DxcParagraph>
|
|
27
|
+
</ExampleContainer>
|
|
28
|
+
<BackgroundColorProvider color="#333333">
|
|
29
|
+
<DarkContainer>
|
|
30
|
+
<Title title="Default Paragraph" theme="dark" level={4} />
|
|
31
|
+
<DxcParagraph>
|
|
32
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id tortor sit amet velit auctor cursus id eget
|
|
33
|
+
nisl. Vivamus luctus egestas eros, at mattis libero eleifend ac. Integer vel urna rutrum, pretium arcu
|
|
34
|
+
dignissim, fringilla turpis. Nullam luctus odio quis magna finibus, a pharetra magna euismod. Nullam efficitur
|
|
35
|
+
semper pellentesque. Nulla eget arcu ac diam fringilla vehicula. In imperdiet nisl hendrerit, elementum metus
|
|
36
|
+
eu, ornare risus. Aenean neque nibh, vestibulum vitae elit vel, imperdiet suscipit leo. Curabitur blandit
|
|
37
|
+
iaculis pretium. Fusce id imperdiet dui, ut laoreet justo. Sed maximus sollicitudin ipsum, et varius massa
|
|
38
|
+
condimentum eget. Vivamus id mauris et nisl mattis consequat et id lectus. Quisque mollis lacinia nisl.
|
|
39
|
+
Suspendisse sed quam tincidunt, commodo dolor vel, tincidunt nisl.
|
|
40
|
+
</DxcParagraph>
|
|
41
|
+
</DarkContainer>
|
|
42
|
+
</BackgroundColorProvider>
|
|
43
|
+
</>
|
|
44
|
+
);
|
|
@@ -19,6 +19,8 @@ var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
|
19
19
|
|
|
20
20
|
var _TextInput = _interopRequireDefault(require("../text-input/TextInput"));
|
|
21
21
|
|
|
22
|
+
var _useTranslatedLabels = _interopRequireDefault(require("../useTranslatedLabels"));
|
|
23
|
+
|
|
22
24
|
var _templateObject;
|
|
23
25
|
|
|
24
26
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -26,21 +28,19 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
26
28
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
27
29
|
|
|
28
30
|
var DxcPasswordInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref) {
|
|
29
|
-
var
|
|
30
|
-
label = _ref$label === void 0 ? "" : _ref$label,
|
|
31
|
+
var label = _ref.label,
|
|
31
32
|
_ref$name = _ref.name,
|
|
32
33
|
name = _ref$name === void 0 ? "" : _ref$name,
|
|
33
34
|
value = _ref.value,
|
|
34
|
-
|
|
35
|
-
helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
|
|
35
|
+
helperText = _ref.helperText,
|
|
36
36
|
_ref$clearable = _ref.clearable,
|
|
37
37
|
clearable = _ref$clearable === void 0 ? false : _ref$clearable,
|
|
38
38
|
onChange = _ref.onChange,
|
|
39
39
|
onBlur = _ref.onBlur,
|
|
40
|
-
|
|
41
|
-
error = _ref$error === void 0 ? "" : _ref$error,
|
|
40
|
+
error = _ref.error,
|
|
42
41
|
pattern = _ref.pattern,
|
|
43
|
-
|
|
42
|
+
minLength = _ref.minLength,
|
|
43
|
+
maxLength = _ref.maxLength,
|
|
44
44
|
_ref$autocomplete = _ref.autocomplete,
|
|
45
45
|
autocomplete = _ref$autocomplete === void 0 ? "off" : _ref$autocomplete,
|
|
46
46
|
margin = _ref.margin,
|
|
@@ -55,45 +55,48 @@ var DxcPasswordInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref,
|
|
|
55
55
|
setIsPasswordVisible = _useState2[1];
|
|
56
56
|
|
|
57
57
|
var inputRef = (0, _react.useRef)(null);
|
|
58
|
+
var translatedLabels = (0, _useTranslatedLabels["default"])();
|
|
58
59
|
|
|
59
60
|
var setInputType = function setInputType(type) {
|
|
60
61
|
var _inputRef$current, _inputRef$current$chi;
|
|
61
62
|
|
|
62
|
-
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);
|
|
63
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 ? void 0 : (_inputRef$current$chi = _inputRef$current.children[label && helperText ? 2 : label || helperText ? 1 : 0]) === null || _inputRef$current$chi === void 0 ? void 0 : _inputRef$current$chi.children[0].setAttribute("type", type);
|
|
63
64
|
};
|
|
64
65
|
|
|
65
66
|
var setAriaAttributes = function setAriaAttributes(ariaExpanded, ariaLabel) {
|
|
67
|
+
var inputIndex = label && helperText ? 2 : label || helperText ? 1 : 0;
|
|
68
|
+
|
|
66
69
|
if (error && clearable && value) {
|
|
67
70
|
var _inputRef$current2, _inputRef$current2$ch, _inputRef$current2$ch2, _inputRef$current3, _inputRef$current3$ch, _inputRef$current3$ch2;
|
|
68
71
|
|
|
69
|
-
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current2 = inputRef.current) === null || _inputRef$current2 === void 0 ? void 0 : (_inputRef$current2$ch = _inputRef$current2.children[
|
|
70
|
-
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current3 = inputRef.current) === null || _inputRef$current3 === void 0 ? void 0 : (_inputRef$current3$ch = _inputRef$current3.children[
|
|
72
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current2 = inputRef.current) === null || _inputRef$current2 === void 0 ? void 0 : (_inputRef$current2$ch = _inputRef$current2.children[inputIndex]) === 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);
|
|
73
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current3 = inputRef.current) === null || _inputRef$current3 === void 0 ? void 0 : (_inputRef$current3$ch = _inputRef$current3.children[inputIndex]) === 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);
|
|
71
74
|
} else if (error || clearable && !value) {
|
|
72
75
|
var _inputRef$current4, _inputRef$current4$ch, _inputRef$current4$ch2, _inputRef$current5, _inputRef$current5$ch, _inputRef$current5$ch2;
|
|
73
76
|
|
|
74
|
-
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current4 = inputRef.current) === null || _inputRef$current4 === void 0 ? void 0 : (_inputRef$current4$ch = _inputRef$current4.children[
|
|
75
|
-
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current5 = inputRef.current) === null || _inputRef$current5 === void 0 ? void 0 : (_inputRef$current5$ch = _inputRef$current5.children[
|
|
77
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current4 = inputRef.current) === null || _inputRef$current4 === void 0 ? void 0 : (_inputRef$current4$ch = _inputRef$current4.children[inputIndex]) === 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);
|
|
78
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current5 = inputRef.current) === null || _inputRef$current5 === void 0 ? void 0 : (_inputRef$current5$ch = _inputRef$current5.children[inputIndex]) === 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);
|
|
76
79
|
} else {
|
|
77
80
|
var _inputRef$current6, _inputRef$current6$ch, _inputRef$current6$ch2, _inputRef$current7, _inputRef$current7$ch, _inputRef$current7$ch2;
|
|
78
81
|
|
|
79
|
-
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current6 = inputRef.current) === null || _inputRef$current6 === void 0 ? void 0 : (_inputRef$current6$ch = _inputRef$current6.children[
|
|
80
|
-
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current7 = inputRef.current) === null || _inputRef$current7 === void 0 ? void 0 : (_inputRef$current7$ch = _inputRef$current7.children[
|
|
82
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current6 = inputRef.current) === null || _inputRef$current6 === void 0 ? void 0 : (_inputRef$current6$ch = _inputRef$current6.children[inputIndex]) === 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);
|
|
83
|
+
inputRef === null || inputRef === void 0 ? void 0 : (_inputRef$current7 = inputRef.current) === null || _inputRef$current7 === void 0 ? void 0 : (_inputRef$current7$ch = _inputRef$current7.children[inputIndex]) === 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);
|
|
81
84
|
}
|
|
82
85
|
};
|
|
83
86
|
|
|
84
87
|
var getIconTitle = function getIconTitle() {
|
|
85
|
-
return isPasswordVisible ?
|
|
88
|
+
return isPasswordVisible ? translatedLabels.passwordInput.inputHidePasswordTitle : translatedLabels.passwordInput.inputShowPasswordTitle;
|
|
86
89
|
};
|
|
87
90
|
|
|
88
91
|
(0, _react.useEffect)(function () {
|
|
89
|
-
setAriaAttributes(false,
|
|
92
|
+
setAriaAttributes(false, translatedLabels.passwordInput.inputShowPasswordTitle);
|
|
90
93
|
|
|
91
94
|
if (isPasswordVisible) {
|
|
92
95
|
setInputType("text");
|
|
93
|
-
setAriaAttributes(true,
|
|
96
|
+
setAriaAttributes(true, translatedLabels.passwordInput.inputHidePasswordTitle);
|
|
94
97
|
} else {
|
|
95
98
|
setInputType("password");
|
|
96
|
-
setAriaAttributes(false,
|
|
99
|
+
setAriaAttributes(false, translatedLabels.passwordInput.inputShowPasswordTitle);
|
|
97
100
|
}
|
|
98
101
|
}, [isPasswordVisible]);
|
|
99
102
|
|
|
@@ -150,7 +153,8 @@ var DxcPasswordInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref,
|
|
|
150
153
|
margin: margin,
|
|
151
154
|
size: size,
|
|
152
155
|
pattern: pattern,
|
|
153
|
-
|
|
156
|
+
minLength: minLength,
|
|
157
|
+
maxLength: maxLength,
|
|
154
158
|
autocomplete: autocomplete,
|
|
155
159
|
tabIndex: tabIndex
|
|
156
160
|
}));
|
|
@@ -53,7 +53,7 @@ export const Chromatic = () => (
|
|
|
53
53
|
<Title title="Margins" theme="light" level={2} />
|
|
54
54
|
<ExampleContainer>
|
|
55
55
|
<Title title="Xxsmall margin" theme="light" level={4} />
|
|
56
|
-
<DxcPasswordInput label="
|
|
56
|
+
<DxcPasswordInput label="Xxsmall" margin="xxsmall" />
|
|
57
57
|
</ExampleContainer>
|
|
58
58
|
<ExampleContainer>
|
|
59
59
|
<Title title="Xsmall margin" theme="light" level={4} />
|
|
@@ -100,7 +100,7 @@ export const Chromatic = () => (
|
|
|
100
100
|
);
|
|
101
101
|
|
|
102
102
|
const Password = () => (
|
|
103
|
-
<ExampleContainer>
|
|
103
|
+
<ExampleContainer expanded>
|
|
104
104
|
<Title title="Show password" theme="light" level={4} />
|
|
105
105
|
<DxcPasswordInput label="Password input" value="Password" />
|
|
106
106
|
</ExampleContainer>
|
|
@@ -108,7 +108,7 @@ const Password = () => (
|
|
|
108
108
|
const PasswordDark = () => (
|
|
109
109
|
<BackgroundColorProvider color="#333333">
|
|
110
110
|
<DarkContainer>
|
|
111
|
-
<ExampleContainer>
|
|
111
|
+
<ExampleContainer expanded>
|
|
112
112
|
<Title title="Show password" theme="dark" level={4} />
|
|
113
113
|
<DxcPasswordInput label="Password input" value="Password" />
|
|
114
114
|
</ExampleContainer>
|