dimsum-e2e-tests 3.70.0-next.69 → 3.70.0-next.70

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.70 (2026-08-28)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-form-combobox:: apply theme font-family to the native input [PUI-18977](https://jira.elliemae.io/browse/PUI-18977) ([#8347](https://github.com/intcx/PLATFORM-UI.dimsum/issues/8347)) ([077ffda](https://github.com/intcx/PLATFORM-UI.dimsum/commit/077ffdaa86f397b86867b6a0bc9bcefec827fdf1))
11
+
6
12
  ## 3.70.0-next.69 (2026-08-27)
7
13
 
8
14
  ### Bug Fixes
@@ -60,6 +60,8 @@ export default class DSTabsCO extends PageObject {
60
60
 
61
61
  static allTabsDisabled = new Urlbuilder(PATH_E2E_TABS, 'all-tabs-disabled');
62
62
 
63
+ static withNotificationBadge = new Urlbuilder(PATH_E2E_TABS, 'with-notification-badge-test');
64
+
63
65
  static getUrl(component = 'basic') {
64
66
  return PageObject.getUrl(PATH_E2E_TABS, component);
65
67
  }
@@ -102,6 +104,8 @@ export default class DSTabsCO extends PageObject {
102
104
 
103
105
  static getTabByName = async (name) => $(`button*=${name}`);
104
106
 
107
+ static getTabBadges = async () => (await this.getTabsList()).$$('[data-testid="ds-notification-badge"]');
108
+
105
109
  // Snapshots
106
110
  static snapshotPath(example = 'basic') {
107
111
  return PageObject.getSnapshotPathBuilder('Tabs', example);
@@ -0,0 +1,28 @@
1
+ import DSTabsCO from '../DSTabsCO';
2
+ import { axeCoreCheck } from '../../helpers';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18932 - DSTabs:: notification badge tab list a11y scan - Axe-Core', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSTabsCO.withNotificationBadge.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should have no violations with the badged tab selected', async () => {
17
+ await (await DSTabsCO.getTabsList()).waitForDisplayed();
18
+ const result = await axeCoreCheck();
19
+ await expect(result).toHaveLength(0);
20
+ });
21
+
22
+ it('02: should have no violations after switching to a tab without a badge', async () => {
23
+ await (await DSTabsCO.getTabsByIndex(1)).click();
24
+ const result = await axeCoreCheck();
25
+ await expect(result).toHaveLength(0);
26
+ });
27
+ });
28
+ }
@@ -0,0 +1,51 @@
1
+ import DSTabsCO from '../DSTabsCO';
2
+ import DSNotificationBadgeCO from '../../ds-notification-badge/DSNotificationBadgeCO';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18931 - DSTabs:: notification badge in the tab accessible name - Func', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSTabsCO.withNotificationBadge.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should expose a named badge into the tab name', async () => {
17
+ const badgedTab = await DSTabsCO.getTabsByIndex(0);
18
+ await badgedTab.waitForDisplayed();
19
+
20
+ const badge = await DSNotificationBadgeCO.getNotificationBadgeByIndex(0);
21
+ await expect(badge).toBeExisting();
22
+ await expect(badge).toHaveText('3');
23
+
24
+ const wrapper = await badge.parentElement();
25
+ await expect(wrapper).toHaveAttribute('role', 'img');
26
+ await expect(wrapper).toHaveAttribute('aria-label', '3 new notifications');
27
+
28
+ const computedName = await badgedTab.getComputedLabel();
29
+ expect(computedName).toMatch(/Fields Sent\s*3 new notifications/i);
30
+ expect(await badgedTab.getComputedRole()).toBe('tab');
31
+ });
32
+
33
+ it('02: should announce tabs without a badge by their title only', async () => {
34
+ const plainTab = await DSTabsCO.getTabsByIndex(1);
35
+ const plainName = await plainTab.getComputedLabel();
36
+ expect(plainName.trim()).toMatch(/^Fields Received$/i);
37
+ expect(plainName).not.toContain('3');
38
+
39
+ const badges = await DSTabsCO.getTabBadges();
40
+ await expect(badges).toHaveLength(1);
41
+ });
42
+
43
+ it('03: should keep the required tab announcing its Required indicator', async () => {
44
+ const requiredTab = await DSTabsCO.getTabsByIndex(3);
45
+ await expect(requiredTab).toHaveAttribute('data-required', 'true');
46
+
47
+ const requiredName = await requiredTab.getComputedLabel();
48
+ expect(requiredName).toMatch(/Required docs\s*Required/i);
49
+ });
50
+ });
51
+ }
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.69",
4
+ "version": "3.70.0-next.70",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
7
  "@elliemae/ds-legacy-button": "1.0.16",
