dimsum-e2e-tests 3.34.0-next.2 → 3.34.0-next.3
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 +12 -0
- package/ds-data-table-async/basic/DSDataTable.basic.func.spec.js +15 -3
- package/ds-data-table-async/components/HeaderCO.js +2 -0
- package/ds-data-table-async/filters/DSDataTable.filters.keybooard-nav.func.spec.js +7 -0
- package/ds-hooks/useFocusStack/DSHook.useFocusStack.skipped.js +57 -0
- package/ds-hooks/useFocusStack/useFocusStackCO.js +22 -0
- package/ds-hooks/useFocusTrap/UseFocusTrap.func.spec.js +36 -0
- package/ds-hooks/useFocusTrap/UseFocusTrapCO.js +8 -0
- package/ds-hooks/useIsMobile/UseIsMobile.func.spec.js +26 -0
- package/ds-hooks/useIsMobile/UseIsMobileCO.js +12 -0
- package/ds-modal-slide/ModalSlideCO.js +1 -1
- package/ds-modal-slide/basic/ModalSlide.basic.axe-core.func.spec.js +21 -24
- package/ds-side-panel/DSSidePanel.func.spec.js +27 -0
- package/ds-side-panel/DSSidePanelCO.js +3 -1
- package/package.json +120 -120
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.34.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v3.34.0-next.2...v3.34.0-next.3) (2024-05-03)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- ds-sidepanel:: e2e tests [PUI-12943](https://jira.elliemae.io/browse/PUI-12943) ([#6791](https://git.elliemae.io/platform-ui/dimsum/issues/6791)) ([efa6614](https://git.elliemae.io/platform-ui/dimsum/commit/efa66144cc29d98c61509c812d85c210fd66a5dd))
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- dimsum:: e2e's for dimsum hooks [PUI-12928](https://jira.elliemae.io/browse/PUI-12928) [PUI-12486](https://jira.elliemae.io/browse/PUI-12486) [PUI-12488](https://jira.elliemae.io/browse/PUI-12488) ([#6790](https://git.elliemae.io/platform-ui/dimsum/issues/6790)) ([d5d8d1b](https://git.elliemae.io/platform-ui/dimsum/commit/d5d8d1bb8a96b8ae07f6676277f1eb30fcc3155c))
|
|
15
|
+
- ds-data-table:: fixed e2e [PUI-12307](https://jira.elliemae.io/browse/PUI-12307) ([#6792](https://git.elliemae.io/platform-ui/dimsum/issues/6792)) ([0da0734](https://git.elliemae.io/platform-ui/dimsum/commit/0da0734d6061aaa0148b85330149c92eab230beb))
|
|
16
|
+
- ds-modal-slide:: unskipped basic axe-core test [PUI-13386](https://jira.elliemae.io/browse/PUI-13386) ([#6795](https://git.elliemae.io/platform-ui/dimsum/issues/6795)) ([837e83d](https://git.elliemae.io/platform-ui/dimsum/commit/837e83d7cda49642b3604c71d77ba91149ef9826))
|
|
17
|
+
|
|
6
18
|
## [3.34.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v3.34.0-next.1...v3.34.0-next.2) (2024-05-02)
|
|
7
19
|
|
|
8
20
|
### Features
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/* eslint-disable wdio/no-pause */
|
|
2
2
|
/* eslint-disable max-len */
|
|
3
3
|
/* eslint-disable prettier/prettier */
|
|
4
|
+
import { Key } from 'webdriverio';
|
|
4
5
|
import DSDataTableCO from '../DSDataTableCO';
|
|
5
6
|
import { RowCO, HeaderCO, CellCO } from '../components';
|
|
6
7
|
|
|
@@ -83,12 +84,23 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
83
84
|
});
|
|
84
85
|
it('01: should have defined widths for data-table and column -Func', async () => {
|
|
85
86
|
const datatable = await DSDataTableCO.getDatatableWrapper();
|
|
86
|
-
const header = await HeaderCO.
|
|
87
|
+
const header = await HeaderCO.getHeaderWrapperByIndex(0);
|
|
87
88
|
const headerWidth = await (await header.getCSSProperty('width')).value;
|
|
88
|
-
await expect(headerWidth).toBe('
|
|
89
|
+
await expect(headerWidth).toBe('200px');
|
|
90
|
+
const datatableWidth = await (await datatable.getCSSProperty('width')).value;
|
|
91
|
+
await expect(datatableWidth).toBe('800px');
|
|
92
|
+
});
|
|
93
|
+
it('02: should have controlled widths for columns -Func', async () => {
|
|
94
|
+
await browser.keys(Key.Tab);
|
|
95
|
+
await browser.keys(Key.Return);
|
|
96
|
+
await browser.keys(Key.ArrowRight);
|
|
97
|
+
await browser.keys(Key.Tab);
|
|
98
|
+
const datatable = await DSDataTableCO.getDatatableWrapper();
|
|
99
|
+
const header = await HeaderCO.getHeaderWrapperByIndex(0);
|
|
100
|
+
const headerWidth = await (await header.getCSSProperty('width')).value;
|
|
101
|
+
await expect(headerWidth).toBe('400px');
|
|
89
102
|
const datatableWidth = await (await datatable.getCSSProperty('width')).value;
|
|
90
103
|
await expect(datatableWidth).toBe('800px');
|
|
91
|
-
|
|
92
104
|
});
|
|
93
105
|
});
|
|
94
106
|
}
|
|
@@ -35,6 +35,8 @@ export default class HeaderCO extends PageObject {
|
|
|
35
35
|
|
|
36
36
|
static getWriteAllCheckbox = async () => $('[id="write-all"]');
|
|
37
37
|
|
|
38
|
+
static getHeaderWrapperByIndex = async (index = 0) => $$('[data-testid="ds-data-table-header-cell-wrapper"]')[index];
|
|
39
|
+
|
|
38
40
|
static getResizeHandler = async (index) => $$('[data-testid="column"],[aria-label="Resize column"]')[index];
|
|
39
41
|
|
|
40
42
|
static getFilterBtnByIndex = async (index) => $$('[data-testid="data-table-filter-menu-button"] button')[index];
|
|
@@ -36,5 +36,12 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
36
36
|
const filterMenuTrigger = await FiltersCO.getHeaderCellFilterButtonByHeaderCell(headerCell, 0);
|
|
37
37
|
await expect(filterMenuTrigger).toBeFocused();
|
|
38
38
|
});
|
|
39
|
+
it('04: focus should still con filter btn after close dropdown menu - Tab', async () => {
|
|
40
|
+
await browser.keys(Key.Return);
|
|
41
|
+
await browser.keys(Key.Tab);
|
|
42
|
+
const headerCell = await HeaderCO.getHeaderCellByIndex(2);
|
|
43
|
+
const filterMenuTrigger = await FiltersCO.getHeaderCellFilterButtonByHeaderCell(headerCell, 0);
|
|
44
|
+
await expect(filterMenuTrigger).toBeFocused();
|
|
45
|
+
});
|
|
39
46
|
});
|
|
40
47
|
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* eslint-disable max-len */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import useFocusStackCO from './useFocusStackCO';
|
|
4
|
+
import { tabStops, sendKeyRepeat } from '../../helpers';
|
|
5
|
+
import DSPillsV2CO from '../../ds-pills-v2/DSPillsV2CO';
|
|
6
|
+
import DSButtonV3CO from '../../ds-button-v3/DSButtonV3CO';
|
|
7
|
+
|
|
8
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
9
|
+
// Skipped until 13301 gets fixed. Update testcase
|
|
10
|
+
describe.skip('PUI-13147: UseFocusStack for focus return -Func', () => {
|
|
11
|
+
before(async () => {
|
|
12
|
+
const errorOnGo = await useFocusStackCO.basicURL.go();
|
|
13
|
+
if (errorOnGo) throw errorOnGo;
|
|
14
|
+
});
|
|
15
|
+
it('01: should Tab x5 and have E focused', async () => {
|
|
16
|
+
await tabStops(5);
|
|
17
|
+
const typographys = (await useFocusStackCO.getTypographys()).length;
|
|
18
|
+
const pillE = await DSPillsV2CO.getCloseButtonByIndex(4);
|
|
19
|
+
await expect(typographys).toEqual(5);
|
|
20
|
+
await expect(pillE).toBeFocused();
|
|
21
|
+
});
|
|
22
|
+
it('02: should delete E and return to D', async () => {
|
|
23
|
+
const pillE = await DSPillsV2CO.getCloseButtonByIndex(4);
|
|
24
|
+
await pillE.click();
|
|
25
|
+
const pillD = await DSPillsV2CO.getCloseButtonByIndex(3);
|
|
26
|
+
const typographys = (await useFocusStackCO.getTypographys()).length;
|
|
27
|
+
await expect(typographys).toEqual(4);
|
|
28
|
+
await expect(pillD).toBeFocused();
|
|
29
|
+
});
|
|
30
|
+
it('03: should delete C and D and return to RESET (fallback)', async () => {
|
|
31
|
+
const pillC = await DSPillsV2CO.getCloseButtonByIndex(2);
|
|
32
|
+
await pillC.click();
|
|
33
|
+
const pillD = await DSPillsV2CO.getCloseButtonByIndex(2);
|
|
34
|
+
await pillD.click();
|
|
35
|
+
const typographys = (await useFocusStackCO.getTypographys()).length;
|
|
36
|
+
const reset = await DSButtonV3CO.getButtonByIndex(0);
|
|
37
|
+
await expect(typographys).toEqual(2);
|
|
38
|
+
await expect(reset).toBeFocused();
|
|
39
|
+
});
|
|
40
|
+
it.skip('05: should cick RESET and have all items back, then shift+tab x3 and focus E', async () => {
|
|
41
|
+
await browser.keys(Key.Return);
|
|
42
|
+
await sendKeyRepeat([Key.Shift, Key.Tab], 3);
|
|
43
|
+
const typographys = (await useFocusStackCO.getTypographys()).length;
|
|
44
|
+
const pillE = await DSPillsV2CO.getCloseButtonByIndex(4);
|
|
45
|
+
await expect(pillE).toBeFocused();
|
|
46
|
+
await expect(typographys).toEqual(5);
|
|
47
|
+
});
|
|
48
|
+
it.skip('06: should delete E and return to F', async () => {
|
|
49
|
+
const pillE = await DSPillsV2CO.getCloseButtonByIndex(4);
|
|
50
|
+
await pillE.click();
|
|
51
|
+
const pillF = await DSPillsV2CO.getCloseButtonByIndex(5);
|
|
52
|
+
const typographys = (await useFocusStackCO.getTypographys()).length;
|
|
53
|
+
await expect(typographys).toEqual(4);
|
|
54
|
+
await expect(pillF).toBeFocused();
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* eslint-disable import/no-relative-packages */
|
|
2
|
+
import { PATH_E2E_USE_FOCUS_STACK } from '../../../environments/storybook/paths';
|
|
3
|
+
import { PageObject, Urlbuilder, getElementByIndex } from '../../helpers';
|
|
4
|
+
|
|
5
|
+
export default class useFocusStackCO extends PageObject {
|
|
6
|
+
static basicURL = new Urlbuilder(PATH_E2E_USE_FOCUS_STACK, 'basic-test');
|
|
7
|
+
|
|
8
|
+
static async getBtnByIndex(index = 0) {
|
|
9
|
+
return $$('[data-testid="ds-button"]')[index];
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
static async getTypographys() {
|
|
13
|
+
return $$('[data-testid="ds-typography-element"]');
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
static async getTypographysByIndex(index = 0) {
|
|
17
|
+
return $$('[data-testid="ds-typography-element"]')[index];
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// mostly used
|
|
21
|
+
static getInfo = async () => getElementByIndex(this.getH3s, 3);
|
|
22
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* eslint-disable max-len */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import UseFocusTrapCO from './UseFocusTrapCO';
|
|
4
|
+
import DSButtonV3CO from '../../ds-button-v3/DSButtonV3CO';
|
|
5
|
+
|
|
6
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
7
|
+
describe('PUI-12975, useFocusTrap hook -Func', () => {
|
|
8
|
+
before(async () => {
|
|
9
|
+
const errorOnGo = await UseFocusTrapCO.basicTest.go();
|
|
10
|
+
if (errorOnGo) throw errorOnGo;
|
|
11
|
+
});
|
|
12
|
+
it('01: should normally tab to third item', async () => {
|
|
13
|
+
await browser.keys(Key.Tab);
|
|
14
|
+
await browser.keys(Key.Tab);
|
|
15
|
+
await browser.keys(Key.Tab);
|
|
16
|
+
const button = await DSButtonV3CO.getButtonByIndex(2);
|
|
17
|
+
await expect(button).toBeFocused();
|
|
18
|
+
});
|
|
19
|
+
it('02: should tab and cycle back to second item (instead of the fourth)', async () => {
|
|
20
|
+
await browser.keys(Key.Tab);
|
|
21
|
+
const button = await DSButtonV3CO.getButtonByIndex(1);
|
|
22
|
+
await expect(button).toBeFocused();
|
|
23
|
+
});
|
|
24
|
+
it('03: should shif+tab and cycle back to third item (instead of the first)', async () => {
|
|
25
|
+
await browser.keys([Key.Shift, Key.Tab]);
|
|
26
|
+
const button = await DSButtonV3CO.getButtonByIndex(2);
|
|
27
|
+
await expect(button).toBeFocused();
|
|
28
|
+
});
|
|
29
|
+
it('04: should tab x2 and reach the same item (third)', async () => {
|
|
30
|
+
await browser.keys(Key.Tab);
|
|
31
|
+
await browser.keys(Key.Tab);
|
|
32
|
+
const button = await DSButtonV3CO.getButtonByIndex(2);
|
|
33
|
+
await expect(button).toBeFocused();
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* eslint-disable import/no-relative-packages */
|
|
2
|
+
import { PATH_E2E_USE_FOCUS_TRAP } from '../../../environments/storybook/paths';
|
|
3
|
+
import { PageObject, Urlbuilder } from '../../helpers';
|
|
4
|
+
|
|
5
|
+
export default class UseFocusTrapCO extends PageObject {
|
|
6
|
+
// Desktop
|
|
7
|
+
static basicTest = new Urlbuilder(PATH_E2E_USE_FOCUS_TRAP, 'basic-test');
|
|
8
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* eslint-disable max-len */
|
|
2
|
+
import UseIsMobileCO from './UseIsMobileCO';
|
|
3
|
+
|
|
4
|
+
describe('PUI-12971, isMobile hook -Func', () => {
|
|
5
|
+
before(async () => {
|
|
6
|
+
const errorOnGo = await UseIsMobileCO.basicTest.go();
|
|
7
|
+
if (errorOnGo) throw errorOnGo;
|
|
8
|
+
});
|
|
9
|
+
if (!browser.capabilities['ice:options'].isTablet) {
|
|
10
|
+
if (browser.capabilities['ice:options'].isPhone) {
|
|
11
|
+
it('01: should recognize if on mobile or desktop and render text accordingly', async () => {
|
|
12
|
+
const h3 = await UseIsMobileCO.getText();
|
|
13
|
+
await h3.waitForDisplayed();
|
|
14
|
+
const text = await h3.getText();
|
|
15
|
+
await expect(text).toEqual('Mobile View');
|
|
16
|
+
});
|
|
17
|
+
} else {
|
|
18
|
+
it('02: should recognize if on mobile or desktop and render text accordingly', async () => {
|
|
19
|
+
const h3 = await UseIsMobileCO.getText();
|
|
20
|
+
await h3.waitForDisplayed();
|
|
21
|
+
const text = await h3.getText();
|
|
22
|
+
await expect(text).toEqual('Desktop View');
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* eslint-disable import/no-relative-packages */
|
|
2
|
+
import { PATH_E2E_USE_IS_MOBILE } from '../../../environments/storybook/paths';
|
|
3
|
+
import { PageObject, Urlbuilder } from '../../helpers';
|
|
4
|
+
|
|
5
|
+
export default class UseIsMobileCO extends PageObject {
|
|
6
|
+
// Desktop
|
|
7
|
+
static basicTest = new Urlbuilder(PATH_E2E_USE_IS_MOBILE, 'basic-test');
|
|
8
|
+
|
|
9
|
+
static async getText() {
|
|
10
|
+
return $('h3 strong');
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -1,25 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
import ModalSlideCO from '../ModalSlideCO';
|
|
2
|
+
import { axeCoreCheck } from '../../helpers';
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
// expect(result.length).toBe(0);
|
|
23
|
-
// });
|
|
24
|
-
// });
|
|
25
|
-
// }
|
|
4
|
+
if (
|
|
5
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
6
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
7
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
8
|
+
browser.capabilities.browserName === 'Chrome'
|
|
9
|
+
) {
|
|
10
|
+
describe('PUI-12408 - ModalSlide:: basic - AxeCore', () => {
|
|
11
|
+
before(async () => {
|
|
12
|
+
const errorOnGo = await ModalSlideCO.basicURL.go();
|
|
13
|
+
if (errorOnGo) throw errorOnGo;
|
|
14
|
+
});
|
|
15
|
+
it('should pass axe-core test without violations', async () => {
|
|
16
|
+
await browser.eyesOpen();
|
|
17
|
+
await ModalSlideCO.openModalSlide();
|
|
18
|
+
const result = await axeCoreCheck();
|
|
19
|
+
expect(result.length).toBe(0);
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Key } from 'webdriverio';
|
|
2
2
|
import DSSidePanelCO from './DSSidePanelCO';
|
|
3
|
+
import DSButtonV3CO from '../ds-button-v3/DSButtonV3CO';
|
|
3
4
|
|
|
4
5
|
if (!browser.capabilities['ice:options'].isPhone) {
|
|
5
6
|
describe('PUI-3777 - SidePanel, display side panel elements -Func', () => {
|
|
@@ -112,4 +113,30 @@ if (!browser.capabilities['ice:options'].isPhone) {
|
|
|
112
113
|
});
|
|
113
114
|
});
|
|
114
115
|
}
|
|
116
|
+
describe('PUI-12786 - SidePanel, IE Content: TabStops (Keyboard) -Func', () => {
|
|
117
|
+
before('loading page', async () => {
|
|
118
|
+
const errorOnGo = await DSSidePanelCO.contentActionURL.go();
|
|
119
|
+
if (errorOnGo) throw errorOnGo;
|
|
120
|
+
});
|
|
121
|
+
it('01: Should be able tab into content IE', async () => {
|
|
122
|
+
await browser.keys(Key.Tab);
|
|
123
|
+
await browser.keys(Key.Return);
|
|
124
|
+
await browser.keys(Key.Tab);
|
|
125
|
+
await browser.keys(Key.Tab);
|
|
126
|
+
const contentIE = await DSButtonV3CO.getButtonByIndex(1);
|
|
127
|
+
await expect(contentIE).toBeFocused();
|
|
128
|
+
});
|
|
129
|
+
it('02: Should tab to second content IE', async () => {
|
|
130
|
+
await browser.keys(Key.Tab);
|
|
131
|
+
const contentIE2 = await DSButtonV3CO.getButtonByIndex(2);
|
|
132
|
+
await expect(contentIE2).toBeFocused();
|
|
133
|
+
});
|
|
134
|
+
it('03: Should trigger focus trap to cycle back to first sidepanel IE', async () => {
|
|
135
|
+
await browser.keys(Key.Tab);
|
|
136
|
+
await browser.keys(Key.Tab);
|
|
137
|
+
await browser.keys(Key.Tab);
|
|
138
|
+
const sidepanelIE1 = await DSButtonV3CO.getButtonByIndex(0);
|
|
139
|
+
await expect(sidepanelIE1).toBeFocused();
|
|
140
|
+
});
|
|
141
|
+
});
|
|
115
142
|
}
|
|
@@ -6,7 +6,9 @@ export default class DSSidePanelCO extends PageObject {
|
|
|
6
6
|
// Desktop
|
|
7
7
|
static basicURL = new Urlbuilder(PATH_SIDE_PANEL, 'basic');
|
|
8
8
|
|
|
9
|
-
static addtionalActionURL = new Urlbuilder(
|
|
9
|
+
static addtionalActionURL = new Urlbuilder(PATH_E2E_SIDEPANEL, 'additional-action-test');
|
|
10
|
+
|
|
11
|
+
static contentActionURL = new Urlbuilder(PATH_E2E_SIDEPANEL, 'content-action-test');
|
|
10
12
|
|
|
11
13
|
static withoutHeaderFooter = new Urlbuilder(PATH_E2E_SIDEPANEL, 'without-header-footer-test');
|
|
12
14
|
|
package/package.json
CHANGED
|
@@ -1,126 +1,126 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dimsum-e2e-tests",
|
|
3
|
-
"version": "3.34.0-next.
|
|
3
|
+
"version": "3.34.0-next.3",
|
|
4
4
|
"description": "End-to-end tests for dimsum library",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@elliemae/ds-
|
|
7
|
-
"@elliemae/ds-accordion": "3.34.0-next.
|
|
8
|
-
"@elliemae/ds-
|
|
9
|
-
"@elliemae/ds-
|
|
10
|
-
"@elliemae/ds-
|
|
11
|
-
"@elliemae/ds-
|
|
12
|
-
"@elliemae/ds-
|
|
13
|
-
"@elliemae/ds-
|
|
14
|
-
"@elliemae/ds-
|
|
15
|
-
"@elliemae/ds-
|
|
16
|
-
"@elliemae/ds-
|
|
17
|
-
"@elliemae/ds-
|
|
18
|
-
"@elliemae/ds-card-
|
|
19
|
-
"@elliemae/ds-card-
|
|
20
|
-
"@elliemae/ds-
|
|
21
|
-
"@elliemae/ds-
|
|
22
|
-
"@elliemae/ds-
|
|
23
|
-
"@elliemae/ds-
|
|
24
|
-
"@elliemae/ds-
|
|
25
|
-
"@elliemae/ds-
|
|
26
|
-
"@elliemae/ds-
|
|
27
|
-
"@elliemae/ds-
|
|
28
|
-
"@elliemae/ds-
|
|
29
|
-
"@elliemae/ds-
|
|
30
|
-
"@elliemae/ds-
|
|
31
|
-
"@elliemae/ds-
|
|
32
|
-
"@elliemae/ds-
|
|
33
|
-
"@elliemae/ds-
|
|
34
|
-
"@elliemae/ds-
|
|
35
|
-
"@elliemae/ds-
|
|
36
|
-
"@elliemae/ds-
|
|
37
|
-
"@elliemae/ds-date-
|
|
38
|
-
"@elliemae/ds-date-
|
|
39
|
-
"@elliemae/ds-date-
|
|
40
|
-
"@elliemae/ds-
|
|
41
|
-
"@elliemae/ds-
|
|
42
|
-
"@elliemae/ds-dialog": "3.34.0-next.
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-form-date-range-picker": "3.34.0-next.
|
|
50
|
-
"@elliemae/ds-form": "3.34.0-next.
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-
|
|
54
|
-
"@elliemae/ds-
|
|
55
|
-
"@elliemae/ds-
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-
|
|
61
|
-
"@elliemae/ds-
|
|
62
|
-
"@elliemae/ds-
|
|
63
|
-
"@elliemae/ds-
|
|
64
|
-
"@elliemae/ds-
|
|
65
|
-
"@elliemae/ds-
|
|
66
|
-
"@elliemae/ds-
|
|
67
|
-
"@elliemae/ds-
|
|
68
|
-
"@elliemae/ds-
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-number
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-
|
|
80
|
-
"@elliemae/ds-
|
|
81
|
-
"@elliemae/ds-
|
|
82
|
-
"@elliemae/ds-
|
|
83
|
-
"@elliemae/ds-
|
|
84
|
-
"@elliemae/ds-
|
|
85
|
-
"@elliemae/ds-
|
|
86
|
-
"@elliemae/ds-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-shuttle-v2": "3.34.0-next.
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-
|
|
100
|
-
"@elliemae/ds-
|
|
101
|
-
"@elliemae/ds-
|
|
102
|
-
"@elliemae/ds-
|
|
103
|
-
"@elliemae/ds-
|
|
104
|
-
"@elliemae/ds-
|
|
105
|
-
"@elliemae/ds-
|
|
106
|
-
"@elliemae/ds-
|
|
107
|
-
"@elliemae/ds-
|
|
108
|
-
"@elliemae/ds-toolbar": "3.34.0-next.
|
|
109
|
-
"@elliemae/ds-
|
|
110
|
-
"@elliemae/ds-
|
|
111
|
-
"@elliemae/ds-
|
|
112
|
-
"@elliemae/ds-
|
|
113
|
-
"@elliemae/ds-
|
|
114
|
-
"@elliemae/ds-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-
|
|
119
|
-
"@elliemae/ds-
|
|
120
|
-
"@elliemae/ds-
|
|
121
|
-
"@elliemae/ds-
|
|
122
|
-
"@elliemae/ds-
|
|
123
|
-
"@elliemae/ds-
|
|
124
|
-
"@elliemae/ds-
|
|
6
|
+
"@elliemae/ds-banner": "3.34.0-next.3",
|
|
7
|
+
"@elliemae/ds-accordion": "3.34.0-next.3",
|
|
8
|
+
"@elliemae/ds-backdrop": "3.34.0-next.3",
|
|
9
|
+
"@elliemae/ds-breadcrumb": "3.34.0-next.3",
|
|
10
|
+
"@elliemae/ds-button": "3.34.0-next.3",
|
|
11
|
+
"@elliemae/ds-accessibility": "3.34.0-next.3",
|
|
12
|
+
"@elliemae/ds-app-picker": "3.34.0-next.3",
|
|
13
|
+
"@elliemae/ds-card-array": "3.34.0-next.3",
|
|
14
|
+
"@elliemae/ds-card-navigation": "3.34.0-next.3",
|
|
15
|
+
"@elliemae/ds-card-v2": "3.34.0-next.3",
|
|
16
|
+
"@elliemae/ds-card": "3.34.0-next.3",
|
|
17
|
+
"@elliemae/ds-button-v2": "3.34.0-next.3",
|
|
18
|
+
"@elliemae/ds-card-v2-group": "3.34.0-next.3",
|
|
19
|
+
"@elliemae/ds-card-v2-action-addon": "3.34.0-next.3",
|
|
20
|
+
"@elliemae/ds-chat": "3.34.0-next.3",
|
|
21
|
+
"@elliemae/ds-chat-bubble": "3.34.0-next.3",
|
|
22
|
+
"@elliemae/ds-chat-tile": "3.34.0-next.3",
|
|
23
|
+
"@elliemae/ds-basic": "3.34.0-next.3",
|
|
24
|
+
"@elliemae/ds-circular-progress-indicator": "3.34.0-next.3",
|
|
25
|
+
"@elliemae/ds-codeeditor": "3.34.0-next.3",
|
|
26
|
+
"@elliemae/ds-controlled-form": "3.34.0-next.3",
|
|
27
|
+
"@elliemae/ds-chip": "3.34.0-next.3",
|
|
28
|
+
"@elliemae/ds-csv-converter": "3.34.0-next.3",
|
|
29
|
+
"@elliemae/ds-comments": "3.34.0-next.3",
|
|
30
|
+
"@elliemae/ds-data-table": "3.34.0-next.3",
|
|
31
|
+
"@elliemae/ds-data-table-cell-header": "3.34.0-next.3",
|
|
32
|
+
"@elliemae/ds-datagrids": "3.34.0-next.3",
|
|
33
|
+
"@elliemae/ds-dataviz": "3.34.0-next.3",
|
|
34
|
+
"@elliemae/ds-dataviz-pie": "3.34.0-next.3",
|
|
35
|
+
"@elliemae/ds-date-picker": "3.34.0-next.3",
|
|
36
|
+
"@elliemae/ds-date-time-picker": "3.34.0-next.3",
|
|
37
|
+
"@elliemae/ds-date-range-selector": "3.34.0-next.3",
|
|
38
|
+
"@elliemae/ds-date-range-picker": "3.34.0-next.3",
|
|
39
|
+
"@elliemae/ds-date-time-recurrence-picker": "3.34.0-next.3",
|
|
40
|
+
"@elliemae/ds-decision-graph": "3.34.0-next.3",
|
|
41
|
+
"@elliemae/ds-drag-and-drop": "3.34.0-next.3",
|
|
42
|
+
"@elliemae/ds-dialog": "3.34.0-next.3",
|
|
43
|
+
"@elliemae/ds-dropdownmenu": "3.34.0-next.3",
|
|
44
|
+
"@elliemae/ds-dropzone": "3.34.0-next.3",
|
|
45
|
+
"@elliemae/ds-filterbar": "3.34.0-next.3",
|
|
46
|
+
"@elliemae/ds-form": "3.34.0-next.3",
|
|
47
|
+
"@elliemae/ds-form-date-time-picker": "3.34.0-next.3",
|
|
48
|
+
"@elliemae/ds-form-layout-blocks": "3.34.0-next.3",
|
|
49
|
+
"@elliemae/ds-form-date-range-picker": "3.34.0-next.3",
|
|
50
|
+
"@elliemae/ds-form-layout-label": "3.34.0-next.3",
|
|
51
|
+
"@elliemae/ds-fast-list": "3.34.0-next.3",
|
|
52
|
+
"@elliemae/ds-grid": "3.34.0-next.3",
|
|
53
|
+
"@elliemae/ds-header": "3.34.0-next.3",
|
|
54
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.34.0-next.3",
|
|
55
|
+
"@elliemae/ds-hooks-fontsize-media": "3.34.0-next.3",
|
|
56
|
+
"@elliemae/ds-icon": "3.34.0-next.3",
|
|
57
|
+
"@elliemae/ds-image": "3.34.0-next.3",
|
|
58
|
+
"@elliemae/ds-icons": "3.34.0-next.3",
|
|
59
|
+
"@elliemae/ds-imagelibrarymodal": "3.34.0-next.3",
|
|
60
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.34.0-next.3",
|
|
61
|
+
"@elliemae/ds-left-navigation": "3.34.0-next.3",
|
|
62
|
+
"@elliemae/ds-label-value": "3.34.0-next.3",
|
|
63
|
+
"@elliemae/ds-loading-indicator": "3.34.0-next.3",
|
|
64
|
+
"@elliemae/ds-menu": "3.34.0-next.3",
|
|
65
|
+
"@elliemae/ds-menu-items": "3.34.0-next.3",
|
|
66
|
+
"@elliemae/ds-mini-toolbar": "3.34.0-next.3",
|
|
67
|
+
"@elliemae/ds-mobile": "3.34.0-next.3",
|
|
68
|
+
"@elliemae/ds-modal": "3.34.0-next.3",
|
|
69
|
+
"@elliemae/ds-modal-slide": "3.34.0-next.3",
|
|
70
|
+
"@elliemae/ds-page-header": "3.34.0-next.3",
|
|
71
|
+
"@elliemae/ds-notification-badge": "3.34.0-next.3",
|
|
72
|
+
"@elliemae/ds-page-header-v1": "3.34.0-next.3",
|
|
73
|
+
"@elliemae/ds-number-range-field": "3.34.0-next.3",
|
|
74
|
+
"@elliemae/ds-page-header-v2": "3.34.0-next.3",
|
|
75
|
+
"@elliemae/ds-page-layout": "3.34.0-next.3",
|
|
76
|
+
"@elliemae/ds-pagination": "3.34.0-next.3",
|
|
77
|
+
"@elliemae/ds-page-number": "3.34.0-next.3",
|
|
78
|
+
"@elliemae/ds-pills": "3.34.0-next.3",
|
|
79
|
+
"@elliemae/ds-popper": "3.34.0-next.3",
|
|
80
|
+
"@elliemae/ds-popperjs": "3.34.0-next.3",
|
|
81
|
+
"@elliemae/ds-button-group": "3.34.0-next.3",
|
|
82
|
+
"@elliemae/ds-button-v1": "3.34.0-next.3",
|
|
83
|
+
"@elliemae/ds-progress-indicator": "3.34.0-next.3",
|
|
84
|
+
"@elliemae/ds-global-header": "3.34.0-next.3",
|
|
85
|
+
"@elliemae/ds-read-more": "3.34.0-next.3",
|
|
86
|
+
"@elliemae/ds-query-builder": "3.34.0-next.3",
|
|
87
|
+
"@elliemae/ds-resizeable-container": "3.34.0-next.3",
|
|
88
|
+
"@elliemae/ds-ribbon": "3.34.0-next.3",
|
|
89
|
+
"@elliemae/ds-search-field": "3.34.0-next.3",
|
|
90
|
+
"@elliemae/ds-popover": "3.34.0-next.3",
|
|
91
|
+
"@elliemae/ds-separator": "3.34.0-next.3",
|
|
92
|
+
"@elliemae/ds-shuttle": "3.34.0-next.3",
|
|
93
|
+
"@elliemae/ds-side-panel": "3.34.0-next.3",
|
|
94
|
+
"@elliemae/ds-shuttle-v2": "3.34.0-next.3",
|
|
95
|
+
"@elliemae/ds-skeleton": "3.34.0-next.3",
|
|
96
|
+
"@elliemae/ds-slider": "3.34.0-next.3",
|
|
97
|
+
"@elliemae/ds-square-indicator": "3.34.0-next.3",
|
|
98
|
+
"@elliemae/ds-svg": "3.34.0-next.3",
|
|
99
|
+
"@elliemae/ds-stepper": "3.34.0-next.3",
|
|
100
|
+
"@elliemae/ds-tabs": "3.34.0-next.3",
|
|
101
|
+
"@elliemae/ds-test-utils": "3.34.0-next.3",
|
|
102
|
+
"@elliemae/ds-spinner": "3.34.0-next.3",
|
|
103
|
+
"@elliemae/ds-text-wrapper": "3.34.0-next.3",
|
|
104
|
+
"@elliemae/ds-system": "3.34.0-next.3",
|
|
105
|
+
"@elliemae/ds-time-picker": "3.34.0-next.3",
|
|
106
|
+
"@elliemae/ds-toolbar": "3.34.0-next.3",
|
|
107
|
+
"@elliemae/ds-toast": "3.34.0-next.3",
|
|
108
|
+
"@elliemae/ds-toolbar-v2": "3.34.0-next.3",
|
|
109
|
+
"@elliemae/ds-tooltip": "3.34.0-next.3",
|
|
110
|
+
"@elliemae/ds-transition": "3.34.0-next.3",
|
|
111
|
+
"@elliemae/ds-tree-model": "3.34.0-next.3",
|
|
112
|
+
"@elliemae/ds-truncated-expandable-text": "3.34.0-next.3",
|
|
113
|
+
"@elliemae/ds-truncated-tooltip-text": "3.34.0-next.3",
|
|
114
|
+
"@elliemae/ds-treeview": "3.34.0-next.3",
|
|
115
|
+
"@elliemae/ds-typography": "3.34.0-next.3",
|
|
116
|
+
"@elliemae/ds-utilities": "3.34.0-next.3",
|
|
117
|
+
"@elliemae/ds-list-section-header": "3.34.0-next.3",
|
|
118
|
+
"@elliemae/ds-group-box": "3.34.0-next.3",
|
|
119
|
+
"@elliemae/ds-uploader": "3.34.0-next.3",
|
|
120
|
+
"@elliemae/ds-zipcode-search": "3.34.0-next.3",
|
|
121
|
+
"@elliemae/ds-zoom": "3.34.0-next.3",
|
|
122
|
+
"@elliemae/ds-virtual-list": "3.34.0-next.3",
|
|
123
|
+
"@elliemae/ds-wizard": "3.34.0-next.3",
|
|
124
|
+
"@elliemae/ds-wysiwygeditor": "3.34.0-next.3"
|
|
125
125
|
}
|
|
126
126
|
}
|