dimsum-e2e-tests 3.70.0-next.33 → 3.70.0-next.34

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,12 @@
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.34 (2026-06-17)
7
+
8
+ ### Features
9
+
10
+ - dimsum:: theme comparasion typography and button [PUI-18210](https://jira.elliemae.io/browse/PUI-18210) ([#8116](https://git.elliemae.io/platform-ui/dimsum/issues/8116)) ([a206f08](https://git.elliemae.io/platform-ui/dimsum/commit/a206f08628b4277771f6a9c7df6e586a0b3437e3))
11
+
6
12
  ## 3.70.0-next.33 (2026-06-16)
7
13
 
8
14
  ### Bug Fixes
@@ -7,6 +7,8 @@ export default class DSCardV3CO extends PageObject {
7
7
  // URL's
8
8
  static accordionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'accordion-test');
9
9
 
10
+ static accordionAriaURL = new Urlbuilder(PATH_E2E_CARD_V3, 'accordion-aria-test');
11
+
10
12
  static actionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'action-test');
11
13
 
12
14
  static disabledURL = new Urlbuilder(PATH_E2E_CARD_V3, 'disabled-test');
@@ -90,6 +92,18 @@ export default class DSCardV3CO extends PageObject {
90
92
  return $('[data-testid="ds-button"][aria-label="Expand Card Content"]');
91
93
  }
92
94
 
95
+ static async getAccordionButton() {
96
+ return $('button[aria-expanded]');
97
+ }
98
+
99
+ static async getGroupContainer() {
100
+ return $('[role="group"]');
101
+ }
102
+
103
+ static async getRadioGroupContainer() {
104
+ return $('[role="radiogroup"]');
105
+ }
106
+
93
107
  static async getCardHandlerByIndex(index) {
94
108
  return $$('button[aria-label="drag and drop gripper"]')[index];
95
109
  }
