dimsum-e2e-tests 3.70.0-next.1 → 3.70.0-next.2

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,10 @@
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.70.0-next.2 (2026-05-05)
7
+
8
+ **Note:** Version bump only for package dimsum-e2e-tests
9
+
6
10
  ## 3.70.0-next.1 (2026-04-22)
7
11
 
8
12
  **Note:** Version bump only for package dimsum-e2e-tests
@@ -57,7 +57,7 @@ export default class DSChipCO extends PageObject {
57
57
  }
58
58
 
59
59
  static async getEllipsisSlotByIndex(index = 0) {
60
- return $$('[data-dimsum-slot="dsChipEllipsis"]')[index];
60
+ return $$('[data-dimsum-parent-slot="dsChipEllipsis"]')[index];
61
61
  }
62
62
 
63
63
  static async getLabelSlotByIndex(index = 0) {
@@ -169,7 +169,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
169
169
  await expect(pill).not.toBeDisplayed();
170
170
  });
171
171
  it('should remove correctly an option from name column', async () => {
172
- const removePill = await FilterBarCO.getPillCloseButtonByName('Remove Francisco');
172
+ const removePill = await FilterBarCO.getPillCloseButtonByName('Remove Francisco from Name');
173
173
  await removePill.click();
174
174
  const pill = await FilterBarCO.getPillByText('Francisco');
175
175
  await expect(pill).not.toBeDisplayed();
@@ -318,6 +318,9 @@ export default class DSDateTimePickerCO extends PageObject {
318
318
  static getTimeWheelCurrentMeridiemVisual = async () =>
319
319
  $(`[data-testid="ds-controlled-date-time-picker-timewheel-current-meridiem-visual-element"]`);
320
320
 
321
+ static getTimeWheelCurrentMeridiemVisualByIndex = async (index) =>
322
+ (await $$(`[data-testid="ds-controlled-date-time-picker-timewheel-current-meridiem-visual-element"]`))[index];
323
+
321
324
  static getTimeWheelNextMeridiem = async () =>
322
325
  $(`[data-testid="ds-controlled-date-time-picker-timewheel-next-meridiem"]`);
323
326
 
@@ -115,7 +115,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
115
115
  await dateTrigger.click();
116
116
  const nextHour = await DateTimePickerCO.getTimeWheelNextHour();
117
117
  await nextHour.click(); // This sets time at 06
118
- const focusedDay = await (await DateTimePickerCO.getCalendarSelectedFocusedDay()).getAttribute('aria-label');
118
+ const focusedDay = await (await DateTimePickerCO.getCalendarSelectedDay()).getAttribute('aria-label');
119
119
  const dayInput = await (await DateTimePickerCO.getDayInputByIndex()).getAttribute('value');
120
120
  const monthInput = await (await DateTimePickerCO.getMonthInputByIndex()).getAttribute('value');
121
121
  const yearInput = await (await DateTimePickerCO.getYearInputByIndex()).getAttribute('value');
@@ -20,7 +20,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
20
20
  await expect(snapshot).toEqual(0);
21
21
  });
22
22
  it('02: should display focus and hover states on the controller only calendar', async () => {
23
- const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiem();
23
+ const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiemVisual();
24
24
  await browser.keys('ArrowRight');
25
25
  await mouseOver(currentMeridiem);
26
26
  const snapshot = await browser.checkSnapshot(
@@ -42,7 +42,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
42
42
  await browser.keys('Escape');
43
43
  const timePicker = await DateTimePickerCO.getTimeWheelPickerBtnByIndex(0);
44
44
  await timePicker.click();
45
- const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiem();
45
+ const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiemVisualByIndex(2);
46
46
  await mouseOver(currentMeridiem);
47
47
  const snapshot = await browser.checkSnapshot(
48
48
  DateTimePickerCO.snapshotPath('applyAriaDisabled-invalid-selection-showcase-open-time'),
@@ -20,7 +20,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
20
20
  await expect(snapshot).toEqual(0);
21
21
  });
22
22
  it('02: should display focus and hover states on the controller only calendar', async () => {
23
- const am = await DateTimePickerCO.getTimeWheelMeridiemByValue('AM');
23
+ const am = await DateTimePickerCO.getTimeWheelCurrentMeridiemVisual('AM');
24
24
  await browser.keys('ArrowRight');
25
25
  await mouseOver(am);
26
26
  const snapshot = await browser.checkSnapshot(
@@ -31,7 +31,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
31
31
  it('03: should display readOnly + N/A state with open date picker', async () => {
32
32
  const picker = await DateTimePickerCO.getCalendarPickerBtn();
33
33
  await picker.click();
34
- const focusedDay = await DateTimePickerCO.getCalendarFocusedDay();
34
+ const focusedDay = await DateTimePickerCO.getCalendarSelectedFocusedDay();
35
35
  await mouseOver(focusedDay);
36
36
  const snapshot = await browser.checkSnapshot(
37
37
  DateTimePickerCO.snapshotPath('readOnly-invalid-selection-showcase-open-date'),
@@ -42,7 +42,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
42
42
  await browser.keys('Escape');
43
43
  const timePicker = await DateTimePickerCO.getTimeWheelPickerBtnByIndex(0);
44
44
  await timePicker.click();
45
- const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiem();
45
+ const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiemVisualByIndex(2);
46
46
  await mouseOver(currentMeridiem);
47
47
  const snapshot = await browser.checkSnapshot(
48
48
  DateTimePickerCO.snapshotPath('readOnly-invalid-selection-showcase-open-time'),
@@ -12,7 +12,7 @@ if (
12
12
  if (errorOnGo) throw errorOnGo;
13
13
  });
14
14
  it('01: should display basic GlobalHeadercwith customized slots', async () => {
15
- await (await GlobalHeader.getGHToolbarItem(2)).click();
15
+ await (await GlobalHeader.getGHMenubarItemButtonSlotByIndex(3)).click();
16
16
  const snapshot = await browser.checkSnapshot(GlobalHeader.snapshotPath('global-header-slots'));
17
17
  await expect(snapshot).toEqual(0);
18
18
  });
@@ -70,7 +70,7 @@ export default class DSPillsV2CO extends PageObject {
70
70
  static getPillByIndex = async (index) => getElementByIndex(this.getPills, index);
71
71
 
72
72
  static async getPillsTextByIndex(index = 0) {
73
- return $$('[data-testid="ds-pill-wrapper"] [data-testid="DS-SimpleTruncateText"]')[index];
73
+ return $$('[data-testid="ds-pill-wrapper"]')[index];
74
74
  }
75
75
 
76
76
  static async getResetBtn() {
@@ -28,10 +28,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
28
28
  const pills = await DSPillsV2CO.getPills();
29
29
  const howManyPills = pills.length;
30
30
  const menu = await DSMenuButtonCO.getMenuRoot();
31
- const minipillLabel1 = await (await DSPillsV2CO.getPillsTextByIndex(1)).getText();
32
- const minipillLabel2 = await (await DSPillsV2CO.getPillsTextByIndex(2)).getText();
33
- await expect(minipillLabel1).toEqual('Bold');
34
- await expect(minipillLabel2).toEqual('Underlined');
31
+ const minipill1 = await DSPillsV2CO.getPillsTextByIndex(1);
32
+ const minipill2 = await DSPillsV2CO.getPillsTextByIndex(2);
33
+ await expect(minipill1).toHaveAttribute('data-label', 'Bold');
34
+ await expect(minipill2).toHaveAttribute('data-label', 'Underlined');
35
35
  await expect(menu).toBeDisplayedInViewport();
36
36
  await expect(howManyPills).toEqual(3);
37
37
  });
@@ -57,9 +57,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
57
57
  const pills = await DSPillsV2CO.getPills();
58
58
  const howManyPills = pills.length;
59
59
  const menu = await DSMenuButtonCO.getMenuRoot();
60
- const minipillLabel1 = await (await DSPillsV2CO.getPillsTextByIndex(1)).getText();
60
+ const minipill1 = await DSPillsV2CO.getPillsTextByIndex(1);
61
61
  await expect(optionRed).toHaveAttribute('aria-checked', 'true');
62
- await expect(minipillLabel1).toEqual('Red');
62
+ await expect(minipill1).toHaveAttribute('data-label', 'Red');
63
63
  await expect(menu).toBeDisplayedInViewport();
64
64
  await expect(howManyPills).toEqual(2);
65
65
  });
@@ -77,9 +77,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
77
77
  const pills = await DSPillsV2CO.getPills();
78
78
  const howManyPills = pills.length;
79
79
  const menu = await DSMenuButtonCO.getMenuRoot();
80
- const minipillLabel1 = await (await DSPillsV2CO.getPillsTextByIndex(1)).getText();
80
+ const minipill1 = await DSPillsV2CO.getPillsTextByIndex(1);
81
81
  await expect(optionBlack).toHaveAttribute('aria-checked', 'true');
82
- await expect(minipillLabel1).toEqual('Black');
82
+ await expect(minipill1).toHaveAttribute('data-label', 'Black');
83
83
  await expect(menu).toBeDisplayedInViewport();
84
84
  await expect(howManyPills).toEqual(4);
85
85
  });
@@ -90,10 +90,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
90
90
  const pills = await DSPillsV2CO.getPills();
91
91
  const howManyPills = pills.length;
92
92
  const menu = await DSMenuButtonCO.getMenuRoot();
93
- const minipillLabel1 = await (await DSPillsV2CO.getPillsTextByIndex(1)).getText();
93
+ const minipill1 = await DSPillsV2CO.getPillsTextByIndex(1);
94
94
  await expect(optionBlack).toHaveAttribute('aria-checked', 'false');
95
95
  await expect(optionRed).toHaveAttribute('aria-checked', 'true');
96
- await expect(minipillLabel1).toEqual('Red');
96
+ await expect(minipill1).toHaveAttribute('data-label', 'Red');
97
97
  await expect(menu).toBeDisplayedInViewport();
98
98
  await expect(howManyPills).toEqual(4);
99
99
  });
@@ -117,9 +117,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
117
117
  const pills = await DSPillsV2CO.getPills();
118
118
  const howManyPills = pills.length;
119
119
  const menu = await DSMenuButtonCO.getMenuRoot();
120
- const minipillLabel1 = await (await DSPillsV2CO.getPillsTextByIndex(3)).getText();
120
+ const minipill1 = await DSPillsV2CO.getPillsTextByIndex(3);
121
121
  await expect(optionItalic).toHaveAttribute('aria-checked', 'true');
122
- await expect(minipillLabel1).toEqual('Italic');
122
+ await expect(minipill1).toHaveAttribute('data-label', 'Italic');
123
123
  await expect(menu).toBeDisplayedInViewport();
124
124
  await expect(howManyPills).toEqual(4);
125
125
  });
@@ -130,12 +130,12 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
130
130
  const pills = await DSPillsV2CO.getPills();
131
131
  const howManyPills = pills.length;
132
132
  const menu = await DSMenuButtonCO.getMenuRoot();
133
- const minipillLabel1 = await (await DSPillsV2CO.getPillsTextByIndex(3)).getText();
134
- const minipillLabel2 = await (await DSPillsV2CO.getPillsTextByIndex(4)).getText();
133
+ const minipill1 = await DSPillsV2CO.getPillsTextByIndex(3);
134
+ const minipill2 = await DSPillsV2CO.getPillsTextByIndex(4);
135
135
  await expect(optionItalic).toHaveAttribute('aria-checked', 'true');
136
136
  await expect(optionBold).toHaveAttribute('aria-checked', 'true');
137
- await expect(minipillLabel1).toEqual('Italic');
138
- await expect(minipillLabel2).toEqual('Bold');
137
+ await expect(minipill1).toHaveAttribute('data-label', 'Italic');
138
+ await expect(minipill2).toHaveAttribute('data-label', 'Bold');
139
139
  await expect(menu).toBeDisplayedInViewport();
140
140
  await expect(howManyPills).toEqual(5);
141
141
  });
