dimsum-e2e-tests 3.55.0-next.1 → 3.55.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-chat/floatingbutton/DSChat-floating-button.visual.spec.js +1 -1
- package/ds-dialog/DSDialog.visual.spec.js +2 -8
- package/ds-form-combobox-multi/DSComboboxMultiCO.js +2 -0
- package/ds-form-combobox-multi/menu-position/DSComboboxMulti.menu-position.visual.spec.js +42 -0
- package/ds-form-combobox-single/DSComboboxSingleCO.js +2 -0
- package/ds-form-combobox-single/menu-position/DSComboboxSingle.menu-position.visual.spec.js +42 -0
- package/ds-menu-item/DSMenuItems.visual.spec.js +8 -8
- package/package.json +187 -187
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.55.0-next.3 (2025-08-22)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- ds-form-helpers-mask-hooks:: fixing init fn for useNumberMask [PUI-17061](https://jira.elliemae.io/browse/PUI-17061), [PUI-17066](https://jira.elliemae.io/browse/PUI-17066) ([#7600](https://git.elliemae.io/platform-ui/dimsum/issues/7600)) ([368094c](https://git.elliemae.io/platform-ui/dimsum/commit/368094ca20b70ea80ee810b3fb18fac569739ffa))
|
|
11
|
+
|
|
12
|
+
## 3.55.0-next.2 (2025-08-19)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- ds-floating-context:: improve package [PUI-15951](https://jira.elliemae.io/browse/PUI-15951) ([#7590](https://git.elliemae.io/platform-ui/dimsum/issues/7590)) ([02a6e3e](https://git.elliemae.io/platform-ui/dimsum/commit/02a6e3e1bd4a5806aab158b7172f658be9af0f93))
|
|
17
|
+
|
|
6
18
|
## 3.55.0-next.1 (2025-08-19)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package dimsum-e2e-tests
|
|
@@ -24,7 +24,7 @@ if (!browser.capabilities['ice:options'].isPhone) {
|
|
|
24
24
|
const snapshot = await browser.checkSnapshot(FloatingButtonCO.snapshotPath('floating-button-focus-state'));
|
|
25
25
|
await expect(snapshot).toEqual(0);
|
|
26
26
|
});
|
|
27
|
-
//
|
|
27
|
+
// https://bugzilla.mozilla.org/show_bug.cgi?id=68851
|
|
28
28
|
if (browser.capabilities.browserName !== 'Firefox') {
|
|
29
29
|
it('should display the floating button in active state w/ space', async () => {
|
|
30
30
|
await browser.keys(Key.Tab);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable max-lines */
|
|
2
2
|
import { Key } from 'webdriverio';
|
|
3
|
-
import { Target } from '@applitools/eyes-webdriverio';
|
|
3
|
+
// import { Target } from '@applitools/eyes-webdriverio';
|
|
4
4
|
import DSDialog from './DSDialogCO';
|
|
5
5
|
import DSShuttleV2CO from '../ds-shuttle-v2/DSShuttleV2CO';
|
|
6
6
|
import DSWizardCO from '../ds-wizard/DSWizardCO';
|
|
@@ -213,13 +213,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
213
213
|
await triggerBtn.scrollIntoView();
|
|
214
214
|
await triggerBtn.waitForDisplayed();
|
|
215
215
|
await triggerBtn.click();
|
|
216
|
-
|
|
217
|
-
await browser.eyesSetScrollRootElement(triggerBtn);
|
|
218
|
-
}
|
|
219
|
-
const snapshot = await browser.eyesCheckSnapshot(
|
|
220
|
-
DSDialog.snapshotPath('dialog-backdrop-cover-full-page'),
|
|
221
|
-
Target.window().fully(false),
|
|
222
|
-
);
|
|
216
|
+
const snapshot = await browser.eyesCheckSnapshot(DSDialog.snapshotPath('dialog-backdrop-cover-full-page'));
|
|
223
217
|
await expect(snapshot).toEqual(0);
|
|
224
218
|
});
|
|
225
219
|
});
|
|
@@ -19,6 +19,8 @@ export default class DSComboboxMultiCO extends PageObject {
|
|
|
19
19
|
|
|
20
20
|
static insideIframe = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'inside-iframe');
|
|
21
21
|
|
|
22
|
+
static floatingAfterFiltering = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'floating-after-filtering');
|
|
23
|
+
|
|
22
24
|
// COMBOBOX - INPUT
|
|
23
25
|
static async getCombobox() {
|
|
24
26
|
return $('[data-testid="combobox-container"]');
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import DSComboboxMultiCO from '../DSComboboxMultiCO';
|
|
4
|
+
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-17080 - ComboboxMulti:: Menu position - visual', () => {
|
|
7
|
+
beforeEach('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSComboboxMultiCO.floatingAfterFiltering.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
await browser.maximizeWindow();
|
|
11
|
+
});
|
|
12
|
+
it('01: should open menu correctly', async () => {
|
|
13
|
+
await browser.eyesOpen();
|
|
14
|
+
await browser.keys(Key.Tab);
|
|
15
|
+
await browser.keys(Key.Return);
|
|
16
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
17
|
+
DSComboboxMultiCO.snapshotPath('combobox-multi-floating-after-open-menu'),
|
|
18
|
+
);
|
|
19
|
+
await expect(snapshot).toEqual(0);
|
|
20
|
+
});
|
|
21
|
+
it('02: should display the menu correctly after filtering - existing option', async () => {
|
|
22
|
+
await browser.eyesOpen();
|
|
23
|
+
await browser.keys(Key.Tab);
|
|
24
|
+
await browser.keys(Key.Return);
|
|
25
|
+
await browser.keys('t');
|
|
26
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
27
|
+
DSComboboxMultiCO.snapshotPath('combobox-multi-floating-after-filtering-existing-option'),
|
|
28
|
+
);
|
|
29
|
+
await expect(snapshot).toEqual(0);
|
|
30
|
+
});
|
|
31
|
+
it('03: should display the menu correctly after filtering - new option', async () => {
|
|
32
|
+
await browser.eyesOpen();
|
|
33
|
+
await browser.keys(Key.Tab);
|
|
34
|
+
await browser.keys(Key.Return);
|
|
35
|
+
await browser.keys('this is a test');
|
|
36
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
37
|
+
DSComboboxMultiCO.snapshotPath('combobox-multi-floating-after-filtering-new-option'),
|
|
38
|
+
);
|
|
39
|
+
await expect(snapshot).toEqual(0);
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
}
|
|
@@ -27,6 +27,8 @@ export default class DSComboboxSingleCO extends PageObject {
|
|
|
27
27
|
'skeleton-advanced-customization-test',
|
|
28
28
|
);
|
|
29
29
|
|
|
30
|
+
static floatingAfterFiltering = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'floating-after-filtering');
|
|
31
|
+
|
|
30
32
|
// COMBOBOX - INPUT
|
|
31
33
|
static async getCombobox() {
|
|
32
34
|
return $('[data-testid="combobox-container"]');
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import DSComboboxSingleCO from '../DSComboboxSingleCO';
|
|
4
|
+
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-17081 - ComboboxSingle:: Menu position - visual', () => {
|
|
7
|
+
beforeEach('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSComboboxSingleCO.floatingAfterFiltering.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
await browser.maximizeWindow();
|
|
11
|
+
});
|
|
12
|
+
it('01: should open menu and display it correctly', async () => {
|
|
13
|
+
await browser.eyesOpen();
|
|
14
|
+
await browser.keys(Key.Tab);
|
|
15
|
+
await browser.keys(Key.Return);
|
|
16
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
17
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-floating-after-open-menu'),
|
|
18
|
+
);
|
|
19
|
+
await expect(snapshot).toEqual(0);
|
|
20
|
+
});
|
|
21
|
+
it('02: should display the menu correctly after filtering - existing option', async () => {
|
|
22
|
+
await browser.eyesOpen();
|
|
23
|
+
await browser.keys(Key.Tab);
|
|
24
|
+
await browser.keys(Key.Return);
|
|
25
|
+
await browser.keys('t');
|
|
26
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
27
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-floating-after-filtering-existing-option'),
|
|
28
|
+
);
|
|
29
|
+
await expect(snapshot).toEqual(0);
|
|
30
|
+
});
|
|
31
|
+
it('03: should display the menu correctly after filtering - no matches', async () => {
|
|
32
|
+
await browser.eyesOpen();
|
|
33
|
+
await browser.keys(Key.Tab);
|
|
34
|
+
await browser.keys(Key.Return);
|
|
35
|
+
await browser.keys('this is a test');
|
|
36
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
37
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-floating-after-filtering-no-matches'),
|
|
38
|
+
);
|
|
39
|
+
await expect(snapshot).toEqual(0);
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
}
|
|
@@ -10,7 +10,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
10
10
|
it('01: should display action menu items correctly', async () => {
|
|
11
11
|
const menuItemWrapper = await DSMenuItems.getMenuItemsWrapper();
|
|
12
12
|
await menuItemWrapper.waitForDisplayed();
|
|
13
|
-
const snapshot = await browser.
|
|
13
|
+
const snapshot = await browser.checkSnapshot(
|
|
14
14
|
DSMenuItems.snapshotPath('ds-menu-items-action-menu'),
|
|
15
15
|
menuItemWrapper,
|
|
16
16
|
);
|
|
@@ -25,7 +25,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
25
25
|
await mouseOver(menuItem2, 40);
|
|
26
26
|
// eslint-disable-next-line wdio/no-pause
|
|
27
27
|
await browser.pause(300);
|
|
28
|
-
const snapshot = await browser.
|
|
28
|
+
const snapshot = await browser.checkSnapshot(
|
|
29
29
|
DSMenuItems.snapshotPath('ds-menu-items-action-menu-states'),
|
|
30
30
|
menuItemWrapper,
|
|
31
31
|
);
|
|
@@ -40,7 +40,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
40
40
|
it('01: should display single menu items correctly', async () => {
|
|
41
41
|
const menuItemWrapper = await DSMenuItems.getMenuItemsWrapper();
|
|
42
42
|
await menuItemWrapper.waitForDisplayed();
|
|
43
|
-
const snapshot = await browser.
|
|
43
|
+
const snapshot = await browser.checkSnapshot(
|
|
44
44
|
DSMenuItems.snapshotPath('ds-menu-items-single-menu'),
|
|
45
45
|
menuItemWrapper,
|
|
46
46
|
);
|
|
@@ -53,7 +53,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
53
53
|
const menuItem2 = await DSMenuItems.getMenuItem('2');
|
|
54
54
|
await menuItem1.click();
|
|
55
55
|
await mouseOver(menuItem2);
|
|
56
|
-
const snapshot = await browser.
|
|
56
|
+
const snapshot = await browser.checkSnapshot(
|
|
57
57
|
DSMenuItems.snapshotPath('ds-menu-items-single-menu-states'),
|
|
58
58
|
menuItemWrapper,
|
|
59
59
|
);
|
|
@@ -68,7 +68,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
68
68
|
it('01: should display action menu items correctly', async () => {
|
|
69
69
|
const menuItemWrapper = await DSMenuItems.getMenuItemsWrapper();
|
|
70
70
|
await menuItemWrapper.waitForDisplayed();
|
|
71
|
-
const snapshot = await browser.
|
|
71
|
+
const snapshot = await browser.checkSnapshot(
|
|
72
72
|
DSMenuItems.snapshotPath('ds-menu-items-multi-menu'),
|
|
73
73
|
menuItemWrapper,
|
|
74
74
|
);
|
|
@@ -83,7 +83,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
83
83
|
await menuItem1.click();
|
|
84
84
|
await menuItem3.click();
|
|
85
85
|
await mouseOver(menuItem2);
|
|
86
|
-
const snapshot = await browser.
|
|
86
|
+
const snapshot = await browser.checkSnapshot(
|
|
87
87
|
DSMenuItems.snapshotPath('ds-menu-items-multi-menu-states'),
|
|
88
88
|
menuItemWrapper,
|
|
89
89
|
);
|
|
@@ -98,7 +98,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
98
98
|
it('01: should display section menu items correctly', async () => {
|
|
99
99
|
const menuItemWrapper = await DSMenuItems.getMenuItemsWrapper();
|
|
100
100
|
await menuItemWrapper.waitForDisplayed();
|
|
101
|
-
const snapshot = await browser.
|
|
101
|
+
const snapshot = await browser.checkSnapshot(
|
|
102
102
|
DSMenuItems.snapshotPath('ds-menu-items-section-menu'),
|
|
103
103
|
menuItemWrapper,
|
|
104
104
|
);
|
|
@@ -113,7 +113,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
113
113
|
await menuItem1.click({ x: 50 });
|
|
114
114
|
await menuItem3.click({ x: 50 });
|
|
115
115
|
await mouseOver(menuItem2);
|
|
116
|
-
const snapshot = await browser.
|
|
116
|
+
const snapshot = await browser.checkSnapshot(
|
|
117
117
|
DSMenuItems.snapshotPath('ds-menu-items-section-menu-states'),
|
|
118
118
|
menuItemWrapper,
|
|
119
119
|
);
|
package/package.json
CHANGED
|
@@ -1,194 +1,194 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "dimsum-e2e-tests",
|
|
4
|
-
"version": "3.55.0-next.
|
|
4
|
+
"version": "3.55.0-next.3",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
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.55.0-next.
|
|
15
|
-
"@elliemae/ds-
|
|
16
|
-
"@elliemae/ds-button-
|
|
17
|
-
"@elliemae/ds-
|
|
18
|
-
"@elliemae/ds-
|
|
19
|
-
"@elliemae/ds-
|
|
20
|
-
"@elliemae/ds-card-v1": "3.55.0-next.
|
|
21
|
-
"@elliemae/ds-card-
|
|
22
|
-
"@elliemae/ds-card-v1-detail": "3.55.0-next.
|
|
23
|
-
"@elliemae/ds-card-v2
|
|
24
|
-
"@elliemae/ds-card-v2": "3.55.0-next.
|
|
25
|
-
"@elliemae/ds-card-v2-group": "3.55.0-next.
|
|
26
|
-
"@elliemae/ds-card-v3": "3.55.0-next.
|
|
27
|
-
"@elliemae/ds-card-v3
|
|
28
|
-
"@elliemae/ds-chat": "3.55.0-next.
|
|
29
|
-
"@elliemae/ds-chat-
|
|
30
|
-
"@elliemae/ds-chat-
|
|
31
|
-
"@elliemae/ds-chat-container": "3.55.0-next.
|
|
32
|
-
"@elliemae/ds-chat-
|
|
33
|
-
"@elliemae/ds-chat-
|
|
34
|
-
"@elliemae/ds-chat-
|
|
35
|
-
"@elliemae/ds-chat-
|
|
36
|
-
"@elliemae/ds-chat-system-message": "3.55.0-next.
|
|
37
|
-
"@elliemae/ds-
|
|
38
|
-
"@elliemae/ds-chat-
|
|
39
|
-
"@elliemae/ds-
|
|
40
|
-
"@elliemae/ds-circular-progress-indicator": "3.55.0-next.
|
|
41
|
-
"@elliemae/ds-
|
|
42
|
-
"@elliemae/ds-
|
|
43
|
-
"@elliemae/ds-comments": "3.55.0-next.
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-data-table": "3.55.0-next.
|
|
48
|
-
"@elliemae/ds-data-table-action-cell": "3.55.0-next.
|
|
49
|
-
"@elliemae/ds-data-table-cell": "3.55.0-next.
|
|
50
|
-
"@elliemae/ds-data-table-cell-header": "3.55.0-next.
|
|
51
|
-
"@elliemae/ds-data-table-
|
|
52
|
-
"@elliemae/ds-data-table-
|
|
53
|
-
"@elliemae/ds-data-table-
|
|
54
|
-
"@elliemae/ds-data-table-single-select-cell": "3.55.0-next.
|
|
55
|
-
"@elliemae/ds-data-table-multi-select-cell": "3.55.0-next.
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-dataviz
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-date-range-picker": "3.55.0-next.
|
|
61
|
-
"@elliemae/ds-date-range-selector": "3.55.0-next.
|
|
62
|
-
"@elliemae/ds-date-time-picker": "3.55.0-next.
|
|
63
|
-
"@elliemae/ds-date-time-recurrence-picker": "3.55.0-next.
|
|
64
|
-
"@elliemae/ds-decision-graph": "3.55.0-next.
|
|
65
|
-
"@elliemae/ds-
|
|
66
|
-
"@elliemae/ds-
|
|
67
|
-
"@elliemae/ds-
|
|
68
|
-
"@elliemae/ds-dropdownmenu": "3.55.0-next.
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-form-combobox": "3.55.0-next.
|
|
75
|
-
"@elliemae/ds-form-date-range-picker": "3.55.0-next.
|
|
76
|
-
"@elliemae/ds-form": "3.55.0-next.
|
|
77
|
-
"@elliemae/ds-form-
|
|
78
|
-
"@elliemae/ds-form-
|
|
79
|
-
"@elliemae/ds-form-input-
|
|
80
|
-
"@elliemae/ds-form-
|
|
81
|
-
"@elliemae/ds-form-layout-
|
|
82
|
-
"@elliemae/ds-form-layout-
|
|
83
|
-
"@elliemae/ds-form-
|
|
84
|
-
"@elliemae/ds-form-layout-
|
|
85
|
-
"@elliemae/ds-form-
|
|
86
|
-
"@elliemae/ds-form-
|
|
87
|
-
"@elliemae/ds-form-radio": "3.55.0-next.
|
|
88
|
-
"@elliemae/ds-form-
|
|
89
|
-
"@elliemae/ds-form-
|
|
90
|
-
"@elliemae/ds-form-toggle": "3.55.0-next.
|
|
91
|
-
"@elliemae/ds-global-header": "3.55.0-next.
|
|
92
|
-
"@elliemae/ds-grid": "3.55.0-next.
|
|
93
|
-
"@elliemae/ds-group-box": "3.55.0-next.
|
|
94
|
-
"@elliemae/ds-header": "3.55.0-next.
|
|
95
|
-
"@elliemae/ds-hidden": "3.55.0-next.
|
|
96
|
-
"@elliemae/ds-hooks-focus-stack": "3.55.0-next.
|
|
97
|
-
"@elliemae/ds-hooks-
|
|
98
|
-
"@elliemae/ds-hooks-fontsize-
|
|
99
|
-
"@elliemae/ds-hooks-
|
|
100
|
-
"@elliemae/ds-hooks-headless-tooltip": "3.55.0-next.
|
|
101
|
-
"@elliemae/ds-hooks-is-mobile": "3.55.0-next.
|
|
102
|
-
"@elliemae/ds-hooks-
|
|
103
|
-
"@elliemae/ds-hooks-
|
|
104
|
-
"@elliemae/ds-hooks-on-
|
|
105
|
-
"@elliemae/ds-hooks-on-
|
|
106
|
-
"@elliemae/ds-
|
|
107
|
-
"@elliemae/ds-
|
|
108
|
-
"@elliemae/ds-
|
|
109
|
-
"@elliemae/ds-imagelibrarymodal": "3.55.0-next.
|
|
110
|
-
"@elliemae/ds-indeterminate-progress-indicator": "3.55.0-next.
|
|
111
|
-
"@elliemae/ds-label-value": "3.55.0-next.
|
|
112
|
-
"@elliemae/ds-left-navigation": "3.55.0-next.
|
|
113
|
-
"@elliemae/ds-layout-provider": "3.55.0-next.
|
|
114
|
-
"@elliemae/ds-list-section-header": "3.55.0-next.
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-menu-button": "3.55.0-next.
|
|
118
|
-
"@elliemae/ds-menu-items": "3.55.0-next.
|
|
119
|
-
"@elliemae/ds-menu-items-action": "3.55.0-next.
|
|
120
|
-
"@elliemae/ds-menu-items-
|
|
121
|
-
"@elliemae/ds-menu-items-
|
|
122
|
-
"@elliemae/ds-menu-items-
|
|
123
|
-
"@elliemae/ds-menu-items-
|
|
124
|
-
"@elliemae/ds-menu-items-single": "3.55.0-next.
|
|
125
|
-
"@elliemae/ds-menu-items-single
|
|
126
|
-
"@elliemae/ds-menu-items-skeleton": "3.55.0-next.
|
|
127
|
-
"@elliemae/ds-menu-items-submenu": "3.55.0-next.
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-modal
|
|
132
|
-
"@elliemae/ds-modal": "3.55.0-next.
|
|
133
|
-
"@elliemae/ds-notification-badge": "3.55.0-next.
|
|
134
|
-
"@elliemae/ds-
|
|
135
|
-
"@elliemae/ds-
|
|
136
|
-
"@elliemae/ds-
|
|
137
|
-
"@elliemae/ds-page-header-v1": "3.55.0-next.
|
|
138
|
-
"@elliemae/ds-page-
|
|
139
|
-
"@elliemae/ds-page-
|
|
140
|
-
"@elliemae/ds-
|
|
141
|
-
"@elliemae/ds-
|
|
142
|
-
"@elliemae/ds-pagination": "3.55.0-next.
|
|
143
|
-
"@elliemae/ds-
|
|
144
|
-
"@elliemae/ds-
|
|
145
|
-
"@elliemae/ds-popper": "3.55.0-next.
|
|
146
|
-
"@elliemae/ds-
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-
|
|
150
|
-
"@elliemae/ds-query-builder": "3.55.0-next.
|
|
151
|
-
"@elliemae/ds-read-more": "3.55.0-next.
|
|
152
|
-
"@elliemae/ds-
|
|
153
|
-
"@elliemae/ds-
|
|
154
|
-
"@elliemae/ds-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-shared": "3.55.0-next.
|
|
158
|
-
"@elliemae/ds-shuttle": "3.55.0-next.
|
|
159
|
-
"@elliemae/ds-shuttle-v2": "3.55.0-next.
|
|
160
|
-
"@elliemae/ds-side-panel": "3.55.0-next.
|
|
161
|
-
"@elliemae/ds-side-panel-header": "3.55.0-next.
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-tabs": "3.55.0-next.
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-toolbar": "3.55.0-next.
|
|
176
|
-
"@elliemae/ds-toolbar-v1": "3.55.0-next.
|
|
177
|
-
"@elliemae/ds-toolbar-v2": "3.55.0-next.
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-treeview": "3.55.0-next.
|
|
182
|
-
"@elliemae/ds-truncated-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-virtual-list": "3.55.0-next.
|
|
188
|
-
"@elliemae/ds-wizard": "3.55.0-next.
|
|
189
|
-
"@elliemae/ds-wysiwygeditor": "3.55.0-next.
|
|
190
|
-
"@elliemae/ds-zipcode-search": "3.55.0-next.
|
|
191
|
-
"@elliemae/ds-zoom": "3.55.0-next.
|
|
192
|
-
"@elliemae/ds-zustand-helpers": "3.55.0-next.
|
|
7
|
+
"@elliemae/ds-accessibility": "3.55.0-next.3",
|
|
8
|
+
"@elliemae/ds-app-picker": "3.55.0-next.3",
|
|
9
|
+
"@elliemae/ds-accordion": "3.55.0-next.3",
|
|
10
|
+
"@elliemae/ds-backdrop": "3.55.0-next.3",
|
|
11
|
+
"@elliemae/ds-banner": "3.55.0-next.3",
|
|
12
|
+
"@elliemae/ds-basic": "3.55.0-next.3",
|
|
13
|
+
"@elliemae/ds-button": "3.55.0-next.3",
|
|
14
|
+
"@elliemae/ds-button-group": "3.55.0-next.3",
|
|
15
|
+
"@elliemae/ds-breadcrumb": "3.55.0-next.3",
|
|
16
|
+
"@elliemae/ds-button-v1": "3.55.0-next.3",
|
|
17
|
+
"@elliemae/ds-button-v2": "3.55.0-next.3",
|
|
18
|
+
"@elliemae/ds-card": "3.55.0-next.3",
|
|
19
|
+
"@elliemae/ds-card-navigation": "3.55.0-next.3",
|
|
20
|
+
"@elliemae/ds-card-v1": "3.55.0-next.3",
|
|
21
|
+
"@elliemae/ds-card-array": "3.55.0-next.3",
|
|
22
|
+
"@elliemae/ds-card-v1-detail": "3.55.0-next.3",
|
|
23
|
+
"@elliemae/ds-card-v2": "3.55.0-next.3",
|
|
24
|
+
"@elliemae/ds-card-v2-action-addon": "3.55.0-next.3",
|
|
25
|
+
"@elliemae/ds-card-v2-group": "3.55.0-next.3",
|
|
26
|
+
"@elliemae/ds-card-v3-poc": "3.55.0-next.3",
|
|
27
|
+
"@elliemae/ds-card-v3": "3.55.0-next.3",
|
|
28
|
+
"@elliemae/ds-chat": "3.55.0-next.3",
|
|
29
|
+
"@elliemae/ds-chat-container": "3.55.0-next.3",
|
|
30
|
+
"@elliemae/ds-chat-bubble": "3.55.0-next.3",
|
|
31
|
+
"@elliemae/ds-chat-container-header": "3.55.0-next.3",
|
|
32
|
+
"@elliemae/ds-chat-card": "3.55.0-next.3",
|
|
33
|
+
"@elliemae/ds-chat-message-delimeter": "3.55.0-next.3",
|
|
34
|
+
"@elliemae/ds-chat-empty-state": "3.55.0-next.3",
|
|
35
|
+
"@elliemae/ds-chat-floating-button": "3.55.0-next.3",
|
|
36
|
+
"@elliemae/ds-chat-system-message": "3.55.0-next.3",
|
|
37
|
+
"@elliemae/ds-chat-tile": "3.55.0-next.3",
|
|
38
|
+
"@elliemae/ds-chat-sidebar": "3.55.0-next.3",
|
|
39
|
+
"@elliemae/ds-chip": "3.55.0-next.3",
|
|
40
|
+
"@elliemae/ds-circular-progress-indicator": "3.55.0-next.3",
|
|
41
|
+
"@elliemae/ds-classnames": "3.55.0-next.3",
|
|
42
|
+
"@elliemae/ds-codeeditor": "3.55.0-next.3",
|
|
43
|
+
"@elliemae/ds-comments": "3.55.0-next.3",
|
|
44
|
+
"@elliemae/ds-common": "3.55.0-next.3",
|
|
45
|
+
"@elliemae/ds-controlled-form": "3.55.0-next.3",
|
|
46
|
+
"@elliemae/ds-csv-converter": "3.55.0-next.3",
|
|
47
|
+
"@elliemae/ds-data-table": "3.55.0-next.3",
|
|
48
|
+
"@elliemae/ds-data-table-action-cell": "3.55.0-next.3",
|
|
49
|
+
"@elliemae/ds-data-table-cell": "3.55.0-next.3",
|
|
50
|
+
"@elliemae/ds-data-table-cell-header": "3.55.0-next.3",
|
|
51
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.55.0-next.3",
|
|
52
|
+
"@elliemae/ds-data-table-filters": "3.55.0-next.3",
|
|
53
|
+
"@elliemae/ds-data-table-expand-cell": "3.55.0-next.3",
|
|
54
|
+
"@elliemae/ds-data-table-single-select-cell": "3.55.0-next.3",
|
|
55
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.55.0-next.3",
|
|
56
|
+
"@elliemae/ds-dataviz-pie": "3.55.0-next.3",
|
|
57
|
+
"@elliemae/ds-date-picker": "3.55.0-next.3",
|
|
58
|
+
"@elliemae/ds-dataviz": "3.55.0-next.3",
|
|
59
|
+
"@elliemae/ds-datagrids": "3.55.0-next.3",
|
|
60
|
+
"@elliemae/ds-date-range-picker": "3.55.0-next.3",
|
|
61
|
+
"@elliemae/ds-date-range-selector": "3.55.0-next.3",
|
|
62
|
+
"@elliemae/ds-date-time-picker": "3.55.0-next.3",
|
|
63
|
+
"@elliemae/ds-date-time-recurrence-picker": "3.55.0-next.3",
|
|
64
|
+
"@elliemae/ds-decision-graph": "3.55.0-next.3",
|
|
65
|
+
"@elliemae/ds-dialog": "3.55.0-next.3",
|
|
66
|
+
"@elliemae/ds-drag-and-drop": "3.55.0-next.3",
|
|
67
|
+
"@elliemae/ds-dropdownmenu": "3.55.0-next.3",
|
|
68
|
+
"@elliemae/ds-dropdownmenu-v2": "3.55.0-next.3",
|
|
69
|
+
"@elliemae/ds-dropzone": "3.55.0-next.3",
|
|
70
|
+
"@elliemae/ds-filterbar": "3.55.0-next.3",
|
|
71
|
+
"@elliemae/ds-fast-list": "3.55.0-next.3",
|
|
72
|
+
"@elliemae/ds-floating-context": "3.55.0-next.3",
|
|
73
|
+
"@elliemae/ds-form-checkbox": "3.55.0-next.3",
|
|
74
|
+
"@elliemae/ds-form-combobox": "3.55.0-next.3",
|
|
75
|
+
"@elliemae/ds-form-date-range-picker": "3.55.0-next.3",
|
|
76
|
+
"@elliemae/ds-form": "3.55.0-next.3",
|
|
77
|
+
"@elliemae/ds-form-date-time-picker": "3.55.0-next.3",
|
|
78
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.55.0-next.3",
|
|
79
|
+
"@elliemae/ds-form-input-text": "3.55.0-next.3",
|
|
80
|
+
"@elliemae/ds-form-input-textarea": "3.55.0-next.3",
|
|
81
|
+
"@elliemae/ds-form-layout-autocomplete": "3.55.0-next.3",
|
|
82
|
+
"@elliemae/ds-form-layout-input-group": "3.55.0-next.3",
|
|
83
|
+
"@elliemae/ds-form-layout-blocks": "3.55.0-next.3",
|
|
84
|
+
"@elliemae/ds-form-layout-label": "3.55.0-next.3",
|
|
85
|
+
"@elliemae/ds-form-native-select": "3.55.0-next.3",
|
|
86
|
+
"@elliemae/ds-form-multi-combobox": "3.55.0-next.3",
|
|
87
|
+
"@elliemae/ds-form-radio": "3.55.0-next.3",
|
|
88
|
+
"@elliemae/ds-form-select": "3.55.0-next.3",
|
|
89
|
+
"@elliemae/ds-form-single-combobox": "3.55.0-next.3",
|
|
90
|
+
"@elliemae/ds-form-toggle": "3.55.0-next.3",
|
|
91
|
+
"@elliemae/ds-global-header": "3.55.0-next.3",
|
|
92
|
+
"@elliemae/ds-grid": "3.55.0-next.3",
|
|
93
|
+
"@elliemae/ds-group-box": "3.55.0-next.3",
|
|
94
|
+
"@elliemae/ds-header": "3.55.0-next.3",
|
|
95
|
+
"@elliemae/ds-hidden": "3.55.0-next.3",
|
|
96
|
+
"@elliemae/ds-hooks-focus-stack": "3.55.0-next.3",
|
|
97
|
+
"@elliemae/ds-hooks-focus-trap": "3.55.0-next.3",
|
|
98
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.55.0-next.3",
|
|
99
|
+
"@elliemae/ds-hooks-fontsize-media": "3.55.0-next.3",
|
|
100
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.55.0-next.3",
|
|
101
|
+
"@elliemae/ds-hooks-is-mobile": "3.55.0-next.3",
|
|
102
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.55.0-next.3",
|
|
103
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.55.0-next.3",
|
|
104
|
+
"@elliemae/ds-hooks-on-blur-out": "3.55.0-next.3",
|
|
105
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.55.0-next.3",
|
|
106
|
+
"@elliemae/ds-icons": "3.55.0-next.3",
|
|
107
|
+
"@elliemae/ds-icon": "3.55.0-next.3",
|
|
108
|
+
"@elliemae/ds-image": "3.55.0-next.3",
|
|
109
|
+
"@elliemae/ds-imagelibrarymodal": "3.55.0-next.3",
|
|
110
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.55.0-next.3",
|
|
111
|
+
"@elliemae/ds-label-value": "3.55.0-next.3",
|
|
112
|
+
"@elliemae/ds-left-navigation": "3.55.0-next.3",
|
|
113
|
+
"@elliemae/ds-layout-provider": "3.55.0-next.3",
|
|
114
|
+
"@elliemae/ds-list-section-header": "3.55.0-next.3",
|
|
115
|
+
"@elliemae/ds-loading-indicator": "3.55.0-next.3",
|
|
116
|
+
"@elliemae/ds-menu": "3.55.0-next.3",
|
|
117
|
+
"@elliemae/ds-menu-button": "3.55.0-next.3",
|
|
118
|
+
"@elliemae/ds-menu-items": "3.55.0-next.3",
|
|
119
|
+
"@elliemae/ds-menu-items-action": "3.55.0-next.3",
|
|
120
|
+
"@elliemae/ds-menu-items-commons": "3.55.0-next.3",
|
|
121
|
+
"@elliemae/ds-menu-items-multi": "3.55.0-next.3",
|
|
122
|
+
"@elliemae/ds-menu-items-separator": "3.55.0-next.3",
|
|
123
|
+
"@elliemae/ds-menu-items-section": "3.55.0-next.3",
|
|
124
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.55.0-next.3",
|
|
125
|
+
"@elliemae/ds-menu-items-single": "3.55.0-next.3",
|
|
126
|
+
"@elliemae/ds-menu-items-skeleton": "3.55.0-next.3",
|
|
127
|
+
"@elliemae/ds-menu-items-submenu": "3.55.0-next.3",
|
|
128
|
+
"@elliemae/ds-menu-tree-item": "3.55.0-next.3",
|
|
129
|
+
"@elliemae/ds-mini-toolbar": "3.55.0-next.3",
|
|
130
|
+
"@elliemae/ds-mobile": "3.55.0-next.3",
|
|
131
|
+
"@elliemae/ds-modal": "3.55.0-next.3",
|
|
132
|
+
"@elliemae/ds-modal-slide": "3.55.0-next.3",
|
|
133
|
+
"@elliemae/ds-notification-badge": "3.55.0-next.3",
|
|
134
|
+
"@elliemae/ds-number-range-field": "3.55.0-next.3",
|
|
135
|
+
"@elliemae/ds-overlay": "3.55.0-next.3",
|
|
136
|
+
"@elliemae/ds-page-header": "3.55.0-next.3",
|
|
137
|
+
"@elliemae/ds-page-header-v1": "3.55.0-next.3",
|
|
138
|
+
"@elliemae/ds-page-layout": "3.55.0-next.3",
|
|
139
|
+
"@elliemae/ds-page-number": "3.55.0-next.3",
|
|
140
|
+
"@elliemae/ds-page-header-v2": "3.55.0-next.3",
|
|
141
|
+
"@elliemae/ds-pills-v2": "3.55.0-next.3",
|
|
142
|
+
"@elliemae/ds-pagination": "3.55.0-next.3",
|
|
143
|
+
"@elliemae/ds-pills": "3.55.0-next.3",
|
|
144
|
+
"@elliemae/ds-popover": "3.55.0-next.3",
|
|
145
|
+
"@elliemae/ds-popper": "3.55.0-next.3",
|
|
146
|
+
"@elliemae/ds-popperjs": "3.55.0-next.3",
|
|
147
|
+
"@elliemae/ds-portal": "3.55.0-next.3",
|
|
148
|
+
"@elliemae/ds-progress-indicator": "3.55.0-next.3",
|
|
149
|
+
"@elliemae/ds-props-helpers": "3.55.0-next.3",
|
|
150
|
+
"@elliemae/ds-query-builder": "3.55.0-next.3",
|
|
151
|
+
"@elliemae/ds-read-more": "3.55.0-next.3",
|
|
152
|
+
"@elliemae/ds-resizeable-container": "3.55.0-next.3",
|
|
153
|
+
"@elliemae/ds-ribbon": "3.55.0-next.3",
|
|
154
|
+
"@elliemae/ds-search-field": "3.55.0-next.3",
|
|
155
|
+
"@elliemae/ds-scrollable-container": "3.55.0-next.3",
|
|
156
|
+
"@elliemae/ds-separator": "3.55.0-next.3",
|
|
157
|
+
"@elliemae/ds-shared": "3.55.0-next.3",
|
|
158
|
+
"@elliemae/ds-shuttle": "3.55.0-next.3",
|
|
159
|
+
"@elliemae/ds-shuttle-v2": "3.55.0-next.3",
|
|
160
|
+
"@elliemae/ds-side-panel": "3.55.0-next.3",
|
|
161
|
+
"@elliemae/ds-side-panel-header": "3.55.0-next.3",
|
|
162
|
+
"@elliemae/ds-skeleton": "3.55.0-next.3",
|
|
163
|
+
"@elliemae/ds-slider-v2": "3.55.0-next.3",
|
|
164
|
+
"@elliemae/ds-slider": "3.55.0-next.3",
|
|
165
|
+
"@elliemae/ds-spinner": "3.55.0-next.3",
|
|
166
|
+
"@elliemae/ds-square-indicator": "3.55.0-next.3",
|
|
167
|
+
"@elliemae/ds-stepper": "3.55.0-next.3",
|
|
168
|
+
"@elliemae/ds-svg": "3.55.0-next.3",
|
|
169
|
+
"@elliemae/ds-system": "3.55.0-next.3",
|
|
170
|
+
"@elliemae/ds-tabs": "3.55.0-next.3",
|
|
171
|
+
"@elliemae/ds-test-utils": "3.55.0-next.3",
|
|
172
|
+
"@elliemae/ds-text-wrapper": "3.55.0-next.3",
|
|
173
|
+
"@elliemae/ds-time-picker": "3.55.0-next.3",
|
|
174
|
+
"@elliemae/ds-toast": "3.55.0-next.3",
|
|
175
|
+
"@elliemae/ds-toolbar": "3.55.0-next.3",
|
|
176
|
+
"@elliemae/ds-toolbar-v1": "3.55.0-next.3",
|
|
177
|
+
"@elliemae/ds-toolbar-v2": "3.55.0-next.3",
|
|
178
|
+
"@elliemae/ds-tooltip-v3": "3.55.0-next.3",
|
|
179
|
+
"@elliemae/ds-transition": "3.55.0-next.3",
|
|
180
|
+
"@elliemae/ds-tree-model": "3.55.0-next.3",
|
|
181
|
+
"@elliemae/ds-treeview": "3.55.0-next.3",
|
|
182
|
+
"@elliemae/ds-truncated-expandable-text": "3.55.0-next.3",
|
|
183
|
+
"@elliemae/ds-truncated-tooltip-text": "3.55.0-next.3",
|
|
184
|
+
"@elliemae/ds-typescript-helpers": "3.55.0-next.3",
|
|
185
|
+
"@elliemae/ds-typography": "3.55.0-next.3",
|
|
186
|
+
"@elliemae/ds-uploader": "3.55.0-next.3",
|
|
187
|
+
"@elliemae/ds-virtual-list": "3.55.0-next.3",
|
|
188
|
+
"@elliemae/ds-wizard": "3.55.0-next.3",
|
|
189
|
+
"@elliemae/ds-wysiwygeditor": "3.55.0-next.3",
|
|
190
|
+
"@elliemae/ds-zipcode-search": "3.55.0-next.3",
|
|
191
|
+
"@elliemae/ds-zoom": "3.55.0-next.3",
|
|
192
|
+
"@elliemae/ds-zustand-helpers": "3.55.0-next.3"
|
|
193
193
|
}
|
|
194
194
|
}
|