@@ -0,0 +1,41 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+
3
+ if (
4
+ (!browser.capabilities['ice:options'].isPhone &&
5
+ !browser.capabilities['ice:options'].isTablet &&
6
+ browser.capabilities.browserName === 'chrome') ||
7
+ browser.capabilities.browserName === 'Chrome'
8
+ ) {
9
+ // Tests for the fix introduced in PUI-17887 (accordion heading/button/panel ARIA relationship)
10
+ describe('PUI-18597 - DSCardV3:: accordion ARIA structure - Func', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.accordionAriaURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: button and panel have correct ARIA relationship (controls, labelledby, region, h3 container)', async () => {
17
+ const button = await DSCardV3CO.getAccordionButton();
18
+ const panelId = await button.getAttribute('aria-controls');
19
+ expect(panelId).toBeTruthy();
20
+ const panel = await $(`#${panelId}`);
21
+ await expect(panel).toBeExisting();
22
+ const labelId = await button.getAttribute('aria-labelledby');
23
+ expect(labelId).toBeTruthy();
24
+ const title = await $(`#${labelId}`);
25
+ await expect(title).toBeExisting();
26
+ await expect(panel).toHaveAttribute('role', 'region');
27
+ const buttonId = await button.getAttribute('id');
28
+ await expect(panel).toHaveAttribute('aria-labelledby', buttonId);
29
+ const h3 = await $('h3');
30
+ const buttonInsideH3 = await h3.$('button');
31
+ await expect(buttonInsideH3).toBeExisting();
32
+ });
33
+
34
+ it('02: aria-expanded toggles from false to true after clicking the button', async () => {
35
+ const button = await DSCardV3CO.getAccordionButton();
36
+ await expect(button).toHaveAttribute('aria-expanded', 'false');
37
+ await button.click();
38
+ await expect(button).toHaveAttribute('aria-expanded', 'true');
39
+ });
40
+ });
41
+ }
@@ -0,0 +1,25 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+
3
+ if (
4
+ (!browser.capabilities['ice:options'].isPhone &&
5
+ !browser.capabilities['ice:options'].isTablet &&
6
+ browser.capabilities.browserName === 'chrome') ||
7
+ browser.capabilities.browserName === 'Chrome'
8
+ ) {
9
+ // Tests for the fix introduced in PUI-17888 (disabled attribute on non-interactive card)
10
+ describe('PUI-18598 - DSCardV3:: disabled variant has no HTML disabled attribute - Func', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.disabledURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: disabled and accented-disabled cards do not have the HTML disabled attribute', async () => {
17
+ const card1 = await DSCardV3CO.getCardContainerByIndex(0);
18
+ const card2 = await DSCardV3CO.getCardContainerByIndex(1);
19
+ const disabledAttr1 = await card1.getAttribute('disabled');
20
+ const disabledAttr2 = await card2.getAttribute('disabled');
21
+ expect(disabledAttr1).toBeNull();
22
+ expect(disabledAttr2).toBeNull();
23
+ });
24
+ });
25
+ }
@@ -0,0 +1,24 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+
3
+ if (
4
+ (!browser.capabilities['ice:options'].isPhone &&
5
+ !browser.capabilities['ice:options'].isTablet &&
6
+ browser.capabilities.browserName === 'chrome') ||
7
+ browser.capabilities.browserName === 'Chrome'
8
+ ) {
9
+ // Tests for the fix introduced in PUI-17891 (checkbox group not programmatically grouped)
10
+ describe('PUI-18599 - DSCardV3:: multi-select ARIA group role - Func', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.multiSelectURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: wrapper container has role="group" and an accessible label', async () => {
17
+ const wrapper = await DSCardV3CO.getGroupContainer();
18
+ await expect(wrapper).toBeExisting();
19
+ await expect(wrapper).toHaveAttribute('role', 'group');
20
+ const label = await wrapper.getAttribute('aria-label');
21
+ expect(label).toBeTruthy();
22
+ });
23
+ });
24
+ }
@@ -0,0 +1,24 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+
3
+ if (
4
+ (!browser.capabilities['ice:options'].isPhone &&
5
+ !browser.capabilities['ice:options'].isTablet &&
6
+ browser.capabilities.browserName === 'chrome') ||
7
+ browser.capabilities.browserName === 'Chrome'
8
+ ) {
9
+ // Tests for the fix introduced in PUI-17891 (radio button group not programmatically grouped)
10
+ describe('PUI-18600 - DSCardV3:: single-select ARIA radiogroup role - Func', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.singleSelectURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: wrapper container has role="radiogroup" and an accessible label', async () => {
17
+ const wrapper = await DSCardV3CO.getRadioGroupContainer();
18
+ await expect(wrapper).toBeExisting();
19
+ await expect(wrapper).toHaveAttribute('role', 'radiogroup');
20
+ const label = await wrapper.getAttribute('aria-label');
21
+ expect(label).toBeTruthy();
22
+ });
23
+ });
24
+ }
@@ -7,8 +7,8 @@ describe('PUI-9354:: Notification Badge: Relate to component', () => {
7
7
  if (errorOnGo) throw errorOnGo;
8
8
  });
9
9
  it('01: Should display relate to component', async () => {
10
- await browser.eyesOpen();
11
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-relate-to-component'));
10
+ await DSNotificationBadgeCO.getNotificationBadgeByIndex(0).waitForDisplayed();
11
+ const snapshot = await browser.percyCheckScreenshot();
12
12
  await expect(snapshot).toEqual(0);
13
13
  });
14
14
  });
@@ -19,8 +19,8 @@ describe('PUI-9353:: Notification Badge: Disabled', () => {
19
19
  if (errorOnGo) throw errorOnGo;
20
20
  });
21
21
  it('01: Should display disabled badge', async () => {
22
- await browser.eyesOpen();
23
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-disabled'));
22
+ await DSNotificationBadgeCO.getNotificationBadgeByIndex(0).waitForDisplayed();
23
+ const snapshot = await browser.percyCheckScreenshot();
24
24
  await expect(snapshot).toEqual(0);
25
25
  });
26
26
  });
@@ -31,8 +31,8 @@ describe('PUI-9352:: Notification Badge: Background color', () => {
31
31
  if (errorOnGo) throw errorOnGo;
32
32
  });
33
33
  it('01: Should display custom background color badges', async () => {
34
- await browser.eyesOpen();
35
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-background-color'));
34
+ await DSNotificationBadgeCO.getNotificationBadgeByIndex(0).waitForDisplayed();
35
+ const snapshot = await browser.percyCheckScreenshot();
36
36
  await expect(snapshot).toEqual(0);
37
37
  });
38
38
  });
@@ -43,8 +43,8 @@ describe('PUI-9355:: Notification Badge: Alphanumerical', () => {
43
43
  if (errorOnGo) throw errorOnGo;
44
44
  });
