dimsum-e2e-tests 3.60.0-next.18 → 3.60.0-next.19
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/CHANGELOG.md +6 -0
- package/ds-tabs/DSTabs.axe-core.func.spec.js +0 -33
- package/ds-tabs/DSTabs.func.spec.js +1 -71
- package/ds-tabs/DSTabs.visual.spec.js +9 -68
- package/ds-tabs/DSTabsCO.js +2 -0
- package/ds-tabs/aria-disabled/DSTabs.aria-disabled.visual.spec.js +2 -2
- package/ds-tabs/disabled/DSTabs.disabled.axe-core.func.spec.js +22 -0
- package/ds-tabs/disabled/DSTabs.disabled.func.spec.js +28 -0
- package/ds-tabs/disabled/DSTabs.disabled.visual.spec.js +58 -0
- package/ds-tabs/nested/DSTabs.nested.axe-core.func.spec.js +31 -0
- package/ds-tabs/nested/DSTabs.nested.func.spec.js +22 -0
- package/ds-tabs/nested/DSTabs.nested.visual.spec.js +30 -0
- package/ds-tabs/slots/DSTabs.slots.func.spec.js +28 -0
- package/ds-tabs/with-carousel/DSTabs.with-carousel.func.spec.js +4 -3
- package/package.json +150 -150
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 3.60.0-next.19 (2026-02-12)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- ds-ribbon:: typescript fixes by dimsum alignment [PUI-17478](https://jira.elliemae.io/browse/PUI-17478)([#7870](https://git.elliemae.io/platform-ui/dimsum/issues/7870)) ([6dcb730](https://git.elliemae.io/platform-ui/dimsum/commit/6dcb730e31dcb4cfab2e863db38c01de894a7af9))
|
|
11
|
+
|
|
6
12
|
## 3.60.0-next.18 (2026-02-09)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -20,27 +20,6 @@ if (
|
|
|
20
20
|
});
|
|
21
21
|
});
|
|
22
22
|
|
|
23
|
-
describe('PUI-12090 - Tabs: Nested -AxeCore', () => {
|
|
24
|
-
before('loading page', async () => {
|
|
25
|
-
const errorOnGo = await DSTabsCO.nestedURL.go();
|
|
26
|
-
if (errorOnGo) throw errorOnGo;
|
|
27
|
-
});
|
|
28
|
-
it('01:should have nested tabs and pass axe-core scan', async () => {
|
|
29
|
-
const subtab3 = await DSTabsCO.getSubTabsByIndex(2);
|
|
30
|
-
await subtab3.click();
|
|
31
|
-
const result = await axeCoreCheck();
|
|
32
|
-
expect(result.length).toBe(0);
|
|
33
|
-
});
|
|
34
|
-
it('02: should change from parent tab and pass axe-core scan', async () => {
|
|
35
|
-
const tab1 = await DSTabsCO.getTab(1);
|
|
36
|
-
await tab1.click();
|
|
37
|
-
const subtab3 = await DSTabsCO.getSubTabsByIndex(2);
|
|
38
|
-
await subtab3.click();
|
|
39
|
-
const result = await axeCoreCheck();
|
|
40
|
-
expect(result.length).toBe(0);
|
|
41
|
-
});
|
|
42
|
-
});
|
|
43
|
-
|
|
44
23
|
describe('PUI-12092 - Tabs, various tab groups (grid) -AxeCore', () => {
|
|
45
24
|
before('loading page', async () => {
|
|
46
25
|
const errorOnGo = await DSTabsCO.withGridURL.go();
|
|
@@ -94,18 +73,6 @@ if (
|
|
|
94
73
|
});
|
|
95
74
|
});
|
|
96
75
|
|
|
97
|
-
describe('PUI-12096 - Tabs: Disabled - AxeCore', () => {
|
|
98
|
-
before('loading page', async () => {
|
|
99
|
-
const errorOnGo = await DSTabsCO.disabledURL.go();
|
|
100
|
-
if (errorOnGo) throw errorOnGo;
|
|
101
|
-
});
|
|
102
|
-
it('should have disabled tabs and pass axe-core scan', async () => {
|
|
103
|
-
await (await DSTabsCO.getTabsList()).waitForDisplayed();
|
|
104
|
-
const result = await axeCoreCheck();
|
|
105
|
-
expect(result.length).toBe(0);
|
|
106
|
-
});
|
|
107
|
-
});
|
|
108
|
-
|
|
109
76
|
describe('PUI-14334 - Tabs: Animated -AxeCore', () => {
|
|
110
77
|
before('loading page', async () => {
|
|
111
78
|
const errorOnGo = await DSTabsCO.animatedURL.go();
|
|
@@ -11,7 +11,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
11
11
|
if (errorOnGo) throw errorOnGo;
|
|
12
12
|
});
|
|
13
13
|
it('should select third subTab correctly', async () => {
|
|
14
|
-
await tabStops(
|
|
14
|
+
await tabStops(2);
|
|
15
15
|
await browser.keys(Key.ArrowRight);
|
|
16
16
|
await browser.keys(Key.ArrowRight);
|
|
17
17
|
await browser.keys(Key.Space);
|
|
@@ -20,74 +20,4 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
20
20
|
await expect(tabSelected).toBe('true');
|
|
21
21
|
});
|
|
22
22
|
});
|
|
23
|
-
|
|
24
|
-
describe('PUI-15144 - Tabs, to receive aria-label -Func', () => {
|
|
25
|
-
before('loading page', async () => {
|
|
26
|
-
const errorOnGo = await DSTabsCO.nestedURL.go();
|
|
27
|
-
if (errorOnGo) throw errorOnGo;
|
|
28
|
-
});
|
|
29
|
-
it('01: should hve custom aria-labels for each tab', async () => {
|
|
30
|
-
const firstTab = await DSTabsCO.getTabsByIndex(0);
|
|
31
|
-
const thirdTab = await DSTabsCO.getTabsByIndex(2);
|
|
32
|
-
const lastTab = await DSTabsCO.getTabsByIndex(3);
|
|
33
|
-
const firstTabAriaLabel = await firstTab.getAttribute('aria-label');
|
|
34
|
-
const thirdTabAriaLabel = await thirdTab.getAttribute('aria-label');
|
|
35
|
-
const lastTabAriaLabel = await lastTab.getAttribute('aria-label');
|
|
36
|
-
await expect(firstTabAriaLabel).toEqual('Fields sent arialabel');
|
|
37
|
-
await expect(thirdTabAriaLabel).toEqual('Lender initiated arialabel');
|
|
38
|
-
await expect(lastTabAriaLabel).toEqual('Required docs arialabel');
|
|
39
|
-
});
|
|
40
|
-
it('02: should have custom aria-labels for each subtab', async () => {
|
|
41
|
-
const firstTab = await DSTabsCO.getSubTabsByIndex(0);
|
|
42
|
-
const thirdTab = await DSTabsCO.getSubTabsByIndex(1);
|
|
43
|
-
const lastTab = await DSTabsCO.getSubTabsByIndex(2);
|
|
44
|
-
const firstTabAriaLabel = await firstTab.getAttribute('aria-label');
|
|
45
|
-
const thirdTabAriaLabel = await thirdTab.getAttribute('aria-label');
|
|
46
|
-
const lastTabAriaLabel = await lastTab.getAttribute('aria-label');
|
|
47
|
-
await expect(firstTabAriaLabel).toEqual('Required arialabel');
|
|
48
|
-
await expect(thirdTabAriaLabel).toEqual('Negotiated arialabel');
|
|
49
|
-
await expect(lastTabAriaLabel).toEqual('Failed arialabel');
|
|
50
|
-
});
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
describe('PUI-5283 - Disabled tab', () => {
|
|
54
|
-
before('loading page', async () => {
|
|
55
|
-
const errorOnGo = await DSTabsCO.disabledURL.go();
|
|
56
|
-
if (errorOnGo) throw errorOnGo;
|
|
57
|
-
});
|
|
58
|
-
it('should open correctly tab', async () => {
|
|
59
|
-
const tab = await DSTabsCO.getTab(1);
|
|
60
|
-
await expect(tab).toBeDisplayed();
|
|
61
|
-
});
|
|
62
|
-
it('should select tab 2 correctly', async () => {
|
|
63
|
-
await (await DSTabsCO.getTab(2)).click();
|
|
64
|
-
const tabSelected = await (await DSTabsCO.getTab(2)).getAttribute('aria-selected');
|
|
65
|
-
await expect(tabSelected).toBe('true');
|
|
66
|
-
});
|
|
67
|
-
it('should not select tab 3 because its disabled', async () => {
|
|
68
|
-
await (await DSTabsCO.getTab(3)).click();
|
|
69
|
-
const tabSelected = await (await DSTabsCO.getTab(3)).getAttribute('aria-selected');
|
|
70
|
-
const tabDisabled = await (await DSTabsCO.getTab(3)).getAttribute('aria-disabled');
|
|
71
|
-
await expect(tabDisabled).toBe('true');
|
|
72
|
-
await expect(tabSelected).toBe('false');
|
|
73
|
-
});
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
if (browser.capabilities.browserName !== 'Safari') {
|
|
77
|
-
describe('PUI-5392 - Arrow key behavior', () => {
|
|
78
|
-
before('loading page', async () => {
|
|
79
|
-
const errorOnGo = await DSTabsCO.nestedURL.go();
|
|
80
|
-
if (errorOnGo) throw errorOnGo;
|
|
81
|
-
});
|
|
82
|
-
it('should focus last subtab', async () => {
|
|
83
|
-
await (await DSTabsCO.getTab(1)).click();
|
|
84
|
-
await browser.keys(Key.ArrowRight);
|
|
85
|
-
await browser.keys(Key.ArrowDown);
|
|
86
|
-
await browser.keys(Key.ArrowRight);
|
|
87
|
-
await browser.keys(Key.Enter);
|
|
88
|
-
const subTabSelected = await (await DSTabsCO.getSubtab(2)).getAttribute('aria-selected');
|
|
89
|
-
await expect(subTabSelected).toBe('true');
|
|
90
|
-
});
|
|
91
|
-
});
|
|
92
|
-
}
|
|
93
23
|
}
|
|
@@ -1,38 +1,10 @@
|
|
|
1
|
+
/* eslint-disable wdio/no-pause */
|
|
1
2
|
/* eslint-disable max-lines */
|
|
2
3
|
import { Key } from 'webdriverio';
|
|
3
4
|
import DSTabsCO from './DSTabsCO';
|
|
4
5
|
import { mouseOver } from '../helpers';
|
|
5
6
|
|
|
6
7
|
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
7
|
-
describe('PUI-5784 - Tabs, Focus state of the tabs - Visual Test', () => {
|
|
8
|
-
before('loading page', async () => {
|
|
9
|
-
const errorOnGo = await DSTabsCO.disabledURL.go();
|
|
10
|
-
if (errorOnGo) throw errorOnGo;
|
|
11
|
-
});
|
|
12
|
-
it('should display first tab selected', async () => {
|
|
13
|
-
await (await DSTabsCO.getTabsList()).waitForDisplayed();
|
|
14
|
-
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-selected'));
|
|
15
|
-
await expect(snapshot).toEqual(0);
|
|
16
|
-
});
|
|
17
|
-
it('should display first tab selected and focused', async () => {
|
|
18
|
-
await browser.keys(Key.Tab);
|
|
19
|
-
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-selected-and-focused'));
|
|
20
|
-
await expect(snapshot).toEqual(0);
|
|
21
|
-
});
|
|
22
|
-
it('should display second tab focused [keyboard focus]', async () => {
|
|
23
|
-
await browser.keys(Key.Tab);
|
|
24
|
-
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-focused'));
|
|
25
|
-
await expect(snapshot).toEqual(0);
|
|
26
|
-
});
|
|
27
|
-
it('should display fourth tab focused [Hover]', async () => {
|
|
28
|
-
const fourthTab = await DSTabsCO.getTab(4);
|
|
29
|
-
await fourthTab.click({ y: 50 }); // click outside tab
|
|
30
|
-
await mouseOver(fourthTab);
|
|
31
|
-
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-hovered'));
|
|
32
|
-
await expect(snapshot).toEqual(0);
|
|
33
|
-
});
|
|
34
|
-
});
|
|
35
|
-
|
|
36
8
|
describe('PUI-3077 - Tabs, type secondary', () => {
|
|
37
9
|
before('loading page', async () => {
|
|
38
10
|
const errorOnGo = await DSTabsCO.secondaryURL.go();
|
|
@@ -109,8 +81,12 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
109
81
|
await expect(snapshot).toEqual(0);
|
|
110
82
|
});
|
|
111
83
|
it('should display tabs with a grid moved one tablist to the right', async () => {
|
|
112
|
-
|
|
113
|
-
await
|
|
84
|
+
const tab1 = await DSTabsCO.getTab(1);
|
|
85
|
+
await tab1.click();
|
|
86
|
+
const tab2 = await DSTabsCO.getTab(2);
|
|
87
|
+
await tab2.waitForClickable({ timeout: 5000 });
|
|
88
|
+
await tab2.click();
|
|
89
|
+
await browser.pause(500);
|
|
114
90
|
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-grid-moved1'));
|
|
115
91
|
await expect(snapshot).toEqual(0);
|
|
116
92
|
});
|
|
@@ -118,7 +94,8 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
118
94
|
// Scroll to the last tab to move the tablist to the right
|
|
119
95
|
const lastTab = await DSTabsCO.getTab(4);
|
|
120
96
|
await lastTab.scrollIntoView();
|
|
121
|
-
await
|
|
97
|
+
await browser.pause(1000);
|
|
98
|
+
await lastTab.waitForClickable({ timeout: 5000 });
|
|
122
99
|
await lastTab.click();
|
|
123
100
|
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-grid-moved2'));
|
|
124
101
|
await expect(snapshot).toEqual(0);
|
|
@@ -138,30 +115,6 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
138
115
|
});
|
|
139
116
|
});
|
|
140
117
|
|
|
141
|
-
describe('PUI-8069 - Tabs, nested', () => {
|
|
142
|
-
before('loading page', async () => {
|
|
143
|
-
const errorOnGo = await DSTabsCO.nestedURL.go();
|
|
144
|
-
if (errorOnGo) throw errorOnGo;
|
|
145
|
-
});
|
|
146
|
-
it('should display nested tabs default', async () => {
|
|
147
|
-
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-nested-default'));
|
|
148
|
-
await expect(snapshot).toEqual(0);
|
|
149
|
-
});
|
|
150
|
-
it('should display nested tabs one focused and selected one hover', async () => {
|
|
151
|
-
const tab1 = await DSTabsCO.getSubTabsByIndex(0);
|
|
152
|
-
await tab1.click();
|
|
153
|
-
const tab3 = await DSTabsCO.getSubTabsByIndex(2);
|
|
154
|
-
await mouseOver(tab3);
|
|
155
|
-
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-nested-onefocus-onehover'));
|
|
156
|
-
await expect(snapshot).toEqual(0);
|
|
157
|
-
});
|
|
158
|
-
it('should display nested tabs one focused and one selected', async () => {
|
|
159
|
-
await browser.keys(Key.ArrowRight);
|
|
160
|
-
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-nested-onefocus-oneselected'));
|
|
161
|
-
await expect(snapshot).toEqual(0);
|
|
162
|
-
});
|
|
163
|
-
});
|
|
164
|
-
|
|
165
118
|
describe('PUI-8070 - Tabs, basic small', () => {
|
|
166
119
|
before('loading page', async () => {
|
|
167
120
|
const errorOnGo = await DSTabsCO.basicSmallURL.go();
|
|
@@ -235,16 +188,4 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
235
188
|
await expect(snapshot).toEqual(0);
|
|
236
189
|
});
|
|
237
190
|
});
|
|
238
|
-
describe('PUI-15413 - Tabs:: Content visibility in tab after disabled tab -Visual', () => {
|
|
239
|
-
before('loading page', async () => {
|
|
240
|
-
const errorOnGo = await DSTabsCO.contentVisibility.go();
|
|
241
|
-
if (errorOnGo) throw errorOnGo;
|
|
242
|
-
});
|
|
243
|
-
it('01: The content of the tab following the disabled tab should be displayed when selected', async () => {
|
|
244
|
-
await browser.eyesOpen();
|
|
245
|
-
await (await DSTabsCO.getTab(1)).waitForDisplayed();
|
|
246
|
-
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('content-visibility'));
|
|
247
|
-
await expect(snapshot).toEqual(0);
|
|
248
|
-
});
|
|
249
|
-
});
|
|
250
191
|
}
|
package/ds-tabs/DSTabsCO.js
CHANGED
|
@@ -58,6 +58,8 @@ export default class DSTabsCO extends PageObject {
|
|
|
58
58
|
|
|
59
59
|
static onlyActiveContent = new Urlbuilder(PATH_E2E_TABS, 'only-active-content-test');
|
|
60
60
|
|
|
61
|
+
static allTabsDisabled = new Urlbuilder(PATH_E2E_TABS, 'all-tabs-disabled');
|
|
62
|
+
|
|
61
63
|
static getUrl(component = 'basic') {
|
|
62
64
|
return PageObject.getUrl(PATH_E2E_TABS, component);
|
|
63
65
|
}
|
|
@@ -14,10 +14,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
14
14
|
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-aria-disabled-focused-mouse'));
|
|
15
15
|
await expect(snapshot).toEqual(0);
|
|
16
16
|
});
|
|
17
|
-
it('02: aria-disabled tab should be focused and content not displayed -
|
|
17
|
+
it('02: aria-disabled tab should be focused and content not displayed - ArrowRight + Enter', async () => {
|
|
18
18
|
const tab1 = await DSTabsCO.getTab(1);
|
|
19
19
|
await tab1.click();
|
|
20
|
-
await browser.keys(Key.
|
|
20
|
+
await browser.keys(Key.ArrowRight);
|
|
21
21
|
await browser.keys(Key.Enter);
|
|
22
22
|
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-aria-disabled-focused-keyboard-nav'));
|
|
23
23
|
await expect(snapshot).toEqual(0);
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import DSTabsCO from '../DSTabsCO';
|
|
3
|
+
import { axeCoreCheck } from '../../helpers';
|
|
4
|
+
|
|
5
|
+
if (
|
|
6
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
7
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
8
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
9
|
+
browser.capabilities.browserName === 'Chrome'
|
|
10
|
+
) {
|
|
11
|
+
describe('PUI-12096 - Tabs: Disabled - AxeCore', () => {
|
|
12
|
+
before('loading page', async () => {
|
|
13
|
+
const errorOnGo = await DSTabsCO.disabledURL.go();
|
|
14
|
+
if (errorOnGo) throw errorOnGo;
|
|
15
|
+
});
|
|
16
|
+
it('should have disabled tabs and pass axe-core scan', async () => {
|
|
17
|
+
await (await DSTabsCO.getTabsList()).waitForDisplayed();
|
|
18
|
+
const result = await axeCoreCheck();
|
|
19
|
+
expect(result.length).toBe(0);
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/* eslint-disable no-plusplus */
|
|
2
|
+
/* eslint-disable max-lines */
|
|
3
|
+
import DSTabsCO from '../DSTabsCO';
|
|
4
|
+
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-5283 - Disabled tab', () => {
|
|
7
|
+
before('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSTabsCO.disabledURL.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
});
|
|
11
|
+
it('should open correctly tab', async () => {
|
|
12
|
+
const tab = await DSTabsCO.getTab(1);
|
|
13
|
+
await expect(tab).toBeDisplayed();
|
|
14
|
+
});
|
|
15
|
+
it('should select tab 2 correctly', async () => {
|
|
16
|
+
await (await DSTabsCO.getTab(2)).click();
|
|
17
|
+
const tabSelected = await (await DSTabsCO.getTab(2)).getAttribute('aria-selected');
|
|
18
|
+
await expect(tabSelected).toBe('true');
|
|
19
|
+
});
|
|
20
|
+
it('should not select tab 3 because its disabled', async () => {
|
|
21
|
+
await (await DSTabsCO.getTab(3)).click();
|
|
22
|
+
const tabSelected = await (await DSTabsCO.getTab(3)).getAttribute('aria-selected');
|
|
23
|
+
const tabDisabled = await (await DSTabsCO.getTab(3)).getAttribute('aria-disabled');
|
|
24
|
+
await expect(tabDisabled).toBe('true');
|
|
25
|
+
await expect(tabSelected).toBe('false');
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* eslint-disable no-plusplus */
|
|
2
|
+
/* eslint-disable max-lines */
|
|
3
|
+
import { Key } from 'webdriverio';
|
|
4
|
+
import DSTabsCO from '../DSTabsCO';
|
|
5
|
+
import { mouseOver } from '../../helpers';
|
|
6
|
+
|
|
7
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
8
|
+
describe('PUI-15413 - Tabs:: Content visibility in tab after disabled tab -Visual', () => {
|
|
9
|
+
before('loading page', async () => {
|
|
10
|
+
const errorOnGo = await DSTabsCO.contentVisibility.go();
|
|
11
|
+
if (errorOnGo) throw errorOnGo;
|
|
12
|
+
});
|
|
13
|
+
it('01: The content of the tab following the disabled tab should be displayed when selected', async () => {
|
|
14
|
+
await browser.eyesOpen();
|
|
15
|
+
await (await DSTabsCO.getTab(1)).waitForDisplayed();
|
|
16
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('content-visibility'));
|
|
17
|
+
await expect(snapshot).toEqual(0);
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
describe('PUI-5784 - Tabs, Focus state of the tabs - Visual Test', () => {
|
|
21
|
+
before('loading page', async () => {
|
|
22
|
+
const errorOnGo = await DSTabsCO.disabledURL.go();
|
|
23
|
+
if (errorOnGo) throw errorOnGo;
|
|
24
|
+
});
|
|
25
|
+
it('should display first tab selected', async () => {
|
|
26
|
+
await (await DSTabsCO.getTabsList()).waitForDisplayed();
|
|
27
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-selected'));
|
|
28
|
+
await expect(snapshot).toEqual(0);
|
|
29
|
+
});
|
|
30
|
+
it('should display first tab selected and focused', async () => {
|
|
31
|
+
await browser.keys(Key.Tab);
|
|
32
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-selected-and-focused'));
|
|
33
|
+
await expect(snapshot).toEqual(0);
|
|
34
|
+
});
|
|
35
|
+
it('should display second tab focused [keyboard focus]', async () => {
|
|
36
|
+
await browser.keys(Key.ArrowRight);
|
|
37
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-focused'));
|
|
38
|
+
await expect(snapshot).toEqual(0);
|
|
39
|
+
});
|
|
40
|
+
it('should display fourth tab focused [Hover]', async () => {
|
|
41
|
+
const fourthTab = await DSTabsCO.getTab(4);
|
|
42
|
+
await fourthTab.click({ y: 50 }); // click outside tab
|
|
43
|
+
await mouseOver(fourthTab);
|
|
44
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-hovered'));
|
|
45
|
+
await expect(snapshot).toEqual(0);
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
describe('PUI-17878 - Tabs:: All tabs disabled -Visual', () => {
|
|
49
|
+
before('loading page', async () => {
|
|
50
|
+
const errorOnGo = await DSTabsCO.allTabsDisabled.go();
|
|
51
|
+
if (errorOnGo) throw errorOnGo;
|
|
52
|
+
});
|
|
53
|
+
it('01: should display all tabs in disabled state', async () => {
|
|
54
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('all-tabs-disabled'));
|
|
55
|
+
await expect(snapshot).toEqual(0);
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import DSTabsCO from '../DSTabsCO';
|
|
3
|
+
import { axeCoreCheck } from '../../helpers';
|
|
4
|
+
|
|
5
|
+
if (
|
|
6
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
7
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
8
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
9
|
+
browser.capabilities.browserName === 'Chrome'
|
|
10
|
+
) {
|
|
11
|
+
describe('PUI-12090 - Tabs: Nested -AxeCore', () => {
|
|
12
|
+
before('loading page', async () => {
|
|
13
|
+
const errorOnGo = await DSTabsCO.nestedURL.go();
|
|
14
|
+
if (errorOnGo) throw errorOnGo;
|
|
15
|
+
});
|
|
16
|
+
it('01:should have nested tabs and pass axe-core scan', async () => {
|
|
17
|
+
const subtab3 = await DSTabsCO.getSubTabsByIndex(2);
|
|
18
|
+
await subtab3.click();
|
|
19
|
+
const result = await axeCoreCheck();
|
|
20
|
+
expect(result.length).toBe(0);
|
|
21
|
+
});
|
|
22
|
+
it('02: should change from parent tab and pass axe-core scan', async () => {
|
|
23
|
+
const tab1 = await DSTabsCO.getTab(1);
|
|
24
|
+
await tab1.click();
|
|
25
|
+
const subtab3 = await DSTabsCO.getSubTabsByIndex(2);
|
|
26
|
+
await subtab3.click();
|
|
27
|
+
const result = await axeCoreCheck();
|
|
28
|
+
expect(result.length).toBe(0);
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* eslint-disable no-plusplus */
|
|
2
|
+
/* eslint-disable max-lines */
|
|
3
|
+
import { Key } from 'webdriverio';
|
|
4
|
+
import DSTabsCO from '../DSTabsCO';
|
|
5
|
+
|
|
6
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
7
|
+
describe('PUI-5392 - Arrow key behavior', () => {
|
|
8
|
+
before('loading page', async () => {
|
|
9
|
+
const errorOnGo = await DSTabsCO.nestedURL.go();
|
|
10
|
+
if (errorOnGo) throw errorOnGo;
|
|
11
|
+
});
|
|
12
|
+
it('should focus last subtab', async () => {
|
|
13
|
+
await (await DSTabsCO.getTab(1)).click();
|
|
14
|
+
await browser.keys(Key.ArrowRight);
|
|
15
|
+
await browser.keys(Key.ArrowDown);
|
|
16
|
+
await browser.keys(Key.ArrowRight);
|
|
17
|
+
await browser.keys(Key.Enter);
|
|
18
|
+
const subTabSelected = await (await DSTabsCO.getSubtab(2)).getAttribute('aria-selected');
|
|
19
|
+
await expect(subTabSelected).toBe('true');
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import DSTabsCO from '../DSTabsCO';
|
|
4
|
+
import { mouseOver } from '../../helpers';
|
|
5
|
+
|
|
6
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
7
|
+
describe('PUI-8069 - Tabs, nested', () => {
|
|
8
|
+
before('loading page', async () => {
|
|
9
|
+
const errorOnGo = await DSTabsCO.nestedURL.go();
|
|
10
|
+
if (errorOnGo) throw errorOnGo;
|
|
11
|
+
});
|
|
12
|
+
it('should display nested tabs default', async () => {
|
|
13
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-nested-default'));
|
|
14
|
+
await expect(snapshot).toEqual(0);
|
|
15
|
+
});
|
|
16
|
+
it('should display nested tabs one focused and selected one hover', async () => {
|
|
17
|
+
const tab1 = await DSTabsCO.getSubTabsByIndex(0);
|
|
18
|
+
await tab1.click();
|
|
19
|
+
const tab3 = await DSTabsCO.getSubTabsByIndex(2);
|
|
20
|
+
await mouseOver(tab3);
|
|
21
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-nested-onefocus-onehover'));
|
|
22
|
+
await expect(snapshot).toEqual(0);
|
|
23
|
+
});
|
|
24
|
+
it('should display nested tabs one focused and one selected', async () => {
|
|
25
|
+
await browser.keys(Key.ArrowRight);
|
|
26
|
+
const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-nested-onefocus-oneselected'));
|
|
27
|
+
await expect(snapshot).toEqual(0);
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
}
|
|
@@ -35,6 +35,34 @@ if (
|
|
|
35
35
|
await expect(tabPanel).toBe('tab panel data');
|
|
36
36
|
});
|
|
37
37
|
});
|
|
38
|
+
describe('PUI-15144 - Tabs, to receive aria-label -Func', () => {
|
|
39
|
+
before('loading page', async () => {
|
|
40
|
+
const errorOnGo = await DSTabsCO.nestedURL.go();
|
|
41
|
+
if (errorOnGo) throw errorOnGo;
|
|
42
|
+
});
|
|
43
|
+
it('01: should hve custom aria-labels for each tab', async () => {
|
|
44
|
+
const firstTab = await DSTabsCO.getTabsByIndex(0);
|
|
45
|
+
const thirdTab = await DSTabsCO.getTabsByIndex(2);
|
|
46
|
+
const lastTab = await DSTabsCO.getTabsByIndex(3);
|
|
47
|
+
const firstTabAriaLabel = await firstTab.getAttribute('aria-label');
|
|
48
|
+
const thirdTabAriaLabel = await thirdTab.getAttribute('aria-label');
|
|
49
|
+
const lastTabAriaLabel = await lastTab.getAttribute('aria-label');
|
|
50
|
+
await expect(firstTabAriaLabel).toEqual('Fields sent arialabel');
|
|
51
|
+
await expect(thirdTabAriaLabel).toEqual('Lender initiated arialabel');
|
|
52
|
+
await expect(lastTabAriaLabel).toEqual('Required docs arialabel');
|
|
53
|
+
});
|
|
54
|
+
it('02: should have custom aria-labels for each subtab', async () => {
|
|
55
|
+
const firstTab = await DSTabsCO.getSubTabsByIndex(0);
|
|
56
|
+
const thirdTab = await DSTabsCO.getSubTabsByIndex(1);
|
|
57
|
+
const lastTab = await DSTabsCO.getSubTabsByIndex(2);
|
|
58
|
+
const firstTabAriaLabel = await firstTab.getAttribute('aria-label');
|
|
59
|
+
const thirdTabAriaLabel = await thirdTab.getAttribute('aria-label');
|
|
60
|
+
const lastTabAriaLabel = await lastTab.getAttribute('aria-label');
|
|
61
|
+
await expect(firstTabAriaLabel).toEqual('Required arialabel');
|
|
62
|
+
await expect(thirdTabAriaLabel).toEqual('Negotiated arialabel');
|
|
63
|
+
await expect(lastTabAriaLabel).toEqual('Failed arialabel');
|
|
64
|
+
});
|
|
65
|
+
});
|
|
38
66
|
|
|
39
67
|
// ====================================================================================
|
|
40
68
|
// DEPRECATED TESTS - Chevron slots no longer exist (migrated to horizontal scrollbar)
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/* eslint-disable max-lines */
|
|
2
2
|
import { Key } from 'webdriverio';
|
|
3
3
|
import DSTabsCO from '../DSTabsCO';
|
|
4
|
+
import LeftNavCO from '../../ds-leftnavigation/LeftNavigationCO';
|
|
4
5
|
|
|
5
6
|
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
7
|
describe('PUI-17823 - Tabs carousel with horizontal scrollbar - Mouse navigation', () => {
|
|
@@ -77,7 +78,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
77
78
|
|
|
78
79
|
describe('Tabs carousel with horizontal scrollbar - Keyboard navigation', () => {
|
|
79
80
|
before('loading page', async () => {
|
|
80
|
-
const errorOnGo = await DSTabsCO.
|
|
81
|
+
const errorOnGo = await DSTabsCO.integratedCarouselFull.go();
|
|
81
82
|
if (errorOnGo) throw errorOnGo;
|
|
82
83
|
});
|
|
83
84
|
|
|
@@ -90,10 +91,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
90
91
|
|
|
91
92
|
it('02: should focus the first tab using Tab key', async () => {
|
|
92
93
|
// Step 2: Press Tab to focus on the tab list
|
|
94
|
+
const footerBtn = await LeftNavCO.footerBtn();
|
|
93
95
|
const firstTab = await DSTabsCO.getTab(1);
|
|
94
|
-
await
|
|
96
|
+
await footerBtn.click();
|
|
95
97
|
await browser.keys(Key.Tab);
|
|
96
|
-
await browser.keys([Key.Shift, Key.Tab]);
|
|
97
98
|
// Step 3: Verify the first tab is focused
|
|
98
99
|
await expect(firstTab).toBeFocused();
|
|
99
100
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "dimsum-e2e-tests",
|
|
4
|
-
"version": "3.60.0-next.
|
|
4
|
+
"version": "3.60.0-next.19",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elliemae/ds-legacy-button": "1.0.16",
|
|
@@ -41,155 +41,155 @@
|
|
|
41
41
|
"@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
|
|
42
42
|
"@elliemae/ds-legacy-zipcode-search": "1.0.16",
|
|
43
43
|
"@elliemae/ds-legacy-zoom": "1.0.16",
|
|
44
|
-
"@elliemae/ds-accessibility": "3.60.0-next.
|
|
45
|
-
"@elliemae/ds-accordion": "3.60.0-next.
|
|
46
|
-
"@elliemae/ds-app-picker": "3.60.0-next.
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-banner": "3.60.0-next.
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-card-
|
|
54
|
-
"@elliemae/ds-card-
|
|
55
|
-
"@elliemae/ds-card": "3.60.0-next.
|
|
56
|
-
"@elliemae/ds-card-v2
|
|
57
|
-
"@elliemae/ds-card-v2": "3.60.0-next.
|
|
58
|
-
"@elliemae/ds-card-v2-group": "3.60.0-next.
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-
|
|
61
|
-
"@elliemae/ds-
|
|
62
|
-
"@elliemae/ds-chat-card": "3.60.0-next.
|
|
63
|
-
"@elliemae/ds-
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-container-header": "3.60.0-next.
|
|
66
|
-
"@elliemae/ds-chat-empty-state": "3.60.0-next.
|
|
67
|
-
"@elliemae/ds-chat-floating-button": "3.60.0-next.
|
|
68
|
-
"@elliemae/ds-chat-sidebar": "3.60.0-next.
|
|
69
|
-
"@elliemae/ds-chat-
|
|
70
|
-
"@elliemae/ds-chat-message
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-controlled-form": "3.60.0-next.
|
|
78
|
-
"@elliemae/ds-csv-converter": "3.60.0-next.
|
|
79
|
-
"@elliemae/ds-data-table": "3.60.0-next.
|
|
80
|
-
"@elliemae/ds-data-table-action-cell": "3.60.0-next.
|
|
81
|
-
"@elliemae/ds-data-table-cell
|
|
82
|
-
"@elliemae/ds-data-table-
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-
|
|
85
|
-
"@elliemae/ds-data-table-cell": "3.60.0-next.
|
|
86
|
-
"@elliemae/ds-data-table-
|
|
87
|
-
"@elliemae/ds-data-table-single-select-cell": "3.60.0-next.
|
|
88
|
-
"@elliemae/ds-dataviz": "3.60.0-next.
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-form-combobox": "3.60.0-next.
|
|
100
|
-
"@elliemae/ds-form-date-time-picker": "3.60.0-next.
|
|
101
|
-
"@elliemae/ds-form-
|
|
102
|
-
"@elliemae/ds-form-
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-input-textarea": "3.60.0-next.
|
|
105
|
-
"@elliemae/ds-form-
|
|
106
|
-
"@elliemae/ds-form-layout-
|
|
107
|
-
"@elliemae/ds-form-layout-
|
|
108
|
-
"@elliemae/ds-form-layout-
|
|
109
|
-
"@elliemae/ds-form-
|
|
110
|
-
"@elliemae/ds-form-
|
|
111
|
-
"@elliemae/ds-form-radio": "3.60.0-next.
|
|
112
|
-
"@elliemae/ds-form-
|
|
113
|
-
"@elliemae/ds-form-single-combobox": "3.60.0-next.
|
|
114
|
-
"@elliemae/ds-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-hooks-focus-stack": "3.60.0-next.
|
|
118
|
-
"@elliemae/ds-hooks-
|
|
119
|
-
"@elliemae/ds-hooks-fontsize-
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-
|
|
122
|
-
"@elliemae/ds-hooks-
|
|
123
|
-
"@elliemae/ds-hooks-
|
|
124
|
-
"@elliemae/ds-hooks-
|
|
125
|
-
"@elliemae/ds-hooks-on-
|
|
126
|
-
"@elliemae/ds-hooks-
|
|
127
|
-
"@elliemae/ds-icon": "3.60.0-next.
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-imagelibrarymodal": "3.60.0-next.
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-left-navigation": "3.60.0-next.
|
|
133
|
-
"@elliemae/ds-
|
|
134
|
-
"@elliemae/ds-
|
|
135
|
-
"@elliemae/ds-
|
|
136
|
-
"@elliemae/ds-menu-items": "3.60.0-next.
|
|
137
|
-
"@elliemae/ds-menu-items-action": "3.60.0-next.
|
|
138
|
-
"@elliemae/ds-menu-items-commons": "3.60.0-next.
|
|
139
|
-
"@elliemae/ds-menu-items-
|
|
140
|
-
"@elliemae/ds-menu-items-
|
|
141
|
-
"@elliemae/ds-menu-items-separator": "3.60.0-next.
|
|
142
|
-
"@elliemae/ds-menu-items-
|
|
143
|
-
"@elliemae/ds-menu-items-
|
|
144
|
-
"@elliemae/ds-menu-
|
|
145
|
-
"@elliemae/ds-menu-
|
|
146
|
-
"@elliemae/ds-menu-items-submenu": "3.60.0-next.
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-overlay": "3.60.0-next.
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-
|
|
152
|
-
"@elliemae/ds-page-header-v1": "3.60.0-next.
|
|
153
|
-
"@elliemae/ds-
|
|
154
|
-
"@elliemae/ds-page-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-pills-v2": "3.60.0-next.
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-query-builder": "3.60.0-next.
|
|
161
|
-
"@elliemae/ds-read-more": "3.60.0-next.
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-scrollable-container": "3.60.0-next.
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-shared": "3.60.0-next.
|
|
168
|
-
"@elliemae/ds-side-panel": "3.60.0-next.
|
|
169
|
-
"@elliemae/ds-shuttle-v2": "3.60.0-next.
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-stepper": "3.60.0-next.
|
|
175
|
-
"@elliemae/ds-svg": "3.60.0-next.
|
|
176
|
-
"@elliemae/ds-system": "3.60.0-next.
|
|
177
|
-
"@elliemae/ds-
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-toolbar-v2": "3.60.0-next.
|
|
182
|
-
"@elliemae/ds-tooltip-v3": "3.60.0-next.
|
|
183
|
-
"@elliemae/ds-transition": "3.60.0-next.
|
|
184
|
-
"@elliemae/ds-tree-model": "3.60.0-next.
|
|
185
|
-
"@elliemae/ds-treeview": "3.60.0-next.
|
|
186
|
-
"@elliemae/ds-truncated-
|
|
187
|
-
"@elliemae/ds-truncated-
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-
|
|
191
|
-
"@elliemae/ds-
|
|
192
|
-
"@elliemae/ds-
|
|
44
|
+
"@elliemae/ds-accessibility": "3.60.0-next.19",
|
|
45
|
+
"@elliemae/ds-accordion": "3.60.0-next.19",
|
|
46
|
+
"@elliemae/ds-app-picker": "3.60.0-next.19",
|
|
47
|
+
"@elliemae/ds-backdrop": "3.60.0-next.19",
|
|
48
|
+
"@elliemae/ds-banner": "3.60.0-next.19",
|
|
49
|
+
"@elliemae/ds-basic": "3.60.0-next.19",
|
|
50
|
+
"@elliemae/ds-breadcrumb": "3.60.0-next.19",
|
|
51
|
+
"@elliemae/ds-button-v2": "3.60.0-next.19",
|
|
52
|
+
"@elliemae/ds-card": "3.60.0-next.19",
|
|
53
|
+
"@elliemae/ds-card-navigation": "3.60.0-next.19",
|
|
54
|
+
"@elliemae/ds-card-v1": "3.60.0-next.19",
|
|
55
|
+
"@elliemae/ds-card-v1-detail": "3.60.0-next.19",
|
|
56
|
+
"@elliemae/ds-card-v2": "3.60.0-next.19",
|
|
57
|
+
"@elliemae/ds-card-v2-action-addon": "3.60.0-next.19",
|
|
58
|
+
"@elliemae/ds-card-v2-group": "3.60.0-next.19",
|
|
59
|
+
"@elliemae/ds-card-v3": "3.60.0-next.19",
|
|
60
|
+
"@elliemae/ds-card-v3-poc": "3.60.0-next.19",
|
|
61
|
+
"@elliemae/ds-chat": "3.60.0-next.19",
|
|
62
|
+
"@elliemae/ds-chat-card": "3.60.0-next.19",
|
|
63
|
+
"@elliemae/ds-chat-container": "3.60.0-next.19",
|
|
64
|
+
"@elliemae/ds-chat-bubble": "3.60.0-next.19",
|
|
65
|
+
"@elliemae/ds-chat-container-header": "3.60.0-next.19",
|
|
66
|
+
"@elliemae/ds-chat-empty-state": "3.60.0-next.19",
|
|
67
|
+
"@elliemae/ds-chat-floating-button": "3.60.0-next.19",
|
|
68
|
+
"@elliemae/ds-chat-sidebar": "3.60.0-next.19",
|
|
69
|
+
"@elliemae/ds-chat-message-delimeter": "3.60.0-next.19",
|
|
70
|
+
"@elliemae/ds-chat-system-message": "3.60.0-next.19",
|
|
71
|
+
"@elliemae/ds-chat-tile": "3.60.0-next.19",
|
|
72
|
+
"@elliemae/ds-chip": "3.60.0-next.19",
|
|
73
|
+
"@elliemae/ds-classnames": "3.60.0-next.19",
|
|
74
|
+
"@elliemae/ds-codeeditor": "3.60.0-next.19",
|
|
75
|
+
"@elliemae/ds-circular-progress-indicator": "3.60.0-next.19",
|
|
76
|
+
"@elliemae/ds-comments": "3.60.0-next.19",
|
|
77
|
+
"@elliemae/ds-controlled-form": "3.60.0-next.19",
|
|
78
|
+
"@elliemae/ds-csv-converter": "3.60.0-next.19",
|
|
79
|
+
"@elliemae/ds-data-table": "3.60.0-next.19",
|
|
80
|
+
"@elliemae/ds-data-table-action-cell": "3.60.0-next.19",
|
|
81
|
+
"@elliemae/ds-data-table-cell": "3.60.0-next.19",
|
|
82
|
+
"@elliemae/ds-data-table-cell-header": "3.60.0-next.19",
|
|
83
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.19",
|
|
84
|
+
"@elliemae/ds-data-table-filters": "3.60.0-next.19",
|
|
85
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.19",
|
|
86
|
+
"@elliemae/ds-data-table-expand-cell": "3.60.0-next.19",
|
|
87
|
+
"@elliemae/ds-data-table-single-select-cell": "3.60.0-next.19",
|
|
88
|
+
"@elliemae/ds-dataviz": "3.60.0-next.19",
|
|
89
|
+
"@elliemae/ds-dataviz-pie": "3.60.0-next.19",
|
|
90
|
+
"@elliemae/ds-date-time-picker": "3.60.0-next.19",
|
|
91
|
+
"@elliemae/ds-decision-graph": "3.60.0-next.19",
|
|
92
|
+
"@elliemae/ds-dialog": "3.60.0-next.19",
|
|
93
|
+
"@elliemae/ds-drag-and-drop": "3.60.0-next.19",
|
|
94
|
+
"@elliemae/ds-dropdownmenu-v2": "3.60.0-next.19",
|
|
95
|
+
"@elliemae/ds-dropzone": "3.60.0-next.19",
|
|
96
|
+
"@elliemae/ds-fast-list": "3.60.0-next.19",
|
|
97
|
+
"@elliemae/ds-floating-context": "3.60.0-next.19",
|
|
98
|
+
"@elliemae/ds-form-checkbox": "3.60.0-next.19",
|
|
99
|
+
"@elliemae/ds-form-combobox": "3.60.0-next.19",
|
|
100
|
+
"@elliemae/ds-form-date-time-picker": "3.60.0-next.19",
|
|
101
|
+
"@elliemae/ds-form-date-range-picker": "3.60.0-next.19",
|
|
102
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.19",
|
|
103
|
+
"@elliemae/ds-form-layout-autocomplete": "3.60.0-next.19",
|
|
104
|
+
"@elliemae/ds-form-input-textarea": "3.60.0-next.19",
|
|
105
|
+
"@elliemae/ds-form-input-text": "3.60.0-next.19",
|
|
106
|
+
"@elliemae/ds-form-layout-blocks": "3.60.0-next.19",
|
|
107
|
+
"@elliemae/ds-form-layout-label": "3.60.0-next.19",
|
|
108
|
+
"@elliemae/ds-form-layout-input-group": "3.60.0-next.19",
|
|
109
|
+
"@elliemae/ds-form-native-select": "3.60.0-next.19",
|
|
110
|
+
"@elliemae/ds-form-multi-combobox": "3.60.0-next.19",
|
|
111
|
+
"@elliemae/ds-form-radio": "3.60.0-next.19",
|
|
112
|
+
"@elliemae/ds-form-select": "3.60.0-next.19",
|
|
113
|
+
"@elliemae/ds-form-single-combobox": "3.60.0-next.19",
|
|
114
|
+
"@elliemae/ds-form-toggle": "3.60.0-next.19",
|
|
115
|
+
"@elliemae/ds-global-header": "3.60.0-next.19",
|
|
116
|
+
"@elliemae/ds-grid": "3.60.0-next.19",
|
|
117
|
+
"@elliemae/ds-hooks-focus-stack": "3.60.0-next.19",
|
|
118
|
+
"@elliemae/ds-hooks-focus-trap": "3.60.0-next.19",
|
|
119
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.19",
|
|
120
|
+
"@elliemae/ds-hooks-fontsize-media": "3.60.0-next.19",
|
|
121
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.19",
|
|
122
|
+
"@elliemae/ds-hooks-is-mobile": "3.60.0-next.19",
|
|
123
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.19",
|
|
124
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.19",
|
|
125
|
+
"@elliemae/ds-hooks-on-blur-out": "3.60.0-next.19",
|
|
126
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.19",
|
|
127
|
+
"@elliemae/ds-icon": "3.60.0-next.19",
|
|
128
|
+
"@elliemae/ds-image": "3.60.0-next.19",
|
|
129
|
+
"@elliemae/ds-icons": "3.60.0-next.19",
|
|
130
|
+
"@elliemae/ds-imagelibrarymodal": "3.60.0-next.19",
|
|
131
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.60.0-next.19",
|
|
132
|
+
"@elliemae/ds-left-navigation": "3.60.0-next.19",
|
|
133
|
+
"@elliemae/ds-menu-button": "3.60.0-next.19",
|
|
134
|
+
"@elliemae/ds-layout-provider": "3.60.0-next.19",
|
|
135
|
+
"@elliemae/ds-loading-indicator": "3.60.0-next.19",
|
|
136
|
+
"@elliemae/ds-menu-items": "3.60.0-next.19",
|
|
137
|
+
"@elliemae/ds-menu-items-action": "3.60.0-next.19",
|
|
138
|
+
"@elliemae/ds-menu-items-commons": "3.60.0-next.19",
|
|
139
|
+
"@elliemae/ds-menu-items-multi": "3.60.0-next.19",
|
|
140
|
+
"@elliemae/ds-menu-items-section": "3.60.0-next.19",
|
|
141
|
+
"@elliemae/ds-menu-items-separator": "3.60.0-next.19",
|
|
142
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.19",
|
|
143
|
+
"@elliemae/ds-menu-items-skeleton": "3.60.0-next.19",
|
|
144
|
+
"@elliemae/ds-menu-items-single": "3.60.0-next.19",
|
|
145
|
+
"@elliemae/ds-menu-tree-item": "3.60.0-next.19",
|
|
146
|
+
"@elliemae/ds-menu-items-submenu": "3.60.0-next.19",
|
|
147
|
+
"@elliemae/ds-mobile": "3.60.0-next.19",
|
|
148
|
+
"@elliemae/ds-modal-slide": "3.60.0-next.19",
|
|
149
|
+
"@elliemae/ds-overlay": "3.60.0-next.19",
|
|
150
|
+
"@elliemae/ds-page-header": "3.60.0-next.19",
|
|
151
|
+
"@elliemae/ds-notification-badge": "3.60.0-next.19",
|
|
152
|
+
"@elliemae/ds-page-header-v1": "3.60.0-next.19",
|
|
153
|
+
"@elliemae/ds-page-header-v2": "3.60.0-next.19",
|
|
154
|
+
"@elliemae/ds-page-layout": "3.60.0-next.19",
|
|
155
|
+
"@elliemae/ds-pagination": "3.60.0-next.19",
|
|
156
|
+
"@elliemae/ds-pills-v2": "3.60.0-next.19",
|
|
157
|
+
"@elliemae/ds-popperjs": "3.60.0-next.19",
|
|
158
|
+
"@elliemae/ds-portal": "3.60.0-next.19",
|
|
159
|
+
"@elliemae/ds-progress-indicator": "3.60.0-next.19",
|
|
160
|
+
"@elliemae/ds-query-builder": "3.60.0-next.19",
|
|
161
|
+
"@elliemae/ds-read-more": "3.60.0-next.19",
|
|
162
|
+
"@elliemae/ds-ribbon": "3.60.0-next.19",
|
|
163
|
+
"@elliemae/ds-resizeable-container": "3.60.0-next.19",
|
|
164
|
+
"@elliemae/ds-scrollable-container": "3.60.0-next.19",
|
|
165
|
+
"@elliemae/ds-separator": "3.60.0-next.19",
|
|
166
|
+
"@elliemae/ds-props-helpers": "3.60.0-next.19",
|
|
167
|
+
"@elliemae/ds-shared": "3.60.0-next.19",
|
|
168
|
+
"@elliemae/ds-side-panel": "3.60.0-next.19",
|
|
169
|
+
"@elliemae/ds-shuttle-v2": "3.60.0-next.19",
|
|
170
|
+
"@elliemae/ds-skeleton": "3.60.0-next.19",
|
|
171
|
+
"@elliemae/ds-side-panel-header": "3.60.0-next.19",
|
|
172
|
+
"@elliemae/ds-slider-v2": "3.60.0-next.19",
|
|
173
|
+
"@elliemae/ds-square-indicator": "3.60.0-next.19",
|
|
174
|
+
"@elliemae/ds-stepper": "3.60.0-next.19",
|
|
175
|
+
"@elliemae/ds-svg": "3.60.0-next.19",
|
|
176
|
+
"@elliemae/ds-system": "3.60.0-next.19",
|
|
177
|
+
"@elliemae/ds-tabs": "3.60.0-next.19",
|
|
178
|
+
"@elliemae/ds-test-utils": "3.60.0-next.19",
|
|
179
|
+
"@elliemae/ds-toast": "3.60.0-next.19",
|
|
180
|
+
"@elliemae/ds-toolbar-v1": "3.60.0-next.19",
|
|
181
|
+
"@elliemae/ds-toolbar-v2": "3.60.0-next.19",
|
|
182
|
+
"@elliemae/ds-tooltip-v3": "3.60.0-next.19",
|
|
183
|
+
"@elliemae/ds-transition": "3.60.0-next.19",
|
|
184
|
+
"@elliemae/ds-tree-model": "3.60.0-next.19",
|
|
185
|
+
"@elliemae/ds-treeview": "3.60.0-next.19",
|
|
186
|
+
"@elliemae/ds-truncated-expandable-text": "3.60.0-next.19",
|
|
187
|
+
"@elliemae/ds-truncated-tooltip-text": "3.60.0-next.19",
|
|
188
|
+
"@elliemae/ds-typescript-helpers": "3.60.0-next.19",
|
|
189
|
+
"@elliemae/ds-typography": "3.60.0-next.19",
|
|
190
|
+
"@elliemae/ds-virtual-list": "3.60.0-next.19",
|
|
191
|
+
"@elliemae/ds-wizard": "3.60.0-next.19",
|
|
192
|
+
"@elliemae/ds-zustand-helpers": "3.60.0-next.19"
|
|
193
193
|
},
|
|
194
194
|
"publishConfig": {
|
|
195
195
|
"access": "public"
|