@dxc-technology/halstack-react 0.0.0-f64ebd5 → 0.0.0-f77ec3a
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/babel.config.js +5 -2
- package/dist/BackgroundColorContext.js +46 -0
- package/dist/ThemeContext.js +237 -2
- 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 +174 -63
- package/dist/accordion/index.d.ts +28 -0
- package/dist/accordion-group/AccordionGroup.js +186 -0
- package/dist/accordion-group/index.d.ts +16 -0
- package/dist/alert/Alert.js +183 -84
- package/dist/alert/index.d.ts +51 -0
- package/dist/badge/Badge.js +63 -0
- package/dist/box/Box.js +31 -23
- package/dist/box/index.d.ts +25 -0
- package/dist/button/Button.js +85 -28
- package/dist/button/index.d.ts +24 -0
- package/dist/card/Card.js +72 -35
- package/dist/card/index.d.ts +22 -0
- package/dist/checkbox/Checkbox.js +107 -32
- package/dist/checkbox/index.d.ts +24 -0
- package/dist/chip/Chip.js +128 -36
- package/dist/chip/index.d.ts +22 -0
- package/dist/common/RequiredComponent.js +2 -8
- package/dist/common/utils.js +2 -22
- package/dist/common/variables.js +1451 -277
- package/dist/date/Date.js +81 -59
- 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 +58 -37
- package/dist/dialog/index.d.ts +18 -0
- package/dist/dropdown/Dropdown.js +205 -85
- 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 +121 -46
- package/dist/footer/Icons.js +77 -0
- package/dist/footer/index.d.ts +25 -0
- package/dist/header/Header.js +200 -102
- package/dist/header/Icons.js +59 -0
- package/dist/header/index.d.ts +25 -0
- package/dist/heading/Heading.js +93 -16
- package/dist/heading/index.d.ts +17 -0
- package/dist/input-text/Icons.js +22 -0
- package/dist/input-text/InputText.js +289 -103
- package/dist/input-text/index.d.ts +36 -0
- package/dist/layout/ApplicationLayout.js +327 -0
- package/dist/layout/Icons.js +55 -0
- package/dist/link/Link.js +136 -35
- package/dist/link/index.d.ts +23 -0
- package/dist/main.d.ts +40 -0
- package/dist/main.js +112 -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 +172 -63
- 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 +95 -38
- package/dist/progress-bar/index.d.ts +18 -0
- package/dist/radio/Radio.js +39 -17
- package/dist/radio/index.d.ts +23 -0
- package/dist/resultsetTable/ResultsetTable.js +93 -68
- package/dist/resultsetTable/index.d.ts +19 -0
- package/dist/select/Select.js +916 -265
- package/dist/select/index.d.ts +53 -0
- package/dist/sidenav/Sidenav.js +84 -141
- package/dist/sidenav/index.d.ts +13 -0
- package/dist/slider/Slider.js +219 -73
- package/dist/slider/index.d.ts +29 -0
- package/dist/spinner/Spinner.js +247 -59
- package/dist/spinner/index.d.ts +17 -0
- package/dist/stories/Button.js +71 -0
- package/dist/stories/Button.stories.js +55 -0
- package/dist/stories/Header.js +67 -0
- package/dist/stories/Header.stories.js +31 -0
- package/dist/stories/Introduction.stories.mdx +211 -0
- package/dist/stories/Page.js +68 -0
- package/dist/stories/Page.stories.js +39 -0
- package/dist/stories/assets/code-brackets.svg +1 -0
- package/dist/stories/assets/colors.svg +1 -0
- package/dist/stories/assets/comments.svg +1 -0
- package/dist/stories/assets/direction.svg +1 -0
- package/dist/stories/assets/flow.svg +1 -0
- package/dist/stories/assets/plugin.svg +1 -0
- package/dist/stories/assets/repo.svg +1 -0
- package/dist/stories/assets/stackalt.svg +1 -0
- package/dist/stories/button.css +30 -0
- package/dist/stories/header.css +26 -0
- package/dist/stories/page.css +69 -0
- package/dist/switch/Switch.js +50 -27
- package/dist/switch/index.d.ts +24 -0
- package/dist/table/Table.js +58 -13
- package/dist/table/index.d.ts +13 -0
- package/dist/tabs/Tabs.js +207 -36
- package/dist/tabs/index.d.ts +19 -0
- package/dist/tag/Tag.js +100 -35
- 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 +248 -106
- package/dist/textarea/index.d.ts +117 -0
- package/dist/toggle/Toggle.js +16 -19
- package/dist/toggle/index.d.ts +21 -0
- package/dist/toggle-group/ToggleGroup.js +327 -0
- package/dist/toggle-group/index.d.ts +21 -0
- package/dist/upload/Upload.js +13 -8
- package/dist/upload/buttons-upload/ButtonsUpload.js +32 -19
- package/dist/upload/buttons-upload/Icons.js +40 -0
- package/dist/upload/dragAndDropArea/DragAndDropArea.js +84 -34
- package/dist/upload/dragAndDropArea/Icons.js +39 -0
- package/dist/upload/file-upload/FileToUpload.js +64 -33
- package/dist/upload/file-upload/Icons.js +66 -0
- package/dist/upload/files-upload/FilesToUpload.js +16 -16
- package/dist/upload/index.d.ts +15 -0
- package/dist/upload/transaction/Icons.js +160 -0
- package/dist/upload/transaction/Transaction.js +42 -49
- package/dist/upload/transactions/Transactions.js +38 -20
- package/dist/useTheme.js +22 -0
- package/dist/wizard/Icons.js +65 -0
- package/dist/wizard/Wizard.js +138 -60
- package/dist/wizard/index.d.ts +18 -0
- package/package.json +26 -14
- package/test/AccordionGroup.test.js +125 -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/InputText.test.js +31 -28
- package/test/Link.test.js +25 -7
- package/test/NumberInput.test.js +259 -0
- package/test/Paginator.test.js +76 -60
- package/test/PasswordInput.test.js +83 -0
- package/test/ResultsetTable.test.js +65 -17
- package/test/Select.test.js +371 -147
- package/test/Sidenav.test.js +22 -64
- package/test/Slider.test.js +24 -15
- package/test/Spinner.test.js +5 -0
- package/test/Tabs.test.js +21 -0
- package/test/TextInput.test.js +732 -0
- package/test/Textarea.test.js +193 -0
- package/test/ToggleGroup.test.js +85 -0
- 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/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_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/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/sidenav/arrow_icon.svg +0 -3
- 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 -107
- 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/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
- package/test/Toggle.test.js +0 -43
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { render, fireEvent } from "@testing-library/react";
|
|
2
|
+
import { render, fireEvent, act } from "@testing-library/react";
|
|
3
|
+
import userEvent from "@testing-library/user-event";
|
|
4
|
+
|
|
3
5
|
import DxcResultsetTable from "../src/resultsetTable/ResultsetTable";
|
|
4
6
|
|
|
5
7
|
const columns = [
|
|
@@ -14,7 +16,7 @@ const columns = [
|
|
|
14
16
|
{
|
|
15
17
|
displayValue: "City",
|
|
16
18
|
isSortable: false,
|
|
17
|
-
}
|
|
19
|
+
},
|
|
18
20
|
];
|
|
19
21
|
|
|
20
22
|
const rows = [
|
|
@@ -30,7 +32,7 @@ const rows = [
|
|
|
30
32
|
{
|
|
31
33
|
displayValue: "Oviedo",
|
|
32
34
|
sortValue: "Oviedo",
|
|
33
|
-
}
|
|
35
|
+
},
|
|
34
36
|
],
|
|
35
37
|
[
|
|
36
38
|
{
|
|
@@ -61,7 +63,7 @@ const rows = [
|
|
|
61
63
|
{
|
|
62
64
|
displayValue: "Albacete",
|
|
63
65
|
sortValue: "Albacete",
|
|
64
|
-
}
|
|
66
|
+
},
|
|
65
67
|
],
|
|
66
68
|
[
|
|
67
69
|
{
|
|
@@ -75,7 +77,7 @@ const rows = [
|
|
|
75
77
|
{
|
|
76
78
|
displayValue: "Albacete",
|
|
77
79
|
sortValue: "Albacete",
|
|
78
|
-
}
|
|
80
|
+
},
|
|
79
81
|
],
|
|
80
82
|
[
|
|
81
83
|
{
|
|
@@ -89,7 +91,7 @@ const rows = [
|
|
|
89
91
|
{
|
|
90
92
|
displayValue: "Madrid",
|
|
91
93
|
sortValue: "Madrid",
|
|
92
|
-
}
|
|
94
|
+
},
|
|
93
95
|
],
|
|
94
96
|
[
|
|
95
97
|
{
|
|
@@ -120,7 +122,7 @@ const rows = [
|
|
|
120
122
|
{
|
|
121
123
|
displayValue: "Madrid",
|
|
122
124
|
sortValue: "Madrid",
|
|
123
|
-
}
|
|
125
|
+
},
|
|
124
126
|
],
|
|
125
127
|
[
|
|
126
128
|
{
|
|
@@ -134,7 +136,7 @@ const rows = [
|
|
|
134
136
|
{
|
|
135
137
|
displayValue: "Barcelona",
|
|
136
138
|
sortValue: "Barcelona",
|
|
137
|
-
}
|
|
139
|
+
},
|
|
138
140
|
],
|
|
139
141
|
[
|
|
140
142
|
{
|
|
@@ -185,7 +187,7 @@ const rows2 = [
|
|
|
185
187
|
{
|
|
186
188
|
displayValue: "OtherValue",
|
|
187
189
|
sortValue: "OtherValue",
|
|
188
|
-
}
|
|
190
|
+
},
|
|
189
191
|
],
|
|
190
192
|
[
|
|
191
193
|
{
|
|
@@ -216,21 +218,22 @@ const rows2 = [
|
|
|
216
218
|
{
|
|
217
219
|
displayValue: "OtherValue",
|
|
218
220
|
sortValue: "OtherValue",
|
|
219
|
-
}
|
|
221
|
+
},
|
|
220
222
|
],
|
|
221
223
|
];
|
|
222
224
|
|
|
223
225
|
describe("ResultsetTable component tests", () => {
|
|
224
226
|
test("ResultsetTable rendered correctly", () => {
|
|
225
|
-
const { getByText } = render(
|
|
227
|
+
const { getByText } = render(
|
|
228
|
+
<DxcResultsetTable columns={columns} rows={rows} itemsPerPage={3}></DxcResultsetTable>
|
|
229
|
+
);
|
|
226
230
|
expect(getByText("Peter")).toBeTruthy();
|
|
227
231
|
});
|
|
228
232
|
test("Resultsettable shows as many rows as itemsPerPage", () => {
|
|
229
|
-
const {
|
|
233
|
+
const { getAllByRole } = render(
|
|
230
234
|
<DxcResultsetTable columns={columns} rows={rows} itemsPerPage={3}></DxcResultsetTable>
|
|
231
235
|
);
|
|
232
|
-
expect(
|
|
233
|
-
expect(queryByText("Rick")).toBeFalsy();
|
|
236
|
+
expect(getAllByRole("row").length - 1).toEqual(3);
|
|
234
237
|
});
|
|
235
238
|
|
|
236
239
|
test("Resultsettable shows rows on second page", () => {
|
|
@@ -240,13 +243,41 @@ describe("ResultsetTable component tests", () => {
|
|
|
240
243
|
expect(getByText("Peter")).toBeTruthy();
|
|
241
244
|
expect(getByText("Louis")).toBeTruthy();
|
|
242
245
|
expect(getByText("Lana")).toBeTruthy();
|
|
246
|
+
expect(getAllByRole("row").length - 1).toEqual(3);
|
|
243
247
|
const nextButton = getAllByRole("button")[2];
|
|
244
248
|
fireEvent.click(nextButton);
|
|
245
249
|
expect(getByText("4 to 6 of 10")).toBeTruthy();
|
|
246
|
-
expect(getByText("Page: 2 of 4")).toBeTruthy();
|
|
250
|
+
// expect(getByText("Page: 2 of 4")).toBeTruthy();
|
|
247
251
|
expect(getByText("Rick")).toBeTruthy();
|
|
248
252
|
expect(getByText("Mark")).toBeTruthy();
|
|
249
253
|
expect(getByText("Cris")).toBeTruthy();
|
|
254
|
+
expect(getAllByRole("row").length - 1).toEqual(3);
|
|
255
|
+
});
|
|
256
|
+
|
|
257
|
+
test("Resultsettable goToPage works as expected", () => {
|
|
258
|
+
window.HTMLElement.prototype.scrollIntoView = () => {};
|
|
259
|
+
window.HTMLElement.prototype.scrollTo = () => {};
|
|
260
|
+
const { getByText, getAllByRole, getByRole } = render(
|
|
261
|
+
<DxcResultsetTable columns={columns} showGoToPage={true} rows={rows} itemsPerPage={3}></DxcResultsetTable>
|
|
262
|
+
);
|
|
263
|
+
expect(getByText("Peter")).toBeTruthy();
|
|
264
|
+
expect(getByText("Louis")).toBeTruthy();
|
|
265
|
+
expect(getByText("Lana")).toBeTruthy();
|
|
266
|
+
expect(getAllByRole("row").length - 1).toEqual(3);
|
|
267
|
+
const goToPageSelect = getAllByRole("button")[2];
|
|
268
|
+
act(() => {
|
|
269
|
+
userEvent.click(goToPageSelect);
|
|
270
|
+
});
|
|
271
|
+
const goToPageOption = getByText("2");
|
|
272
|
+
act(() => {
|
|
273
|
+
userEvent.click(goToPageOption);
|
|
274
|
+
});
|
|
275
|
+
|
|
276
|
+
expect(getByText("4 to 6 of 10")).toBeTruthy();
|
|
277
|
+
expect(getByText("Rick")).toBeTruthy();
|
|
278
|
+
expect(getByText("Mark")).toBeTruthy();
|
|
279
|
+
expect(getByText("Cris")).toBeTruthy();
|
|
280
|
+
expect(getAllByRole("row").length - 1).toEqual(3);
|
|
250
281
|
});
|
|
251
282
|
|
|
252
283
|
test("Resultsettable going to the last page shows only one row", () => {
|
|
@@ -256,7 +287,6 @@ describe("ResultsetTable component tests", () => {
|
|
|
256
287
|
const lastButton = getAllByRole("button")[3];
|
|
257
288
|
fireEvent.click(lastButton);
|
|
258
289
|
expect(getByText("10 to 10 of 10")).toBeTruthy();
|
|
259
|
-
expect(getByText("Page: 4 of 4")).toBeTruthy();
|
|
260
290
|
expect(getAllByRole("row")).toHaveLength(2);
|
|
261
291
|
expect(getByText("Cosmin")).toBeTruthy();
|
|
262
292
|
});
|
|
@@ -273,10 +303,28 @@ describe("ResultsetTable component tests", () => {
|
|
|
273
303
|
expect(component.queryByText("Cosmin")).not.toBeTruthy();
|
|
274
304
|
});
|
|
275
305
|
test("Resultsettable change rows should go to first page", () => {
|
|
276
|
-
const {queryByText, rerender} = render(
|
|
306
|
+
const { queryByText, rerender } = render(
|
|
307
|
+
<DxcResultsetTable columns={columns} rows={rows} itemsPerPage={3}></DxcResultsetTable>
|
|
308
|
+
);
|
|
277
309
|
expect(queryByText("Peter")).toBeTruthy();
|
|
278
310
|
rerender(<DxcResultsetTable columns={columns} rows={rows2} itemsPerPage={3}></DxcResultsetTable>);
|
|
279
311
|
expect(queryByText("1 to 3 of 3")).toBeTruthy();
|
|
280
312
|
});
|
|
281
313
|
|
|
314
|
+
test("Resultsettable change itemsPerPage should go to first page", () => {
|
|
315
|
+
const { getAllByRole, queryByText, rerender } = render(
|
|
316
|
+
<DxcResultsetTable
|
|
317
|
+
columns={columns}
|
|
318
|
+
rows={rows}
|
|
319
|
+
itemsPerPage={3}
|
|
320
|
+
itemsPerPageOptions={[2, 3]}
|
|
321
|
+
></DxcResultsetTable>
|
|
322
|
+
);
|
|
323
|
+
const lastButton = getAllByRole("button")[3];
|
|
324
|
+
fireEvent.click(lastButton);
|
|
325
|
+
expect(getAllByRole("row").length - 1).toEqual(1);
|
|
326
|
+
rerender(<DxcResultsetTable columns={columns} rows={rows} itemsPerPage={6}></DxcResultsetTable>);
|
|
327
|
+
expect(getAllByRole("row").length - 1).toEqual(6);
|
|
328
|
+
expect(queryByText("Peter")).toBeTruthy();
|
|
329
|
+
});
|
|
282
330
|
});
|