dimsum-e2e-tests 3.70.0-next.14 → 3.70.0-next.16

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,16 @@
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.16 (2026-05-25)
7
+
8
+ **Note:** Version bump only for package dimsum-e2e-tests
9
+
10
+ ## 3.70.0-next.15 (2026-05-22)
11
+
12
+ ### Features
13
+
14
+ - dimsum:: created open-spec dimsum wrapper for monorepo operation [PUI-18489](https://jira.elliemae.io/browse/PUI-18489) ([#8045](https://git.elliemae.io/platform-ui/dimsum/issues/8045)) ([0c8e422](https://git.elliemae.io/platform-ui/dimsum/commit/0c8e422cb87de489439faa38eab4129a6ebf8299))
15
+
6
16
  ## 3.70.0-next.14 (2026-05-21)
7
17
 
8
18
  ### Features
@@ -54,4 +54,43 @@ if (
54
54
  expect(result.length).toBe(0);
55
55
  });
56
56
  });
57
+
58
+ describe('PUI-16464 - NativeSelect: ApplyAriaDisabled -AxeCore', () => {
59
+ before(async () => {
60
+ const errorOnGo = await NativeSelect.applyAriaDisabledURL.go();
61
+ if (errorOnGo) throw errorOnGo;
62
+ });
63
+ it('01: should have applyAriaDisabled native select and pass axe-core scan', async () => {
64
+ const nativeSelect = await NativeSelect.getRootByIndex(0);
65
+ await nativeSelect.waitForDisplayed();
66
+ const result = await axeCoreCheck();
67
+ expect(result.length).toBe(0);
68
+ });
69
+ });
70
+
71
+ describe('PUI-16464 - NativeSelect: ReadOnly -AxeCore', () => {
72
+ before(async () => {
73
+ const errorOnGo = await NativeSelect.readOnlyURL.go();
74
+ if (errorOnGo) throw errorOnGo;
75
+ });
76
+ it('01: should have readOnly native select and pass axe-core scan', async () => {
77
+ const nativeSelect = await NativeSelect.getRootByIndex(0);
78
+ await nativeSelect.waitForDisplayed();
79
+ const result = await axeCoreCheck();
80
+ expect(result.length).toBe(0);
81
+ });
82
+ });
83
+
84
+ describe('PUI-16464 - NativeSelect: ApplyAriaDisabled + hasError -AxeCore', () => {
85
+ before(async () => {
86
+ const errorOnGo = await NativeSelect.applyAriaDisabledWithErrorURL.go();
87
+ if (errorOnGo) throw errorOnGo;
88
+ });
89
+ it('01: should have applyAriaDisabled + hasError native select and pass axe-core scan', async () => {
90
+ const nativeSelect = await NativeSelect.getRootByIndex(0);
91
+ await nativeSelect.waitForDisplayed();
92
+ const result = await axeCoreCheck();
93
+ expect(result.length).toBe(0);
94
+ });
95
+ });
57
96
  }