@@ -38,154 +38,154 @@
38
38
  "@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
39
39
  "@elliemae/ds-legacy-zipcode-search": "1.0.16",
40
40
  "@elliemae/ds-legacy-zoom": "1.0.16",
41
- "@elliemae/ds-accessibility": "3.70.0-next.69",
42
- "@elliemae/ds-backdrop": "3.70.0-next.69",
43
- "@elliemae/ds-accordion": "3.70.0-next.69",
44
- "@elliemae/ds-banner": "3.70.0-next.69",
45
- "@elliemae/ds-basic": "3.70.0-next.69",
46
- "@elliemae/ds-breadcrumb": "3.70.0-next.69",
47
- "@elliemae/ds-button-v2": "3.70.0-next.69",
48
- "@elliemae/ds-card-navigation": "3.70.0-next.69",
49
- "@elliemae/ds-card": "3.70.0-next.69",
50
- "@elliemae/ds-card-v1-detail": "3.70.0-next.69",
51
- "@elliemae/ds-card-v2": "3.70.0-next.69",
52
- "@elliemae/ds-card-v1": "3.70.0-next.69",
53
- "@elliemae/ds-card-v2-action-addon": "3.70.0-next.69",
54
- "@elliemae/ds-card-v3": "3.70.0-next.69",
55
- "@elliemae/ds-card-v2-group": "3.70.0-next.69",
56
- "@elliemae/ds-card-v3-poc": "3.70.0-next.69",
57
- "@elliemae/ds-chat": "3.70.0-next.69",
58
- "@elliemae/ds-chat-bubble": "3.70.0-next.69",
59
- "@elliemae/ds-chat-card": "3.70.0-next.69",
60
- "@elliemae/ds-chat-container": "3.70.0-next.69",
61
- "@elliemae/ds-chat-container-header": "3.70.0-next.69",
62
- "@elliemae/ds-chat-empty-state": "3.70.0-next.69",
63
- "@elliemae/ds-chat-floating-button": "3.70.0-next.69",
64
- "@elliemae/ds-chat-message-delimeter": "3.70.0-next.69",
65
- "@elliemae/ds-chat-sidebar": "3.70.0-next.69",
66
- "@elliemae/ds-chat-system-message": "3.70.0-next.69",
67
- "@elliemae/ds-chat-tile": "3.70.0-next.69",
68
- "@elliemae/ds-chip": "3.70.0-next.69",
69
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.69",
70
- "@elliemae/ds-classnames": "3.70.0-next.69",
71
- "@elliemae/ds-codeeditor": "3.70.0-next.69",
72
- "@elliemae/ds-comments": "3.70.0-next.69",
73
- "@elliemae/ds-controlled-form": "3.70.0-next.69",
74
- "@elliemae/ds-csv-converter": "3.70.0-next.69",
75
- "@elliemae/ds-data-table": "3.70.0-next.69",
76
- "@elliemae/ds-data-table-action-cell": "3.70.0-next.69",
77
- "@elliemae/ds-data-table-cell": "3.70.0-next.69",
78
- "@elliemae/ds-data-table-cell-header": "3.70.0-next.69",
79
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.69",
80
- "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.69",
81
- "@elliemae/ds-data-table-expand-cell": "3.70.0-next.69",
82
- "@elliemae/ds-data-table-filters": "3.70.0-next.69",
83
- "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.69",
84
- "@elliemae/ds-dataviz": "3.70.0-next.69",
85
- "@elliemae/ds-dataviz-pie": "3.70.0-next.69",
86
- "@elliemae/ds-date-time-picker": "3.70.0-next.69",
87
- "@elliemae/ds-app-picker": "3.70.0-next.69",
88
- "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.69",
89
- "@elliemae/ds-drag-and-drop": "3.70.0-next.69",
90
- "@elliemae/ds-dropzone": "3.70.0-next.69",
91
- "@elliemae/ds-decision-graph": "3.70.0-next.69",
92
- "@elliemae/ds-fast-list": "3.70.0-next.69",
93
- "@elliemae/ds-filter-bar": "3.70.0-next.69",
94
- "@elliemae/ds-floating-context": "3.70.0-next.69",
95
- "@elliemae/ds-form-combobox": "3.70.0-next.69",
96
- "@elliemae/ds-form-date-time-picker": "3.70.0-next.69",
97
- "@elliemae/ds-form-checkbox": "3.70.0-next.69",
98
- "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.69",
99
- "@elliemae/ds-form-input-text": "3.70.0-next.69",
100
- "@elliemae/ds-dialog": "3.70.0-next.69",
101
- "@elliemae/ds-form-date-range-picker": "3.70.0-next.69",
102
- "@elliemae/ds-form-input-textarea": "3.70.0-next.69",
103
- "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.69",
104
- "@elliemae/ds-form-layout-input-group": "3.70.0-next.69",
105
- "@elliemae/ds-form-layout-blocks": "3.70.0-next.69",
106
- "@elliemae/ds-form-layout-label": "3.70.0-next.69",
107
- "@elliemae/ds-form-multi-combobox": "3.70.0-next.69",
108
- "@elliemae/ds-form-native-select": "3.70.0-next.69",
109
- "@elliemae/ds-form-select": "3.70.0-next.69",
110
- "@elliemae/ds-form-single-combobox": "3.70.0-next.69",
111
- "@elliemae/ds-form-radio": "3.70.0-next.69",
112
- "@elliemae/ds-global-header": "3.70.0-next.69",
113
- "@elliemae/ds-hooks-focus-stack": "3.70.0-next.69",
114
- "@elliemae/ds-form-toggle": "3.70.0-next.69",
115
- "@elliemae/ds-grid": "3.70.0-next.69",
116
- "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.69",
117
- "@elliemae/ds-hooks-focus-trap": "3.70.0-next.69",
118
- "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.69",
119
- "@elliemae/ds-hooks-is-mobile": "3.70.0-next.69",
120
- "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.69",
121
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.69",
122
- "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.69",
123
- "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.69",
124
- "@elliemae/ds-icon": "3.70.0-next.69",
125
- "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.69",
126
- "@elliemae/ds-image": "3.70.0-next.69",
127
- "@elliemae/ds-imagelibrarymodal": "3.70.0-next.69",
128
- "@elliemae/ds-layout-provider": "3.70.0-next.69",
129
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.69",
130
- "@elliemae/ds-loading-indicator": "3.70.0-next.69",
131
- "@elliemae/ds-menu-button": "3.70.0-next.69",
132
- "@elliemae/ds-left-navigation": "3.70.0-next.69",
133
- "@elliemae/ds-menu-items-action": "3.70.0-next.69",
134
- "@elliemae/ds-menu-items": "3.70.0-next.69",
135
- "@elliemae/ds-menu-items-multi": "3.70.0-next.69",
136
- "@elliemae/ds-menu-items-commons": "3.70.0-next.69",
137
- "@elliemae/ds-menu-items-section": "3.70.0-next.69",
138
- "@elliemae/ds-menu-items-separator": "3.70.0-next.69",
139
- "@elliemae/ds-menu-items-single": "3.70.0-next.69",
140
- "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.69",
141
- "@elliemae/ds-menu-tree-item": "3.70.0-next.69",
142
- "@elliemae/ds-modal-slide": "3.70.0-next.69",
143
- "@elliemae/ds-mobile": "3.70.0-next.69",
144
- "@elliemae/ds-overlay": "3.70.0-next.69",
145
- "@elliemae/ds-page-header": "3.70.0-next.69",
146
- "@elliemae/ds-notification-badge": "3.70.0-next.69",
147
- "@elliemae/ds-page-header-v1": "3.70.0-next.69",
148
- "@elliemae/ds-page-header-v2": "3.70.0-next.69",
149
- "@elliemae/ds-icons": "3.70.0-next.69",
150
- "@elliemae/ds-page-layout": "3.70.0-next.69",
151
- "@elliemae/ds-menu-items-skeleton": "3.70.0-next.69",
152
- "@elliemae/ds-pills-v2": "3.70.0-next.69",
153
- "@elliemae/ds-portal": "3.70.0-next.69",
154
- "@elliemae/ds-props-helpers": "3.70.0-next.69",
155
- "@elliemae/ds-pagination": "3.70.0-next.69",
156
- "@elliemae/ds-progress-indicator": "3.70.0-next.69",
157
- "@elliemae/ds-read-more": "3.70.0-next.69",
158
- "@elliemae/ds-resizeable-container": "3.70.0-next.69",
159
- "@elliemae/ds-ribbon": "3.70.0-next.69",
160
- "@elliemae/ds-scrollable-container": "3.70.0-next.69",
161
- "@elliemae/ds-separator": "3.70.0-next.69",
162
- "@elliemae/ds-shared": "3.70.0-next.69",
163
- "@elliemae/ds-shuttle-v2": "3.70.0-next.69",
164
- "@elliemae/ds-side-panel": "3.70.0-next.69",
165
- "@elliemae/ds-skeleton": "3.70.0-next.69",
166
- "@elliemae/ds-side-panel-header": "3.70.0-next.69",
167
- "@elliemae/ds-slider-v2": "3.70.0-next.69",
168
- "@elliemae/ds-square-indicator": "3.70.0-next.69",
169
- "@elliemae/ds-stepper": "3.70.0-next.69",
170
- "@elliemae/ds-system": "3.70.0-next.69",
171
- "@elliemae/ds-svg": "3.70.0-next.69",
172
- "@elliemae/ds-tabs": "3.70.0-next.69",
173
- "@elliemae/ds-test-utils": "3.70.0-next.69",
174
- "@elliemae/ds-toast": "3.70.0-next.69",
175
- "@elliemae/ds-toolbar-v1": "3.70.0-next.69",
176
- "@elliemae/ds-toolbar-v2": "3.70.0-next.69",
177
- "@elliemae/ds-tooltip-v3": "3.70.0-next.69",
178
- "@elliemae/ds-transition": "3.70.0-next.69",
179
- "@elliemae/ds-tree-model": "3.70.0-next.69",
180
- "@elliemae/ds-typescript-helpers": "3.70.0-next.69",
181
- "@elliemae/ds-treeview": "3.70.0-next.69",
182
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.69",
183
- "@elliemae/ds-typography": "3.70.0-next.69",
184
- "@elliemae/ds-virtual-list": "3.70.0-next.69",
185
- "@elliemae/ds-menu-items-submenu": "3.70.0-next.69",
186
- "@elliemae/ds-wizard": "3.70.0-next.69",
187
- "@elliemae/ds-zustand-helpers": "3.70.0-next.69",
188
- "@elliemae/ds-query-builder": "3.70.0-next.69"
41
+ "@elliemae/ds-accessibility": "3.70.0-next.70",
42
+ "@elliemae/ds-app-picker": "3.70.0-next.70",
43
+ "@elliemae/ds-accordion": "3.70.0-next.70",
44
+ "@elliemae/ds-banner": "3.70.0-next.70",
45
+ "@elliemae/ds-backdrop": "3.70.0-next.70",
46
+ "@elliemae/ds-basic": "3.70.0-next.70",
47
+ "@elliemae/ds-breadcrumb": "3.70.0-next.70",
48
+ "@elliemae/ds-button-v2": "3.70.0-next.70",
49
+ "@elliemae/ds-card": "3.70.0-next.70",
50
+ "@elliemae/ds-card-navigation": "3.70.0-next.70",
51
+ "@elliemae/ds-card-v1": "3.70.0-next.70",
52
+ "@elliemae/ds-card-v1-detail": "3.70.0-next.70",
53
+ "@elliemae/ds-card-v2": "3.70.0-next.70",
54
+ "@elliemae/ds-card-v3-poc": "3.70.0-next.70",
55
+ "@elliemae/ds-card-v2-action-addon": "3.70.0-next.70",
56
+ "@elliemae/ds-card-v2-group": "3.70.0-next.70",
57
+ "@elliemae/ds-card-v3": "3.70.0-next.70",
58
+ "@elliemae/ds-chat": "3.70.0-next.70",
59
+ "@elliemae/ds-chat-card": "3.70.0-next.70",
60
+ "@elliemae/ds-chat-bubble": "3.70.0-next.70",
61
+ "@elliemae/ds-chat-container": "3.70.0-next.70",
62
+ "@elliemae/ds-chat-empty-state": "3.70.0-next.70",
63
+ "@elliemae/ds-chat-floating-button": "3.70.0-next.70",
64
+ "@elliemae/ds-chat-container-header": "3.70.0-next.70",
65
+ "@elliemae/ds-chat-message-delimeter": "3.70.0-next.70",
66
+ "@elliemae/ds-chat-sidebar": "3.70.0-next.70",
67
+ "@elliemae/ds-chat-tile": "3.70.0-next.70",
68
+ "@elliemae/ds-chat-system-message": "3.70.0-next.70",
69
+ "@elliemae/ds-chip": "3.70.0-next.70",
70
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.70",
71
+ "@elliemae/ds-classnames": "3.70.0-next.70",
72
+ "@elliemae/ds-codeeditor": "3.70.0-next.70",
73
+ "@elliemae/ds-comments": "3.70.0-next.70",
74
+ "@elliemae/ds-csv-converter": "3.70.0-next.70",
75
+ "@elliemae/ds-data-table": "3.70.0-next.70",
76
+ "@elliemae/ds-controlled-form": "3.70.0-next.70",
77
+ "@elliemae/ds-data-table-action-cell": "3.70.0-next.70",
78
+ "@elliemae/ds-data-table-cell": "3.70.0-next.70",
79
+ "@elliemae/ds-data-table-cell-header": "3.70.0-next.70",
80
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.70",
81
+ "@elliemae/ds-data-table-filters": "3.70.0-next.70",
82
+ "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.70",
83
+ "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.70",
84
+ "@elliemae/ds-data-table-expand-cell": "3.70.0-next.70",
85
+ "@elliemae/ds-dataviz": "3.70.0-next.70",
86
+ "@elliemae/ds-dataviz-pie": "3.70.0-next.70",
87
+ "@elliemae/ds-dialog": "3.70.0-next.70",
88
+ "@elliemae/ds-date-time-picker": "3.70.0-next.70",
89
+ "@elliemae/ds-decision-graph": "3.70.0-next.70",
90
+ "@elliemae/ds-dropzone": "3.70.0-next.70",
91
+ "@elliemae/ds-fast-list": "3.70.0-next.70",
92
+ "@elliemae/ds-filter-bar": "3.70.0-next.70",
93
+ "@elliemae/ds-floating-context": "3.70.0-next.70",
94
+ "@elliemae/ds-form-checkbox": "3.70.0-next.70",
95
+ "@elliemae/ds-form-combobox": "3.70.0-next.70",
96
+ "@elliemae/ds-form-date-range-picker": "3.70.0-next.70",
97
+ "@elliemae/ds-form-date-time-picker": "3.70.0-next.70",
98
+ "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.70",
99
+ "@elliemae/ds-form-input-text": "3.70.0-next.70",
100
+ "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.70",
101
+ "@elliemae/ds-form-layout-blocks": "3.70.0-next.70",
102
+ "@elliemae/ds-form-input-textarea": "3.70.0-next.70",
103
+ "@elliemae/ds-form-layout-label": "3.70.0-next.70",
104
+ "@elliemae/ds-form-multi-combobox": "3.70.0-next.70",
105
+ "@elliemae/ds-form-layout-input-group": "3.70.0-next.70",
106
+ "@elliemae/ds-form-radio": "3.70.0-next.70",
107
+ "@elliemae/ds-form-native-select": "3.70.0-next.70",
108
+ "@elliemae/ds-form-select": "3.70.0-next.70",
109
+ "@elliemae/ds-form-single-combobox": "3.70.0-next.70",
110
+ "@elliemae/ds-form-toggle": "3.70.0-next.70",
111
+ "@elliemae/ds-global-header": "3.70.0-next.70",
112
+ "@elliemae/ds-grid": "3.70.0-next.70",
113
+ "@elliemae/ds-hooks-focus-stack": "3.70.0-next.70",
114
+ "@elliemae/ds-hooks-focus-trap": "3.70.0-next.70",
115
+ "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.70",
116
+ "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.70",
117
+ "@elliemae/ds-hooks-is-mobile": "3.70.0-next.70",
118
+ "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.70",
119
+ "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.70",
120
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.70",
121
+ "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.70",
122
+ "@elliemae/ds-icon": "3.70.0-next.70",
123
+ "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.70",
124
+ "@elliemae/ds-image": "3.70.0-next.70",
125
+ "@elliemae/ds-imagelibrarymodal": "3.70.0-next.70",
126
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.70",
127
+ "@elliemae/ds-layout-provider": "3.70.0-next.70",
128
+ "@elliemae/ds-icons": "3.70.0-next.70",
129
+ "@elliemae/ds-left-navigation": "3.70.0-next.70",
130
+ "@elliemae/ds-menu-button": "3.70.0-next.70",
131
+ "@elliemae/ds-loading-indicator": "3.70.0-next.70",
132
+ "@elliemae/ds-menu-items": "3.70.0-next.70",
133
+ "@elliemae/ds-menu-items-action": "3.70.0-next.70",
134
+ "@elliemae/ds-menu-items-commons": "3.70.0-next.70",
135
+ "@elliemae/ds-menu-items-multi": "3.70.0-next.70",
136
+ "@elliemae/ds-menu-items-section": "3.70.0-next.70",
137
+ "@elliemae/ds-menu-items-separator": "3.70.0-next.70",
138
+ "@elliemae/ds-menu-items-single": "3.70.0-next.70",
139
+ "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.70",
140
+ "@elliemae/ds-menu-items-submenu": "3.70.0-next.70",
141
+ "@elliemae/ds-menu-items-skeleton": "3.70.0-next.70",
142
+ "@elliemae/ds-menu-tree-item": "3.70.0-next.70",
143
+ "@elliemae/ds-mobile": "3.70.0-next.70",
144
+ "@elliemae/ds-modal-slide": "3.70.0-next.70",
145
+ "@elliemae/ds-overlay": "3.70.0-next.70",
146
+ "@elliemae/ds-notification-badge": "3.70.0-next.70",
147
+ "@elliemae/ds-page-header": "3.70.0-next.70",
148
+ "@elliemae/ds-page-header-v2": "3.70.0-next.70",
149
+ "@elliemae/ds-page-header-v1": "3.70.0-next.70",
150
+ "@elliemae/ds-page-layout": "3.70.0-next.70",
151
+ "@elliemae/ds-pagination": "3.70.0-next.70",
152
+ "@elliemae/ds-pills-v2": "3.70.0-next.70",
153
+ "@elliemae/ds-progress-indicator": "3.70.0-next.70",
154
+ "@elliemae/ds-portal": "3.70.0-next.70",
155
+ "@elliemae/ds-props-helpers": "3.70.0-next.70",
156
+ "@elliemae/ds-read-more": "3.70.0-next.70",
157
+ "@elliemae/ds-query-builder": "3.70.0-next.70",
158
+ "@elliemae/ds-resizeable-container": "3.70.0-next.70",
159
+ "@elliemae/ds-scrollable-container": "3.70.0-next.70",
160
+ "@elliemae/ds-ribbon": "3.70.0-next.70",
161
+ "@elliemae/ds-separator": "3.70.0-next.70",
162
+ "@elliemae/ds-shared": "3.70.0-next.70",
163
+ "@elliemae/ds-side-panel": "3.70.0-next.70",
164
+ "@elliemae/ds-side-panel-header": "3.70.0-next.70",
165
+ "@elliemae/ds-shuttle-v2": "3.70.0-next.70",
166
+ "@elliemae/ds-skeleton": "3.70.0-next.70",
167
+ "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.70",
168
+ "@elliemae/ds-square-indicator": "3.70.0-next.70",
169
+ "@elliemae/ds-slider-v2": "3.70.0-next.70",
170
+ "@elliemae/ds-stepper": "3.70.0-next.70",
171
+ "@elliemae/ds-svg": "3.70.0-next.70",
172
+ "@elliemae/ds-system": "3.70.0-next.70",
173
+ "@elliemae/ds-tabs": "3.70.0-next.70",
174
+ "@elliemae/ds-test-utils": "3.70.0-next.70",
175
+ "@elliemae/ds-toolbar-v1": "3.70.0-next.70",
176
+ "@elliemae/ds-toast": "3.70.0-next.70",
177
+ "@elliemae/ds-tooltip-v3": "3.70.0-next.70",
178
+ "@elliemae/ds-toolbar-v2": "3.70.0-next.70",
179
+ "@elliemae/ds-transition": "3.70.0-next.70",
180
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.70",
181
+ "@elliemae/ds-tree-model": "3.70.0-next.70",
182
+ "@elliemae/ds-treeview": "3.70.0-next.70",
183
+ "@elliemae/ds-typescript-helpers": "3.70.0-next.70",
184
+ "@elliemae/ds-typography": "3.70.0-next.70",
185
+ "@elliemae/ds-virtual-list": "3.70.0-next.70",
186
+ "@elliemae/ds-wizard": "3.70.0-next.70",
187
+ "@elliemae/ds-zustand-helpers": "3.70.0-next.70",
188
+ "@elliemae/ds-drag-and-drop": "3.70.0-next.70"
189
189
  },
190
190
  "publishConfig": {
191
191
  "access": "public"