@@ -146,10 +146,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
146
146
  const pills = await DSPillsV2CO.getPills();
147
147
  const howManyPills = pills.length;
148
148
  const menu = await DSMenuButtonCO.getMenuRoot();
149
- const minipillLabel1 = await (await DSPillsV2CO.getPillsTextByIndex(3)).getText();
149
+ const minipill1 = await DSPillsV2CO.getPillsTextByIndex(3);
150
150
  await expect(optionItalic).toHaveAttribute('aria-checked', 'false');
151
151
  await expect(optionBold).toHaveAttribute('aria-checked', 'true');
152
- await expect(minipillLabel1).toEqual('Bold');
152
+ await expect(minipill1).toHaveAttribute('data-label', 'Bold');
153
153
  await expect(menu).toBeDisplayedInViewport();
154
154
  await expect(howManyPills).toEqual(4);
155
155
  });
@@ -1,5 +1,17 @@
1
1
  /* eslint-disable max-statements */
2
2
  import DSSliderV2CO from './DSSliderV2CO';
3
+ import { clickPosition } from '../helpers';
4
+
5
+ // Use viewport-absolute coordinates instead of element.click({ x, y }):
6
+ // safaridriver scales element-origin offsets by DPR (doubles them on Retina),
7
+ // which produced 2× the expected slider value in Safari.
8
+ const clickAtOffsetFrom = async (element, dx, dy = 0) => {
9
+ const { x, y } = await element.getLocation();
10
+ const { width, height } = await element.getSize();
11
+ const cx = Math.round(x + width / 2) + dx;
12
+ const cy = Math.round(y + height / 2) + dy;
13
+ await clickPosition(cx, cy);
14
+ };
3
15
 
