dimsum-e2e-tests 3.46.2 → 3.48.0
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 +11 -3
- package/ds-data-table-async/dnd/DSDataTable.dnd.func.spec.js +19 -0
- package/ds-data-table-async/more/DSDataTable.headers.visual.spec.js +20 -0
- package/ds-global-header/GlobalHeader.visual.spec.js +1 -1
- package/ds-global-header/GlobalHeaderCO.js +1 -1
- package/ds-leftnavigation/LeftNavigation.visual.spec.js +13 -0
- package/ds-leftnavigation/LeftNavigationCO.js +2 -0
- package/ds-menu-button/DSMenuButtonCO.js +1 -1
- package/ds-menu-button/basic/{DSMenuButton.actionItem.func.spec.js → DSMenuButton.activableMenuItem.func.spec.js} +4 -4
- package/package.json +119 -119
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,19 @@
|
|
|
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.
|
|
6
|
+
## [3.48.0](https://git.elliemae.io/platform-ui/dimsum/compare/v3.46.0-rc.13...v3.48.0) (2024-11-01)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- ds-data-table:: add visual test for header kb navigation [PUI-14737](https://jira.elliemae.io/browse/PUI-14737) ([#7104](https://git.elliemae.io/platform-ui/dimsum/issues/7104)) ([f495be2](https://git.elliemae.io/platform-ui/dimsum/commit/f495be22e4a23a043ce8fd131c52a2bdae9fdbad))
|
|
11
|
+
- ds-left-navigation:: add visual test for hideFooterPipe prop [PUI-14718](https://jira.elliemae.io/browse/PUI-14718 '[#7102](https://git.elliemae.io/platform-ui/dimsum/issues/7102') ([e834d0f](https://git.elliemae.io/platform-ui/dimsum/commit/e834d0fb6fbcd582d7ce13577ce5a1744490a2f0))
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- ds-drag-and-drop:: do not drop if dnd handler returns to its original position [PUI-14461](https://jira.elliemae.io/browse/PUI-14461) ([#7112](https://git.elliemae.io/platform-ui/dimsum/issues/7112)) ([54b9beb](https://git.elliemae.io/platform-ui/dimsum/commit/54b9beb186f432ffedb2480495cc2c05371e9fb6))
|
|
16
|
+
- ds-global-header:: fix visual test for custom navigation example [PUI-14685](https://jira.elliemae.io/browse/PUI-14685) ([#7101](https://git.elliemae.io/platform-ui/dimsum/issues/7101)) ([ca77d6d](https://git.elliemae.io/platform-ui/dimsum/commit/ca77d6da5cfddf1f1b443fc9a3d6a28b4d93894d))
|
|
9
17
|
|
|
10
|
-
## [3.
|
|
18
|
+
## [3.47.1](https://git.elliemae.io/platform-ui/dimsum/compare/v3.46.0-rc.13...v3.47.1) (2024-10-31)
|
|
11
19
|
|
|
12
20
|
**Note:** Version bump only for package dimsum-e2e-tests
|
|
13
21
|
|
|
@@ -198,6 +198,25 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
198
198
|
await expect(dndBtnRow3after).toBeFocused();
|
|
199
199
|
});
|
|
200
200
|
});
|
|
201
|
+
|
|
202
|
+
describe('PUI-14461 - DataTable: DND, Columns, Dont drop if original position didnt change', async () => {
|
|
203
|
+
before('loading page', async () => {
|
|
204
|
+
const errorOnGo = await DSDataTableCO.dndColumns.go();
|
|
205
|
+
if (errorOnGo) throw errorOnGo;
|
|
206
|
+
await DSDataTableCO.waitForDataTable();
|
|
207
|
+
});
|
|
208
|
+
it('01: should not drop the country header cell if the drag handler returns to its original position', async () => {
|
|
209
|
+
await browser.keys(Key.Space);
|
|
210
|
+
await browser.keys(Key.ArrowRight);
|
|
211
|
+
await browser.keys(Key.ArrowLeft);
|
|
212
|
+
await browser.keys(Key.Space);
|
|
213
|
+
const headerTitleOne = await HeaderCO.getHeaderCellByIndex(4);
|
|
214
|
+
const headerTitleTwo = await HeaderCO.getHeaderCellByIndex(5);
|
|
215
|
+
await expect(headerTitleOne).toHaveTextContaining(['COUNTRY', 'Country']);
|
|
216
|
+
await expect(headerTitleTwo).toHaveTextContaining(['SALARY', 'Salary']);
|
|
217
|
+
});
|
|
218
|
+
});
|
|
219
|
+
|
|
201
220
|
describe('PUI-14463 - DataTable: DND custom cell row and header', async () => {
|
|
202
221
|
before('loading page', async () => {
|
|
203
222
|
const errorOnGo = await DSDataTableCO.customCellRowAndHeaderTest.go();
|
|
@@ -67,4 +67,24 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
67
67
|
await expect(snapshot).toEqual(0);
|
|
68
68
|
});
|
|
69
69
|
});
|
|
70
|
+
describe('PUI-14735 - [DataTable] Header - Sort icon visibility - keyboard navigation - visual test', () => {
|
|
71
|
+
before('loading page', async () => {
|
|
72
|
+
const errorOnGo = await DSDataTableCO.sortByColumn.go();
|
|
73
|
+
if (errorOnGo) throw errorOnGo;
|
|
74
|
+
await DSDataTableCO.waitForDataTable();
|
|
75
|
+
});
|
|
76
|
+
it('01: column position focused, all the controls including filter and sort icons are displayed', async () => {
|
|
77
|
+
await browser.keys(Key.Tab);
|
|
78
|
+
await browser.keys(Key.Tab);
|
|
79
|
+
await browser.keys(Key.Tab);
|
|
80
|
+
const snapshot = await browser.checkSnapshot(DSDataTableCO.snapshotPath('datatable-header-kb-focus'));
|
|
81
|
+
await expect(snapshot).toEqual(0);
|
|
82
|
+
});
|
|
83
|
+
it('02: column position focused, all the controls including filter and sort icons are displayed', async () => {
|
|
84
|
+
await browser.keys(Key.Enter);
|
|
85
|
+
await browser.keys(Key.Enter);
|
|
86
|
+
const snapshot = await browser.checkSnapshot(DSDataTableCO.snapshotPath('datatable-header-kb-option-selected'));
|
|
87
|
+
await expect(snapshot).toEqual(0);
|
|
88
|
+
});
|
|
89
|
+
});
|
|
70
90
|
}
|
|
@@ -100,7 +100,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
100
100
|
);
|
|
101
101
|
await expect(snapshot).toEqual(0);
|
|
102
102
|
});
|
|
103
|
-
it('
|
|
103
|
+
it('02: should display custom navigation - menu opened', async () => {
|
|
104
104
|
await browser.eyesOpen();
|
|
105
105
|
const customNavBtn = await GlobalHeader.getCustomNavButton();
|
|
106
106
|
await customNavBtn.click();
|
|
@@ -249,4 +249,17 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
249
249
|
await expect(snapshot).toEqual(0);
|
|
250
250
|
});
|
|
251
251
|
});
|
|
252
|
+
describe('PUI-14725 - LeftNavigation, hideFooterPipe prop -Visual Test', () => {
|
|
253
|
+
before('loading page', async () => {
|
|
254
|
+
const errorOnGo = await LeftNavCO.hideFooterPipe.go();
|
|
255
|
+
if (errorOnGo) throw errorOnGo;
|
|
256
|
+
});
|
|
257
|
+
it('01: should correctly display the leftnav without footer pipe and label', async () => {
|
|
258
|
+
await browser.eyesOpen();
|
|
259
|
+
const footerButton = await LeftNavCO.footerBtn();
|
|
260
|
+
await footerButton.click();
|
|
261
|
+
const snapshot = await browser.eyesCheckSnapshot(LeftNavCO.snapshotPath('leftnav-hideFooterPipe'));
|
|
262
|
+
await expect(snapshot).toEqual(0);
|
|
263
|
+
});
|
|
264
|
+
});
|
|
252
265
|
}
|
|
@@ -27,6 +27,8 @@ export default class LeftNavCO extends PageObject {
|
|
|
27
27
|
|
|
28
28
|
static withContent = new Urlbuilder(PATH_E2E_LEFT_NAVIGATION, 'with-content-test');
|
|
29
29
|
|
|
30
|
+
static hideFooterPipe = new Urlbuilder(PATH_E2E_LEFT_NAVIGATION, 'hide-footer-pipe-test');
|
|
31
|
+
|
|
30
32
|
static async loadingIndicator() {
|
|
31
33
|
return $('[data-testid="ds-circular-indeterminate-indicator-root"]');
|
|
32
34
|
}
|
|
@@ -3,7 +3,7 @@ import { PageObject, Urlbuilder } from '../helpers';
|
|
|
3
3
|
|
|
4
4
|
export default class DSMenuButtonCO extends PageObject {
|
|
5
5
|
// Current supported examples: POC
|
|
6
|
-
static
|
|
6
|
+
static activableMenuItem = new Urlbuilder(PATH_MENU_BUTTON, 'activable-menu-item');
|
|
7
7
|
|
|
8
8
|
static multipleSelectMenuItem = new Urlbuilder(PATH_MENU_BUTTON, 'multiple-select-menu-item');
|
|
9
9
|
|
|
@@ -6,9 +6,9 @@ import DSDialog from '../../ds-dialog/DSDialogCO';
|
|
|
6
6
|
import DSCardV3CO from '../../ds-card-v3/DSCardV3CO';
|
|
7
7
|
|
|
8
8
|
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
9
|
-
describe('PUI-14645 - DSMenuButton::
|
|
9
|
+
describe('PUI-14645 - DSMenuButton:: Activable Menu Item: Basic Mouse - Func', () => {
|
|
10
10
|
before('loading page', async () => {
|
|
11
|
-
const errorOnGo = await DSMenuButtonCO.
|
|
11
|
+
const errorOnGo = await DSMenuButtonCO.activableMenuItem.go();
|
|
12
12
|
if (errorOnGo) throw errorOnGo;
|
|
13
13
|
});
|
|
14
14
|
it('01: should trigger first menuItem with MOUSE and have a dialog', async () => {
|
|
@@ -30,9 +30,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
30
30
|
});
|
|
31
31
|
});
|
|
32
32
|
|
|
33
|
-
describe('PUI-14646 - DSMenuButton::
|
|
33
|
+
describe('PUI-14646 - DSMenuButton:: Activable Menu Item: Basic Keyboard - Func', () => {
|
|
34
34
|
before('loading page', async () => {
|
|
35
|
-
const errorOnGo = await DSMenuButtonCO.
|
|
35
|
+
const errorOnGo = await DSMenuButtonCO.activableMenuItem.go();
|
|
36
36
|
if (errorOnGo) throw errorOnGo;
|
|
37
37
|
});
|
|
38
38
|
it('01: should trigger first menuItem with KEYBOARD (Return) and have a dialog', async () => {
|
package/package.json
CHANGED
|
@@ -1,125 +1,125 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dimsum-e2e-tests",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.48.0",
|
|
4
4
|
"description": "End-to-end tests for dimsum library",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@elliemae/ds-accessibility": "3.
|
|
7
|
-
"@elliemae/ds-
|
|
8
|
-
"@elliemae/ds-
|
|
9
|
-
"@elliemae/ds-
|
|
10
|
-
"@elliemae/ds-
|
|
11
|
-
"@elliemae/ds-
|
|
12
|
-
"@elliemae/ds-
|
|
13
|
-
"@elliemae/ds-
|
|
14
|
-
"@elliemae/ds-button-group": "3.
|
|
15
|
-
"@elliemae/ds-button-
|
|
16
|
-
"@elliemae/ds-button-
|
|
17
|
-
"@elliemae/ds-card": "3.
|
|
18
|
-
"@elliemae/ds-card-array": "3.
|
|
19
|
-
"@elliemae/ds-card-navigation": "3.
|
|
20
|
-
"@elliemae/ds-card-v2": "3.
|
|
21
|
-
"@elliemae/ds-card-v2-action-addon": "3.
|
|
22
|
-
"@elliemae/ds-card-v2-group": "3.
|
|
23
|
-
"@elliemae/ds-chat": "3.
|
|
24
|
-
"@elliemae/ds-chat-
|
|
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-dataviz
|
|
36
|
-
"@elliemae/ds-
|
|
37
|
-
"@elliemae/ds-
|
|
38
|
-
"@elliemae/ds-date-range-
|
|
39
|
-
"@elliemae/ds-date-range-
|
|
40
|
-
"@elliemae/ds-date-time-picker": "3.
|
|
41
|
-
"@elliemae/ds-date-time-recurrence-picker": "3.
|
|
42
|
-
"@elliemae/ds-decision-graph": "3.
|
|
43
|
-
"@elliemae/ds-dialog": "3.
|
|
44
|
-
"@elliemae/ds-drag-and-drop": "3.
|
|
45
|
-
"@elliemae/ds-dropdownmenu": "3.
|
|
46
|
-
"@elliemae/ds-dropzone": "3.
|
|
47
|
-
"@elliemae/ds-fast-list": "3.
|
|
48
|
-
"@elliemae/ds-filterbar": "3.
|
|
49
|
-
"@elliemae/ds-form": "3.
|
|
50
|
-
"@elliemae/ds-form-date-range-picker": "3.
|
|
51
|
-
"@elliemae/ds-form-
|
|
52
|
-
"@elliemae/ds-form-
|
|
53
|
-
"@elliemae/ds-form-layout-label": "3.
|
|
54
|
-
"@elliemae/ds-global-header": "3.
|
|
55
|
-
"@elliemae/ds-grid": "3.
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-hooks-fontsize-
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-icon": "3.
|
|
61
|
-
"@elliemae/ds-
|
|
62
|
-
"@elliemae/ds-
|
|
63
|
-
"@elliemae/ds-
|
|
64
|
-
"@elliemae/ds-
|
|
65
|
-
"@elliemae/ds-
|
|
66
|
-
"@elliemae/ds-left-navigation": "3.
|
|
67
|
-
"@elliemae/ds-
|
|
68
|
-
"@elliemae/ds-
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-modal": "3.
|
|
74
|
-
"@elliemae/ds-modal-slide": "3.
|
|
75
|
-
"@elliemae/ds-notification-badge": "3.
|
|
76
|
-
"@elliemae/ds-number-range-field": "3.
|
|
77
|
-
"@elliemae/ds-page-header": "3.
|
|
78
|
-
"@elliemae/ds-page-header-v1": "3.
|
|
79
|
-
"@elliemae/ds-page-header-v2": "3.
|
|
80
|
-
"@elliemae/ds-page-layout": "3.
|
|
81
|
-
"@elliemae/ds-page-number": "3.
|
|
82
|
-
"@elliemae/ds-pagination": "3.
|
|
83
|
-
"@elliemae/ds-pills": "3.
|
|
84
|
-
"@elliemae/ds-popover": "3.
|
|
85
|
-
"@elliemae/ds-
|
|
86
|
-
"@elliemae/ds-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-
|
|
89
|
-
"@elliemae/ds-read-more": "3.
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-search-field": "3.
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-shuttle": "3.
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-
|
|
100
|
-
"@elliemae/ds-square-indicator": "3.
|
|
101
|
-
"@elliemae/ds-stepper": "3.
|
|
102
|
-
"@elliemae/ds-svg": "3.
|
|
103
|
-
"@elliemae/ds-system": "3.
|
|
104
|
-
"@elliemae/ds-tabs": "3.
|
|
105
|
-
"@elliemae/ds-test-utils": "3.
|
|
106
|
-
"@elliemae/ds-text-wrapper": "3.
|
|
107
|
-
"@elliemae/ds-
|
|
108
|
-
"@elliemae/ds-
|
|
109
|
-
"@elliemae/ds-
|
|
110
|
-
"@elliemae/ds-toolbar-v2": "3.
|
|
111
|
-
"@elliemae/ds-transition": "3.
|
|
112
|
-
"@elliemae/ds-
|
|
113
|
-
"@elliemae/ds-
|
|
114
|
-
"@elliemae/ds-treeview": "3.
|
|
115
|
-
"@elliemae/ds-truncated-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-
|
|
119
|
-
"@elliemae/ds-virtual-list": "3.
|
|
120
|
-
"@elliemae/ds-wizard": "3.
|
|
121
|
-
"@elliemae/ds-wysiwygeditor": "3.
|
|
122
|
-
"@elliemae/ds-zipcode-search": "3.
|
|
123
|
-
"@elliemae/ds-zoom": "3.
|
|
6
|
+
"@elliemae/ds-accessibility": "3.48.0",
|
|
7
|
+
"@elliemae/ds-accordion": "3.48.0",
|
|
8
|
+
"@elliemae/ds-backdrop": "3.48.0",
|
|
9
|
+
"@elliemae/ds-app-picker": "3.48.0",
|
|
10
|
+
"@elliemae/ds-basic": "3.48.0",
|
|
11
|
+
"@elliemae/ds-banner": "3.48.0",
|
|
12
|
+
"@elliemae/ds-button": "3.48.0",
|
|
13
|
+
"@elliemae/ds-breadcrumb": "3.48.0",
|
|
14
|
+
"@elliemae/ds-button-group": "3.48.0",
|
|
15
|
+
"@elliemae/ds-button-v1": "3.48.0",
|
|
16
|
+
"@elliemae/ds-button-v2": "3.48.0",
|
|
17
|
+
"@elliemae/ds-card": "3.48.0",
|
|
18
|
+
"@elliemae/ds-card-array": "3.48.0",
|
|
19
|
+
"@elliemae/ds-card-navigation": "3.48.0",
|
|
20
|
+
"@elliemae/ds-card-v2": "3.48.0",
|
|
21
|
+
"@elliemae/ds-card-v2-action-addon": "3.48.0",
|
|
22
|
+
"@elliemae/ds-card-v2-group": "3.48.0",
|
|
23
|
+
"@elliemae/ds-chat": "3.48.0",
|
|
24
|
+
"@elliemae/ds-chat-bubble": "3.48.0",
|
|
25
|
+
"@elliemae/ds-chat-tile": "3.48.0",
|
|
26
|
+
"@elliemae/ds-chip": "3.48.0",
|
|
27
|
+
"@elliemae/ds-circular-progress-indicator": "3.48.0",
|
|
28
|
+
"@elliemae/ds-codeeditor": "3.48.0",
|
|
29
|
+
"@elliemae/ds-comments": "3.48.0",
|
|
30
|
+
"@elliemae/ds-csv-converter": "3.48.0",
|
|
31
|
+
"@elliemae/ds-data-table": "3.48.0",
|
|
32
|
+
"@elliemae/ds-controlled-form": "3.48.0",
|
|
33
|
+
"@elliemae/ds-datagrids": "3.48.0",
|
|
34
|
+
"@elliemae/ds-data-table-cell-header": "3.48.0",
|
|
35
|
+
"@elliemae/ds-dataviz": "3.48.0",
|
|
36
|
+
"@elliemae/ds-dataviz-pie": "3.48.0",
|
|
37
|
+
"@elliemae/ds-date-picker": "3.48.0",
|
|
38
|
+
"@elliemae/ds-date-range-picker": "3.48.0",
|
|
39
|
+
"@elliemae/ds-date-range-selector": "3.48.0",
|
|
40
|
+
"@elliemae/ds-date-time-picker": "3.48.0",
|
|
41
|
+
"@elliemae/ds-date-time-recurrence-picker": "3.48.0",
|
|
42
|
+
"@elliemae/ds-decision-graph": "3.48.0",
|
|
43
|
+
"@elliemae/ds-dialog": "3.48.0",
|
|
44
|
+
"@elliemae/ds-drag-and-drop": "3.48.0",
|
|
45
|
+
"@elliemae/ds-dropdownmenu": "3.48.0",
|
|
46
|
+
"@elliemae/ds-dropzone": "3.48.0",
|
|
47
|
+
"@elliemae/ds-fast-list": "3.48.0",
|
|
48
|
+
"@elliemae/ds-filterbar": "3.48.0",
|
|
49
|
+
"@elliemae/ds-form": "3.48.0",
|
|
50
|
+
"@elliemae/ds-form-date-range-picker": "3.48.0",
|
|
51
|
+
"@elliemae/ds-form-layout-blocks": "3.48.0",
|
|
52
|
+
"@elliemae/ds-form-date-time-picker": "3.48.0",
|
|
53
|
+
"@elliemae/ds-form-layout-label": "3.48.0",
|
|
54
|
+
"@elliemae/ds-global-header": "3.48.0",
|
|
55
|
+
"@elliemae/ds-grid": "3.48.0",
|
|
56
|
+
"@elliemae/ds-header": "3.48.0",
|
|
57
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.48.0",
|
|
58
|
+
"@elliemae/ds-hooks-fontsize-media": "3.48.0",
|
|
59
|
+
"@elliemae/ds-group-box": "3.48.0",
|
|
60
|
+
"@elliemae/ds-icon": "3.48.0",
|
|
61
|
+
"@elliemae/ds-imagelibrarymodal": "3.48.0",
|
|
62
|
+
"@elliemae/ds-image": "3.48.0",
|
|
63
|
+
"@elliemae/ds-icons": "3.48.0",
|
|
64
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.48.0",
|
|
65
|
+
"@elliemae/ds-label-value": "3.48.0",
|
|
66
|
+
"@elliemae/ds-left-navigation": "3.48.0",
|
|
67
|
+
"@elliemae/ds-list-section-header": "3.48.0",
|
|
68
|
+
"@elliemae/ds-menu": "3.48.0",
|
|
69
|
+
"@elliemae/ds-loading-indicator": "3.48.0",
|
|
70
|
+
"@elliemae/ds-menu-items": "3.48.0",
|
|
71
|
+
"@elliemae/ds-mini-toolbar": "3.48.0",
|
|
72
|
+
"@elliemae/ds-mobile": "3.48.0",
|
|
73
|
+
"@elliemae/ds-modal": "3.48.0",
|
|
74
|
+
"@elliemae/ds-modal-slide": "3.48.0",
|
|
75
|
+
"@elliemae/ds-notification-badge": "3.48.0",
|
|
76
|
+
"@elliemae/ds-number-range-field": "3.48.0",
|
|
77
|
+
"@elliemae/ds-page-header": "3.48.0",
|
|
78
|
+
"@elliemae/ds-page-header-v1": "3.48.0",
|
|
79
|
+
"@elliemae/ds-page-header-v2": "3.48.0",
|
|
80
|
+
"@elliemae/ds-page-layout": "3.48.0",
|
|
81
|
+
"@elliemae/ds-page-number": "3.48.0",
|
|
82
|
+
"@elliemae/ds-pagination": "3.48.0",
|
|
83
|
+
"@elliemae/ds-pills": "3.48.0",
|
|
84
|
+
"@elliemae/ds-popover": "3.48.0",
|
|
85
|
+
"@elliemae/ds-popper": "3.48.0",
|
|
86
|
+
"@elliemae/ds-popperjs": "3.48.0",
|
|
87
|
+
"@elliemae/ds-progress-indicator": "3.48.0",
|
|
88
|
+
"@elliemae/ds-query-builder": "3.48.0",
|
|
89
|
+
"@elliemae/ds-read-more": "3.48.0",
|
|
90
|
+
"@elliemae/ds-ribbon": "3.48.0",
|
|
91
|
+
"@elliemae/ds-resizeable-container": "3.48.0",
|
|
92
|
+
"@elliemae/ds-search-field": "3.48.0",
|
|
93
|
+
"@elliemae/ds-shuttle": "3.48.0",
|
|
94
|
+
"@elliemae/ds-shuttle-v2": "3.48.0",
|
|
95
|
+
"@elliemae/ds-separator": "3.48.0",
|
|
96
|
+
"@elliemae/ds-side-panel": "3.48.0",
|
|
97
|
+
"@elliemae/ds-slider": "3.48.0",
|
|
98
|
+
"@elliemae/ds-skeleton": "3.48.0",
|
|
99
|
+
"@elliemae/ds-spinner": "3.48.0",
|
|
100
|
+
"@elliemae/ds-square-indicator": "3.48.0",
|
|
101
|
+
"@elliemae/ds-stepper": "3.48.0",
|
|
102
|
+
"@elliemae/ds-svg": "3.48.0",
|
|
103
|
+
"@elliemae/ds-system": "3.48.0",
|
|
104
|
+
"@elliemae/ds-tabs": "3.48.0",
|
|
105
|
+
"@elliemae/ds-test-utils": "3.48.0",
|
|
106
|
+
"@elliemae/ds-text-wrapper": "3.48.0",
|
|
107
|
+
"@elliemae/ds-time-picker": "3.48.0",
|
|
108
|
+
"@elliemae/ds-toast": "3.48.0",
|
|
109
|
+
"@elliemae/ds-toolbar": "3.48.0",
|
|
110
|
+
"@elliemae/ds-toolbar-v2": "3.48.0",
|
|
111
|
+
"@elliemae/ds-transition": "3.48.0",
|
|
112
|
+
"@elliemae/ds-tooltip": "3.48.0",
|
|
113
|
+
"@elliemae/ds-tree-model": "3.48.0",
|
|
114
|
+
"@elliemae/ds-treeview": "3.48.0",
|
|
115
|
+
"@elliemae/ds-truncated-tooltip-text": "3.48.0",
|
|
116
|
+
"@elliemae/ds-typography": "3.48.0",
|
|
117
|
+
"@elliemae/ds-uploader": "3.48.0",
|
|
118
|
+
"@elliemae/ds-truncated-expandable-text": "3.48.0",
|
|
119
|
+
"@elliemae/ds-virtual-list": "3.48.0",
|
|
120
|
+
"@elliemae/ds-wizard": "3.48.0",
|
|
121
|
+
"@elliemae/ds-wysiwygeditor": "3.48.0",
|
|
122
|
+
"@elliemae/ds-zipcode-search": "3.48.0",
|
|
123
|
+
"@elliemae/ds-zoom": "3.48.0"
|
|
124
124
|
}
|
|
125
125
|
}
|