45
45
  it('01: Should display custom background color badges', async () => {
46
- await browser.eyesOpen();
47
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-alpha-chars'));
46
+ await DSNotificationBadgeCO.getNotificationBadgeByIndex(0).waitForDisplayed();
47
+ const snapshot = await browser.percyCheckScreenshot();
48
48
  await expect(snapshot).toEqual(0);
49
49
  });
50
50
  });
@@ -55,8 +55,8 @@ describe('PUI-11412:: Notification Badge: Chip, Icon and Button integration -Vis
55
55
  if (errorOnGo) throw errorOnGo;
56
56
  });
57
57
  it('01: Should display integration with Chips and Button components correctly', async () => {
58
- await browser.eyesOpen();
59
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-chip-default'));
58
+ await DSNotificationBadgeCO.getNotificationBadgeByIndex(0).waitForDisplayed();
59
+ const snapshot = await browser.percyCheckScreenshot();
60
60
  await expect(snapshot).toEqual(0);
61
61
  });
62
62
  });
@@ -66,8 +66,8 @@ describe('PUI-11413:: Notification Badge: Custom Component Integration -Visual T
66
66
  if (errorOnGo) throw errorOnGo;
67
67
  });
68
68
  it('01: Should display integration with custom components correctly', async () => {
69
- await browser.eyesOpen();
70
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-custom-component'));
69
+ await DSNotificationBadgeCO.getNotificationBadgeByIndex(0).waitForDisplayed();
70
+ const snapshot = await browser.percyCheckScreenshot();
71
71
  await expect(snapshot).toEqual(0);
72
72
  });
73
73
  });
@@ -81,7 +81,7 @@ describe('PUI-11817:: NotificationBadge: with LeftNavigation example -Visual', (
81
81
  await browser.eyesOpen();
82
82
  const notification = await DSNotificationBadgeCO.getNotificationBadgeByIndex(1);
83
83
  await notification.waitForDisplayed();
84
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-leftnav-default'));
84
+ const snapshot = await browser.percyCheckScreenshot();
85
85
  await expect(snapshot).toEqual(0);
86
86
  });
87
87
  it('02: should display left nav with badged items selected, one focused correctly', async () => {
@@ -89,7 +89,7 @@ describe('PUI-11817:: NotificationBadge: with LeftNavigation example -Visual', (
89
89
 
90
90
  const item = await DSNotificationBadgeCO.getIconByIndex(2);
91
91
  await item.click();
92
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-leftnav-selected'));
92
+ const snapshot = await browser.percyCheckScreenshot();
93
93
  await expect(snapshot).toEqual(0);
94
94
  });
95
95
  });
@@ -99,10 +99,8 @@ describe('PUI-14185:: NotificationBadge: textColor prop - Visual Test ', () => {
99
99
  if (errorOnGo) throw errorOnGo;
100
100
  });
101
101
  it('01: should display notification badge with custom textColor', async () => {
102
- await browser.eyesOpen();
103
- const notification = await DSNotificationBadgeCO.getNotificationBadgeByIndex(1);
104
- await notification.waitForDisplayed();
105
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-with-custom-textColor'));
102
+ await DSNotificationBadgeCO.getNotificationBadgeByIndex(1).waitForDisplayed();
103
+ const snapshot = await browser.percyCheckScreenshot();
106
104
  await expect(snapshot).toEqual(0);
107
105
  });
108
106
  });
@@ -114,12 +112,11 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
114
112
  if (errorOnGo) throw errorOnGo;
115
113
  });
116
114
  it('01: should display toolbar with toolbar correctly', async () => {
117
- await browser.eyesOpen();
118
115
  const notification = await DSNotificationBadgeCO.getNotificationBadgeByIndex(1);
119
116
  await notification.waitForDisplayed();
120
117
  await browser.keys(Key.Tab);
121
118
  await browser.keys(Key.ArrowRight);
122
- const snapshot = await browser.eyesCheckSnapshot(DSNotificationBadgeCO.snapshotPath('badge-with-toolbar'));
119
+ const snapshot = await browser.percyCheckScreenshot();
123
120
  await expect(snapshot).toEqual(0);
124
121
  });
125
122
  });
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.33",
4
+ "version": "3.70.0-next.34",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
7
  "@elliemae/ds-legacy-button": "1.0.16",
@@ -39,155 +39,155 @@
39
39
  "@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
