dimsum-e2e-tests 3.70.0-next.27 → 3.70.0-next.28

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.28 (2026-06-10)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-form-combobox:: style group label per b3-strong spec and add grouped feature stories [PUI-15487](https://jira.elliemae.io/browse/PUI-15487) ([#8083](https://git.elliemae.io/platform-ui/dimsum/issues/8083)) ([a4713b7](https://git.elliemae.io/platform-ui/dimsum/commit/a4713b79b26ed2102a878ce7418031b77fca7746))
11
+
6
12
  ## 3.70.0-next.27 (2026-06-08)
7
13
 
8
14
  **Note:** Version bump only for package dimsum-e2e-tests
@@ -78,6 +78,6 @@ export default class DSAppPickerCO extends PageObject {
78
78
  }
79
79
 
80
80
  static async getTitleSlotByIndex(index = 0) {
81
- return $$('[data-dimsum-slot="dsApppickerTitle"]')[index];
81
+ return $$('[data-dimsum-parent-slot="dsApppickerTitle"]')[index];
82
82
  }
83
83
  }
@@ -21,7 +21,7 @@ if (!browser.capabilities['ice:options'].isPhone) {
21
21
  await browser.pause(2000);
22
22
  const howManyMsgs = (await DSChatCO.getBubbleContainers()).length;
23
23
  await expect(howManyMsgs).toEqual(20);
24
- await expect(bubble0).toBeDisplayedInViewport();
24
+ await expect(bubble0).toBeDisplayed();
25
25
  });
26
26
  });
27
27
  }
@@ -10,6 +10,8 @@ export default class DSFloatingContextCO extends PageObject {
10
10
 
11
11
  static slotsURL = new Urlbuilder(PATH_E2E_FLOATING_CONTEXT, 'slots-test');
12
12
 
13
+ static positionsTestURL = new Urlbuilder(PATH_E2E_FLOATING_CONTEXT, 'positions-test');
14
+
13
15
  static async getFloatingContextWrapper() {
14
16
  return $('[data-testid="ds-floating-wrapper-root"]');
15
17
  }
@@ -18,6 +20,14 @@ export default class DSFloatingContextCO extends PageObject {
18
20
  return $('[data-testid="ds-floatingwrapper-content"]');
19
21
  }
20
22
 
23
+ static async getFloatingContextContents() {
24
+ return $$('[data-testid="ds-floatingwrapper-content"]');
25
+ }
26
+
27
+ static async getHelpButtons() {
28
+ return $$('[aria-label="Help"]');
29
+ }
30
+
21
31
  static async getFloatingContextArrowSlot() {
22
32
  return $('[data-dimsum-slot="dsFloatingwrapperArrow"]');
23
33
  }
@@ -0,0 +1,48 @@
1
+ // Tests for the fix introduced in PUI-14527 (useFloatingContext placement string type mismatch)
2
+ import { mouseOver } from '../../helpers';
3
+ import DSFloatingContextCO from '../DSFloatingContextCO';
4
+
5
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
6
+ describe('PUI-18529 - DSFloatingContext:: useFloatingContext placement directions - visual', () => {
7
+ before('loading page', async () => {
8
+ const errorOnGo = await DSFloatingContextCO.positionsTestURL.go();
9
+ if (errorOnGo) throw errorOnGo;
10
+ });
11
+
12
+ it('01: should display tooltip with right placement on hover', async () => {
13
+ const buttons = await DSFloatingContextCO.getHelpButtons();
14
+ await mouseOver(buttons[0]);
15
+ const contents = await DSFloatingContextCO.getFloatingContextContents();
16
+ await contents[0].waitForDisplayed();
17
+ const snapshot = await browser.percyCheckScreenshot(DSFloatingContextCO.snapshotPath('placement-right'));
18
+ await expect(snapshot).toEqual(0);
19
+ });
20
+
21
+ it('02: should display tooltip with top placement on hover', async () => {
22
+ const buttons = await DSFloatingContextCO.getHelpButtons();
23
+ await mouseOver(buttons[1]);
24
+ const contents = await DSFloatingContextCO.getFloatingContextContents();
25
+ await contents[0].waitForDisplayed();
26
+ const snapshot = await browser.percyCheckScreenshot(DSFloatingContextCO.snapshotPath('placement-top'));
27
+ await expect(snapshot).toEqual(0);
28
+ });
29
+
30
+ it('03: should display tooltip with bottom placement on hover', async () => {
31
+ const buttons = await DSFloatingContextCO.getHelpButtons();
32
+ await mouseOver(buttons[2]);
33
+ const contents = await DSFloatingContextCO.getFloatingContextContents();
34
+ await contents[0].waitForDisplayed();
35
+ const snapshot = await browser.percyCheckScreenshot(DSFloatingContextCO.snapshotPath('placement-bottom'));
36
+ await expect(snapshot).toEqual(0);
37
+ });
38
+
39
+ it('04: should display tooltip with left placement on hover', async () => {
40
+ const buttons = await DSFloatingContextCO.getHelpButtons();
41
+ await mouseOver(buttons[3]);
42
+ const contents = await DSFloatingContextCO.getFloatingContextContents();
43
+ await contents[0].waitForDisplayed();
44
+ const snapshot = await browser.percyCheckScreenshot(DSFloatingContextCO.snapshotPath('placement-left'));
45
+ await expect(snapshot).toEqual(0);
46
+ });
47
+ });
48
+ }
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.27",
4
+ "version": "3.70.0-next.28",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
7
  "@elliemae/ds-legacy-button": "1.0.16",