4
16
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
5
17
  describe('PUI-16581 - SliderV2 - Track Click, Single -Func', () => {
@@ -9,13 +21,13 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
9
21
  });
10
22
  it('01: should change slider value with click jump (click on track right)', async () => {
11
23
  const handler = await DSSliderV2CO.getSliderThumb();
12
- await handler.click({ x: 400, y: 0 });
24
+ await clickAtOffsetFrom(handler, 400);
13
25
  const valueAfterChange = await DSSliderV2CO.getSliderValue(handler);
14
26
  await expect(valueAfterChange).toEqual('20');
15
27
  });
16
28
  it('02: should change slider value with click jump (click on track left)', async () => {
17
29
  const handler = await DSSliderV2CO.getSliderThumb();
18
- await handler.click({ x: -200, y: 0 });
30
+ await clickAtOffsetFrom(handler, -200);
19
31
  const valueAfterChange = await DSSliderV2CO.getSliderValue(handler);
20
32
  await expect(valueAfterChange).toEqual('10');
21
33
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "dimsum-e2e-tests",
4
- "version": "3.70.0-next.1",
4
+ "version": "3.70.0-next.2",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
7
  "@elliemae/ds-legacy-button": "1.0.16",
@@ -41,156 +41,156 @@
41
41
  "@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
42
42
  "@elliemae/ds-legacy-zipcode-search": "1.0.16",
43
43
  "@elliemae/ds-legacy-zoom": "1.0.16",
44
- "@elliemae/ds-accessibility": "3.70.0-next.1",
45
- "@elliemae/ds-accordion": "3.70.0-next.1",
46
- "@elliemae/ds-backdrop": "3.70.0-next.1",
47
- "@elliemae/ds-app-picker": "3.70.0-next.1",
48
- "@elliemae/ds-banner": "3.70.0-next.1",
49
- "@elliemae/ds-basic": "3.70.0-next.1",
50
- "@elliemae/ds-breadcrumb": "3.70.0-next.1",
51
- "@elliemae/ds-button-v2": "3.70.0-next.1",
52
- "@elliemae/ds-card": "3.70.0-next.1",
53
- "@elliemae/ds-card-v1-detail": "3.70.0-next.1",
54
- "@elliemae/ds-card-navigation": "3.70.0-next.1",
55
- "@elliemae/ds-card-v1": "3.70.0-next.1",
56
- "@elliemae/ds-card-v2": "3.70.0-next.1",
57
- "@elliemae/ds-card-v2-action-addon": "3.70.0-next.1",
58
- "@elliemae/ds-card-v2-group": "3.70.0-next.1",
59
- "@elliemae/ds-card-v3-poc": "3.70.0-next.1",
60
- "@elliemae/ds-card-v3": "3.70.0-next.1",
61
- "@elliemae/ds-chat-bubble": "3.70.0-next.1",
62
- "@elliemae/ds-chat": "3.70.0-next.1",
63
- "@elliemae/ds-chat-card": "3.70.0-next.1",
64
- "@elliemae/ds-chat-container": "3.70.0-next.1",
65
- "@elliemae/ds-chat-container-header": "3.70.0-next.1",
66
- "@elliemae/ds-chat-empty-state": "3.70.0-next.1",
67
- "@elliemae/ds-chat-floating-button": "3.70.0-next.1",
68
- "@elliemae/ds-chat-message-delimeter": "3.70.0-next.1",
69
- "@elliemae/ds-chat-sidebar": "3.70.0-next.1",
70
- "@elliemae/ds-chat-system-message": "3.70.0-next.1",
71
- "@elliemae/ds-chip": "3.70.0-next.1",
72
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.1",
73
- "@elliemae/ds-chat-tile": "3.70.0-next.1",
74
- "@elliemae/ds-codeeditor": "3.70.0-next.1",
75
- "@elliemae/ds-classnames": "3.70.0-next.1",
76
- "@elliemae/ds-csv-converter": "3.70.0-next.1",
77
- "@elliemae/ds-controlled-form": "3.70.0-next.1",
78
- "@elliemae/ds-comments": "3.70.0-next.1",
79
- "@elliemae/ds-data-table": "3.70.0-next.1",
80
- "@elliemae/ds-data-table-cell": "3.70.0-next.1",
81
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.1",
82
- "@elliemae/ds-data-table-cell-header": "3.70.0-next.1",
83
- "@elliemae/ds-data-table-expand-cell": "3.70.0-next.1",
84
- "@elliemae/ds-data-table-filters": "3.70.0-next.1",
85
- "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.1",
86
- "@elliemae/ds-dataviz": "3.70.0-next.1",
87
- "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.1",
88
- "@elliemae/ds-data-table-action-cell": "3.70.0-next.1",
89
- "@elliemae/ds-dataviz-pie": "3.70.0-next.1",
90
- "@elliemae/ds-date-time-picker": "3.70.0-next.1",
91
- "@elliemae/ds-dialog": "3.70.0-next.1",
92
- "@elliemae/ds-decision-graph": "3.70.0-next.1",
93
- "@elliemae/ds-dropzone": "3.70.0-next.1",
94
- "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.1",
95
- "@elliemae/ds-drag-and-drop": "3.70.0-next.1",
96
- "@elliemae/ds-fast-list": "3.70.0-next.1",
97
- "@elliemae/ds-filter-bar": "3.70.0-next.1",
98
- "@elliemae/ds-form-checkbox": "3.70.0-next.1",
99
- "@elliemae/ds-floating-context": "3.70.0-next.1",
100
- "@elliemae/ds-form-date-range-picker": "3.70.0-next.1",
101
- "@elliemae/ds-form-combobox": "3.70.0-next.1",
102
- "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.1",
103
- "@elliemae/ds-form-date-time-picker": "3.70.0-next.1",
104
- "@elliemae/ds-form-input-text": "3.70.0-next.1",
105
- "@elliemae/ds-form-layout-blocks": "3.70.0-next.1",
106
- "@elliemae/ds-form-layout-input-group": "3.70.0-next.1",
107
- "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.1",
108
- "@elliemae/ds-form-input-textarea": "3.70.0-next.1",
109
- "@elliemae/ds-form-layout-label": "3.70.0-next.1",
110
- "@elliemae/ds-form-multi-combobox": "3.70.0-next.1",
111
- "@elliemae/ds-form-select": "3.70.0-next.1",
112
- "@elliemae/ds-form-native-select": "3.70.0-next.1",
113
- "@elliemae/ds-form-radio": "3.70.0-next.1",
114
- "@elliemae/ds-form-toggle": "3.70.0-next.1",
115
- "@elliemae/ds-grid": "3.70.0-next.1",
116
- "@elliemae/ds-hooks-focus-stack": "3.70.0-next.1",
117
- "@elliemae/ds-form-single-combobox": "3.70.0-next.1",
118
- "@elliemae/ds-global-header": "3.70.0-next.1",
119
- "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.1",
120
- "@elliemae/ds-hooks-is-mobile": "3.70.0-next.1",
121
- "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.1",
122
- "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.1",
123
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.1",
124
- "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.1",
125
- "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.1",
126
- "@elliemae/ds-icon": "3.70.0-next.1",
127
- "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.1",
128
- "@elliemae/ds-hooks-focus-trap": "3.70.0-next.1",
129
- "@elliemae/ds-imagelibrarymodal": "3.70.0-next.1",
130
- "@elliemae/ds-icons": "3.70.0-next.1",
131
- "@elliemae/ds-layout-provider": "3.70.0-next.1",
132
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.1",
133
- "@elliemae/ds-image": "3.70.0-next.1",
134
- "@elliemae/ds-left-navigation": "3.70.0-next.1",
135
- "@elliemae/ds-loading-indicator": "3.70.0-next.1",
136
- "@elliemae/ds-menu-button": "3.70.0-next.1",
137
- "@elliemae/ds-menu-items": "3.70.0-next.1",
138
- "@elliemae/ds-menu-items-action": "3.70.0-next.1",
139
- "@elliemae/ds-menu-items-commons": "3.70.0-next.1",
140
- "@elliemae/ds-menu-items-multi": "3.70.0-next.1",
141
- "@elliemae/ds-menu-items-separator": "3.70.0-next.1",
142
- "@elliemae/ds-menu-items-section": "3.70.0-next.1",
143
- "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.1",
144
- "@elliemae/ds-menu-items-single": "3.70.0-next.1",
145
- "@elliemae/ds-menu-items-skeleton": "3.70.0-next.1",
146
- "@elliemae/ds-menu-items-submenu": "3.70.0-next.1",
147
- "@elliemae/ds-menu-tree-item": "3.70.0-next.1",
148
- "@elliemae/ds-mobile": "3.70.0-next.1",
149
- "@elliemae/ds-notification-badge": "3.70.0-next.1",
150
- "@elliemae/ds-modal-slide": "3.70.0-next.1",
151
- "@elliemae/ds-overlay": "3.70.0-next.1",
152
- "@elliemae/ds-page-header": "3.70.0-next.1",
153
- "@elliemae/ds-page-header-v1": "3.70.0-next.1",
154
- "@elliemae/ds-page-header-v2": "3.70.0-next.1",
155
- "@elliemae/ds-page-layout": "3.70.0-next.1",
156
- "@elliemae/ds-pagination": "3.70.0-next.1",
157
- "@elliemae/ds-pills-v2": "3.70.0-next.1",
158
- "@elliemae/ds-popperjs": "3.70.0-next.1",
159
- "@elliemae/ds-progress-indicator": "3.70.0-next.1",
160
- "@elliemae/ds-portal": "3.70.0-next.1",
161
- "@elliemae/ds-props-helpers": "3.70.0-next.1",
162
- "@elliemae/ds-query-builder": "3.70.0-next.1",
163
- "@elliemae/ds-read-more": "3.70.0-next.1",
164
- "@elliemae/ds-ribbon": "3.70.0-next.1",
165
- "@elliemae/ds-separator": "3.70.0-next.1",
166
- "@elliemae/ds-scrollable-container": "3.70.0-next.1",
167
- "@elliemae/ds-resizeable-container": "3.70.0-next.1",
168
- "@elliemae/ds-shared": "3.70.0-next.1",
169
- "@elliemae/ds-side-panel": "3.70.0-next.1",
170
- "@elliemae/ds-shuttle-v2": "3.70.0-next.1",
171
- "@elliemae/ds-side-panel-header": "3.70.0-next.1",
172
- "@elliemae/ds-skeleton": "3.70.0-next.1",
173
- "@elliemae/ds-slider-v2": "3.70.0-next.1",
174
- "@elliemae/ds-square-indicator": "3.70.0-next.1",
175
- "@elliemae/ds-stepper": "3.70.0-next.1",
176
- "@elliemae/ds-svg": "3.70.0-next.1",
177
- "@elliemae/ds-system": "3.70.0-next.1",
178
- "@elliemae/ds-tabs": "3.70.0-next.1",
179
- "@elliemae/ds-toast": "3.70.0-next.1",
180
- "@elliemae/ds-test-utils": "3.70.0-next.1",
181
- "@elliemae/ds-toolbar-v1": "3.70.0-next.1",
182
- "@elliemae/ds-toolbar-v2": "3.70.0-next.1",
183
- "@elliemae/ds-tooltip-v3": "3.70.0-next.1",
184
- "@elliemae/ds-transition": "3.70.0-next.1",
185
- "@elliemae/ds-tree-model": "3.70.0-next.1",
186
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.1",
187
- "@elliemae/ds-treeview": "3.70.0-next.1",
188
- "@elliemae/ds-truncated-tooltip-text": "3.70.0-next.1",
189
- "@elliemae/ds-typescript-helpers": "3.70.0-next.1",
190
- "@elliemae/ds-typography": "3.70.0-next.1",
191
- "@elliemae/ds-virtual-list": "3.70.0-next.1",
192
- "@elliemae/ds-zustand-helpers": "3.70.0-next.1",
193
- "@elliemae/ds-wizard": "3.70.0-next.1"
44
+ "@elliemae/ds-accessibility": "3.70.0-next.2",
45
+ "@elliemae/ds-accordion": "3.70.0-next.2",
46
+ "@elliemae/ds-backdrop": "3.70.0-next.2",
47
+ "@elliemae/ds-app-picker": "3.70.0-next.2",
48
+ "@elliemae/ds-banner": "3.70.0-next.2",
49
+ "@elliemae/ds-basic": "3.70.0-next.2",
50
+ "@elliemae/ds-breadcrumb": "3.70.0-next.2",
51
+ "@elliemae/ds-button-v2": "3.70.0-next.2",
52
+ "@elliemae/ds-card-v1": "3.70.0-next.2",
53
+ "@elliemae/ds-card": "3.70.0-next.2",
54
+ "@elliemae/ds-card-v1-detail": "3.70.0-next.2",
55
+ "@elliemae/ds-card-navigation": "3.70.0-next.2",
56
+ "@elliemae/ds-card-v2": "3.70.0-next.2",
57
+ "@elliemae/ds-card-v2-group": "3.70.0-next.2",
58
+ "@elliemae/ds-card-v3": "3.70.0-next.2",
59
+ "@elliemae/ds-card-v2-action-addon": "3.70.0-next.2",
60
+ "@elliemae/ds-card-v3-poc": "3.70.0-next.2",
61
+ "@elliemae/ds-chat": "3.70.0-next.2",
62
+ "@elliemae/ds-chat-bubble": "3.70.0-next.2",
63
+ "@elliemae/ds-chat-card": "3.70.0-next.2",
64
+ "@elliemae/ds-chat-container-header": "3.70.0-next.2",
65
+ "@elliemae/ds-chat-container": "3.70.0-next.2",
66
+ "@elliemae/ds-chat-empty-state": "3.70.0-next.2",
67
+ "@elliemae/ds-chat-message-delimeter": "3.70.0-next.2",
68
+ "@elliemae/ds-chat-sidebar": "3.70.0-next.2",
69
+ "@elliemae/ds-chat-floating-button": "3.70.0-next.2",
70
+ "@elliemae/ds-chat-system-message": "3.70.0-next.2",
71
+ "@elliemae/ds-chat-tile": "3.70.0-next.2",
72
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.2",
73
+ "@elliemae/ds-classnames": "3.70.0-next.2",
74
+ "@elliemae/ds-chip": "3.70.0-next.2",
75
+ "@elliemae/ds-codeeditor": "3.70.0-next.2",
76
+ "@elliemae/ds-data-table": "3.70.0-next.2",
77
+ "@elliemae/ds-comments": "3.70.0-next.2",
78
+ "@elliemae/ds-csv-converter": "3.70.0-next.2",
79
+ "@elliemae/ds-controlled-form": "3.70.0-next.2",
80
+ "@elliemae/ds-data-table-cell": "3.70.0-next.2",
81
+ "@elliemae/ds-data-table-cell-header": "3.70.0-next.2",
82
+ "@elliemae/ds-data-table-action-cell": "3.70.0-next.2",
83
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.2",
84
+ "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.2",
85
+ "@elliemae/ds-data-table-filters": "3.70.0-next.2",
86
+ "@elliemae/ds-data-table-expand-cell": "3.70.0-next.2",
87
+ "@elliemae/ds-date-time-picker": "3.70.0-next.2",
88
+ "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.2",
89
+ "@elliemae/ds-dataviz": "3.70.0-next.2",
90
+ "@elliemae/ds-dialog": "3.70.0-next.2",
91
+ "@elliemae/ds-dataviz-pie": "3.70.0-next.2",
92
+ "@elliemae/ds-drag-and-drop": "3.70.0-next.2",
93
+ "@elliemae/ds-decision-graph": "3.70.0-next.2",
94
+ "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.2",
95
+ "@elliemae/ds-dropzone": "3.70.0-next.2",
96
+ "@elliemae/ds-filter-bar": "3.70.0-next.2",
97
+ "@elliemae/ds-fast-list": "3.70.0-next.2",
98
+ "@elliemae/ds-form-checkbox": "3.70.0-next.2",
99
+ "@elliemae/ds-floating-context": "3.70.0-next.2",
100
+ "@elliemae/ds-form-date-time-picker": "3.70.0-next.2",
101
+ "@elliemae/ds-form-input-text": "3.70.0-next.2",
102
+ "@elliemae/ds-form-date-range-picker": "3.70.0-next.2",
103
+ "@elliemae/ds-form-combobox": "3.70.0-next.2",
104
+ "@elliemae/ds-form-input-textarea": "3.70.0-next.2",
105
+ "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.2",
106
+ "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.2",
107
+ "@elliemae/ds-form-layout-blocks": "3.70.0-next.2",
108
+ "@elliemae/ds-form-layout-input-group": "3.70.0-next.2",
109
+ "@elliemae/ds-form-layout-label": "3.70.0-next.2",
110
+ "@elliemae/ds-form-radio": "3.70.0-next.2",
111
+ "@elliemae/ds-form-native-select": "3.70.0-next.2",
112
+ "@elliemae/ds-form-multi-combobox": "3.70.0-next.2",
113
+ "@elliemae/ds-form-select": "3.70.0-next.2",
114
+ "@elliemae/ds-form-toggle": "3.70.0-next.2",
115
+ "@elliemae/ds-form-single-combobox": "3.70.0-next.2",
116
+ "@elliemae/ds-global-header": "3.70.0-next.2",
117
+ "@elliemae/ds-grid": "3.70.0-next.2",
118
+ "@elliemae/ds-hooks-focus-stack": "3.70.0-next.2",
119
+ "@elliemae/ds-hooks-focus-trap": "3.70.0-next.2",
120
+ "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.2",
121
+ "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.2",
122
+ "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.2",
123
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.2",
124
+ "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.2",
125
+ "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.2",
126
+ "@elliemae/ds-hooks-is-mobile": "3.70.0-next.2",
127
+ "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.2",
128
+ "@elliemae/ds-icon": "3.70.0-next.2",
129
+ "@elliemae/ds-icons": "3.70.0-next.2",
130
+ "@elliemae/ds-imagelibrarymodal": "3.70.0-next.2",
131
+ "@elliemae/ds-image": "3.70.0-next.2",
132
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.2",
133
+ "@elliemae/ds-layout-provider": "3.70.0-next.2",
134
+ "@elliemae/ds-left-navigation": "3.70.0-next.2",
135
+ "@elliemae/ds-loading-indicator": "3.70.0-next.2",
136
+ "@elliemae/ds-menu-button": "3.70.0-next.2",
137
+ "@elliemae/ds-menu-items": "3.70.0-next.2",
138
+ "@elliemae/ds-menu-items-action": "3.70.0-next.2",
139
+ "@elliemae/ds-menu-items-commons": "3.70.0-next.2",
140
+ "@elliemae/ds-menu-items-multi": "3.70.0-next.2",
141
+ "@elliemae/ds-menu-items-section": "3.70.0-next.2",
142
+ "@elliemae/ds-menu-items-separator": "3.70.0-next.2",
143
+ "@elliemae/ds-menu-items-single": "3.70.0-next.2",
144
+ "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.2",
145
+ "@elliemae/ds-menu-items-skeleton": "3.70.0-next.2",
146
+ "@elliemae/ds-menu-items-submenu": "3.70.0-next.2",
147
+ "@elliemae/ds-menu-tree-item": "3.70.0-next.2",
148
+ "@elliemae/ds-mobile": "3.70.0-next.2",
149
+ "@elliemae/ds-modal-slide": "3.70.0-next.2",
150
+ "@elliemae/ds-notification-badge": "3.70.0-next.2",
151
+ "@elliemae/ds-overlay": "3.70.0-next.2",
152
+ "@elliemae/ds-page-header": "3.70.0-next.2",
153
+ "@elliemae/ds-page-header-v2": "3.70.0-next.2",
154
+ "@elliemae/ds-page-layout": "3.70.0-next.2",
155
+ "@elliemae/ds-page-header-v1": "3.70.0-next.2",
156
+ "@elliemae/ds-pagination": "3.70.0-next.2",
157
+ "@elliemae/ds-pills-v2": "3.70.0-next.2",
158
+ "@elliemae/ds-popperjs": "3.70.0-next.2",
159
+ "@elliemae/ds-portal": "3.70.0-next.2",
160
+ "@elliemae/ds-progress-indicator": "3.70.0-next.2",
161
+ "@elliemae/ds-props-helpers": "3.70.0-next.2",
162
+ "@elliemae/ds-resizeable-container": "3.70.0-next.2",
163
+ "@elliemae/ds-query-builder": "3.70.0-next.2",
164
+ "@elliemae/ds-ribbon": "3.70.0-next.2",
165
+ "@elliemae/ds-scrollable-container": "3.70.0-next.2",
166
+ "@elliemae/ds-separator": "3.70.0-next.2",
167
+ "@elliemae/ds-read-more": "3.70.0-next.2",
168
+ "@elliemae/ds-shared": "3.70.0-next.2",
169
+ "@elliemae/ds-shuttle-v2": "3.70.0-next.2",
170
+ "@elliemae/ds-side-panel-header": "3.70.0-next.2",
171
+ "@elliemae/ds-side-panel": "3.70.0-next.2",
172
+ "@elliemae/ds-slider-v2": "3.70.0-next.2",
173
+ "@elliemae/ds-square-indicator": "3.70.0-next.2",
174
+ "@elliemae/ds-svg": "3.70.0-next.2",
175
+ "@elliemae/ds-tabs": "3.70.0-next.2",
176
+ "@elliemae/ds-skeleton": "3.70.0-next.2",
177
+ "@elliemae/ds-system": "3.70.0-next.2",
178
+ "@elliemae/ds-stepper": "3.70.0-next.2",
179
+ "@elliemae/ds-test-utils": "3.70.0-next.2",
180
+ "@elliemae/ds-toast": "3.70.0-next.2",
181
+ "@elliemae/ds-toolbar-v1": "3.70.0-next.2",
182
+ "@elliemae/ds-toolbar-v2": "3.70.0-next.2",
183
+ "@elliemae/ds-tooltip-v3": "3.70.0-next.2",
184
+ "@elliemae/ds-transition": "3.70.0-next.2",
185
+ "@elliemae/ds-tree-model": "3.70.0-next.2",
186
+ "@elliemae/ds-treeview": "3.70.0-next.2",
187
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.2",
188
+ "@elliemae/ds-typescript-helpers": "3.70.0-next.2",
189
+ "@elliemae/ds-truncated-tooltip-text": "3.70.0-next.2",
190
+ "@elliemae/ds-typography": "3.70.0-next.2",
191
+ "@elliemae/ds-virtual-list": "3.70.0-next.2",
192
+ "@elliemae/ds-zustand-helpers": "3.70.0-next.2",
193
+ "@elliemae/ds-wizard": "3.70.0-next.2"
194
194
  },
195
195
  "publishConfig": {
196
196
  "access": "public"