40
40
  "@elliemae/ds-legacy-zipcode-search": "1.0.16",
41
41
  "@elliemae/ds-legacy-zoom": "1.0.16",
42
- "@elliemae/ds-accessibility": "3.70.0-next.33",
43
- "@elliemae/ds-accordion": "3.70.0-next.33",
44
- "@elliemae/ds-accordion-native": "3.70.0-next.33",
45
- "@elliemae/ds-backdrop": "3.70.0-next.33",
46
- "@elliemae/ds-basic": "3.70.0-next.33",
47
- "@elliemae/ds-breadcrumb": "3.70.0-next.33",
48
- "@elliemae/ds-app-picker": "3.70.0-next.33",
49
- "@elliemae/ds-banner": "3.70.0-next.33",
50
- "@elliemae/ds-button-v2": "3.70.0-next.33",
51
- "@elliemae/ds-card": "3.70.0-next.33",
52
- "@elliemae/ds-card-navigation": "3.70.0-next.33",
53
- "@elliemae/ds-card-v1": "3.70.0-next.33",
54
- "@elliemae/ds-card-v1-detail": "3.70.0-next.33",
55
- "@elliemae/ds-card-v2": "3.70.0-next.33",
56
- "@elliemae/ds-card-v2-action-addon": "3.70.0-next.33",
57
- "@elliemae/ds-card-v3": "3.70.0-next.33",
58
- "@elliemae/ds-chat": "3.70.0-next.33",
59
- "@elliemae/ds-card-v2-group": "3.70.0-next.33",
60
- "@elliemae/ds-card-v3-poc": "3.70.0-next.33",
61
- "@elliemae/ds-chat-bubble": "3.70.0-next.33",
62
- "@elliemae/ds-chat-card": "3.70.0-next.33",
63
- "@elliemae/ds-chat-container": "3.70.0-next.33",
64
- "@elliemae/ds-chat-container-header": "3.70.0-next.33",
65
- "@elliemae/ds-chat-empty-state": "3.70.0-next.33",
66
- "@elliemae/ds-chat-floating-button": "3.70.0-next.33",
67
- "@elliemae/ds-chat-message-delimeter": "3.70.0-next.33",
68
- "@elliemae/ds-chat-sidebar": "3.70.0-next.33",
69
- "@elliemae/ds-chat-system-message": "3.70.0-next.33",
70
- "@elliemae/ds-chat-tile": "3.70.0-next.33",
71
- "@elliemae/ds-chip": "3.70.0-next.33",
72
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.33",
73
- "@elliemae/ds-classnames": "3.70.0-next.33",
74
- "@elliemae/ds-codeeditor": "3.70.0-next.33",
75
- "@elliemae/ds-comments": "3.70.0-next.33",
76
- "@elliemae/ds-controlled-form": "3.70.0-next.33",
77
- "@elliemae/ds-data-table": "3.70.0-next.33",
78
- "@elliemae/ds-data-table-action-cell": "3.70.0-next.33",
79
- "@elliemae/ds-data-table-cell": "3.70.0-next.33",
80
- "@elliemae/ds-data-table-cell-header": "3.70.0-next.33",
81
- "@elliemae/ds-csv-converter": "3.70.0-next.33",
82
- "@elliemae/ds-data-table-expand-cell": "3.70.0-next.33",
83
- "@elliemae/ds-data-table-filters": "3.70.0-next.33",
84
- "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.33",
85
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.33",
86
- "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.33",
87
- "@elliemae/ds-dataviz": "3.70.0-next.33",
88
- "@elliemae/ds-date-time-picker": "3.70.0-next.33",
89
- "@elliemae/ds-decision-graph": "3.70.0-next.33",
90
- "@elliemae/ds-drag-and-drop": "3.70.0-next.33",
91
- "@elliemae/ds-dialog": "3.70.0-next.33",
92
- "@elliemae/ds-dataviz-pie": "3.70.0-next.33",
93
- "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.33",
94
- "@elliemae/ds-dropzone": "3.70.0-next.33",
95
- "@elliemae/ds-fast-list": "3.70.0-next.33",
96
- "@elliemae/ds-filter-bar": "3.70.0-next.33",
97
- "@elliemae/ds-form-checkbox": "3.70.0-next.33",
98
- "@elliemae/ds-floating-context": "3.70.0-next.33",
99
- "@elliemae/ds-form-combobox": "3.70.0-next.33",
100
- "@elliemae/ds-form-date-range-picker": "3.70.0-next.33",
101
- "@elliemae/ds-form-date-time-picker": "3.70.0-next.33",
102
- "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.33",
103
- "@elliemae/ds-form-input-text": "3.70.0-next.33",
104
- "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.33",
105
- "@elliemae/ds-form-layout-blocks": "3.70.0-next.33",
106
- "@elliemae/ds-form-input-textarea": "3.70.0-next.33",
107
- "@elliemae/ds-form-layout-input-group": "3.70.0-next.33",
108
- "@elliemae/ds-form-layout-label": "3.70.0-next.33",
109
- "@elliemae/ds-form-native-select": "3.70.0-next.33",
110
- "@elliemae/ds-form-multi-combobox": "3.70.0-next.33",
111
- "@elliemae/ds-form-radio": "3.70.0-next.33",
112
- "@elliemae/ds-form-select": "3.70.0-next.33",
113
- "@elliemae/ds-form-single-combobox": "3.70.0-next.33",
114
- "@elliemae/ds-form-toggle": "3.70.0-next.33",
115
- "@elliemae/ds-global-header": "3.70.0-next.33",
116
- "@elliemae/ds-grid": "3.70.0-next.33",
117
- "@elliemae/ds-hooks-focus-trap": "3.70.0-next.33",
118
- "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.33",
119
- "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.33",
120
- "@elliemae/ds-hooks-focus-stack": "3.70.0-next.33",
121
- "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.33",
122
- "@elliemae/ds-hooks-is-mobile": "3.70.0-next.33",
123
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.33",
124
- "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.33",
125
- "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.33",
126
- "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.33",
127
- "@elliemae/ds-image": "3.70.0-next.33",
128
- "@elliemae/ds-icon": "3.70.0-next.33",
129
- "@elliemae/ds-icons": "3.70.0-next.33",
130
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.33",
131
- "@elliemae/ds-imagelibrarymodal": "3.70.0-next.33",
132
- "@elliemae/ds-layout-provider": "3.70.0-next.33",
133
- "@elliemae/ds-left-navigation": "3.70.0-next.33",
134
- "@elliemae/ds-loading-indicator": "3.70.0-next.33",
135
- "@elliemae/ds-menu-button": "3.70.0-next.33",
136
- "@elliemae/ds-menu-items-action": "3.70.0-next.33",
137
- "@elliemae/ds-menu-items": "3.70.0-next.33",
138
- "@elliemae/ds-menu-items-commons": "3.70.0-next.33",
139
- "@elliemae/ds-menu-items-section": "3.70.0-next.33",
140
- "@elliemae/ds-menu-items-multi": "3.70.0-next.33",
141
- "@elliemae/ds-menu-items-separator": "3.70.0-next.33",
142
- "@elliemae/ds-menu-items-single": "3.70.0-next.33",
143
- "@elliemae/ds-menu-items-skeleton": "3.70.0-next.33",
144
- "@elliemae/ds-menu-items-submenu": "3.70.0-next.33",
145
- "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.33",
146
- "@elliemae/ds-mobile": "3.70.0-next.33",
147
- "@elliemae/ds-modal-slide": "3.70.0-next.33",
148
- "@elliemae/ds-notification-badge": "3.70.0-next.33",
149
- "@elliemae/ds-menu-tree-item": "3.70.0-next.33",
150
- "@elliemae/ds-overlay": "3.70.0-next.33",
151
- "@elliemae/ds-page-header": "3.70.0-next.33",
152
- "@elliemae/ds-page-header-v2": "3.70.0-next.33",
153
- "@elliemae/ds-page-header-v1": "3.70.0-next.33",
154
- "@elliemae/ds-page-layout": "3.70.0-next.33",
155
- "@elliemae/ds-pagination": "3.70.0-next.33",
156
- "@elliemae/ds-pills-v2": "3.70.0-next.33",
157
- "@elliemae/ds-portal": "3.70.0-next.33",
158
- "@elliemae/ds-progress-indicator": "3.70.0-next.33",
159
- "@elliemae/ds-props-helpers": "3.70.0-next.33",
160
- "@elliemae/ds-query-builder": "3.70.0-next.33",
161
- "@elliemae/ds-read-more": "3.70.0-next.33",
162
- "@elliemae/ds-resizeable-container": "3.70.0-next.33",
163
- "@elliemae/ds-ribbon": "3.70.0-next.33",
164
- "@elliemae/ds-scrollable-container": "3.70.0-next.33",
165
- "@elliemae/ds-separator": "3.70.0-next.33",
166
- "@elliemae/ds-shared": "3.70.0-next.33",
167
- "@elliemae/ds-shuttle-v2": "3.70.0-next.33",
168
- "@elliemae/ds-side-panel": "3.70.0-next.33",
169
- "@elliemae/ds-side-panel-header": "3.70.0-next.33",
170
- "@elliemae/ds-skeleton": "3.70.0-next.33",
171
- "@elliemae/ds-slider-v2": "3.70.0-next.33",
172
- "@elliemae/ds-square-indicator": "3.70.0-next.33",
173
- "@elliemae/ds-tabs": "3.70.0-next.33",
174
- "@elliemae/ds-stepper": "3.70.0-next.33",
175
- "@elliemae/ds-svg": "3.70.0-next.33",
176
- "@elliemae/ds-system": "3.70.0-next.33",
177
- "@elliemae/ds-test-utils": "3.70.0-next.33",
178
- "@elliemae/ds-toast": "3.70.0-next.33",
179
- "@elliemae/ds-toolbar-v1": "3.70.0-next.33",
180
- "@elliemae/ds-tooltip-v3": "3.70.0-next.33",
181
- "@elliemae/ds-toolbar-v2": "3.70.0-next.33",
182
- "@elliemae/ds-transition": "3.70.0-next.33",
183
- "@elliemae/ds-treeview": "3.70.0-next.33",
184
- "@elliemae/ds-typescript-helpers": "3.70.0-next.33",
185
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.33",
186
- "@elliemae/ds-tree-model": "3.70.0-next.33",
187
- "@elliemae/ds-zustand-helpers": "3.70.0-next.33",
188
- "@elliemae/ds-typography": "3.70.0-next.33",
189
- "@elliemae/ds-virtual-list": "3.70.0-next.33",
190
- "@elliemae/ds-wizard": "3.70.0-next.33"
42
+ "@elliemae/ds-accessibility": "3.70.0-next.34",
43
+ "@elliemae/ds-accordion": "3.70.0-next.34",
44
+ "@elliemae/ds-accordion-native": "3.70.0-next.34",
45
+ "@elliemae/ds-backdrop": "3.70.0-next.34",
46
+ "@elliemae/ds-app-picker": "3.70.0-next.34",
47
+ "@elliemae/ds-banner": "3.70.0-next.34",
48
+ "@elliemae/ds-breadcrumb": "3.70.0-next.34",
49
+ "@elliemae/ds-basic": "3.70.0-next.34",
50
+ "@elliemae/ds-button-v2": "3.70.0-next.34",
51
+ "@elliemae/ds-card-navigation": "3.70.0-next.34",
52
+ "@elliemae/ds-card-v1": "3.70.0-next.34",
53
+ "@elliemae/ds-card": "3.70.0-next.34",
54
+ "@elliemae/ds-card-v1-detail": "3.70.0-next.34",
55
+ "@elliemae/ds-card-v2": "3.70.0-next.34",
56
+ "@elliemae/ds-card-v2-group": "3.70.0-next.34",
57
+ "@elliemae/ds-card-v3": "3.70.0-next.34",
58
+ "@elliemae/ds-chat": "3.70.0-next.34",
59
+ "@elliemae/ds-chat-bubble": "3.70.0-next.34",
60
+ "@elliemae/ds-card-v2-action-addon": "3.70.0-next.34",
61
+ "@elliemae/ds-chat-card": "3.70.0-next.34",
62
+ "@elliemae/ds-card-v3-poc": "3.70.0-next.34",
63
+ "@elliemae/ds-chat-container": "3.70.0-next.34",
64
+ "@elliemae/ds-chat-container-header": "3.70.0-next.34",
65
+ "@elliemae/ds-chat-empty-state": "3.70.0-next.34",
66
+ "@elliemae/ds-chat-floating-button": "3.70.0-next.34",
67
+ "@elliemae/ds-chat-message-delimeter": "3.70.0-next.34",
68
+ "@elliemae/ds-chat-system-message": "3.70.0-next.34",
69
+ "@elliemae/ds-chat-sidebar": "3.70.0-next.34",
70
+ "@elliemae/ds-chat-tile": "3.70.0-next.34",
71
+ "@elliemae/ds-chip": "3.70.0-next.34",
72
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.34",
73
+ "@elliemae/ds-classnames": "3.70.0-next.34",
74
+ "@elliemae/ds-comments": "3.70.0-next.34",
75
+ "@elliemae/ds-codeeditor": "3.70.0-next.34",
76
+ "@elliemae/ds-csv-converter": "3.70.0-next.34",
77
+ "@elliemae/ds-controlled-form": "3.70.0-next.34",
78
+ "@elliemae/ds-data-table": "3.70.0-next.34",
79
+ "@elliemae/ds-data-table-cell": "3.70.0-next.34",
80
+ "@elliemae/ds-data-table-action-cell": "3.70.0-next.34",
81
+ "@elliemae/ds-data-table-cell-header": "3.70.0-next.34",
82
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.34",
83
+ "@elliemae/ds-data-table-expand-cell": "3.70.0-next.34",
84
+ "@elliemae/ds-data-table-filters": "3.70.0-next.34",
85
+ "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.34",
86
+ "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.34",
87
+ "@elliemae/ds-dataviz": "3.70.0-next.34",
88
+ "@elliemae/ds-dataviz-pie": "3.70.0-next.34",
89
+ "@elliemae/ds-date-time-picker": "3.70.0-next.34",
90
+ "@elliemae/ds-decision-graph": "3.70.0-next.34",
91
+ "@elliemae/ds-dialog": "3.70.0-next.34",
92
+ "@elliemae/ds-drag-and-drop": "3.70.0-next.34",
93
+ "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.34",
94
+ "@elliemae/ds-fast-list": "3.70.0-next.34",
95
+ "@elliemae/ds-floating-context": "3.70.0-next.34",
96
+ "@elliemae/ds-dropzone": "3.70.0-next.34",
97
+ "@elliemae/ds-form-checkbox": "3.70.0-next.34",
98
+ "@elliemae/ds-filter-bar": "3.70.0-next.34",
99
+ "@elliemae/ds-form-combobox": "3.70.0-next.34",
100
+ "@elliemae/ds-form-date-range-picker": "3.70.0-next.34",
101
+ "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.34",
102
+ "@elliemae/ds-form-date-time-picker": "3.70.0-next.34",
103
+ "@elliemae/ds-form-input-text": "3.70.0-next.34",
104
+ "@elliemae/ds-form-input-textarea": "3.70.0-next.34",
105
+ "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.34",
106
+ "@elliemae/ds-form-layout-blocks": "3.70.0-next.34",
107
+ "@elliemae/ds-form-layout-input-group": "3.70.0-next.34",
108
+ "@elliemae/ds-form-layout-label": "3.70.0-next.34",
109
+ "@elliemae/ds-form-multi-combobox": "3.70.0-next.34",
110
+ "@elliemae/ds-form-radio": "3.70.0-next.34",
111
+ "@elliemae/ds-form-native-select": "3.70.0-next.34",
112
+ "@elliemae/ds-form-toggle": "3.70.0-next.34",
113
+ "@elliemae/ds-form-select": "3.70.0-next.34",
114
+ "@elliemae/ds-form-single-combobox": "3.70.0-next.34",
115
+ "@elliemae/ds-grid": "3.70.0-next.34",
116
+ "@elliemae/ds-hooks-focus-stack": "3.70.0-next.34",
117
+ "@elliemae/ds-global-header": "3.70.0-next.34",
118
+ "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.34",
119
+ "@elliemae/ds-hooks-focus-trap": "3.70.0-next.34",
120
+ "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.34",
121
+ "@elliemae/ds-hooks-is-mobile": "3.70.0-next.34",
122
+ "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.34",
123
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.34",
124
+ "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.34",
125
+ "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.34",
126
+ "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.34",
127
+ "@elliemae/ds-icon": "3.70.0-next.34",
128
+ "@elliemae/ds-image": "3.70.0-next.34",
129
+ "@elliemae/ds-imagelibrarymodal": "3.70.0-next.34",
130
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.34",
131
+ "@elliemae/ds-icons": "3.70.0-next.34",
132
+ "@elliemae/ds-left-navigation": "3.70.0-next.34",
133
+ "@elliemae/ds-layout-provider": "3.70.0-next.34",
134
+ "@elliemae/ds-loading-indicator": "3.70.0-next.34",
135
+ "@elliemae/ds-menu-button": "3.70.0-next.34",
136
+ "@elliemae/ds-menu-items": "3.70.0-next.34",
137
+ "@elliemae/ds-menu-items-action": "3.70.0-next.34",
138
+ "@elliemae/ds-menu-items-multi": "3.70.0-next.34",
139
+ "@elliemae/ds-menu-items-commons": "3.70.0-next.34",
140
+ "@elliemae/ds-menu-items-section": "3.70.0-next.34",
141
+ "@elliemae/ds-menu-items-separator": "3.70.0-next.34",
142
+ "@elliemae/ds-menu-items-single": "3.70.0-next.34",
143
+ "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.34",
144
+ "@elliemae/ds-menu-items-skeleton": "3.70.0-next.34",
145
+ "@elliemae/ds-menu-items-submenu": "3.70.0-next.34",
146
+ "@elliemae/ds-menu-tree-item": "3.70.0-next.34",
147
+ "@elliemae/ds-mobile": "3.70.0-next.34",
148
+ "@elliemae/ds-modal-slide": "3.70.0-next.34",
149
+ "@elliemae/ds-notification-badge": "3.70.0-next.34",
150
+ "@elliemae/ds-overlay": "3.70.0-next.34",
151
+ "@elliemae/ds-page-header": "3.70.0-next.34",
152
+ "@elliemae/ds-page-header-v1": "3.70.0-next.34",
153
+ "@elliemae/ds-page-header-v2": "3.70.0-next.34",
154
+ "@elliemae/ds-pagination": "3.70.0-next.34",
155
+ "@elliemae/ds-portal": "3.70.0-next.34",
156
+ "@elliemae/ds-page-layout": "3.70.0-next.34",
157
+ "@elliemae/ds-pills-v2": "3.70.0-next.34",
158
+ "@elliemae/ds-progress-indicator": "3.70.0-next.34",
159
+ "@elliemae/ds-props-helpers": "3.70.0-next.34",
160
+ "@elliemae/ds-query-builder": "3.70.0-next.34",
161
+ "@elliemae/ds-read-more": "3.70.0-next.34",
162
+ "@elliemae/ds-resizeable-container": "3.70.0-next.34",
163
+ "@elliemae/ds-ribbon": "3.70.0-next.34",
164
+ "@elliemae/ds-scrollable-container": "3.70.0-next.34",
165
+ "@elliemae/ds-separator": "3.70.0-next.34",
166
+ "@elliemae/ds-shared": "3.70.0-next.34",
167
+ "@elliemae/ds-shuttle-v2": "3.70.0-next.34",
168
+ "@elliemae/ds-side-panel": "3.70.0-next.34",
169
+ "@elliemae/ds-side-panel-header": "3.70.0-next.34",
170
+ "@elliemae/ds-skeleton": "3.70.0-next.34",
171
+ "@elliemae/ds-slider-v2": "3.70.0-next.34",
172
+ "@elliemae/ds-square-indicator": "3.70.0-next.34",
173
+ "@elliemae/ds-stepper": "3.70.0-next.34",
174
+ "@elliemae/ds-svg": "3.70.0-next.34",
175
+ "@elliemae/ds-system": "3.70.0-next.34",
176
+ "@elliemae/ds-tabs": "3.70.0-next.34",
177
+ "@elliemae/ds-test-utils": "3.70.0-next.34",
178
+ "@elliemae/ds-toast": "3.70.0-next.34",
179
+ "@elliemae/ds-toolbar-v1": "3.70.0-next.34",
180
+ "@elliemae/ds-toolbar-v2": "3.70.0-next.34",
181
+ "@elliemae/ds-tooltip-v3": "3.70.0-next.34",
182
+ "@elliemae/ds-transition": "3.70.0-next.34",
183
+ "@elliemae/ds-tree-model": "3.70.0-next.34",
184
+ "@elliemae/ds-treeview": "3.70.0-next.34",
185
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.34",
186
+ "@elliemae/ds-typescript-helpers": "3.70.0-next.34",
187
+ "@elliemae/ds-typography": "3.70.0-next.34",
188
+ "@elliemae/ds-virtual-list": "3.70.0-next.34",
189
+ "@elliemae/ds-zustand-helpers": "3.70.0-next.34",
190
+ "@elliemae/ds-wizard": "3.70.0-next.34"
191
191
  },
192
192
  "publishConfig": {
193
193
  "access": "public"