@@ -28,8 +28,6 @@
28
28
  "@elliemae/ds-legacy-number-range-field": "1.0.16",
29
29
  "@elliemae/ds-legacy-page-number": "1.0.16",
30
30
  "@elliemae/ds-legacy-pills": "1.0.16",
31
- "@elliemae/ds-legacy-popover": "1.0.16",
32
- "@elliemae/ds-legacy-popper": "1.0.16",
33
31
  "@elliemae/ds-legacy-search-field": "1.0.16",
34
32
  "@elliemae/ds-legacy-shuttle": "1.0.16",
35
33
  "@elliemae/ds-legacy-slider": "1.0.16",
@@ -41,154 +39,154 @@
41
39
  "@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
42
40
  "@elliemae/ds-legacy-zipcode-search": "1.0.16",
43
41
  "@elliemae/ds-legacy-zoom": "1.0.16",
44
- "@elliemae/ds-accessibility": "3.70.0-next.27",
45
- "@elliemae/ds-accordion": "3.70.0-next.27",
46
- "@elliemae/ds-app-picker": "3.70.0-next.27",
47
- "@elliemae/ds-backdrop": "3.70.0-next.27",
48
- "@elliemae/ds-basic": "3.70.0-next.27",
49
- "@elliemae/ds-breadcrumb": "3.70.0-next.27",
50
- "@elliemae/ds-banner": "3.70.0-next.27",
51
- "@elliemae/ds-button-v2": "3.70.0-next.27",
52
- "@elliemae/ds-card": "3.70.0-next.27",
53
- "@elliemae/ds-card-navigation": "3.70.0-next.27",
54
- "@elliemae/ds-card-v1": "3.70.0-next.27",
55
- "@elliemae/ds-card-v1-detail": "3.70.0-next.27",
56
- "@elliemae/ds-card-v2-action-addon": "3.70.0-next.27",
57
- "@elliemae/ds-card-v2": "3.70.0-next.27",
58
- "@elliemae/ds-card-v2-group": "3.70.0-next.27",
59
- "@elliemae/ds-card-v3": "3.70.0-next.27",
60
- "@elliemae/ds-card-v3-poc": "3.70.0-next.27",
61
- "@elliemae/ds-chat": "3.70.0-next.27",
62
- "@elliemae/ds-chat-bubble": "3.70.0-next.27",
63
- "@elliemae/ds-chat-card": "3.70.0-next.27",
64
- "@elliemae/ds-chat-container": "3.70.0-next.27",
65
- "@elliemae/ds-chat-container-header": "3.70.0-next.27",
66
- "@elliemae/ds-chat-empty-state": "3.70.0-next.27",
67
- "@elliemae/ds-chat-floating-button": "3.70.0-next.27",
68
- "@elliemae/ds-chat-message-delimeter": "3.70.0-next.27",
69
- "@elliemae/ds-chat-sidebar": "3.70.0-next.27",
70
- "@elliemae/ds-chat-system-message": "3.70.0-next.27",
71
- "@elliemae/ds-chat-tile": "3.70.0-next.27",
72
- "@elliemae/ds-chip": "3.70.0-next.27",
73
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.27",
74
- "@elliemae/ds-classnames": "3.70.0-next.27",
75
- "@elliemae/ds-codeeditor": "3.70.0-next.27",
76
- "@elliemae/ds-controlled-form": "3.70.0-next.27",
77
- "@elliemae/ds-comments": "3.70.0-next.27",
78
- "@elliemae/ds-csv-converter": "3.70.0-next.27",
79
- "@elliemae/ds-data-table": "3.70.0-next.27",
80
- "@elliemae/ds-data-table-action-cell": "3.70.0-next.27",
81
- "@elliemae/ds-data-table-cell": "3.70.0-next.27",
82
- "@elliemae/ds-data-table-cell-header": "3.70.0-next.27",
83
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.27",
84
- "@elliemae/ds-data-table-expand-cell": "3.70.0-next.27",
85
- "@elliemae/ds-data-table-filters": "3.70.0-next.27",
86
- "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.27",
87
- "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.27",
88
- "@elliemae/ds-dataviz": "3.70.0-next.27",
89
- "@elliemae/ds-dataviz-pie": "3.70.0-next.27",
90
- "@elliemae/ds-date-time-picker": "3.70.0-next.27",
91
- "@elliemae/ds-decision-graph": "3.70.0-next.27",
92
- "@elliemae/ds-dialog": "3.70.0-next.27",
93
- "@elliemae/ds-drag-and-drop": "3.70.0-next.27",
94
- "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.27",
95
- "@elliemae/ds-fast-list": "3.70.0-next.27",
96
- "@elliemae/ds-filter-bar": "3.70.0-next.27",
97
- "@elliemae/ds-dropzone": "3.70.0-next.27",
98
- "@elliemae/ds-floating-context": "3.70.0-next.27",
99
- "@elliemae/ds-form-checkbox": "3.70.0-next.27",
100
- "@elliemae/ds-form-combobox": "3.70.0-next.27",
101
- "@elliemae/ds-form-date-range-picker": "3.70.0-next.27",
102
- "@elliemae/ds-form-date-time-picker": "3.70.0-next.27",
103
- "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.27",
104
- "@elliemae/ds-form-input-text": "3.70.0-next.27",
105
- "@elliemae/ds-form-input-textarea": "3.70.0-next.27",
106
- "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.27",
107
- "@elliemae/ds-form-layout-blocks": "3.70.0-next.27",
108
- "@elliemae/ds-form-layout-input-group": "3.70.0-next.27",
109
- "@elliemae/ds-form-layout-label": "3.70.0-next.27",
110
- "@elliemae/ds-form-multi-combobox": "3.70.0-next.27",
111
- "@elliemae/ds-form-radio": "3.70.0-next.27",
112
- "@elliemae/ds-form-native-select": "3.70.0-next.27",
113
- "@elliemae/ds-form-select": "3.70.0-next.27",
114
- "@elliemae/ds-form-single-combobox": "3.70.0-next.27",
115
- "@elliemae/ds-form-toggle": "3.70.0-next.27",
116
- "@elliemae/ds-global-header": "3.70.0-next.27",
117
- "@elliemae/ds-grid": "3.70.0-next.27",
118
- "@elliemae/ds-hooks-focus-stack": "3.70.0-next.27",
119
- "@elliemae/ds-hooks-focus-trap": "3.70.0-next.27",
120
- "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.27",
121
- "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.27",
122
- "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.27",
123
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.27",
124
- "@elliemae/ds-hooks-is-mobile": "3.70.0-next.27",
125
- "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.27",
126
- "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.27",
127
- "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.27",
128
- "@elliemae/ds-icon": "3.70.0-next.27",
129
- "@elliemae/ds-image": "3.70.0-next.27",
130
- "@elliemae/ds-icons": "3.70.0-next.27",
131
- "@elliemae/ds-imagelibrarymodal": "3.70.0-next.27",
132
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.27",
133
- "@elliemae/ds-layout-provider": "3.70.0-next.27",
134
- "@elliemae/ds-left-navigation": "3.70.0-next.27",
135
- "@elliemae/ds-loading-indicator": "3.70.0-next.27",
136
- "@elliemae/ds-menu-button": "3.70.0-next.27",
137
- "@elliemae/ds-menu-items": "3.70.0-next.27",
138
- "@elliemae/ds-menu-items-action": "3.70.0-next.27",
139
- "@elliemae/ds-menu-items-commons": "3.70.0-next.27",
140
- "@elliemae/ds-menu-items-multi": "3.70.0-next.27",
141
- "@elliemae/ds-menu-items-section": "3.70.0-next.27",
142
- "@elliemae/ds-menu-items-separator": "3.70.0-next.27",
143
- "@elliemae/ds-menu-items-single": "3.70.0-next.27",
144
- "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.27",
145
- "@elliemae/ds-menu-items-skeleton": "3.70.0-next.27",
146
- "@elliemae/ds-menu-items-submenu": "3.70.0-next.27",
147
- "@elliemae/ds-menu-tree-item": "3.70.0-next.27",
148
- "@elliemae/ds-mobile": "3.70.0-next.27",
149
- "@elliemae/ds-modal-slide": "3.70.0-next.27",
150
- "@elliemae/ds-notification-badge": "3.70.0-next.27",
151
- "@elliemae/ds-overlay": "3.70.0-next.27",
152
- "@elliemae/ds-page-header": "3.70.0-next.27",
153
- "@elliemae/ds-page-header-v1": "3.70.0-next.27",
154
- "@elliemae/ds-page-header-v2": "3.70.0-next.27",
155
- "@elliemae/ds-page-layout": "3.70.0-next.27",
156
- "@elliemae/ds-pagination": "3.70.0-next.27",
157
- "@elliemae/ds-pills-v2": "3.70.0-next.27",
158
- "@elliemae/ds-portal": "3.70.0-next.27",
159
- "@elliemae/ds-progress-indicator": "3.70.0-next.27",
160
- "@elliemae/ds-read-more": "3.70.0-next.27",
161
- "@elliemae/ds-resizeable-container": "3.70.0-next.27",
162
- "@elliemae/ds-props-helpers": "3.70.0-next.27",
163
- "@elliemae/ds-query-builder": "3.70.0-next.27",
164
- "@elliemae/ds-ribbon": "3.70.0-next.27",
165
- "@elliemae/ds-scrollable-container": "3.70.0-next.27",
166
- "@elliemae/ds-shared": "3.70.0-next.27",
167
- "@elliemae/ds-shuttle-v2": "3.70.0-next.27",
168
- "@elliemae/ds-separator": "3.70.0-next.27",
169
- "@elliemae/ds-side-panel": "3.70.0-next.27",
170
- "@elliemae/ds-skeleton": "3.70.0-next.27",
171
- "@elliemae/ds-side-panel-header": "3.70.0-next.27",
172
- "@elliemae/ds-square-indicator": "3.70.0-next.27",
173
- "@elliemae/ds-stepper": "3.70.0-next.27",
174
- "@elliemae/ds-svg": "3.70.0-next.27",
175
- "@elliemae/ds-system": "3.70.0-next.27",
176
- "@elliemae/ds-slider-v2": "3.70.0-next.27",
177
- "@elliemae/ds-tabs": "3.70.0-next.27",
178
- "@elliemae/ds-test-utils": "3.70.0-next.27",
179
- "@elliemae/ds-toolbar-v1": "3.70.0-next.27",
180
- "@elliemae/ds-toast": "3.70.0-next.27",
181
- "@elliemae/ds-toolbar-v2": "3.70.0-next.27",
182
- "@elliemae/ds-tooltip-v3": "3.70.0-next.27",
183
- "@elliemae/ds-transition": "3.70.0-next.27",
184
- "@elliemae/ds-tree-model": "3.70.0-next.27",
185
- "@elliemae/ds-treeview": "3.70.0-next.27",
186
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.27",
187
- "@elliemae/ds-typescript-helpers": "3.70.0-next.27",
188
- "@elliemae/ds-typography": "3.70.0-next.27",
189
- "@elliemae/ds-virtual-list": "3.70.0-next.27",
190
- "@elliemae/ds-wizard": "3.70.0-next.27",
191
- "@elliemae/ds-zustand-helpers": "3.70.0-next.27"
42
+ "@elliemae/ds-accessibility": "3.70.0-next.28",
43
+ "@elliemae/ds-app-picker": "3.70.0-next.28",
44
+ "@elliemae/ds-accordion": "3.70.0-next.28",
45
+ "@elliemae/ds-backdrop": "3.70.0-next.28",
46
+ "@elliemae/ds-banner": "3.70.0-next.28",
47
+ "@elliemae/ds-basic": "3.70.0-next.28",
48
+ "@elliemae/ds-breadcrumb": "3.70.0-next.28",
49
+ "@elliemae/ds-card": "3.70.0-next.28",
50
+ "@elliemae/ds-button-v2": "3.70.0-next.28",
51
+ "@elliemae/ds-card-navigation": "3.70.0-next.28",
52
+ "@elliemae/ds-card-v1": "3.70.0-next.28",
53
+ "@elliemae/ds-card-v1-detail": "3.70.0-next.28",
54
+ "@elliemae/ds-card-v2": "3.70.0-next.28",
55
+ "@elliemae/ds-card-v2-action-addon": "3.70.0-next.28",
56
+ "@elliemae/ds-card-v3": "3.70.0-next.28",
57
+ "@elliemae/ds-card-v2-group": "3.70.0-next.28",
58
+ "@elliemae/ds-card-v3-poc": "3.70.0-next.28",
59
+ "@elliemae/ds-chat": "3.70.0-next.28",
60
+ "@elliemae/ds-chat-bubble": "3.70.0-next.28",
61
+ "@elliemae/ds-chat-container": "3.70.0-next.28",
62
+ "@elliemae/ds-chat-card": "3.70.0-next.28",
63
+ "@elliemae/ds-chat-container-header": "3.70.0-next.28",
64
+ "@elliemae/ds-chat-floating-button": "3.70.0-next.28",
65
+ "@elliemae/ds-chat-empty-state": "3.70.0-next.28",
66
+ "@elliemae/ds-chat-message-delimeter": "3.70.0-next.28",
67
+ "@elliemae/ds-chat-sidebar": "3.70.0-next.28",
68
+ "@elliemae/ds-chat-tile": "3.70.0-next.28",
69
+ "@elliemae/ds-chat-system-message": "3.70.0-next.28",
70
+ "@elliemae/ds-chip": "3.70.0-next.28",
71
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.28",
72
+ "@elliemae/ds-classnames": "3.70.0-next.28",
73
+ "@elliemae/ds-codeeditor": "3.70.0-next.28",
74
+ "@elliemae/ds-comments": "3.70.0-next.28",
75
+ "@elliemae/ds-controlled-form": "3.70.0-next.28",
76
+ "@elliemae/ds-csv-converter": "3.70.0-next.28",
77
+ "@elliemae/ds-data-table": "3.70.0-next.28",
78
+ "@elliemae/ds-data-table-action-cell": "3.70.0-next.28",
79
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.28",
80
+ "@elliemae/ds-data-table-cell": "3.70.0-next.28",
81
+ "@elliemae/ds-data-table-cell-header": "3.70.0-next.28",
82
+ "@elliemae/ds-data-table-expand-cell": "3.70.0-next.28",
83
+ "@elliemae/ds-data-table-filters": "3.70.0-next.28",
84
+ "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.28",
85
+ "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.28",
86
+ "@elliemae/ds-dataviz": "3.70.0-next.28",
87
+ "@elliemae/ds-dataviz-pie": "3.70.0-next.28",
88
+ "@elliemae/ds-date-time-picker": "3.70.0-next.28",
89
+ "@elliemae/ds-decision-graph": "3.70.0-next.28",
90
+ "@elliemae/ds-dialog": "3.70.0-next.28",
91
+ "@elliemae/ds-drag-and-drop": "3.70.0-next.28",
92
+ "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.28",
93
+ "@elliemae/ds-dropzone": "3.70.0-next.28",
94
+ "@elliemae/ds-fast-list": "3.70.0-next.28",
95
+ "@elliemae/ds-filter-bar": "3.70.0-next.28",
96
+ "@elliemae/ds-floating-context": "3.70.0-next.28",
97
+ "@elliemae/ds-form-checkbox": "3.70.0-next.28",
98
+ "@elliemae/ds-form-combobox": "3.70.0-next.28",
99
+ "@elliemae/ds-form-date-range-picker": "3.70.0-next.28",
100
+ "@elliemae/ds-form-date-time-picker": "3.70.0-next.28",
101
+ "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.28",
102
+ "@elliemae/ds-form-input-text": "3.70.0-next.28",
103
+ "@elliemae/ds-form-input-textarea": "3.70.0-next.28",
104
+ "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.28",
105
+ "@elliemae/ds-form-layout-blocks": "3.70.0-next.28",
106
+ "@elliemae/ds-form-layout-input-group": "3.70.0-next.28",
107
+ "@elliemae/ds-form-layout-label": "3.70.0-next.28",
108
+ "@elliemae/ds-form-multi-combobox": "3.70.0-next.28",
109
+ "@elliemae/ds-form-native-select": "3.70.0-next.28",
110
+ "@elliemae/ds-form-radio": "3.70.0-next.28",
111
+ "@elliemae/ds-form-select": "3.70.0-next.28",
112
+ "@elliemae/ds-form-single-combobox": "3.70.0-next.28",
113
+ "@elliemae/ds-form-toggle": "3.70.0-next.28",
114
+ "@elliemae/ds-global-header": "3.70.0-next.28",
115
+ "@elliemae/ds-grid": "3.70.0-next.28",
116
+ "@elliemae/ds-hooks-focus-trap": "3.70.0-next.28",
117
+ "@elliemae/ds-hooks-focus-stack": "3.70.0-next.28",
118
+ "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.28",
119
+ "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.28",
120
+ "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.28",
121
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.28",
122
+ "@elliemae/ds-hooks-is-mobile": "3.70.0-next.28",
123
+ "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.28",
124
+ "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.28",
125
+ "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.28",
126
+ "@elliemae/ds-image": "3.70.0-next.28",
127
+ "@elliemae/ds-icon": "3.70.0-next.28",
128
+ "@elliemae/ds-icons": "3.70.0-next.28",
129
+ "@elliemae/ds-imagelibrarymodal": "3.70.0-next.28",
130
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.28",
131
+ "@elliemae/ds-layout-provider": "3.70.0-next.28",
132
+ "@elliemae/ds-left-navigation": "3.70.0-next.28",
133
+ "@elliemae/ds-loading-indicator": "3.70.0-next.28",
134
+ "@elliemae/ds-menu-items": "3.70.0-next.28",
135
+ "@elliemae/ds-menu-items-commons": "3.70.0-next.28",
136
+ "@elliemae/ds-menu-button": "3.70.0-next.28",
137
+ "@elliemae/ds-menu-items-action": "3.70.0-next.28",
138
+ "@elliemae/ds-menu-items-multi": "3.70.0-next.28",
139
+ "@elliemae/ds-menu-items-section": "3.70.0-next.28",
140
+ "@elliemae/ds-menu-items-separator": "3.70.0-next.28",
141
+ "@elliemae/ds-menu-items-single": "3.70.0-next.28",
142
+ "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.28",
143
+ "@elliemae/ds-menu-items-skeleton": "3.70.0-next.28",
144
+ "@elliemae/ds-menu-items-submenu": "3.70.0-next.28",
145
+ "@elliemae/ds-menu-tree-item": "3.70.0-next.28",
146
+ "@elliemae/ds-mobile": "3.70.0-next.28",
147
+ "@elliemae/ds-modal-slide": "3.70.0-next.28",
148
+ "@elliemae/ds-notification-badge": "3.70.0-next.28",
149
+ "@elliemae/ds-overlay": "3.70.0-next.28",
150
+ "@elliemae/ds-page-header": "3.70.0-next.28",
151
+ "@elliemae/ds-page-header-v2": "3.70.0-next.28",
152
+ "@elliemae/ds-page-header-v1": "3.70.0-next.28",
153
+ "@elliemae/ds-page-layout": "3.70.0-next.28",
154
+ "@elliemae/ds-pagination": "3.70.0-next.28",
155
+ "@elliemae/ds-pills-v2": "3.70.0-next.28",
156
+ "@elliemae/ds-portal": "3.70.0-next.28",
157
+ "@elliemae/ds-progress-indicator": "3.70.0-next.28",
158
+ "@elliemae/ds-props-helpers": "3.70.0-next.28",
159
+ "@elliemae/ds-query-builder": "3.70.0-next.28",
160
+ "@elliemae/ds-read-more": "3.70.0-next.28",
161
+ "@elliemae/ds-resizeable-container": "3.70.0-next.28",
162
+ "@elliemae/ds-ribbon": "3.70.0-next.28",
163
+ "@elliemae/ds-scrollable-container": "3.70.0-next.28",
164
+ "@elliemae/ds-separator": "3.70.0-next.28",
165
+ "@elliemae/ds-shared": "3.70.0-next.28",
166
+ "@elliemae/ds-shuttle-v2": "3.70.0-next.28",
167
+ "@elliemae/ds-side-panel": "3.70.0-next.28",
168
+ "@elliemae/ds-side-panel-header": "3.70.0-next.28",
169
+ "@elliemae/ds-slider-v2": "3.70.0-next.28",
170
+ "@elliemae/ds-skeleton": "3.70.0-next.28",
171
+ "@elliemae/ds-square-indicator": "3.70.0-next.28",
172
+ "@elliemae/ds-stepper": "3.70.0-next.28",
173
+ "@elliemae/ds-svg": "3.70.0-next.28",
174
+ "@elliemae/ds-system": "3.70.0-next.28",
175
+ "@elliemae/ds-tabs": "3.70.0-next.28",
176
+ "@elliemae/ds-test-utils": "3.70.0-next.28",
177
+ "@elliemae/ds-toast": "3.70.0-next.28",
178
+ "@elliemae/ds-toolbar-v1": "3.70.0-next.28",
179
+ "@elliemae/ds-toolbar-v2": "3.70.0-next.28",
180
+ "@elliemae/ds-tooltip-v3": "3.70.0-next.28",
181
+ "@elliemae/ds-transition": "3.70.0-next.28",
182
+ "@elliemae/ds-tree-model": "3.70.0-next.28",
183
+ "@elliemae/ds-treeview": "3.70.0-next.28",
184
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.28",
185
+ "@elliemae/ds-typescript-helpers": "3.70.0-next.28",
186
+ "@elliemae/ds-wizard": "3.70.0-next.28",
187
+ "@elliemae/ds-typography": "3.70.0-next.28",
188
+ "@elliemae/ds-virtual-list": "3.70.0-next.28",
189
+ "@elliemae/ds-zustand-helpers": "3.70.0-next.28"
192
190
  },
193
191
  "publishConfig": {
194
192
  "access": "public"