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 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
- // Remove the firefox skip after PUI-6678 is fixed
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
- if (browser.capabilities.browserName !== 'Safari') {
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.eyesCheckSnapshot(
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.eyesCheckSnapshot(
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.eyesCheckSnapshot(
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.eyesCheckSnapshot(
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.eyesCheckSnapshot(
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.eyesCheckSnapshot(
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.eyesCheckSnapshot(
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.eyesCheckSnapshot(
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.1",
4
+ "version": "3.55.0-next.3",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
- "@elliemae/ds-banner": "3.55.0-next.1",
8
- "@elliemae/ds-accordion": "3.55.0-next.1",
9
- "@elliemae/ds-basic": "3.55.0-next.1",
10
- "@elliemae/ds-app-picker": "3.55.0-next.1",
11
- "@elliemae/ds-accessibility": "3.55.0-next.1",
12
- "@elliemae/ds-button": "3.55.0-next.1",
13
- "@elliemae/ds-backdrop": "3.55.0-next.1",
14
- "@elliemae/ds-button-group": "3.55.0-next.1",
15
- "@elliemae/ds-card-array": "3.55.0-next.1",
16
- "@elliemae/ds-button-v2": "3.55.0-next.1",
17
- "@elliemae/ds-card": "3.55.0-next.1",
18
- "@elliemae/ds-breadcrumb": "3.55.0-next.1",
19
- "@elliemae/ds-button-v1": "3.55.0-next.1",
20
- "@elliemae/ds-card-v1": "3.55.0-next.1",
21
- "@elliemae/ds-card-navigation": "3.55.0-next.1",
22
- "@elliemae/ds-card-v1-detail": "3.55.0-next.1",
23
- "@elliemae/ds-card-v2-action-addon": "3.55.0-next.1",
24
- "@elliemae/ds-card-v2": "3.55.0-next.1",
25
- "@elliemae/ds-card-v2-group": "3.55.0-next.1",
26
- "@elliemae/ds-card-v3": "3.55.0-next.1",
27
- "@elliemae/ds-card-v3-poc": "3.55.0-next.1",
28
- "@elliemae/ds-chat": "3.55.0-next.1",
29
- "@elliemae/ds-chat-bubble": "3.55.0-next.1",
30
- "@elliemae/ds-chat-card": "3.55.0-next.1",
31
- "@elliemae/ds-chat-container": "3.55.0-next.1",
32
- "@elliemae/ds-chat-container-header": "3.55.0-next.1",
33
- "@elliemae/ds-chat-empty-state": "3.55.0-next.1",
34
- "@elliemae/ds-chat-message-delimeter": "3.55.0-next.1",
35
- "@elliemae/ds-chat-sidebar": "3.55.0-next.1",
36
- "@elliemae/ds-chat-system-message": "3.55.0-next.1",
37
- "@elliemae/ds-chip": "3.55.0-next.1",
38
- "@elliemae/ds-chat-tile": "3.55.0-next.1",
39
- "@elliemae/ds-chat-floating-button": "3.55.0-next.1",
40
- "@elliemae/ds-circular-progress-indicator": "3.55.0-next.1",
41
- "@elliemae/ds-codeeditor": "3.55.0-next.1",
42
- "@elliemae/ds-classnames": "3.55.0-next.1",
43
- "@elliemae/ds-comments": "3.55.0-next.1",
44
- "@elliemae/ds-controlled-form": "3.55.0-next.1",
45
- "@elliemae/ds-csv-converter": "3.55.0-next.1",
46
- "@elliemae/ds-common": "3.55.0-next.1",
47
- "@elliemae/ds-data-table": "3.55.0-next.1",
48
- "@elliemae/ds-data-table-action-cell": "3.55.0-next.1",
49
- "@elliemae/ds-data-table-cell": "3.55.0-next.1",
50
- "@elliemae/ds-data-table-cell-header": "3.55.0-next.1",
51
- "@elliemae/ds-data-table-expand-cell": "3.55.0-next.1",
52
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.55.0-next.1",
53
- "@elliemae/ds-data-table-filters": "3.55.0-next.1",
54
- "@elliemae/ds-data-table-single-select-cell": "3.55.0-next.1",
55
- "@elliemae/ds-data-table-multi-select-cell": "3.55.0-next.1",
56
- "@elliemae/ds-datagrids": "3.55.0-next.1",
57
- "@elliemae/ds-dataviz": "3.55.0-next.1",
58
- "@elliemae/ds-dataviz-pie": "3.55.0-next.1",
59
- "@elliemae/ds-date-picker": "3.55.0-next.1",
60
- "@elliemae/ds-date-range-picker": "3.55.0-next.1",
61
- "@elliemae/ds-date-range-selector": "3.55.0-next.1",
62
- "@elliemae/ds-date-time-picker": "3.55.0-next.1",
63
- "@elliemae/ds-date-time-recurrence-picker": "3.55.0-next.1",
64
- "@elliemae/ds-decision-graph": "3.55.0-next.1",
65
- "@elliemae/ds-drag-and-drop": "3.55.0-next.1",
66
- "@elliemae/ds-dropdownmenu-v2": "3.55.0-next.1",
67
- "@elliemae/ds-dialog": "3.55.0-next.1",
68
- "@elliemae/ds-dropdownmenu": "3.55.0-next.1",
69
- "@elliemae/ds-fast-list": "3.55.0-next.1",
70
- "@elliemae/ds-form-checkbox": "3.55.0-next.1",
71
- "@elliemae/ds-filterbar": "3.55.0-next.1",
72
- "@elliemae/ds-dropzone": "3.55.0-next.1",
73
- "@elliemae/ds-floating-context": "3.55.0-next.1",
74
- "@elliemae/ds-form-combobox": "3.55.0-next.1",
75
- "@elliemae/ds-form-date-range-picker": "3.55.0-next.1",
76
- "@elliemae/ds-form": "3.55.0-next.1",
77
- "@elliemae/ds-form-helpers-mask-hooks": "3.55.0-next.1",
78
- "@elliemae/ds-form-date-time-picker": "3.55.0-next.1",
79
- "@elliemae/ds-form-input-textarea": "3.55.0-next.1",
80
- "@elliemae/ds-form-layout-autocomplete": "3.55.0-next.1",
81
- "@elliemae/ds-form-layout-blocks": "3.55.0-next.1",
82
- "@elliemae/ds-form-layout-label": "3.55.0-next.1",
83
- "@elliemae/ds-form-input-text": "3.55.0-next.1",
84
- "@elliemae/ds-form-layout-input-group": "3.55.0-next.1",
85
- "@elliemae/ds-form-multi-combobox": "3.55.0-next.1",
86
- "@elliemae/ds-form-native-select": "3.55.0-next.1",
87
- "@elliemae/ds-form-radio": "3.55.0-next.1",
88
- "@elliemae/ds-form-single-combobox": "3.55.0-next.1",
89
- "@elliemae/ds-form-select": "3.55.0-next.1",
90
- "@elliemae/ds-form-toggle": "3.55.0-next.1",
91
- "@elliemae/ds-global-header": "3.55.0-next.1",
92
- "@elliemae/ds-grid": "3.55.0-next.1",
93
- "@elliemae/ds-group-box": "3.55.0-next.1",
94
- "@elliemae/ds-header": "3.55.0-next.1",
95
- "@elliemae/ds-hidden": "3.55.0-next.1",
96
- "@elliemae/ds-hooks-focus-stack": "3.55.0-next.1",
97
- "@elliemae/ds-hooks-fontsize-detector": "3.55.0-next.1",
98
- "@elliemae/ds-hooks-fontsize-media": "3.55.0-next.1",
99
- "@elliemae/ds-hooks-focus-trap": "3.55.0-next.1",
100
- "@elliemae/ds-hooks-headless-tooltip": "3.55.0-next.1",
101
- "@elliemae/ds-hooks-is-mobile": "3.55.0-next.1",
102
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.55.0-next.1",
103
- "@elliemae/ds-hooks-keyboard-navigation": "3.55.0-next.1",
104
- "@elliemae/ds-hooks-on-first-focus-in": "3.55.0-next.1",
105
- "@elliemae/ds-hooks-on-blur-out": "3.55.0-next.1",
106
- "@elliemae/ds-icon": "3.55.0-next.1",
107
- "@elliemae/ds-image": "3.55.0-next.1",
108
- "@elliemae/ds-icons": "3.55.0-next.1",
109
- "@elliemae/ds-imagelibrarymodal": "3.55.0-next.1",
110
- "@elliemae/ds-indeterminate-progress-indicator": "3.55.0-next.1",
111
- "@elliemae/ds-label-value": "3.55.0-next.1",
112
- "@elliemae/ds-left-navigation": "3.55.0-next.1",
113
- "@elliemae/ds-layout-provider": "3.55.0-next.1",
114
- "@elliemae/ds-list-section-header": "3.55.0-next.1",
115
- "@elliemae/ds-menu": "3.55.0-next.1",
116
- "@elliemae/ds-loading-indicator": "3.55.0-next.1",
117
- "@elliemae/ds-menu-button": "3.55.0-next.1",
118
- "@elliemae/ds-menu-items": "3.55.0-next.1",
119
- "@elliemae/ds-menu-items-action": "3.55.0-next.1",
120
- "@elliemae/ds-menu-items-multi": "3.55.0-next.1",
121
- "@elliemae/ds-menu-items-commons": "3.55.0-next.1",
122
- "@elliemae/ds-menu-items-section": "3.55.0-next.1",
123
- "@elliemae/ds-menu-items-separator": "3.55.0-next.1",
124
- "@elliemae/ds-menu-items-single": "3.55.0-next.1",
125
- "@elliemae/ds-menu-items-single-with-submenu": "3.55.0-next.1",
126
- "@elliemae/ds-menu-items-skeleton": "3.55.0-next.1",
127
- "@elliemae/ds-menu-items-submenu": "3.55.0-next.1",
128
- "@elliemae/ds-mini-toolbar": "3.55.0-next.1",
129
- "@elliemae/ds-mobile": "3.55.0-next.1",
130
- "@elliemae/ds-menu-tree-item": "3.55.0-next.1",
131
- "@elliemae/ds-modal-slide": "3.55.0-next.1",
132
- "@elliemae/ds-modal": "3.55.0-next.1",
133
- "@elliemae/ds-notification-badge": "3.55.0-next.1",
134
- "@elliemae/ds-page-header": "3.55.0-next.1",
135
- "@elliemae/ds-number-range-field": "3.55.0-next.1",
136
- "@elliemae/ds-overlay": "3.55.0-next.1",
137
- "@elliemae/ds-page-header-v1": "3.55.0-next.1",
138
- "@elliemae/ds-page-header-v2": "3.55.0-next.1",
139
- "@elliemae/ds-page-layout": "3.55.0-next.1",
140
- "@elliemae/ds-pills": "3.55.0-next.1",
141
- "@elliemae/ds-page-number": "3.55.0-next.1",
142
- "@elliemae/ds-pagination": "3.55.0-next.1",
143
- "@elliemae/ds-popover": "3.55.0-next.1",
144
- "@elliemae/ds-popperjs": "3.55.0-next.1",
145
- "@elliemae/ds-popper": "3.55.0-next.1",
146
- "@elliemae/ds-progress-indicator": "3.55.0-next.1",
147
- "@elliemae/ds-pills-v2": "3.55.0-next.1",
148
- "@elliemae/ds-props-helpers": "3.55.0-next.1",
149
- "@elliemae/ds-portal": "3.55.0-next.1",
150
- "@elliemae/ds-query-builder": "3.55.0-next.1",
151
- "@elliemae/ds-read-more": "3.55.0-next.1",
152
- "@elliemae/ds-ribbon": "3.55.0-next.1",
153
- "@elliemae/ds-resizeable-container": "3.55.0-next.1",
154
- "@elliemae/ds-scrollable-container": "3.55.0-next.1",
155
- "@elliemae/ds-separator": "3.55.0-next.1",
156
- "@elliemae/ds-search-field": "3.55.0-next.1",
157
- "@elliemae/ds-shared": "3.55.0-next.1",
158
- "@elliemae/ds-shuttle": "3.55.0-next.1",
159
- "@elliemae/ds-shuttle-v2": "3.55.0-next.1",
160
- "@elliemae/ds-side-panel": "3.55.0-next.1",
161
- "@elliemae/ds-side-panel-header": "3.55.0-next.1",
162
- "@elliemae/ds-slider": "3.55.0-next.1",
163
- "@elliemae/ds-skeleton": "3.55.0-next.1",
164
- "@elliemae/ds-spinner": "3.55.0-next.1",
165
- "@elliemae/ds-stepper": "3.55.0-next.1",
166
- "@elliemae/ds-slider-v2": "3.55.0-next.1",
167
- "@elliemae/ds-square-indicator": "3.55.0-next.1",
168
- "@elliemae/ds-system": "3.55.0-next.1",
169
- "@elliemae/ds-svg": "3.55.0-next.1",
170
- "@elliemae/ds-tabs": "3.55.0-next.1",
171
- "@elliemae/ds-text-wrapper": "3.55.0-next.1",
172
- "@elliemae/ds-test-utils": "3.55.0-next.1",
173
- "@elliemae/ds-toast": "3.55.0-next.1",
174
- "@elliemae/ds-time-picker": "3.55.0-next.1",
175
- "@elliemae/ds-toolbar": "3.55.0-next.1",
176
- "@elliemae/ds-toolbar-v1": "3.55.0-next.1",
177
- "@elliemae/ds-toolbar-v2": "3.55.0-next.1",
178
- "@elliemae/ds-tree-model": "3.55.0-next.1",
179
- "@elliemae/ds-tooltip-v3": "3.55.0-next.1",
180
- "@elliemae/ds-transition": "3.55.0-next.1",
181
- "@elliemae/ds-treeview": "3.55.0-next.1",
182
- "@elliemae/ds-truncated-tooltip-text": "3.55.0-next.1",
183
- "@elliemae/ds-typescript-helpers": "3.55.0-next.1",
184
- "@elliemae/ds-typography": "3.55.0-next.1",
185
- "@elliemae/ds-uploader": "3.55.0-next.1",
186
- "@elliemae/ds-truncated-expandable-text": "3.55.0-next.1",
187
- "@elliemae/ds-virtual-list": "3.55.0-next.1",
188
- "@elliemae/ds-wizard": "3.55.0-next.1",
189
- "@elliemae/ds-wysiwygeditor": "3.55.0-next.1",
190
- "@elliemae/ds-zipcode-search": "3.55.0-next.1",
191
- "@elliemae/ds-zoom": "3.55.0-next.1",
192
- "@elliemae/ds-zustand-helpers": "3.55.0-next.1"
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
  }