dimsum-e2e-tests 3.70.0-next.6 → 3.70.0-next.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 3.70.0-next.8 (2026-05-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-chat-bubble:: add missing export in test ([57d294a](https://git.elliemae.io/platform-ui/dimsum/commit/57d294aef0b2739cb2ac0afe673d9c4ccfe0e718))
11
+
12
+ ## 3.70.0-next.7 (2026-05-11)
13
+
14
+ ### Bug Fixes
15
+
16
+ - ds-modal-slide:: added e2e test for slots [PUI-18428](https://jira.elliemae.io/browse/PUI-18428) ([#8016](https://git.elliemae.io/platform-ui/dimsum/issues/8016)) ([8fa99f8](https://git.elliemae.io/platform-ui/dimsum/commit/8fa99f8e14fe7d8b1fedd916e392761f2188904e))
17
+
6
18
  ## 3.70.0-next.6 (2026-05-11)
7
19
 
8
20
  ### Bug Fixes
@@ -134,7 +134,7 @@ export default class DSComboboxCO extends PageObject {
134
134
  }
135
135
 
136
136
  static async getSimpleTruncateText() {
137
- return $('[data-testid="DS-SimpleTruncateText"]');
137
+ return $('[data-testid="combobox-selected-values"]');
138
138
  }
139
139
 
140
140
  static async getNumberOptions() {
@@ -183,7 +183,7 @@ export default class DSComboboxCO extends PageObject {
183
183
  }
184
184
 
185
185
  static async getTooltip() {
186
- return $('[data-testid="popover-container"]');
186
+ return $('[data-testid="ds-floating-wrapper-root"]');
187
187
  }
188
188
 
189
189
  // actions
@@ -58,7 +58,7 @@ export default class DSControlledCheckboxCO extends PageObject {
58
58
  static getCheckboxByIndex = async (index) => getElementByIndex(this.getCheckboxes, index);
59
59
 
60
60
  static async getCheckboxLabels() {
61
- return $$('[data-testid="DS-SimpleTruncateText"]');
61
+ return $$('[data-testid="ds-checkbox-label"]');
62
62
  }
63
63
 
64
64
  static getCheckboxLabelByIndex = async (index) => getElementByIndex(this.getCheckboxLabels, index);
@@ -47,7 +47,7 @@ export default class DSControlledInputGroupCO extends PageObject {
47
47
  }
48
48
 
49
49
  static async getComboSelectedOptText() {
50
- return $('[data-testid="DS-SimpleTruncateText"]');
50
+ return $('[data-testid="combobox-selected-values"]');
51
51
  }
52
52
 
53
53
  static async getComboboxInput() {
@@ -392,11 +392,11 @@ export default class DataTableCO extends PageObject {
392
392
  }
393
393
 
394
394
  static getPopoverContainer() {
395
- return $('[data-testid="popover-container"]');
395
+ return $('[data-testid="ds-floating-wrapper-root"]');
396
396
  }
397
397
 
398
398
  static getPopoverContainers() {
399
- return $$('[data-testid="popover-container"]');
399
+ return $$('[data-testid="ds-floating-wrapper-root"]');
400
400
  }
401
401
 
402
402
  static getButtons(index) {
@@ -142,7 +142,7 @@ export default class DSComboboxMultiCO extends PageObject {
142
142
  }
143
143
 
144
144
  static async getSimpleTruncateText() {
145
- return $('[data-testid="DS-SimpleTruncateText"]');
145
+ return $('[data-testid="combobox-selected-values"]');
146
146
  }
147
147
 
148
148
  static async getNumberOptions() {
@@ -191,7 +191,7 @@ export default class DSComboboxMultiCO extends PageObject {
191
191
  }
192
192
 
193
193
  static async getTooltip() {
194
- return $('[data-testid="popover-container"]');
194
+ return $('[data-testid="ds-floating-wrapper-root"]');
195
195
  }
196
196
 
197
197
  // actions
@@ -133,7 +133,7 @@ export default class DSComboboxSingleCO extends PageObject {
133
133
  }
134
134
 
135
135
  static async getSimpleTruncateText() {
136
- return $('[data-testid="DS-SimpleTruncateText"]');
136
+ return $('[data-testid="combobox-selected-values"]');
137
137
  }
138
138
 
139
139
  static async getNumberOptions() {
@@ -182,7 +182,7 @@ export default class DSComboboxSingleCO extends PageObject {
182
182
  }
183
183
 
184
184
  static async getTooltip() {
185
- return $('[data-testid="popover-container"]');
185
+ return $('[data-testid="ds-floating-wrapper-root"]');
186
186
  }
187
187
 
188
188
  // Slots
@@ -71,11 +71,11 @@ export default class LeftNavCO extends PageObject {
71
71
  }
72
72
 
73
73
  static async getTruncatedText(index) {
74
- return $$('[data-testid="DS-SimpleTruncateText"]')[index];
74
+ return $$('[data-testid="leftnav-list-item-label"]')[index];
75
75
  }
76
76
 
77
77
  static async getTooltip() {
78
- return $('[data-testid="popover-container"]');
78
+ return $('[data-testid="ds-floating-wrapper-root"]');
79
79
  }
80
80
 
81
81
  static async getSubItemBtn() {
@@ -31,6 +31,8 @@ export default class ModalSlideCO extends PageObject {
31
31
 
32
32
  static applyAriaDisabledFooterURL = new Urlbuilder(PATH_E2E_MODALSLIDE, 'apply-aria-disabled-footer-test');
33
33
 
34
+ static slotsTest = new Urlbuilder(PATH_E2E_MODALSLIDE, 'slots-test');
35
+
34
36
  static async getModalSlide() {
35
37
  return $('[data-testid="ds-modal-slide"]');
36
38
  }
@@ -95,6 +97,43 @@ export default class ModalSlideCO extends PageObject {
95
97
  await browser.pause(500); // pause to allow animation to finish
96
98
  }
97
99
 
100
+ // Slots
101
+ static async getSlotActualContent() {
102
+ return $('[data-dimsum-slot="dsModalslideActualContent"]');
103
+ }
104
+
105
+ static async getSlotContent() {
106
+ return $('[data-dimsum-slot="dsModalslideContent"]');
107
+ }
108
+
109
+ static async getSlotContentWrapper() {
110
+ return $('[data-dimsum-slot="dsModalslideContentWrapper"]');
111
+ }
112
+
113
+ static async getSlotFooterSeparator() {
114
+ return $('[data-dimsum-slot="dsModalslideFooterSeparator"]');
115
+ }
116
+
117
+ static async getSlotGridContent() {
118
+ return $('[data-dimsum-slot="dsModalslideGridContent"]');
119
+ }
120
+
121
+ static async getSlotHeaderSeparator() {
122
+ return $('[data-dimsum-slot="dsModalslideHeaderSeparator"]');
123
+ }
124
+
125
+ static async getSlotOverlay() {
126
+ return $('[data-dimsum-slot="dsModalslideOverlay"]');
127
+ }
128
+
129
+ static async getSlotRoot() {
130
+ return $('[data-dimsum-slot="dsModalslideRoot"]');
131
+ }
132
+
133
+ static async getSlotHeader() {
134
+ return $('[data-dimsum-parent-slot="dsModalslideTitle"]');
135
+ }
136
+
98
137
  // Snapshots
99
138
  static snapshotPath(example = 'basic') {
100
139
  return PageObject.getSnapshotPathBuilder('ModalSlide', example, 'ds-modal-slide');
@@ -0,0 +1,56 @@
1
+ /* eslint-disable max-lines */
2
+ import { Key } from 'webdriverio';
3
+ import ModalSlideCO from '../ModalSlideCO';
4
+
5
+ if (
6
+ (!browser.capabilities['ice:options'].isPhone &&
7
+ !browser.capabilities['ice:options'].isTablet &&
8
+ browser.capabilities.browserName === 'chrome') ||
9
+ browser.capabilities.browserName === 'Chrome'
10
+ ) {
11
+ describe('PUI-18428 - SquareIndicator: Slots - Func Test', () => {
12
+ before('loading page', async () => {
13
+ const errorOnGo = await ModalSlideCO.slotsTest.go();
14
+ if (errorOnGo) throw errorOnGo;
15
+ });
16
+ it('01: each SquareIndicator slot to have custom aria-* attribute', async () => {
17
+ await browser.keys(Key.Tab);
18
+ await browser.keys(Key.Tab);
19
+ await browser.keys(Key.Return);
20
+ const actualContent = await ModalSlideCO.getSlotActualContent();
21
+ const content = await ModalSlideCO.getSlotContent();
22
+ const contentWrapper = await ModalSlideCO.getSlotContentWrapper();
23
+ const footerSeparator = await ModalSlideCO.getSlotFooterSeparator();
24
+ const gridContent = await ModalSlideCO.getSlotGridContent();
25
+ const headerSeparator = await ModalSlideCO.getSlotHeaderSeparator();
26
+ const overlay = await ModalSlideCO.getSlotOverlay();
27
+ const root = await ModalSlideCO.getSlotRoot();
28
+ await expect(actualContent).toHaveAttribute('aria-label', 'actual content aria');
29
+ await expect(content).toHaveAttribute('aria-label', 'content aria');
30
+ await expect(contentWrapper).toHaveAttribute('aria-label', 'content wrapper aria');
31
+ await expect(footerSeparator).toHaveAttribute('aria-label', 'footer separator aria');
32
+ await expect(gridContent).toHaveAttribute('aria-label', 'grid content aria');
33
+ await expect(headerSeparator).toHaveAttribute('aria-label', 'header separator aria');
34
+ await expect(overlay).toHaveAttribute('aria-label', 'overlay aria');
35
+ await expect(root).toHaveAttribute('aria-label', 'root aria');
36
+ });
37
+ it('02: each SquareIndicator slot to have custom data-* attribute', async () => {
38
+ const actualContent = await ModalSlideCO.getSlotActualContent();
39
+ const content = await ModalSlideCO.getSlotContent();
40
+ const contentWrapper = await ModalSlideCO.getSlotContentWrapper();
41
+ const footerSeparator = await ModalSlideCO.getSlotFooterSeparator();
42
+ const gridContent = await ModalSlideCO.getSlotGridContent();
43
+ const headerSeparator = await ModalSlideCO.getSlotHeaderSeparator();
44
+ const overlay = await ModalSlideCO.getSlotOverlay();
45
+ const root = await ModalSlideCO.getSlotRoot();
46
+ await expect(actualContent).toHaveAttribute('data-testid', 'actual content data');
47
+ await expect(content).toHaveAttribute('data-testid', 'content data');
48
+ await expect(contentWrapper).toHaveAttribute('data-testid', 'content wrapper data');
49
+ await expect(footerSeparator).toHaveAttribute('data-testid', 'footer separator data');
50
+ await expect(gridContent).toHaveAttribute('data-testid', 'grid content data');
51
+ await expect(headerSeparator).toHaveAttribute('data-testid', 'header separator data');
52
+ await expect(overlay).toHaveAttribute('data-testid', 'overlay data');
53
+ await expect(root).toHaveAttribute('data-testid', 'root data');
54
+ });
55
+ });
56
+ }
@@ -0,0 +1,27 @@
1
+ /* eslint-disable max-lines */
2
+ import { Key } from 'webdriverio';
3
+ import ModalSlideCO from '../ModalSlideCO';
4
+
5
+ if (
6
+ (!browser.capabilities['ice:options'].isPhone &&
7
+ !browser.capabilities['ice:options'].isTablet &&
8
+ browser.capabilities.browserName === 'chrome') ||
9
+ browser.capabilities.browserName === 'Chrome'
10
+ ) {
11
+ describe('PUI-18429 - ModalSlide: Slots Test - Visual', () => {
12
+ before('loading page', async () => {
13
+ const errorOnGo = await ModalSlideCO.slotsTest.go();
14
+ if (errorOnGo) throw errorOnGo;
15
+ });
16
+ it('01: should display ModalSlide with customized slots', async () => {
17
+ await browser.eyesOpen();
18
+ await browser.keys(Key.Tab);
19
+ await browser.keys(Key.Tab);
20
+ await browser.keys(Key.Return);
21
+ const root = await ModalSlideCO.getSlotRoot();
22
+ await root.waitForDisplayed();
23
+ const snapshot = await browser.eyesCheckSnapshot(ModalSlideCO.snapshotPath('modal-slide-slots'));
24
+ await expect(snapshot).toEqual(0);
25
+ });
26
+ });
27
+ }
@@ -226,7 +226,7 @@ export default class DSTreeViewCO extends PageObject {
226
226
  }
227
227
 
228
228
  static async getElementsTexts() {
229
- return $$('[data-testid="DS-SimpleTruncateText"]');
229
+ return $$('[data-testid="tree-item-content"]');
230
230
  }
231
231
 
232
232
  static async getCollapseBtn() {
@@ -269,7 +269,7 @@ export default class DSTreeViewCO extends PageObject {
269
269
  }
270
270
 
271
271
  static async getTooltip() {
272
- return $('[data-testid="popover-container"]');
272
+ return $('[data-testid="ds-floating-wrapper-root"]');
273
273
  }
274
274
 
275
275
  static async noItemsFound() {
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.6",
4
+ "version": "3.70.0-next.8",
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.6",
45
- "@elliemae/ds-accordion": "3.70.0-next.6",
46
- "@elliemae/ds-app-picker": "3.70.0-next.6",
47
- "@elliemae/ds-backdrop": "3.70.0-next.6",
48
- "@elliemae/ds-banner": "3.70.0-next.6",
49
- "@elliemae/ds-breadcrumb": "3.70.0-next.6",
50
- "@elliemae/ds-button-v2": "3.70.0-next.6",
51
- "@elliemae/ds-card": "3.70.0-next.6",
52
- "@elliemae/ds-card-navigation": "3.70.0-next.6",
53
- "@elliemae/ds-card-v1": "3.70.0-next.6",
54
- "@elliemae/ds-card-v1-detail": "3.70.0-next.6",
55
- "@elliemae/ds-basic": "3.70.0-next.6",
56
- "@elliemae/ds-card-v2": "3.70.0-next.6",
57
- "@elliemae/ds-card-v2-action-addon": "3.70.0-next.6",
58
- "@elliemae/ds-card-v2-group": "3.70.0-next.6",
59
- "@elliemae/ds-card-v3": "3.70.0-next.6",
60
- "@elliemae/ds-card-v3-poc": "3.70.0-next.6",
61
- "@elliemae/ds-chat": "3.70.0-next.6",
62
- "@elliemae/ds-chat-card": "3.70.0-next.6",
63
- "@elliemae/ds-chat-container": "3.70.0-next.6",
64
- "@elliemae/ds-chat-bubble": "3.70.0-next.6",
65
- "@elliemae/ds-chat-container-header": "3.70.0-next.6",
66
- "@elliemae/ds-chat-empty-state": "3.70.0-next.6",
67
- "@elliemae/ds-chat-floating-button": "3.70.0-next.6",
68
- "@elliemae/ds-chat-sidebar": "3.70.0-next.6",
69
- "@elliemae/ds-chat-message-delimeter": "3.70.0-next.6",
70
- "@elliemae/ds-chat-system-message": "3.70.0-next.6",
71
- "@elliemae/ds-chat-tile": "3.70.0-next.6",
72
- "@elliemae/ds-chip": "3.70.0-next.6",
73
- "@elliemae/ds-classnames": "3.70.0-next.6",
74
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.6",
75
- "@elliemae/ds-comments": "3.70.0-next.6",
76
- "@elliemae/ds-codeeditor": "3.70.0-next.6",
77
- "@elliemae/ds-controlled-form": "3.70.0-next.6",
78
- "@elliemae/ds-csv-converter": "3.70.0-next.6",
79
- "@elliemae/ds-data-table-action-cell": "3.70.0-next.6",
80
- "@elliemae/ds-data-table": "3.70.0-next.6",
81
- "@elliemae/ds-data-table-cell": "3.70.0-next.6",
82
- "@elliemae/ds-data-table-cell-header": "3.70.0-next.6",
83
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.6",
84
- "@elliemae/ds-data-table-expand-cell": "3.70.0-next.6",
85
- "@elliemae/ds-data-table-filters": "3.70.0-next.6",
86
- "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.6",
87
- "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.6",
88
- "@elliemae/ds-dataviz": "3.70.0-next.6",
89
- "@elliemae/ds-dataviz-pie": "3.70.0-next.6",
90
- "@elliemae/ds-date-time-picker": "3.70.0-next.6",
91
- "@elliemae/ds-decision-graph": "3.70.0-next.6",
92
- "@elliemae/ds-dialog": "3.70.0-next.6",
93
- "@elliemae/ds-drag-and-drop": "3.70.0-next.6",
94
- "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.6",
95
- "@elliemae/ds-dropzone": "3.70.0-next.6",
96
- "@elliemae/ds-fast-list": "3.70.0-next.6",
97
- "@elliemae/ds-filter-bar": "3.70.0-next.6",
98
- "@elliemae/ds-floating-context": "3.70.0-next.6",
99
- "@elliemae/ds-form-checkbox": "3.70.0-next.6",
100
- "@elliemae/ds-form-combobox": "3.70.0-next.6",
101
- "@elliemae/ds-form-date-range-picker": "3.70.0-next.6",
102
- "@elliemae/ds-form-date-time-picker": "3.70.0-next.6",
103
- "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.6",
104
- "@elliemae/ds-form-input-text": "3.70.0-next.6",
105
- "@elliemae/ds-form-input-textarea": "3.70.0-next.6",
106
- "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.6",
107
- "@elliemae/ds-form-layout-blocks": "3.70.0-next.6",
108
- "@elliemae/ds-form-layout-input-group": "3.70.0-next.6",
109
- "@elliemae/ds-form-layout-label": "3.70.0-next.6",
110
- "@elliemae/ds-form-multi-combobox": "3.70.0-next.6",
111
- "@elliemae/ds-form-native-select": "3.70.0-next.6",
112
- "@elliemae/ds-form-radio": "3.70.0-next.6",
113
- "@elliemae/ds-form-select": "3.70.0-next.6",
114
- "@elliemae/ds-form-single-combobox": "3.70.0-next.6",
115
- "@elliemae/ds-form-toggle": "3.70.0-next.6",
116
- "@elliemae/ds-global-header": "3.70.0-next.6",
117
- "@elliemae/ds-grid": "3.70.0-next.6",
118
- "@elliemae/ds-hooks-focus-stack": "3.70.0-next.6",
119
- "@elliemae/ds-hooks-focus-trap": "3.70.0-next.6",
120
- "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.6",
121
- "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.6",
122
- "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.6",
123
- "@elliemae/ds-hooks-is-mobile": "3.70.0-next.6",
124
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.6",
125
- "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.6",
126
- "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.6",
127
- "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.6",
128
- "@elliemae/ds-icon": "3.70.0-next.6",
129
- "@elliemae/ds-image": "3.70.0-next.6",
130
- "@elliemae/ds-icons": "3.70.0-next.6",
131
- "@elliemae/ds-imagelibrarymodal": "3.70.0-next.6",
132
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.6",
133
- "@elliemae/ds-layout-provider": "3.70.0-next.6",
134
- "@elliemae/ds-left-navigation": "3.70.0-next.6",
135
- "@elliemae/ds-loading-indicator": "3.70.0-next.6",
136
- "@elliemae/ds-menu-button": "3.70.0-next.6",
137
- "@elliemae/ds-menu-items": "3.70.0-next.6",
138
- "@elliemae/ds-menu-items-action": "3.70.0-next.6",
139
- "@elliemae/ds-menu-items-commons": "3.70.0-next.6",
140
- "@elliemae/ds-menu-items-multi": "3.70.0-next.6",
141
- "@elliemae/ds-menu-items-section": "3.70.0-next.6",
142
- "@elliemae/ds-menu-items-separator": "3.70.0-next.6",
143
- "@elliemae/ds-menu-items-single": "3.70.0-next.6",
144
- "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.6",
145
- "@elliemae/ds-menu-items-skeleton": "3.70.0-next.6",
146
- "@elliemae/ds-menu-items-submenu": "3.70.0-next.6",
147
- "@elliemae/ds-menu-tree-item": "3.70.0-next.6",
148
- "@elliemae/ds-mobile": "3.70.0-next.6",
149
- "@elliemae/ds-modal-slide": "3.70.0-next.6",
150
- "@elliemae/ds-notification-badge": "3.70.0-next.6",
151
- "@elliemae/ds-page-header": "3.70.0-next.6",
152
- "@elliemae/ds-overlay": "3.70.0-next.6",
153
- "@elliemae/ds-page-header-v1": "3.70.0-next.6",
154
- "@elliemae/ds-page-header-v2": "3.70.0-next.6",
155
- "@elliemae/ds-page-layout": "3.70.0-next.6",
156
- "@elliemae/ds-pagination": "3.70.0-next.6",
157
- "@elliemae/ds-pills-v2": "3.70.0-next.6",
158
- "@elliemae/ds-portal": "3.70.0-next.6",
159
- "@elliemae/ds-progress-indicator": "3.70.0-next.6",
160
- "@elliemae/ds-props-helpers": "3.70.0-next.6",
161
- "@elliemae/ds-query-builder": "3.70.0-next.6",
162
- "@elliemae/ds-read-more": "3.70.0-next.6",
163
- "@elliemae/ds-resizeable-container": "3.70.0-next.6",
164
- "@elliemae/ds-ribbon": "3.70.0-next.6",
165
- "@elliemae/ds-scrollable-container": "3.70.0-next.6",
166
- "@elliemae/ds-separator": "3.70.0-next.6",
167
- "@elliemae/ds-shared": "3.70.0-next.6",
168
- "@elliemae/ds-shuttle-v2": "3.70.0-next.6",
169
- "@elliemae/ds-side-panel": "3.70.0-next.6",
170
- "@elliemae/ds-side-panel-header": "3.70.0-next.6",
171
- "@elliemae/ds-skeleton": "3.70.0-next.6",
172
- "@elliemae/ds-slider-v2": "3.70.0-next.6",
173
- "@elliemae/ds-square-indicator": "3.70.0-next.6",
174
- "@elliemae/ds-stepper": "3.70.0-next.6",
175
- "@elliemae/ds-svg": "3.70.0-next.6",
176
- "@elliemae/ds-system": "3.70.0-next.6",
177
- "@elliemae/ds-tabs": "3.70.0-next.6",
178
- "@elliemae/ds-test-utils": "3.70.0-next.6",
179
- "@elliemae/ds-toast": "3.70.0-next.6",
180
- "@elliemae/ds-toolbar-v1": "3.70.0-next.6",
181
- "@elliemae/ds-toolbar-v2": "3.70.0-next.6",
182
- "@elliemae/ds-tooltip-v3": "3.70.0-next.6",
183
- "@elliemae/ds-transition": "3.70.0-next.6",
184
- "@elliemae/ds-tree-model": "3.70.0-next.6",
185
- "@elliemae/ds-treeview": "3.70.0-next.6",
186
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.6",
187
- "@elliemae/ds-typescript-helpers": "3.70.0-next.6",
188
- "@elliemae/ds-typography": "3.70.0-next.6",
189
- "@elliemae/ds-virtual-list": "3.70.0-next.6",
190
- "@elliemae/ds-wizard": "3.70.0-next.6",
191
- "@elliemae/ds-zustand-helpers": "3.70.0-next.6"
44
+ "@elliemae/ds-accessibility": "3.70.0-next.8",
45
+ "@elliemae/ds-accordion": "3.70.0-next.8",
46
+ "@elliemae/ds-app-picker": "3.70.0-next.8",
47
+ "@elliemae/ds-backdrop": "3.70.0-next.8",
48
+ "@elliemae/ds-banner": "3.70.0-next.8",
49
+ "@elliemae/ds-basic": "3.70.0-next.8",
50
+ "@elliemae/ds-breadcrumb": "3.70.0-next.8",
51
+ "@elliemae/ds-button-v2": "3.70.0-next.8",
52
+ "@elliemae/ds-card": "3.70.0-next.8",
53
+ "@elliemae/ds-card-navigation": "3.70.0-next.8",
54
+ "@elliemae/ds-card-v1": "3.70.0-next.8",
55
+ "@elliemae/ds-card-v1-detail": "3.70.0-next.8",
56
+ "@elliemae/ds-card-v2": "3.70.0-next.8",
57
+ "@elliemae/ds-card-v2-action-addon": "3.70.0-next.8",
58
+ "@elliemae/ds-card-v2-group": "3.70.0-next.8",
59
+ "@elliemae/ds-card-v3": "3.70.0-next.8",
60
+ "@elliemae/ds-chat": "3.70.0-next.8",
61
+ "@elliemae/ds-card-v3-poc": "3.70.0-next.8",
62
+ "@elliemae/ds-chat-bubble": "3.70.0-next.8",
63
+ "@elliemae/ds-chat-card": "3.70.0-next.8",
64
+ "@elliemae/ds-chat-container": "3.70.0-next.8",
65
+ "@elliemae/ds-chat-empty-state": "3.70.0-next.8",
66
+ "@elliemae/ds-chat-container-header": "3.70.0-next.8",
67
+ "@elliemae/ds-chat-floating-button": "3.70.0-next.8",
68
+ "@elliemae/ds-chat-message-delimeter": "3.70.0-next.8",
69
+ "@elliemae/ds-chat-sidebar": "3.70.0-next.8",
70
+ "@elliemae/ds-chat-system-message": "3.70.0-next.8",
71
+ "@elliemae/ds-chat-tile": "3.70.0-next.8",
72
+ "@elliemae/ds-chip": "3.70.0-next.8",
73
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.8",
74
+ "@elliemae/ds-classnames": "3.70.0-next.8",
75
+ "@elliemae/ds-codeeditor": "3.70.0-next.8",
76
+ "@elliemae/ds-comments": "3.70.0-next.8",
77
+ "@elliemae/ds-controlled-form": "3.70.0-next.8",
78
+ "@elliemae/ds-csv-converter": "3.70.0-next.8",
79
+ "@elliemae/ds-data-table": "3.70.0-next.8",
80
+ "@elliemae/ds-data-table-action-cell": "3.70.0-next.8",
81
+ "@elliemae/ds-data-table-cell": "3.70.0-next.8",
82
+ "@elliemae/ds-data-table-cell-header": "3.70.0-next.8",
83
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.8",
84
+ "@elliemae/ds-data-table-expand-cell": "3.70.0-next.8",
85
+ "@elliemae/ds-data-table-filters": "3.70.0-next.8",
86
+ "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.8",
87
+ "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.8",
88
+ "@elliemae/ds-dataviz": "3.70.0-next.8",
89
+ "@elliemae/ds-dataviz-pie": "3.70.0-next.8",
90
+ "@elliemae/ds-date-time-picker": "3.70.0-next.8",
91
+ "@elliemae/ds-decision-graph": "3.70.0-next.8",
92
+ "@elliemae/ds-dialog": "3.70.0-next.8",
93
+ "@elliemae/ds-drag-and-drop": "3.70.0-next.8",
94
+ "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.8",
95
+ "@elliemae/ds-dropzone": "3.70.0-next.8",
96
+ "@elliemae/ds-fast-list": "3.70.0-next.8",
97
+ "@elliemae/ds-filter-bar": "3.70.0-next.8",
98
+ "@elliemae/ds-floating-context": "3.70.0-next.8",
99
+ "@elliemae/ds-form-checkbox": "3.70.0-next.8",
100
+ "@elliemae/ds-form-combobox": "3.70.0-next.8",
101
+ "@elliemae/ds-form-date-range-picker": "3.70.0-next.8",
102
+ "@elliemae/ds-form-date-time-picker": "3.70.0-next.8",
103
+ "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.8",
104
+ "@elliemae/ds-form-input-textarea": "3.70.0-next.8",
105
+ "@elliemae/ds-form-input-text": "3.70.0-next.8",
106
+ "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.8",
107
+ "@elliemae/ds-form-layout-input-group": "3.70.0-next.8",
108
+ "@elliemae/ds-form-layout-blocks": "3.70.0-next.8",
109
+ "@elliemae/ds-form-native-select": "3.70.0-next.8",
110
+ "@elliemae/ds-form-multi-combobox": "3.70.0-next.8",
111
+ "@elliemae/ds-form-layout-label": "3.70.0-next.8",
112
+ "@elliemae/ds-form-select": "3.70.0-next.8",
113
+ "@elliemae/ds-form-single-combobox": "3.70.0-next.8",
114
+ "@elliemae/ds-form-radio": "3.70.0-next.8",
115
+ "@elliemae/ds-form-toggle": "3.70.0-next.8",
116
+ "@elliemae/ds-global-header": "3.70.0-next.8",
117
+ "@elliemae/ds-grid": "3.70.0-next.8",
118
+ "@elliemae/ds-hooks-focus-stack": "3.70.0-next.8",
119
+ "@elliemae/ds-hooks-focus-trap": "3.70.0-next.8",
120
+ "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.8",
121
+ "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.8",
122
+ "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.8",
123
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.8",
124
+ "@elliemae/ds-hooks-is-mobile": "3.70.0-next.8",
125
+ "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.8",
126
+ "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.8",
127
+ "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.8",
128
+ "@elliemae/ds-icon": "3.70.0-next.8",
129
+ "@elliemae/ds-icons": "3.70.0-next.8",
130
+ "@elliemae/ds-image": "3.70.0-next.8",
131
+ "@elliemae/ds-imagelibrarymodal": "3.70.0-next.8",
132
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.8",
133
+ "@elliemae/ds-layout-provider": "3.70.0-next.8",
134
+ "@elliemae/ds-loading-indicator": "3.70.0-next.8",
135
+ "@elliemae/ds-left-navigation": "3.70.0-next.8",
136
+ "@elliemae/ds-menu-button": "3.70.0-next.8",
137
+ "@elliemae/ds-menu-items": "3.70.0-next.8",
138
+ "@elliemae/ds-menu-items-action": "3.70.0-next.8",
139
+ "@elliemae/ds-menu-items-multi": "3.70.0-next.8",
140
+ "@elliemae/ds-menu-items-commons": "3.70.0-next.8",
141
+ "@elliemae/ds-menu-items-section": "3.70.0-next.8",
142
+ "@elliemae/ds-menu-items-separator": "3.70.0-next.8",
143
+ "@elliemae/ds-menu-items-single": "3.70.0-next.8",
144
+ "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.8",
145
+ "@elliemae/ds-menu-items-skeleton": "3.70.0-next.8",
146
+ "@elliemae/ds-menu-items-submenu": "3.70.0-next.8",
147
+ "@elliemae/ds-menu-tree-item": "3.70.0-next.8",
148
+ "@elliemae/ds-mobile": "3.70.0-next.8",
149
+ "@elliemae/ds-modal-slide": "3.70.0-next.8",
150
+ "@elliemae/ds-notification-badge": "3.70.0-next.8",
151
+ "@elliemae/ds-overlay": "3.70.0-next.8",
152
+ "@elliemae/ds-page-header": "3.70.0-next.8",
153
+ "@elliemae/ds-page-header-v1": "3.70.0-next.8",
154
+ "@elliemae/ds-page-header-v2": "3.70.0-next.8",
155
+ "@elliemae/ds-page-layout": "3.70.0-next.8",
156
+ "@elliemae/ds-pagination": "3.70.0-next.8",
157
+ "@elliemae/ds-pills-v2": "3.70.0-next.8",
158
+ "@elliemae/ds-portal": "3.70.0-next.8",
159
+ "@elliemae/ds-progress-indicator": "3.70.0-next.8",
160
+ "@elliemae/ds-props-helpers": "3.70.0-next.8",
161
+ "@elliemae/ds-query-builder": "3.70.0-next.8",
162
+ "@elliemae/ds-read-more": "3.70.0-next.8",
163
+ "@elliemae/ds-resizeable-container": "3.70.0-next.8",
164
+ "@elliemae/ds-ribbon": "3.70.0-next.8",
165
+ "@elliemae/ds-scrollable-container": "3.70.0-next.8",
166
+ "@elliemae/ds-separator": "3.70.0-next.8",
167
+ "@elliemae/ds-shared": "3.70.0-next.8",
168
+ "@elliemae/ds-shuttle-v2": "3.70.0-next.8",
169
+ "@elliemae/ds-side-panel": "3.70.0-next.8",
170
+ "@elliemae/ds-side-panel-header": "3.70.0-next.8",
171
+ "@elliemae/ds-skeleton": "3.70.0-next.8",
172
+ "@elliemae/ds-slider-v2": "3.70.0-next.8",
173
+ "@elliemae/ds-square-indicator": "3.70.0-next.8",
174
+ "@elliemae/ds-stepper": "3.70.0-next.8",
175
+ "@elliemae/ds-svg": "3.70.0-next.8",
176
+ "@elliemae/ds-system": "3.70.0-next.8",
177
+ "@elliemae/ds-tabs": "3.70.0-next.8",
178
+ "@elliemae/ds-test-utils": "3.70.0-next.8",
179
+ "@elliemae/ds-toast": "3.70.0-next.8",
180
+ "@elliemae/ds-toolbar-v1": "3.70.0-next.8",
181
+ "@elliemae/ds-toolbar-v2": "3.70.0-next.8",
182
+ "@elliemae/ds-tooltip-v3": "3.70.0-next.8",
183
+ "@elliemae/ds-transition": "3.70.0-next.8",
184
+ "@elliemae/ds-tree-model": "3.70.0-next.8",
185
+ "@elliemae/ds-treeview": "3.70.0-next.8",
186
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.8",
187
+ "@elliemae/ds-typescript-helpers": "3.70.0-next.8",
188
+ "@elliemae/ds-typography": "3.70.0-next.8",
189
+ "@elliemae/ds-virtual-list": "3.70.0-next.8",
190
+ "@elliemae/ds-wizard": "3.70.0-next.8",
191
+ "@elliemae/ds-zustand-helpers": "3.70.0-next.8"
192
192
  },
193
193
  "publishConfig": {
194
194
  "access": "public"