@@ -11,6 +11,12 @@ export default class NativeSelect extends PageObject {
11
11
 
12
12
  static disabledURL = new Urlbuilder(PATH_E2E_NATIVE_SELECT, 'disabled-test');
13
13
 
14
+ static applyAriaDisabledURL = new Urlbuilder(PATH_E2E_NATIVE_SELECT, 'apply-aria-disabled-test');
15
+
16
+ static readOnlyURL = new Urlbuilder(PATH_E2E_NATIVE_SELECT, 'read-only-test');
17
+
18
+ static applyAriaDisabledWithErrorURL = new Urlbuilder(PATH_E2E_NATIVE_SELECT, 'apply-aria-disabled-with-error-test');
19
+
14
20
  // Selectors
15
21
  static async getInputSlotByIndex(index = 0) {
16
22
  return $$(`[data-dimsum-slot="dsNativeselectInput"]`)[index];
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.14",
4
+ "version": "3.70.0-next.16",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
7
  "@elliemae/ds-legacy-button": "1.0.16",
@@ -41,154 +41,154 @@
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.14",
45
- "@elliemae/ds-accordion": "3.70.0-next.14",
46
- "@elliemae/ds-app-picker": "3.70.0-next.14",
47
- "@elliemae/ds-backdrop": "3.70.0-next.14",
48
- "@elliemae/ds-banner": "3.70.0-next.14",
49
- "@elliemae/ds-basic": "3.70.0-next.14",
50
- "@elliemae/ds-breadcrumb": "3.70.0-next.14",
51
- "@elliemae/ds-button-v2": "3.70.0-next.14",
52
- "@elliemae/ds-card": "3.70.0-next.14",
53
- "@elliemae/ds-card-navigation": "3.70.0-next.14",
54
- "@elliemae/ds-card-v1": "3.70.0-next.14",
55
- "@elliemae/ds-card-v1-detail": "3.70.0-next.14",
56
- "@elliemae/ds-card-v2-action-addon": "3.70.0-next.14",
57
- "@elliemae/ds-card-v2": "3.70.0-next.14",
58
- "@elliemae/ds-card-v2-group": "3.70.0-next.14",
59
- "@elliemae/ds-card-v3-poc": "3.70.0-next.14",
60
- "@elliemae/ds-chat": "3.70.0-next.14",
61
- "@elliemae/ds-card-v3": "3.70.0-next.14",
62
- "@elliemae/ds-chat-bubble": "3.70.0-next.14",
63
- "@elliemae/ds-chat-card": "3.70.0-next.14",
64
- "@elliemae/ds-chat-container": "3.70.0-next.14",
65
- "@elliemae/ds-chat-container-header": "3.70.0-next.14",
66
- "@elliemae/ds-chat-empty-state": "3.70.0-next.14",
67
- "@elliemae/ds-chat-floating-button": "3.70.0-next.14",
68
- "@elliemae/ds-chat-message-delimeter": "3.70.0-next.14",
69
- "@elliemae/ds-chat-sidebar": "3.70.0-next.14",
70
- "@elliemae/ds-chat-system-message": "3.70.0-next.14",
71
- "@elliemae/ds-chat-tile": "3.70.0-next.14",
72
- "@elliemae/ds-chip": "3.70.0-next.14",
73
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.14",
74
- "@elliemae/ds-classnames": "3.70.0-next.14",
75
- "@elliemae/ds-codeeditor": "3.70.0-next.14",
76
- "@elliemae/ds-comments": "3.70.0-next.14",
77
- "@elliemae/ds-controlled-form": "3.70.0-next.14",
78
- "@elliemae/ds-csv-converter": "3.70.0-next.14",
79
- "@elliemae/ds-data-table-action-cell": "3.70.0-next.14",
80
- "@elliemae/ds-data-table-cell": "3.70.0-next.14",
81
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.14",
82
- "@elliemae/ds-data-table": "3.70.0-next.14",
83
- "@elliemae/ds-data-table-expand-cell": "3.70.0-next.14",
84
- "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.14",
85
- "@elliemae/ds-data-table-cell-header": "3.70.0-next.14",
86
- "@elliemae/ds-data-table-filters": "3.70.0-next.14",
87
- "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.14",
88
- "@elliemae/ds-dataviz": "3.70.0-next.14",
89
- "@elliemae/ds-dataviz-pie": "3.70.0-next.14",
90
- "@elliemae/ds-decision-graph": "3.70.0-next.14",
91
- "@elliemae/ds-date-time-picker": "3.70.0-next.14",
92
- "@elliemae/ds-dialog": "3.70.0-next.14",
93
- "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.14",
94
- "@elliemae/ds-drag-and-drop": "3.70.0-next.14",
95
- "@elliemae/ds-filter-bar": "3.70.0-next.14",
96
- "@elliemae/ds-fast-list": "3.70.0-next.14",
97
- "@elliemae/ds-floating-context": "3.70.0-next.14",
98
- "@elliemae/ds-form-checkbox": "3.70.0-next.14",
99
- "@elliemae/ds-form-combobox": "3.70.0-next.14",
100
- "@elliemae/ds-dropzone": "3.70.0-next.14",
101
- "@elliemae/ds-form-date-range-picker": "3.70.0-next.14",
102
- "@elliemae/ds-form-date-time-picker": "3.70.0-next.14",
103
- "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.14",
104
- "@elliemae/ds-form-input-textarea": "3.70.0-next.14",
105
- "@elliemae/ds-form-input-text": "3.70.0-next.14",
106
- "@elliemae/ds-form-layout-blocks": "3.70.0-next.14",
107
- "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.14",
108
- "@elliemae/ds-form-layout-input-group": "3.70.0-next.14",
109
- "@elliemae/ds-form-layout-label": "3.70.0-next.14",
110
- "@elliemae/ds-form-multi-combobox": "3.70.0-next.14",
111
- "@elliemae/ds-form-native-select": "3.70.0-next.14",
112
- "@elliemae/ds-form-radio": "3.70.0-next.14",
113
- "@elliemae/ds-form-select": "3.70.0-next.14",
114
- "@elliemae/ds-form-single-combobox": "3.70.0-next.14",
115
- "@elliemae/ds-form-toggle": "3.70.0-next.14",
116
- "@elliemae/ds-global-header": "3.70.0-next.14",
117
- "@elliemae/ds-grid": "3.70.0-next.14",
118
- "@elliemae/ds-hooks-focus-stack": "3.70.0-next.14",
119
- "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.14",
120
- "@elliemae/ds-hooks-focus-trap": "3.70.0-next.14",
121
- "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.14",
122
- "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.14",
123
- "@elliemae/ds-hooks-is-mobile": "3.70.0-next.14",
124
- "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.14",
125
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.14",
126
- "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.14",
127
- "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.14",
128
- "@elliemae/ds-icon": "3.70.0-next.14",
129
- "@elliemae/ds-image": "3.70.0-next.14",
130
- "@elliemae/ds-icons": "3.70.0-next.14",
131
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.14",
132
- "@elliemae/ds-left-navigation": "3.70.0-next.14",
133
- "@elliemae/ds-imagelibrarymodal": "3.70.0-next.14",
134
- "@elliemae/ds-layout-provider": "3.70.0-next.14",
135
- "@elliemae/ds-menu-button": "3.70.0-next.14",
136
- "@elliemae/ds-loading-indicator": "3.70.0-next.14",
137
- "@elliemae/ds-menu-items": "3.70.0-next.14",
138
- "@elliemae/ds-menu-items-action": "3.70.0-next.14",
139
- "@elliemae/ds-menu-items-multi": "3.70.0-next.14",
140
- "@elliemae/ds-menu-items-commons": "3.70.0-next.14",
141
- "@elliemae/ds-menu-items-section": "3.70.0-next.14",
142
- "@elliemae/ds-menu-items-separator": "3.70.0-next.14",
143
- "@elliemae/ds-menu-items-single": "3.70.0-next.14",
144
- "@elliemae/ds-menu-items-skeleton": "3.70.0-next.14",
145
- "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.14",
146
- "@elliemae/ds-menu-items-submenu": "3.70.0-next.14",
147
- "@elliemae/ds-menu-tree-item": "3.70.0-next.14",
148
- "@elliemae/ds-mobile": "3.70.0-next.14",
149
- "@elliemae/ds-modal-slide": "3.70.0-next.14",
150
- "@elliemae/ds-notification-badge": "3.70.0-next.14",
151
- "@elliemae/ds-page-header": "3.70.0-next.14",
152
- "@elliemae/ds-overlay": "3.70.0-next.14",
153
- "@elliemae/ds-page-header-v1": "3.70.0-next.14",
154
- "@elliemae/ds-page-layout": "3.70.0-next.14",
155
- "@elliemae/ds-page-header-v2": "3.70.0-next.14",
156
- "@elliemae/ds-pagination": "3.70.0-next.14",
157
- "@elliemae/ds-pills-v2": "3.70.0-next.14",
158
- "@elliemae/ds-portal": "3.70.0-next.14",
159
- "@elliemae/ds-progress-indicator": "3.70.0-next.14",
160
- "@elliemae/ds-props-helpers": "3.70.0-next.14",
161
- "@elliemae/ds-query-builder": "3.70.0-next.14",
162
- "@elliemae/ds-read-more": "3.70.0-next.14",
163
- "@elliemae/ds-resizeable-container": "3.70.0-next.14",
164
- "@elliemae/ds-ribbon": "3.70.0-next.14",
165
- "@elliemae/ds-scrollable-container": "3.70.0-next.14",
166
- "@elliemae/ds-separator": "3.70.0-next.14",
167
- "@elliemae/ds-shared": "3.70.0-next.14",
168
- "@elliemae/ds-shuttle-v2": "3.70.0-next.14",
169
- "@elliemae/ds-side-panel": "3.70.0-next.14",
170
- "@elliemae/ds-skeleton": "3.70.0-next.14",
171
- "@elliemae/ds-side-panel-header": "3.70.0-next.14",
172
- "@elliemae/ds-slider-v2": "3.70.0-next.14",
173
- "@elliemae/ds-stepper": "3.70.0-next.14",
174
- "@elliemae/ds-square-indicator": "3.70.0-next.14",
175
- "@elliemae/ds-system": "3.70.0-next.14",
176
- "@elliemae/ds-svg": "3.70.0-next.14",
177
- "@elliemae/ds-tabs": "3.70.0-next.14",
178
- "@elliemae/ds-toast": "3.70.0-next.14",
179
- "@elliemae/ds-test-utils": "3.70.0-next.14",
180
- "@elliemae/ds-toolbar-v2": "3.70.0-next.14",
181
- "@elliemae/ds-toolbar-v1": "3.70.0-next.14",
182
- "@elliemae/ds-transition": "3.70.0-next.14",
183
- "@elliemae/ds-tooltip-v3": "3.70.0-next.14",
184
- "@elliemae/ds-tree-model": "3.70.0-next.14",
185
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.14",
186
- "@elliemae/ds-typescript-helpers": "3.70.0-next.14",
187
- "@elliemae/ds-treeview": "3.70.0-next.14",
188
- "@elliemae/ds-typography": "3.70.0-next.14",
189
- "@elliemae/ds-virtual-list": "3.70.0-next.14",
190
- "@elliemae/ds-wizard": "3.70.0-next.14",
191
- "@elliemae/ds-zustand-helpers": "3.70.0-next.14"
44
+ "@elliemae/ds-accessibility": "3.70.0-next.16",
45
+ "@elliemae/ds-accordion": "3.70.0-next.16",
46
+ "@elliemae/ds-app-picker": "3.70.0-next.16",
47
+ "@elliemae/ds-backdrop": "3.70.0-next.16",
48
+ "@elliemae/ds-banner": "3.70.0-next.16",
49
+ "@elliemae/ds-basic": "3.70.0-next.16",
50
+ "@elliemae/ds-breadcrumb": "3.70.0-next.16",
51
+ "@elliemae/ds-button-v2": "3.70.0-next.16",
52
+ "@elliemae/ds-card-navigation": "3.70.0-next.16",
53
+ "@elliemae/ds-card": "3.70.0-next.16",
54
+ "@elliemae/ds-card-v1-detail": "3.70.0-next.16",
55
+ "@elliemae/ds-card-v1": "3.70.0-next.16",
56
+ "@elliemae/ds-card-v2": "3.70.0-next.16",
57
+ "@elliemae/ds-card-v2-action-addon": "3.70.0-next.16",
58
+ "@elliemae/ds-card-v2-group": "3.70.0-next.16",
59
+ "@elliemae/ds-card-v3": "3.70.0-next.16",
60
+ "@elliemae/ds-chat-bubble": "3.70.0-next.16",
61
+ "@elliemae/ds-chat-container": "3.70.0-next.16",
62
+ "@elliemae/ds-chat-card": "3.70.0-next.16",
63
+ "@elliemae/ds-card-v3-poc": "3.70.0-next.16",
64
+ "@elliemae/ds-chat": "3.70.0-next.16",
65
+ "@elliemae/ds-chat-empty-state": "3.70.0-next.16",
66
+ "@elliemae/ds-chat-floating-button": "3.70.0-next.16",
67
+ "@elliemae/ds-chat-message-delimeter": "3.70.0-next.16",
68
+ "@elliemae/ds-chat-sidebar": "3.70.0-next.16",
69
+ "@elliemae/ds-chat-system-message": "3.70.0-next.16",
70
+ "@elliemae/ds-chat-tile": "3.70.0-next.16",
71
+ "@elliemae/ds-chip": "3.70.0-next.16",
72
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.16",
73
+ "@elliemae/ds-codeeditor": "3.70.0-next.16",
74
+ "@elliemae/ds-controlled-form": "3.70.0-next.16",
75
+ "@elliemae/ds-comments": "3.70.0-next.16",
76
+ "@elliemae/ds-classnames": "3.70.0-next.16",
77
+ "@elliemae/ds-chat-container-header": "3.70.0-next.16",
78
+ "@elliemae/ds-csv-converter": "3.70.0-next.16",
79
+ "@elliemae/ds-data-table-action-cell": "3.70.0-next.16",
80
+ "@elliemae/ds-data-table": "3.70.0-next.16",
81
+ "@elliemae/ds-data-table-cell": "3.70.0-next.16",
82
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.16",
83
+ "@elliemae/ds-data-table-cell-header": "3.70.0-next.16",
84
+ "@elliemae/ds-data-table-expand-cell": "3.70.0-next.16",
85
+ "@elliemae/ds-data-table-filters": "3.70.0-next.16",
86
+ "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.16",
87
+ "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.16",
88
+ "@elliemae/ds-dataviz": "3.70.0-next.16",
89
+ "@elliemae/ds-date-time-picker": "3.70.0-next.16",
90
+ "@elliemae/ds-dataviz-pie": "3.70.0-next.16",
91
+ "@elliemae/ds-decision-graph": "3.70.0-next.16",
92
+ "@elliemae/ds-dialog": "3.70.0-next.16",
93
+ "@elliemae/ds-drag-and-drop": "3.70.0-next.16",
94
+ "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.16",
95
+ "@elliemae/ds-floating-context": "3.70.0-next.16",
96
+ "@elliemae/ds-dropzone": "3.70.0-next.16",
97
+ "@elliemae/ds-fast-list": "3.70.0-next.16",
98
+ "@elliemae/ds-filter-bar": "3.70.0-next.16",
99
+ "@elliemae/ds-form-checkbox": "3.70.0-next.16",
100
+ "@elliemae/ds-form-combobox": "3.70.0-next.16",
101
+ "@elliemae/ds-form-date-time-picker": "3.70.0-next.16",
102
+ "@elliemae/ds-form-date-range-picker": "3.70.0-next.16",
103
+ "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.16",
104
+ "@elliemae/ds-form-input-text": "3.70.0-next.16",
105
+ "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.16",
106
+ "@elliemae/ds-form-layout-blocks": "3.70.0-next.16",
107
+ "@elliemae/ds-form-layout-input-group": "3.70.0-next.16",
108
+ "@elliemae/ds-form-input-textarea": "3.70.0-next.16",
109
+ "@elliemae/ds-form-multi-combobox": "3.70.0-next.16",
110
+ "@elliemae/ds-form-layout-label": "3.70.0-next.16",
111
+ "@elliemae/ds-form-native-select": "3.70.0-next.16",
112
+ "@elliemae/ds-form-radio": "3.70.0-next.16",
113
+ "@elliemae/ds-form-single-combobox": "3.70.0-next.16",
114
+ "@elliemae/ds-form-select": "3.70.0-next.16",
115
+ "@elliemae/ds-grid": "3.70.0-next.16",
116
+ "@elliemae/ds-form-toggle": "3.70.0-next.16",
117
+ "@elliemae/ds-global-header": "3.70.0-next.16",
118
+ "@elliemae/ds-hooks-focus-trap": "3.70.0-next.16",
119
+ "@elliemae/ds-hooks-is-mobile": "3.70.0-next.16",
120
+ "@elliemae/ds-hooks-focus-stack": "3.70.0-next.16",
121
+ "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.16",
122
+ "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.16",
123
+ "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.16",
124
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.16",
125
+ "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.16",
126
+ "@elliemae/ds-icon": "3.70.0-next.16",
127
+ "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.16",
128
+ "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.16",
129
+ "@elliemae/ds-image": "3.70.0-next.16",
130
+ "@elliemae/ds-imagelibrarymodal": "3.70.0-next.16",
131
+ "@elliemae/ds-icons": "3.70.0-next.16",
132
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.16",
133
+ "@elliemae/ds-layout-provider": "3.70.0-next.16",
134
+ "@elliemae/ds-loading-indicator": "3.70.0-next.16",
135
+ "@elliemae/ds-left-navigation": "3.70.0-next.16",
136
+ "@elliemae/ds-menu-items": "3.70.0-next.16",
137
+ "@elliemae/ds-menu-button": "3.70.0-next.16",
138
+ "@elliemae/ds-menu-items-action": "3.70.0-next.16",
139
+ "@elliemae/ds-menu-items-commons": "3.70.0-next.16",
140
+ "@elliemae/ds-menu-items-multi": "3.70.0-next.16",
141
+ "@elliemae/ds-menu-items-section": "3.70.0-next.16",
142
+ "@elliemae/ds-menu-items-separator": "3.70.0-next.16",
143
+ "@elliemae/ds-menu-items-single": "3.70.0-next.16",
144
+ "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.16",
145
+ "@elliemae/ds-menu-items-skeleton": "3.70.0-next.16",
146
+ "@elliemae/ds-menu-items-submenu": "3.70.0-next.16",
147
+ "@elliemae/ds-menu-tree-item": "3.70.0-next.16",
148
+ "@elliemae/ds-modal-slide": "3.70.0-next.16",
149
+ "@elliemae/ds-mobile": "3.70.0-next.16",
150
+ "@elliemae/ds-notification-badge": "3.70.0-next.16",
151
+ "@elliemae/ds-page-header": "3.70.0-next.16",
152
+ "@elliemae/ds-pagination": "3.70.0-next.16",
153
+ "@elliemae/ds-overlay": "3.70.0-next.16",
154
+ "@elliemae/ds-page-header-v1": "3.70.0-next.16",
155
+ "@elliemae/ds-page-layout": "3.70.0-next.16",
156
+ "@elliemae/ds-page-header-v2": "3.70.0-next.16",
157
+ "@elliemae/ds-pills-v2": "3.70.0-next.16",
158
+ "@elliemae/ds-portal": "3.70.0-next.16",
159
+ "@elliemae/ds-progress-indicator": "3.70.0-next.16",
160
+ "@elliemae/ds-query-builder": "3.70.0-next.16",
161
+ "@elliemae/ds-read-more": "3.70.0-next.16",
162
+ "@elliemae/ds-props-helpers": "3.70.0-next.16",
163
+ "@elliemae/ds-resizeable-container": "3.70.0-next.16",
164
+ "@elliemae/ds-ribbon": "3.70.0-next.16",
165
+ "@elliemae/ds-shared": "3.70.0-next.16",
166
+ "@elliemae/ds-scrollable-container": "3.70.0-next.16",
167
+ "@elliemae/ds-shuttle-v2": "3.70.0-next.16",
168
+ "@elliemae/ds-separator": "3.70.0-next.16",
169
+ "@elliemae/ds-side-panel": "3.70.0-next.16",
170
+ "@elliemae/ds-side-panel-header": "3.70.0-next.16",
171
+ "@elliemae/ds-skeleton": "3.70.0-next.16",
172
+ "@elliemae/ds-slider-v2": "3.70.0-next.16",
173
+ "@elliemae/ds-square-indicator": "3.70.0-next.16",
174
+ "@elliemae/ds-stepper": "3.70.0-next.16",
175
+ "@elliemae/ds-system": "3.70.0-next.16",
176
+ "@elliemae/ds-svg": "3.70.0-next.16",
177
+ "@elliemae/ds-tabs": "3.70.0-next.16",
178
+ "@elliemae/ds-test-utils": "3.70.0-next.16",
179
+ "@elliemae/ds-toolbar-v1": "3.70.0-next.16",
180
+ "@elliemae/ds-toast": "3.70.0-next.16",
181
+ "@elliemae/ds-toolbar-v2": "3.70.0-next.16",
182
+ "@elliemae/ds-tooltip-v3": "3.70.0-next.16",
183
+ "@elliemae/ds-transition": "3.70.0-next.16",
184
+ "@elliemae/ds-tree-model": "3.70.0-next.16",
185
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.16",
186
+ "@elliemae/ds-treeview": "3.70.0-next.16",
187
+ "@elliemae/ds-typescript-helpers": "3.70.0-next.16",
188
+ "@elliemae/ds-virtual-list": "3.70.0-next.16",
189
+ "@elliemae/ds-zustand-helpers": "3.70.0-next.16",
190
+ "@elliemae/ds-typography": "3.70.0-next.16",
191
+ "@elliemae/ds-wizard": "3.70.0-next.16"
192
192
  },
193
193
  "publishConfig": {
194
194
  "access": "public"