dimsum-e2e-tests 3.57.0-next.2 → 3.57.0-next.3

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.57.0-next.3 (2025-10-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-form-layout-blocks:: updated e2e test for required [PUI-10970](https://jira.elliemae.io/browse/PUI-10970) ([#7671](https://git.elliemae.io/platform-ui/dimsum/issues/7671)) ([67a471b](https://git.elliemae.io/platform-ui/dimsum/commit/67a471b30a92e03b0d6a7fb9ad8cfe45c2692c71))
11
+
6
12
  ## 3.57.0-next.2 (2025-10-13)
7
13
 
8
14
  ### Bug Fixes
@@ -8,6 +8,8 @@ export default class CardNavigation extends PageObject {
8
8
 
9
9
  static textWrapURL = new Urlbuilder(PATH_E2E_CARD_NAVIGATION, 'wrap-text-test');
10
10
 
11
+ static slotsTest = new Urlbuilder(PATH_E2E_CARD_NAVIGATION, 'slots-test');
12
+
11
13
  static getDescription() {
12
14
  return $('[data-testid="ds-card-navigation--description"]');
13
15
  }
@@ -20,6 +22,54 @@ export default class CardNavigation extends PageObject {
20
22
  return $$('[data-testid="ds-button"]')[index];
21
23
  }
22
24
 
25
+ static getCardNavigationActionsSlotByIndex(index = 0) {
26
+ return $$('[data-dimsum-slot="dsCardnavigationActions"]')[index];
27
+ }
28
+
29
+ static getCardNavigationActionButtonSlotByIndex(index = 0) {
30
+ return $$('[data-dimsum-parent-slot="dsCardnavigationActionButton"]')[index];
31
+ }
32
+
33
+ static getCardNavigationButtonWrapperSlotByIndex(index = 0) {
34
+ return $$('[data-dimsum-slot="dsCardnavigationButtonWrapper"]')[index];
35
+ }
36
+
37
+ static getCardNavigationCentralContentSlotByIndex(index = 0) {
38
+ return $$('[data-dimsum-slot="dsCardnavigationCentralContent"]')[index];
39
+ }
40
+
41
+ static getCardNavigationContentSlotByIndex(index = 0) {
42
+ return $$('[data-dimsum-slot="dsCardnavigationContent"]')[index];
43
+ }
44
+
45
+ static getCardNavigationDescriptionTextSlotByIndex(index = 0) {
46
+ return $$('[data-dimsum-parent-slot="dsCardnavigationDescriptionText"]')[index];
47
+ }
48
+
49
+ static getCardNavigationInteractiveElementRegionSlotByIndex(index = 0) {
50
+ return $$('[data-dimsum-slot="dsCardnavigationInteractiveElementRegion"]')[index];
51
+ }
52
+
53
+ static getCardNavigationTitleSlotByIndex(index = 0) {
54
+ return $$('[data-dimsum-slot="dsCardnavigationTitle"]')[index];
55
+ }
56
+
57
+ static getCardNavigationRootSlotByIndex(index = 0) {
58
+ return $$('[data-dimsum-slot="dsCardnavigationRoot"]')[index];
59
+ }
60
+
61
+ static getCardNavigationTitleTypographySlotByIndex(index = 0) {
62
+ return $$('[data-dimsum-parent-slot="dsCardnavigationTitleTypography"]')[index];
63
+ }
64
+
65
+ static getCardNavigationTitleWrapperSlotByIndex(index = 0) {
66
+ return $$('[data-dimsum-slot="dsCardnavigationTitleWrapper"]')[index];
67
+ }
68
+
69
+ static getCardNavigationTypeSlotByIndex(index = 0) {
70
+ return $$('[data-dimsum-slot="dsCardnavigationType"]')[index];
71
+ }
72
+
23
73
  // Snapshots
24
74
  static snapshotPath(example = 'truncated-text') {
25
75
  return PageObject.getSnapshotPathBuilder('DSCardNavigation', example, 'ds-card-navigation');
@@ -0,0 +1,127 @@
1
+ /* eslint-disable max-statements */
2
+ /* eslint-disable max-len */
3
+ import CardNavigationCO from './CardNavigationCO';
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-17279: CardNavigation: Slots -Func', () => {
12
+ before('loading page', async () => {
13
+ const errorOnGo = await CardNavigationCO.slotsTest.go();
14
+ if (errorOnGo) throw errorOnGo;
15
+ });
16
+ it('01: should have a custom aria-* for each slot', async () => {
17
+ const cardNavActions = await (
18
+ await CardNavigationCO.getCardNavigationActionsSlotByIndex()
19
+ ).getAttribute('aria-label');
20
+ const cardNavActionButton = await (
21
+ await CardNavigationCO.getCardNavigationActionButtonSlotByIndex()
22
+ ).getAttribute('aria-label');
23
+ const cardNavButtonWrapper = await (
24
+ await CardNavigationCO.getCardNavigationButtonWrapperSlotByIndex()
25
+ ).getAttribute('aria-label');
26
+ const cardNavCentralContent = await (
27
+ await CardNavigationCO.getCardNavigationCentralContentSlotByIndex()
28
+ ).getAttribute('aria-label');
29
+ const cardNavContent = await (
30
+ await CardNavigationCO.getCardNavigationContentSlotByIndex()
31
+ ).getAttribute('aria-label');
32
+ const cardNavDescText = await (
33
+ await CardNavigationCO.getCardNavigationDescriptionTextSlotByIndex()
34
+ ).getAttribute('aria-label');
35
+ const cardNavInteractElemReg = await (
36
+ await CardNavigationCO.getCardNavigationInteractiveElementRegionSlotByIndex()
37
+ ).getAttribute('aria-label');
38
+ const cardNavTitle = await (
39
+ await CardNavigationCO.getCardNavigationTitleSlotByIndex()
40
+ ).getAttribute('aria-label');
41
+ const cardNavRoot = await (await CardNavigationCO.getCardNavigationRootSlotByIndex()).getAttribute('aria-label');
42
+ const cardNavTitleTypography = await (
43
+ await CardNavigationCO.getCardNavigationTitleTypographySlotByIndex()
44
+ ).getAttribute('aria-label');
45
+ const cardNavTitleWrapper = await (
46
+ await CardNavigationCO.getCardNavigationTitleWrapperSlotByIndex()
47
+ ).getAttribute('aria-label');
48
+ const cardNavType = await (await CardNavigationCO.getCardNavigationTypeSlotByIndex()).getAttribute('aria-label');
49
+ await expect(cardNavActions).toEqual('actions aria');
50
+ await expect(cardNavActionButton).toEqual('actionbutton aria');
51
+ await expect(cardNavButtonWrapper).toEqual('buttonwrapper aria');
52
+ await expect(cardNavCentralContent).toEqual('centralcontent aria');
53
+ await expect(cardNavContent).toEqual('content aria');
54
+ await expect(cardNavDescText).toEqual('descriptiontext aria');
55
+ await expect(cardNavInteractElemReg).toEqual('interactiveelemregion aria');
56
+ await expect(cardNavTitle).toEqual('title aria');
57
+ await expect(cardNavRoot).toEqual('root aria');
58
+ await expect(cardNavTitleTypography).toEqual('titletypography aria');
59
+ await expect(cardNavTitleWrapper).toEqual('titlewrapper aria');
60
+ await expect(cardNavType).toEqual('type aria');
61
+ });
62
+ it('02: should have a custom data-testid for each slot', async () => {
63
+ const cardNavActions = await (
64
+ await CardNavigationCO.getCardNavigationActionsSlotByIndex()
65
+ ).getAttribute('data-testid');
66
+ const cardNavActionButton = await (
67
+ await CardNavigationCO.getCardNavigationActionButtonSlotByIndex()
68
+ ).getAttribute('data-testid');
69
+ const cardNavButtonWrapper = await (
70
+ await CardNavigationCO.getCardNavigationButtonWrapperSlotByIndex()
71
+ ).getAttribute('data-testid');
72
+ const cardNavCentralContent = await (
73
+ await CardNavigationCO.getCardNavigationCentralContentSlotByIndex()
74
+ ).getAttribute('data-testid');
75
+ const cardNavContent = await (
76
+ await CardNavigationCO.getCardNavigationContentSlotByIndex()
77
+ ).getAttribute('data-testid');
78
+ const cardNavDescText = await (
79
+ await CardNavigationCO.getCardNavigationDescriptionTextSlotByIndex()
80
+ ).getAttribute('data-testid');
81
+ const cardNavInteractElemReg = await (
82
+ await CardNavigationCO.getCardNavigationInteractiveElementRegionSlotByIndex()
83
+ ).getAttribute('data-testid');
84
+ const cardNavTitle = await (
85
+ await CardNavigationCO.getCardNavigationTitleSlotByIndex()
86
+ ).getAttribute('data-testid');
87
+ const cardNavRoot = await (await CardNavigationCO.getCardNavigationRootSlotByIndex()).getAttribute('data-testid');
88
+ const cardNavTitleTypography = await (
89
+ await CardNavigationCO.getCardNavigationTitleTypographySlotByIndex()
90
+ ).getAttribute('data-testid');
91
+ const cardNavTitleWrapper = await (
92
+ await CardNavigationCO.getCardNavigationTitleWrapperSlotByIndex()
93
+ ).getAttribute('data-testid');
94
+ const cardNavType = await (await CardNavigationCO.getCardNavigationTypeSlotByIndex()).getAttribute('data-testid');
95
+ await expect(cardNavActions).toEqual('actions data');
96
+ await expect(cardNavActionButton).toEqual('actionbutton data');
97
+ await expect(cardNavButtonWrapper).toEqual('buttonwrapper data');
98
+ await expect(cardNavCentralContent).toEqual('centralcontent data');
99
+ await expect(cardNavContent).toEqual('content data');
100
+ await expect(cardNavDescText).toEqual('descriptiontext data');
101
+ await expect(cardNavInteractElemReg).toEqual('interactiveelemregion data');
102
+ await expect(cardNavTitle).toEqual('title data');
103
+ await expect(cardNavRoot).toEqual('root data');
104
+ await expect(cardNavTitleTypography).toEqual('titletypography data');
105
+ await expect(cardNavTitleWrapper).toEqual('titlewrapper data');
106
+ await expect(cardNavType).toEqual('type data');
107
+ });
108
+ it('03: should have a custom lang for each text-containing slot', async () => {
109
+ const cardNavCentralContent = await (
110
+ await CardNavigationCO.getCardNavigationCentralContentSlotByIndex()
111
+ ).getAttribute('lang');
112
+ const cardNavContent = await (await CardNavigationCO.getCardNavigationContentSlotByIndex()).getAttribute('lang');
113
+ const cardNavDescText = await (
114
+ await CardNavigationCO.getCardNavigationDescriptionTextSlotByIndex()
115
+ ).getAttribute('lang');
116
+ const cardNavTitle = await (await CardNavigationCO.getCardNavigationTitleSlotByIndex()).getAttribute('lang');
117
+ const cardNavTitleTypography = await (
118
+ await CardNavigationCO.getCardNavigationTitleTypographySlotByIndex()
119
+ ).getAttribute('lang');
120
+ await expect(cardNavCentralContent).toEqual('es');
121
+ await expect(cardNavContent).toEqual('es');
122
+ await expect(cardNavDescText).toEqual('es');
123
+ await expect(cardNavTitle).toEqual('es');
124
+ await expect(cardNavTitleTypography).toEqual('es');
125
+ });
126
+ });
127
+ }
@@ -0,0 +1,26 @@
1
+ /* eslint-disable max-statements */
2
+ /* eslint-disable prettier/prettier */
3
+ /* eslint-disable max-len */
4
+ // import { Key } from 'webdriverio';
5
+ import CardNavigationCO from './CardNavigationCO';
6
+
7
+ if (
8
+ (!browser.capabilities['ice:options'].isPhone &&
9
+ !browser.capabilities['ice:options'].isTablet &&
10
+ browser.capabilities.browserName === 'chrome') ||
11
+ browser.capabilities.browserName === 'Chrome'
12
+ ) {
13
+ describe('PUI-17283: CardNavigation: Slots -Visual', () => {
14
+ before('loading page', async () => {
15
+ const errorOnGo = await CardNavigationCO.slotsTest.go();
16
+ if (errorOnGo) throw errorOnGo;
17
+ });
18
+ it('01: should have a custom aria-* for each slot', async () => {
19
+ await browser.eyesOpen();
20
+ const cardNavRoot = await CardNavigationCO.getCardNavigationRootSlotByIndex();
21
+ await cardNavRoot.waitForDisplayed();
22
+ const snapshot = await browser.eyesCheckSnapshot(CardNavigationCO.snapshotPath('cardnav-slots-test'));
23
+ await expect(snapshot).toEqual(0);
24
+ });
25
+ });
26
+ }
@@ -1,5 +1,5 @@
1
1
  import { Key } from 'webdriverio';
2
- import { PATH_E2E_COMBOBOX_MULTI } from '../paths';
2
+ import { PATH_E2E_COMBOBOX_MULTI, PATH_E2E_COMBOBOX_MULTI_SLOTS } from '../paths';
3
3
  import { PageObject, Urlbuilder } from '../helpers';
4
4
 
5
5
  export default class DSComboboxMultiCO extends PageObject {
@@ -23,6 +23,15 @@ export default class DSComboboxMultiCO extends PageObject {
23
23
 
24
24
  static disabled = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'disabled-test');
25
25
 
26
+ static controlledMenuStateWithSectionsSlotsTest = new Urlbuilder(
27
+ PATH_E2E_COMBOBOX_MULTI_SLOTS,
28
+ 'controlled-menu-state-with-section-slots-test',
29
+ );
30
+
31
+ static loadingIndicatorSlotsTest = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI_SLOTS, 'loading-indicator-slots-test');
32
+
33
+ static skeletonSlotsTest = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI_SLOTS, 'skeleton-slots-test');
34
+
26
35
  // COMBOBOX - INPUT
27
36
  static async getCombobox() {
28
37
  return $('[data-testid="combobox-container"]');
@@ -195,6 +204,76 @@ export default class DSComboboxMultiCO extends PageObject {
195
204
  await menuList.waitForExist();
196
205
  }
197
206
 
207
+ // Slots
208
+
209
+ static async getComboboxRootSlot() {
210
+ return $('[data-dimsum-slot="dsComboboxRoot"]');
211
+ }
212
+
213
+ static async getComboboxInputWrapperSlot() {
214
+ return $('[data-dimsum-slot="dsComboboxInputWrapper"]');
215
+ }
216
+
217
+ static async getComboboxInputSlot() {
218
+ return $('[data-dimsum-slot="dsComboboxInput"]');
219
+ }
220
+
221
+ static async getComboboxDropDownMenuBtnSlot() {
222
+ return $('[data-dimsum-parent-slot="dsComboboxDropdownButton"]');
223
+ }
224
+
225
+ static async getFloatingWrapperRootSlot() {
226
+ return $('[data-dimsum-slot="dsFloatingwrapperRoot"]');
227
+ }
228
+
229
+ static async getFloatingWrapperContentSlot() {
230
+ return $('[data-dimsum-slot="dsFloatingwrapperContent"]');
231
+ }
232
+
233
+ static async getFastListSlot() {
234
+ return $('[data-dimsum-parent-slot="dsComboboxFastList"]');
235
+ }
236
+
237
+ static async getFastListWrapperListSlot() {
238
+ return $('[data-dimsum-slot="dsFastlistWrapperList"]');
239
+ }
240
+
241
+ static async getFastListItemSlot() {
242
+ return $('[data-dimsum-slot="dsFastlistItem"]');
243
+ }
244
+
245
+ static async getMenuitemMenuItemWrapperSlot() {
246
+ return $('[data-dimsum-slot="dsMenuitemMenuItemWrapper"]');
247
+ }
248
+
249
+ static async getMenuitemMenuItemsContentWrapperSlotByIndex(index) {
250
+ return $$('[data-dimsum-slot="dsMenuitemMenuItemContentWrapper"]')[index];
251
+ }
252
+
253
+ static async getMenuitemMenuItemLabelSlotByIndex(index) {
254
+ return $$('[data-dimsum-slot="dsMenuitemMenuItemLabel"]')[index];
255
+ }
256
+
257
+ static async getComboboxLoadingIndicator() {
258
+ return $('[data-dimsum-parent-slot="dsComboboxLoadingIndicator"]');
259
+ }
260
+
261
+ static async getComboboxSkeletonMenuItem() {
262
+ return $('[data-dimsum-parent-slot="dsComboboxSkeletonMenuItem"]');
263
+ }
264
+
265
+ static async getComboboxMenuItemSlotByIndex(index) {
266
+ return $$('[data-dimsum-parent-slot="dsComboboxMultiMenuItem"]')[index];
267
+ }
268
+
269
+ static async getComboboxSectionLabelByIndex(index) {
270
+ return $$('[data-dimsum-slot="dsComboboxSectionLabel"]')[index];
271
+ }
272
+
273
+ static async getComboboxSectionWrapperSlotByIndex(index) {
274
+ return $$('[data-dimsum-slot="dsComboboxSectionWrapper"]')[index];
275
+ }
276
+
198
277
  static snapshotPath(example = 'basic') {
199
278
  return PageObject.getSnapshotPathBuilder('DSComboboxMulti', example, 'ds-combobox-multi');
200
279
  }
@@ -0,0 +1,100 @@
1
+ /* eslint-disable max-lines */
2
+ import DSComboboxMultiCO from '../DSComboboxMultiCO';
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-17260 - ComboboxMulti:: Slots - Controlled Menu and Sections -Func', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSComboboxMultiCO.controlledMenuStateWithSectionsSlotsTest.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+ it('01: should have custom aria-* for each slot', async () => {
16
+ const comboboxRootSlot = await DSComboboxMultiCO.getComboboxRootSlot();
17
+ const comboboxInputWrapperSlot = await DSComboboxMultiCO.getComboboxInputWrapperSlot();
18
+ const comboboxInputSlot = await DSComboboxMultiCO.getComboboxInputSlot();
19
+ const comboboxDropdownButtonSlot = await DSComboboxMultiCO.getComboboxDropDownMenuBtnSlot();
20
+ const comboboxFastlistWrapperList = await DSComboboxMultiCO.getFastListSlot();
21
+ const comboboxMenuItemLabel = await DSComboboxMultiCO.getComboboxMenuItemSlotByIndex(0);
22
+ const comboboxSectionLabel = await DSComboboxMultiCO.getComboboxSectionLabelByIndex(0);
23
+ const comboboxSectionWrapper = await DSComboboxMultiCO.getComboboxSectionWrapperSlotByIndex(0);
24
+ await expect(comboboxRootSlot).toHaveAttribute('aria-label', 'root aria');
25
+ await expect(comboboxInputWrapperSlot).toHaveAttribute('aria-label', 'inputwrapper aria');
26
+ await expect(comboboxInputSlot).toHaveAttribute('aria-label', 'input aria');
27
+ await expect(comboboxDropdownButtonSlot).toHaveAttribute('aria-label', 'ddbutton aria');
28
+ await expect(comboboxFastlistWrapperList).toHaveAttribute('aria-label', 'fastlist aria');
29
+ await expect(comboboxMenuItemLabel).toHaveAttribute('aria-label', 'multimenuitem aria');
30
+ await expect(comboboxSectionLabel).toHaveAttribute('aria-label', 'sectionlabel aria');
31
+ await expect(comboboxSectionWrapper).toHaveAttribute('aria-label', 'sectionwrapper aria');
32
+ });
33
+ it('02: should have custom data-* for each slot', async () => {
34
+ const comboboxRootSlot = await DSComboboxMultiCO.getComboboxRootSlot();
35
+ const comboboxInputWrapperSlot = await DSComboboxMultiCO.getComboboxInputWrapperSlot();
36
+ const comboboxInputSlot = await DSComboboxMultiCO.getComboboxInputSlot();
37
+ const comboboxDropdownButtonSlot = await DSComboboxMultiCO.getComboboxDropDownMenuBtnSlot();
38
+ const comboboxFastlistWrapperList = await DSComboboxMultiCO.getFastListSlot();
39
+ const comboboxMenuItemLabel = await DSComboboxMultiCO.getComboboxMenuItemSlotByIndex(0);
40
+ const comboboxSectionLabel = await DSComboboxMultiCO.getComboboxSectionLabelByIndex(0);
41
+ const comboboxSectionWrapper = await DSComboboxMultiCO.getComboboxSectionWrapperSlotByIndex(0);
42
+ await expect(comboboxRootSlot).toHaveAttribute('data-testid', 'root data');
43
+ await expect(comboboxInputWrapperSlot).toHaveAttribute('data-testid', 'inputwrapper data');
44
+ await expect(comboboxInputSlot).toHaveAttribute('data-testid', 'input data');
45
+ await expect(comboboxDropdownButtonSlot).toHaveAttribute('data-testid', 'ddbutton data');
46
+ await expect(comboboxFastlistWrapperList).toHaveAttribute('data-testid', 'fastlist data');
47
+ await expect(comboboxMenuItemLabel).toHaveAttribute('data-testid', 'multimenuitem data');
48
+ await expect(comboboxSectionLabel).toHaveAttribute('data-testid', 'sectionlabel data');
49
+ await expect(comboboxSectionWrapper).toHaveAttribute('data-testid', 'sectionwrapper data');
50
+ });
51
+ it('03: should have custom lang for each slot', async () => {
52
+ const comboboxRootSlot = await DSComboboxMultiCO.getComboboxRootSlot();
53
+ const comboboxInputWrapperSlot = await DSComboboxMultiCO.getComboboxInputWrapperSlot();
54
+ const comboboxInputSlot = await DSComboboxMultiCO.getComboboxInputSlot();
55
+ const comboboxDropdownButtonSlot = await DSComboboxMultiCO.getComboboxDropDownMenuBtnSlot();
56
+ const comboboxFastlistWrapperList = await DSComboboxMultiCO.getFastListSlot();
57
+ const comboboxMenuItemLabel = await DSComboboxMultiCO.getComboboxMenuItemSlotByIndex(0);
58
+ const comboboxSectionLabel = await DSComboboxMultiCO.getComboboxSectionLabelByIndex(0);
59
+ const comboboxSectionWrapper = await DSComboboxMultiCO.getComboboxSectionWrapperSlotByIndex(0);
60
+ await expect(comboboxRootSlot).toHaveAttribute('lang', 'pt');
61
+ await expect(comboboxInputWrapperSlot).toHaveAttribute('lang', 'es');
62
+ await expect(comboboxInputSlot).toHaveAttribute('lang', 'de');
63
+ await expect(comboboxDropdownButtonSlot).toHaveAttribute('lang', 'en');
64
+ await expect(comboboxFastlistWrapperList).toHaveAttribute('lang', 'fr');
65
+ await expect(comboboxMenuItemLabel).toHaveAttribute('lang', 'it');
66
+ await expect(comboboxSectionLabel).toHaveAttribute('lang', 'nl');
67
+ await expect(comboboxSectionWrapper).toHaveAttribute('lang', 'sv');
68
+ });
69
+ });
70
+
71
+ describe('PUI-17261 - ComboboxMulti:: Slots - Loading Indicator -Func', () => {
72
+ before('loading page', async () => {
73
+ const errorOnGo = await DSComboboxMultiCO.loadingIndicatorSlotsTest.go();
74
+ if (errorOnGo) throw errorOnGo;
75
+ });
76
+ it('01: should have custom data-*, aria-* and lang for loading indicator specific slots', async () => {
77
+ const combobox = await DSComboboxMultiCO.getComboboxRootSlot();
78
+ await combobox.click();
79
+ const dsComboboxLoadingIndicator = await DSComboboxMultiCO.getComboboxLoadingIndicator();
80
+ await expect(dsComboboxLoadingIndicator).toHaveAttribute('aria-label', 'loadingindicator aria');
81
+ await expect(dsComboboxLoadingIndicator).toHaveAttribute('data-testid', 'loadingindicator data');
82
+ await expect(dsComboboxLoadingIndicator).toHaveAttribute('lang', 'it');
83
+ });
84
+ });
85
+
86
+ describe('PUI-17262 - ComboboxMulti:: Slots - Skeleton -Func', () => {
87
+ before('loading page', async () => {
88
+ const errorOnGo = await DSComboboxMultiCO.skeletonSlotsTest.go();
89
+ if (errorOnGo) throw errorOnGo;
90
+ });
91
+ it('01: should have custom data-*, aria-* and lang for skeleton specific slots', async () => {
92
+ const combobox = await DSComboboxMultiCO.getComboboxRootSlot();
93
+ await combobox.click();
94
+ const comboboxSkeleton = await DSComboboxMultiCO.getComboboxSkeletonMenuItem();
95
+ await expect(comboboxSkeleton).toHaveAttribute('aria-label', 'skeletonmenuitem aria');
96
+ await expect(comboboxSkeleton).toHaveAttribute('data-testid', 'skeletonmenuitem data');
97
+ await expect(comboboxSkeleton).toHaveAttribute('lang', 'ja');
98
+ });
99
+ });
100
+ }
@@ -0,0 +1,51 @@
1
+ /* eslint-disable max-lines */
2
+ import DSComboboxMultiCO from '../DSComboboxMultiCO';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet
7
+ ) {
8
+ describe('PUI-17269 - ComboboxMulti:: Slots - Controlled Menu and Sections -Visual', () => {
9
+ before('loading page', async () => {
10
+ const errorOnGo = await DSComboboxMultiCO.controlledMenuStateWithSectionsSlotsTest.go();
11
+ if (errorOnGo) throw errorOnGo;
12
+ });
13
+ it('01: should display basic combobox multi with customized slots', async () => {
14
+ await browser.eyesOpen();
15
+ const combobox = await DSComboboxMultiCO.getComboboxRootSlot();
16
+ await combobox.waitForDisplayed();
17
+ const snapshot = await browser.eyesCheckSnapshot(DSComboboxMultiCO.snapshotPath('combo-multi-slots-basic'));
18
+ await expect(snapshot).toEqual(0);
19
+ });
20
+ });
21
+
22
+ describe('PUI-17268 - ComboboxMulti:: Slots - Loading Indicator -Visual', () => {
23
+ before('loading page', async () => {
24
+ const errorOnGo = await DSComboboxMultiCO.loadingIndicatorSlotsTest.go();
25
+ if (errorOnGo) throw errorOnGo;
26
+ });
27
+ it('01: should display combobox multi with loading indicator with customized slots', async () => {
28
+ await browser.eyesOpen();
29
+ const combobox = await DSComboboxMultiCO.getComboboxRootSlot();
30
+ await combobox.click();
31
+ const snapshot = await browser.eyesCheckSnapshot(
32
+ DSComboboxMultiCO.snapshotPath('combo-multi-slots-loading-indicator'),
33
+ );
34
+ await expect(snapshot).toEqual(0);
35
+ });
36
+ });
37
+
38
+ describe('PUI-17267 - ComboboxMulti:: Slots - Skeleton -Visual', () => {
39
+ before('loading page', async () => {
40
+ const errorOnGo = await DSComboboxMultiCO.skeletonSlotsTest.go();
41
+ if (errorOnGo) throw errorOnGo;
42
+ });
43
+ it('01: should display basic combobox multi with skeleton with customized slots', async () => {
44
+ await browser.eyesOpen();
45
+ const combobox = await DSComboboxMultiCO.getComboboxRootSlot();
46
+ await combobox.click();
47
+ const snapshot = await browser.eyesCheckSnapshot(DSComboboxMultiCO.snapshotPath('combo-multi-slots-skeleton'));
48
+ await expect(snapshot).toEqual(0);
49
+ });
50
+ });
51
+ }
@@ -16,20 +16,14 @@ export default class DSComboboxSingleCO extends PageObject {
16
16
 
17
17
  static readOnlyWithMenuOpenable = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'read-only-with-menu-openable-test');
18
18
 
19
- static controlledMenuStateAdvancedCustomizationTest = new Urlbuilder(
19
+ static controlledMenuStateWithSectionsSlotsTest = new Urlbuilder(
20
20
  PATH_E2E_COMBOBOX_SINGLE_SLOTS,
21
- 'controlled-menu-state-advanced-customization-test',
21
+ 'controlled-menu-state-with-section-slots-test',
22
22
  );
23
23
 
24
- static loadingAdvancedCustomizationTest = new Urlbuilder(
25
- PATH_E2E_COMBOBOX_SINGLE_SLOTS,
26
- 'loading-advanced-customization-test',
27
- );
24
+ static loadingIndicatorSlotsTest = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE_SLOTS, 'loading-indicator-slots-test');
28
25
 
29
- static skeletonAdvancedCustomizationTest = new Urlbuilder(
30
- PATH_E2E_COMBOBOX_SINGLE_SLOTS,
31
- 'skeleton-advanced-customization-test',
32
- );
26
+ static skeletonSlotsTest = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE_SLOTS, 'skeleton-slots-test');
33
27
 
34
28
  static floatingAfterFiltering = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'floating-after-filtering');
35
29
 
@@ -217,8 +211,8 @@ export default class DSComboboxSingleCO extends PageObject {
217
211
  return $('[data-dimsum-parent-slot="dsComboboxFastList"]');
218
212
  }
219
213
 
220
- static async getFastListWrapperListSlot() {
221
- return $('[data-dimsum-slot="dsFastlistWrapperList"]');
214
+ static async getFastListSlot() {
215
+ return $('[data-dimsum-slot="dsFastlistContainer"]');
222
216
  }
223
217
 
224
218
  static async getFastListItemSlot() {
@@ -233,8 +227,8 @@ export default class DSComboboxSingleCO extends PageObject {
233
227
  return $$('[data-dimsum-slot="dsMenuitemMenuItemContentWrapper"]')[index];
234
228
  }
235
229
 
236
- static async getMenuitemMenuItemLabelSlotByIndex(index) {
237
- return $$('[data-dimsum-slot="dsMenuitemMenuItemLabel"]')[index];
230
+ static async getComboboxMenuItemSlotByIndex(index) {
231
+ return $$('[data-dimsum-parent-slot="dsComboboxSingleMenuItem"]')[index];
238
232
  }
239
233
 
240
234
  static async getComboboxLoadingIndicator() {
@@ -244,6 +238,14 @@ export default class DSComboboxSingleCO extends PageObject {
244
238
  static async getComboboxSkeletonMenuItem() {
245
239
  return $('[data-dimsum-parent-slot="dsComboboxSkeletonMenuItem"]');
246
240
  }
241
+
242
+ static async getComboboxSectionLabelByIndex(index) {
243
+ return $$('[data-dimsum-slot="dsComboboxSectionLabel"]')[index];
244
+ }
245
+
246
+ static async getComboboxSectionWrapperSlotByIndex(index) {
247
+ return $$('[data-dimsum-slot="dsComboboxSectionWrapper"]')[index];
248
+ }
247
249
  // Slots end
248
250
 
249
251
  // actions
@@ -7,64 +7,94 @@ if (
7
7
  browser.capabilities.browserName === 'chrome') ||
8
8
  browser.capabilities.browserName === 'Chrome'
9
9
  ) {
10
- describe('PUI-16558 - ComboboxSingle:: Slots - Controlled Menu Customization', () => {
10
+ describe('PUI-16558 - ComboboxSingle:: Slots - Controlled Menu and Sections -Func', () => {
11
11
  before('loading page', async () => {
12
- const errorOnGo = await DSComboboxSingleCO.controlledMenuStateAdvancedCustomizationTest.go();
12
+ const errorOnGo = await DSComboboxSingleCO.controlledMenuStateWithSectionsSlotsTest.go();
13
13
  if (errorOnGo) throw errorOnGo;
14
14
  });
15
- it('01: should have custom data-* and aria-*', async () => {
15
+ it('01: should have custom aria-* for each slot', async () => {
16
16
  const comboboxRootSlot = await DSComboboxSingleCO.getComboboxRootSlot();
17
17
  const comboboxInputWrapperSlot = await DSComboboxSingleCO.getComboboxInputWrapperSlot();
18
18
  const comboboxInputSlot = await DSComboboxSingleCO.getComboboxInputSlot();
19
19
  const comboboxDropdownButtonSlot = await DSComboboxSingleCO.getComboboxDropDownMenuBtnSlot();
20
- const comboboxFastlistWrapperList = await DSComboboxSingleCO.getFastListWrapperListSlot();
21
- const comboboxMenuItemContent = await DSComboboxSingleCO.getMenuitemMenuItemsContentWrapperSlotByIndex(0);
22
- const comboboxMenuItemLabel = await DSComboboxSingleCO.getMenuitemMenuItemLabelSlotByIndex(0);
23
-
24
- await expect(comboboxRootSlot).toHaveAttribute('aria-label', 'Combobox with custom attributes');
25
- await expect(comboboxInputWrapperSlot).toHaveAttribute(
26
- 'aria-label',
27
- 'Combobox input wrapper with custom attributes',
28
- );
29
- await expect(comboboxInputSlot).toHaveAttribute('aria-label', 'Combobox input with custom attributes');
30
- await expect(comboboxDropdownButtonSlot).toHaveAttribute('aria-label', 'Combobox dropdown toggle menu button');
31
- await expect(comboboxFastlistWrapperList).toHaveAttribute(
32
- 'aria-label',
33
- 'Combobox fast list wrapper with custom attributes',
34
- );
35
- await expect(comboboxMenuItemContent).toHaveAttribute('data-testid', 'custom-menu-item-content-wrapper-0');
36
- await expect(comboboxMenuItemLabel).toHaveAttribute(
37
- 'aria-label',
38
- 'Custom Luke Skywalker too long this text is super long',
39
- );
20
+ const comboboxFastlistWrapperList = await DSComboboxSingleCO.getFastListSlot();
21
+ const comboboxMenuItemLabel = await DSComboboxSingleCO.getComboboxMenuItemSlotByIndex(0);
22
+ const comboboxSectionLabel = await DSComboboxSingleCO.getComboboxSectionLabelByIndex(0);
23
+ const comboboxSectionWrapper = await DSComboboxSingleCO.getComboboxSectionWrapperSlotByIndex(0);
24
+ await expect(comboboxRootSlot).toHaveAttribute('aria-label', 'root aria');
25
+ await expect(comboboxInputWrapperSlot).toHaveAttribute('aria-label', 'inputwrapper aria');
26
+ await expect(comboboxInputSlot).toHaveAttribute('aria-label', 'input aria');
27
+ await expect(comboboxDropdownButtonSlot).toHaveAttribute('aria-label', 'ddbutton aria');
28
+ await expect(comboboxFastlistWrapperList).toHaveAttribute('aria-label', 'fastlist aria');
29
+ await expect(comboboxMenuItemLabel).toHaveAttribute('aria-label', 'singlemenuitem aria');
30
+ await expect(comboboxSectionLabel).toHaveAttribute('aria-label', 'sectionlabel aria');
31
+ await expect(comboboxSectionWrapper).toHaveAttribute('aria-label', 'sectionwrapper aria');
32
+ });
33
+ it('02: should have custom data-* for each slot', async () => {
34
+ const comboboxRootSlot = await DSComboboxSingleCO.getComboboxRootSlot();
35
+ const comboboxInputWrapperSlot = await DSComboboxSingleCO.getComboboxInputWrapperSlot();
36
+ const comboboxInputSlot = await DSComboboxSingleCO.getComboboxInputSlot();
37
+ const comboboxDropdownButtonSlot = await DSComboboxSingleCO.getComboboxDropDownMenuBtnSlot();
38
+ const comboboxFastlistWrapperList = await DSComboboxSingleCO.getFastListSlot();
39
+ const comboboxMenuItemLabel = await DSComboboxSingleCO.getComboboxMenuItemSlotByIndex(0);
40
+ const comboboxSectionLabel = await DSComboboxSingleCO.getComboboxSectionLabelByIndex(0);
41
+ const comboboxSectionWrapper = await DSComboboxSingleCO.getComboboxSectionWrapperSlotByIndex(0);
42
+ await expect(comboboxRootSlot).toHaveAttribute('data-testid', 'root data');
43
+ await expect(comboboxInputWrapperSlot).toHaveAttribute('data-testid', 'inputwrapper data');
44
+ await expect(comboboxInputSlot).toHaveAttribute('data-testid', 'input data');
45
+ await expect(comboboxDropdownButtonSlot).toHaveAttribute('data-testid', 'ddbutton data');
46
+ await expect(comboboxFastlistWrapperList).toHaveAttribute('data-testid', 'fastlist data');
47
+ await expect(comboboxMenuItemLabel).toHaveAttribute('data-testid', 'singlemenuitem data');
48
+ await expect(comboboxSectionLabel).toHaveAttribute('data-testid', 'sectionlabel data');
49
+ await expect(comboboxSectionWrapper).toHaveAttribute('data-testid', 'sectionwrapper data');
50
+ });
51
+ it('03: should have custom lang for each slot', async () => {
52
+ const comboboxRootSlot = await DSComboboxSingleCO.getComboboxRootSlot();
53
+ const comboboxInputWrapperSlot = await DSComboboxSingleCO.getComboboxInputWrapperSlot();
54
+ const comboboxInputSlot = await DSComboboxSingleCO.getComboboxInputSlot();
55
+ const comboboxDropdownButtonSlot = await DSComboboxSingleCO.getComboboxDropDownMenuBtnSlot();
56
+ const comboboxFastlistWrapperList = await DSComboboxSingleCO.getFastListSlot();
57
+ const comboboxMenuItemLabel = await DSComboboxSingleCO.getComboboxMenuItemSlotByIndex(0);
58
+ const comboboxSectionLabel = await DSComboboxSingleCO.getComboboxSectionLabelByIndex(0);
59
+ const comboboxSectionWrapper = await DSComboboxSingleCO.getComboboxSectionWrapperSlotByIndex(0);
60
+ await expect(comboboxRootSlot).toHaveAttribute('lang', 'ja');
61
+ await expect(comboboxInputWrapperSlot).toHaveAttribute('lang', 'it');
62
+ await expect(comboboxInputSlot).toHaveAttribute('lang', 'de');
63
+ await expect(comboboxDropdownButtonSlot).toHaveAttribute('lang', 'fr');
64
+ await expect(comboboxFastlistWrapperList).toHaveAttribute('lang', 'es');
65
+ await expect(comboboxMenuItemLabel).toHaveAttribute('lang', 'pt');
66
+ await expect(comboboxSectionLabel).toHaveAttribute('lang', 'zh');
67
+ await expect(comboboxSectionWrapper).toHaveAttribute('lang', 'ru');
40
68
  });
41
69
  });
42
70
 
43
- describe('PUI-16559 - ComboboxSingle:: Slots - loading advanced customization', () => {
71
+ describe('PUI-16559 - ComboboxSingle:: Slots - Loading Indicator -Func', () => {
44
72
  before('loading page', async () => {
45
- const errorOnGo = await DSComboboxSingleCO.loadingAdvancedCustomizationTest.go();
73
+ const errorOnGo = await DSComboboxSingleCO.loadingIndicatorSlotsTest.go();
46
74
  if (errorOnGo) throw errorOnGo;
47
75
  });
48
- it('01: should have custom data-* and aria-*', async () => {
49
- const combobox = await DSComboboxSingleCO.getCombobox();
76
+ it('01: should have custom data-*, aria-* and lang for loading indicator specific slots', async () => {
77
+ const combobox = await DSComboboxSingleCO.getComboboxRootSlot();
50
78
  await combobox.click();
51
79
  const dsComboboxLoadingIndicator = await DSComboboxSingleCO.getComboboxLoadingIndicator();
52
-
53
- await expect(dsComboboxLoadingIndicator).toHaveAttribute('aria-label', 'Loading characters...');
80
+ await expect(dsComboboxLoadingIndicator).toHaveAttribute('aria-label', 'loadingindicator aria');
81
+ await expect(dsComboboxLoadingIndicator).toHaveAttribute('data-testid', 'loadingindicator data');
82
+ await expect(dsComboboxLoadingIndicator).toHaveAttribute('lang', 'it');
54
83
  });
55
84
  });
56
85
 
57
- describe('PUI-16560 - ComboboxSingle:: Slots - skeleton advanced customization', () => {
86
+ describe('PUI-16560 - ComboboxSingle:: Slots - Skeleton -Func', () => {
58
87
  before('loading page', async () => {
59
- const errorOnGo = await DSComboboxSingleCO.skeletonAdvancedCustomizationTest.go();
88
+ const errorOnGo = await DSComboboxSingleCO.skeletonSlotsTest.go();
60
89
  if (errorOnGo) throw errorOnGo;
61
90
  });
62
- it('01: should have custom data-* and aria-*', async () => {
63
- const combobox = await DSComboboxSingleCO.getCombobox();
91
+ it('01: should have custom data-*, aria-* and lang for skeleton specific slots', async () => {
92
+ const combobox = await DSComboboxSingleCO.getComboboxRootSlot();
64
93
  await combobox.click();
65
94
  const comboboxSkeleton = await DSComboboxSingleCO.getComboboxSkeletonMenuItem();
66
-
67
- await expect(comboboxSkeleton).toHaveAttribute('data-testid', 'ds-form-combobox-skeleton-menu-item');
95
+ await expect(comboboxSkeleton).toHaveAttribute('aria-label', 'skeleton aria');
96
+ await expect(comboboxSkeleton).toHaveAttribute('data-testid', 'skeleton data');
97
+ await expect(comboboxSkeleton).toHaveAttribute('lang', 'ja');
68
98
  });
69
99
  });
70
100
  }
@@ -0,0 +1,53 @@
1
+ /* eslint-disable max-lines */
2
+ import DSComboboxSingleCO from '../DSComboboxSingleCO';
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-17270 - ComboboxSingle:: Slots - Controlled Menu and Sections -Visual', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSComboboxSingleCO.controlledMenuStateWithSectionsSlotsTest.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+ it('01: should display basic combobox single with customized slots', async () => {
16
+ await browser.eyesOpen();
17
+ const combobox = await DSComboboxSingleCO.getComboboxRootSlot();
18
+ await combobox.waitForDisplayed();
19
+ const snapshot = await browser.eyesCheckSnapshot(DSComboboxSingleCO.snapshotPath('combo-single-slots-basic'));
20
+ await expect(snapshot).toEqual(0);
21
+ });
22
+ });
23
+
24
+ describe('PUI-17271 - ComboboxSingle:: Slots - Loading Indicator -Visual', () => {
25
+ before('loading page', async () => {
26
+ const errorOnGo = await DSComboboxSingleCO.loadingIndicatorSlotsTest.go();
27
+ if (errorOnGo) throw errorOnGo;
28
+ });
29
+ it('01: should display combobox single with loading indicator with customized slots', async () => {
30
+ await browser.eyesOpen();
31
+ const combobox = await DSComboboxSingleCO.getComboboxRootSlot();
32
+ await combobox.click();
33
+ const snapshot = await browser.eyesCheckSnapshot(
34
+ DSComboboxSingleCO.snapshotPath('combo-single-slots-loading-indicator'),
35
+ );
36
+ await expect(snapshot).toEqual(0);
37
+ });
38
+ });
39
+
40
+ describe('PUI-17273 - ComboboxSingle:: Slots - Skeleton -Visual', () => {
41
+ before('loading page', async () => {
42
+ const errorOnGo = await DSComboboxSingleCO.skeletonSlotsTest.go();
43
+ if (errorOnGo) throw errorOnGo;
44
+ });
45
+ it('01: should display basic combobox single with skeleton with customized slots', async () => {
46
+ await browser.eyesOpen();
47
+ const combobox = await DSComboboxSingleCO.getComboboxRootSlot();
48
+ await combobox.click();
49
+ const snapshot = await browser.eyesCheckSnapshot(DSComboboxSingleCO.snapshotPath('combo-single-slots-skeleton'));
50
+ await expect(snapshot).toEqual(0);
51
+ });
52
+ });
53
+ }
@@ -142,10 +142,13 @@ if (
142
142
  const result = await axeCoreCheck();
143
143
  expect(result.length).toBe(0);
144
144
  });
145
- it('02: should have required attribute for required formLayoutBlock label', async () => {
145
+ it('02: should have required attribute and aria-hidden for required formLayoutBlock label', async () => {
146
146
  const formLayout = await DSFormLayoutBlockItemCO.getBlockContainersByIndex(0);
147
147
  await formLayout.waitForDisplayed();
148
+ const star = await DSFormLayoutBlockItemCO.getRequiredStarFromindex();
149
+ const ariaHidden = await star.getAttribute('aria-hidden');
148
150
  const isRequired = await formLayout.getAttribute('required');
151
+ expect(ariaHidden).toEqual('true');
149
152
  expect(isRequired).toBe('true');
150
153
  });
151
154
  });
@@ -43,6 +43,10 @@ export default class DSFormLayoutBlockItemCO extends PageObject {
43
43
  return $$('[data-testid="ds-inputtext-input"]')[index];
44
44
  }
45
45
 
46
+ static async getRequiredStarFromIndex(index = 0) {
47
+ return $$('[data-testid="ds-formlayoutblockitem-mark"]')[index];
48
+ }
49
+
46
50
  static async getTextFocuseableByIndex(index = 0) {
47
51
  return $$(`[data-testid="ds-input-text-root"]`)[index];
48
52
  }
package/package.json CHANGED
@@ -1,194 +1,194 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "dimsum-e2e-tests",
4
- "version": "3.57.0-next.2",
4
+ "version": "3.57.0-next.3",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
- "@elliemae/ds-accessibility": "3.57.0-next.2",
8
- "@elliemae/ds-app-picker": "3.57.0-next.2",
9
- "@elliemae/ds-accordion": "3.57.0-next.2",
10
- "@elliemae/ds-backdrop": "3.57.0-next.2",
11
- "@elliemae/ds-basic": "3.57.0-next.2",
12
- "@elliemae/ds-banner": "3.57.0-next.2",
13
- "@elliemae/ds-breadcrumb": "3.57.0-next.2",
14
- "@elliemae/ds-button-group": "3.57.0-next.2",
15
- "@elliemae/ds-button": "3.57.0-next.2",
16
- "@elliemae/ds-button-v1": "3.57.0-next.2",
17
- "@elliemae/ds-card": "3.57.0-next.2",
18
- "@elliemae/ds-card-navigation": "3.57.0-next.2",
19
- "@elliemae/ds-card-array": "3.57.0-next.2",
20
- "@elliemae/ds-button-v2": "3.57.0-next.2",
21
- "@elliemae/ds-card-v1-detail": "3.57.0-next.2",
22
- "@elliemae/ds-card-v1": "3.57.0-next.2",
23
- "@elliemae/ds-card-v2": "3.57.0-next.2",
24
- "@elliemae/ds-card-v2-action-addon": "3.57.0-next.2",
25
- "@elliemae/ds-card-v2-group": "3.57.0-next.2",
26
- "@elliemae/ds-card-v3": "3.57.0-next.2",
27
- "@elliemae/ds-card-v3-poc": "3.57.0-next.2",
28
- "@elliemae/ds-chat-bubble": "3.57.0-next.2",
29
- "@elliemae/ds-chat-card": "3.57.0-next.2",
30
- "@elliemae/ds-chat-empty-state": "3.57.0-next.2",
31
- "@elliemae/ds-chat-container": "3.57.0-next.2",
32
- "@elliemae/ds-chat": "3.57.0-next.2",
33
- "@elliemae/ds-chat-container-header": "3.57.0-next.2",
34
- "@elliemae/ds-chat-floating-button": "3.57.0-next.2",
35
- "@elliemae/ds-chat-message-delimeter": "3.57.0-next.2",
36
- "@elliemae/ds-chat-sidebar": "3.57.0-next.2",
37
- "@elliemae/ds-chat-tile": "3.57.0-next.2",
38
- "@elliemae/ds-chat-system-message": "3.57.0-next.2",
39
- "@elliemae/ds-chip": "3.57.0-next.2",
40
- "@elliemae/ds-classnames": "3.57.0-next.2",
41
- "@elliemae/ds-circular-progress-indicator": "3.57.0-next.2",
42
- "@elliemae/ds-codeeditor": "3.57.0-next.2",
43
- "@elliemae/ds-comments": "3.57.0-next.2",
44
- "@elliemae/ds-controlled-form": "3.57.0-next.2",
45
- "@elliemae/ds-data-table": "3.57.0-next.2",
46
- "@elliemae/ds-csv-converter": "3.57.0-next.2",
47
- "@elliemae/ds-data-table-action-cell": "3.57.0-next.2",
48
- "@elliemae/ds-data-table-cell": "3.57.0-next.2",
49
- "@elliemae/ds-common": "3.57.0-next.2",
50
- "@elliemae/ds-data-table-cell-header": "3.57.0-next.2",
51
- "@elliemae/ds-data-table-expand-cell": "3.57.0-next.2",
52
- "@elliemae/ds-data-table-filters": "3.57.0-next.2",
53
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.57.0-next.2",
54
- "@elliemae/ds-data-table-single-select-cell": "3.57.0-next.2",
55
- "@elliemae/ds-data-table-multi-select-cell": "3.57.0-next.2",
56
- "@elliemae/ds-datagrids": "3.57.0-next.2",
57
- "@elliemae/ds-dataviz": "3.57.0-next.2",
58
- "@elliemae/ds-dataviz-pie": "3.57.0-next.2",
59
- "@elliemae/ds-date-picker": "3.57.0-next.2",
60
- "@elliemae/ds-date-range-picker": "3.57.0-next.2",
61
- "@elliemae/ds-date-range-selector": "3.57.0-next.2",
62
- "@elliemae/ds-date-time-picker": "3.57.0-next.2",
63
- "@elliemae/ds-decision-graph": "3.57.0-next.2",
64
- "@elliemae/ds-date-time-recurrence-picker": "3.57.0-next.2",
65
- "@elliemae/ds-dialog": "3.57.0-next.2",
66
- "@elliemae/ds-dropdownmenu": "3.57.0-next.2",
67
- "@elliemae/ds-drag-and-drop": "3.57.0-next.2",
68
- "@elliemae/ds-dropdownmenu-v2": "3.57.0-next.2",
69
- "@elliemae/ds-fast-list": "3.57.0-next.2",
70
- "@elliemae/ds-floating-context": "3.57.0-next.2",
71
- "@elliemae/ds-filterbar": "3.57.0-next.2",
72
- "@elliemae/ds-dropzone": "3.57.0-next.2",
73
- "@elliemae/ds-form": "3.57.0-next.2",
74
- "@elliemae/ds-form-checkbox": "3.57.0-next.2",
75
- "@elliemae/ds-form-date-range-picker": "3.57.0-next.2",
76
- "@elliemae/ds-form-combobox": "3.57.0-next.2",
77
- "@elliemae/ds-form-date-time-picker": "3.57.0-next.2",
78
- "@elliemae/ds-form-input-text": "3.57.0-next.2",
79
- "@elliemae/ds-form-helpers-mask-hooks": "3.57.0-next.2",
80
- "@elliemae/ds-form-input-textarea": "3.57.0-next.2",
81
- "@elliemae/ds-form-layout-blocks": "3.57.0-next.2",
82
- "@elliemae/ds-form-layout-input-group": "3.57.0-next.2",
83
- "@elliemae/ds-form-layout-label": "3.57.0-next.2",
84
- "@elliemae/ds-form-multi-combobox": "3.57.0-next.2",
85
- "@elliemae/ds-form-layout-autocomplete": "3.57.0-next.2",
86
- "@elliemae/ds-form-native-select": "3.57.0-next.2",
87
- "@elliemae/ds-form-radio": "3.57.0-next.2",
88
- "@elliemae/ds-form-select": "3.57.0-next.2",
89
- "@elliemae/ds-form-single-combobox": "3.57.0-next.2",
90
- "@elliemae/ds-form-toggle": "3.57.0-next.2",
91
- "@elliemae/ds-group-box": "3.57.0-next.2",
92
- "@elliemae/ds-global-header": "3.57.0-next.2",
93
- "@elliemae/ds-grid": "3.57.0-next.2",
94
- "@elliemae/ds-hidden": "3.57.0-next.2",
95
- "@elliemae/ds-header": "3.57.0-next.2",
96
- "@elliemae/ds-hooks-focus-stack": "3.57.0-next.2",
97
- "@elliemae/ds-hooks-fontsize-detector": "3.57.0-next.2",
98
- "@elliemae/ds-hooks-focus-trap": "3.57.0-next.2",
99
- "@elliemae/ds-hooks-fontsize-media": "3.57.0-next.2",
100
- "@elliemae/ds-hooks-headless-tooltip": "3.57.0-next.2",
101
- "@elliemae/ds-hooks-is-mobile": "3.57.0-next.2",
102
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.57.0-next.2",
103
- "@elliemae/ds-hooks-keyboard-navigation": "3.57.0-next.2",
104
- "@elliemae/ds-hooks-on-first-focus-in": "3.57.0-next.2",
105
- "@elliemae/ds-icon": "3.57.0-next.2",
106
- "@elliemae/ds-hooks-on-blur-out": "3.57.0-next.2",
107
- "@elliemae/ds-icons": "3.57.0-next.2",
108
- "@elliemae/ds-imagelibrarymodal": "3.57.0-next.2",
109
- "@elliemae/ds-image": "3.57.0-next.2",
110
- "@elliemae/ds-indeterminate-progress-indicator": "3.57.0-next.2",
111
- "@elliemae/ds-label-value": "3.57.0-next.2",
112
- "@elliemae/ds-layout-provider": "3.57.0-next.2",
113
- "@elliemae/ds-left-navigation": "3.57.0-next.2",
114
- "@elliemae/ds-list-section-header": "3.57.0-next.2",
115
- "@elliemae/ds-menu": "3.57.0-next.2",
116
- "@elliemae/ds-loading-indicator": "3.57.0-next.2",
117
- "@elliemae/ds-menu-button": "3.57.0-next.2",
118
- "@elliemae/ds-menu-items": "3.57.0-next.2",
119
- "@elliemae/ds-menu-items-action": "3.57.0-next.2",
120
- "@elliemae/ds-menu-items-commons": "3.57.0-next.2",
121
- "@elliemae/ds-menu-items-single": "3.57.0-next.2",
122
- "@elliemae/ds-menu-items-multi": "3.57.0-next.2",
123
- "@elliemae/ds-menu-items-separator": "3.57.0-next.2",
124
- "@elliemae/ds-menu-items-section": "3.57.0-next.2",
125
- "@elliemae/ds-menu-items-skeleton": "3.57.0-next.2",
126
- "@elliemae/ds-menu-items-single-with-submenu": "3.57.0-next.2",
127
- "@elliemae/ds-menu-items-submenu": "3.57.0-next.2",
128
- "@elliemae/ds-mini-toolbar": "3.57.0-next.2",
129
- "@elliemae/ds-mobile": "3.57.0-next.2",
130
- "@elliemae/ds-menu-tree-item": "3.57.0-next.2",
131
- "@elliemae/ds-modal": "3.57.0-next.2",
132
- "@elliemae/ds-modal-slide": "3.57.0-next.2",
133
- "@elliemae/ds-notification-badge": "3.57.0-next.2",
134
- "@elliemae/ds-overlay": "3.57.0-next.2",
135
- "@elliemae/ds-number-range-field": "3.57.0-next.2",
136
- "@elliemae/ds-page-header-v1": "3.57.0-next.2",
137
- "@elliemae/ds-page-header-v2": "3.57.0-next.2",
138
- "@elliemae/ds-page-header": "3.57.0-next.2",
139
- "@elliemae/ds-page-layout": "3.57.0-next.2",
140
- "@elliemae/ds-page-number": "3.57.0-next.2",
141
- "@elliemae/ds-pagination": "3.57.0-next.2",
142
- "@elliemae/ds-pills": "3.57.0-next.2",
143
- "@elliemae/ds-popper": "3.57.0-next.2",
144
- "@elliemae/ds-pills-v2": "3.57.0-next.2",
145
- "@elliemae/ds-popover": "3.57.0-next.2",
146
- "@elliemae/ds-portal": "3.57.0-next.2",
147
- "@elliemae/ds-progress-indicator": "3.57.0-next.2",
148
- "@elliemae/ds-popperjs": "3.57.0-next.2",
149
- "@elliemae/ds-props-helpers": "3.57.0-next.2",
150
- "@elliemae/ds-query-builder": "3.57.0-next.2",
151
- "@elliemae/ds-resizeable-container": "3.57.0-next.2",
152
- "@elliemae/ds-read-more": "3.57.0-next.2",
153
- "@elliemae/ds-ribbon": "3.57.0-next.2",
154
- "@elliemae/ds-scrollable-container": "3.57.0-next.2",
155
- "@elliemae/ds-search-field": "3.57.0-next.2",
156
- "@elliemae/ds-separator": "3.57.0-next.2",
157
- "@elliemae/ds-shared": "3.57.0-next.2",
158
- "@elliemae/ds-shuttle": "3.57.0-next.2",
159
- "@elliemae/ds-side-panel": "3.57.0-next.2",
160
- "@elliemae/ds-shuttle-v2": "3.57.0-next.2",
161
- "@elliemae/ds-side-panel-header": "3.57.0-next.2",
162
- "@elliemae/ds-skeleton": "3.57.0-next.2",
163
- "@elliemae/ds-slider": "3.57.0-next.2",
164
- "@elliemae/ds-slider-v2": "3.57.0-next.2",
165
- "@elliemae/ds-square-indicator": "3.57.0-next.2",
166
- "@elliemae/ds-spinner": "3.57.0-next.2",
167
- "@elliemae/ds-svg": "3.57.0-next.2",
168
- "@elliemae/ds-system": "3.57.0-next.2",
169
- "@elliemae/ds-stepper": "3.57.0-next.2",
170
- "@elliemae/ds-tabs": "3.57.0-next.2",
171
- "@elliemae/ds-test-utils": "3.57.0-next.2",
172
- "@elliemae/ds-time-picker": "3.57.0-next.2",
173
- "@elliemae/ds-text-wrapper": "3.57.0-next.2",
174
- "@elliemae/ds-toast": "3.57.0-next.2",
175
- "@elliemae/ds-toolbar": "3.57.0-next.2",
176
- "@elliemae/ds-toolbar-v2": "3.57.0-next.2",
177
- "@elliemae/ds-toolbar-v1": "3.57.0-next.2",
178
- "@elliemae/ds-tooltip-v3": "3.57.0-next.2",
179
- "@elliemae/ds-tree-model": "3.57.0-next.2",
180
- "@elliemae/ds-treeview": "3.57.0-next.2",
181
- "@elliemae/ds-truncated-expandable-text": "3.57.0-next.2",
182
- "@elliemae/ds-transition": "3.57.0-next.2",
183
- "@elliemae/ds-truncated-tooltip-text": "3.57.0-next.2",
184
- "@elliemae/ds-typescript-helpers": "3.57.0-next.2",
185
- "@elliemae/ds-uploader": "3.57.0-next.2",
186
- "@elliemae/ds-typography": "3.57.0-next.2",
187
- "@elliemae/ds-wizard": "3.57.0-next.2",
188
- "@elliemae/ds-wysiwygeditor": "3.57.0-next.2",
189
- "@elliemae/ds-virtual-list": "3.57.0-next.2",
190
- "@elliemae/ds-zipcode-search": "3.57.0-next.2",
191
- "@elliemae/ds-zoom": "3.57.0-next.2",
192
- "@elliemae/ds-zustand-helpers": "3.57.0-next.2"
7
+ "@elliemae/ds-accessibility": "3.57.0-next.3",
8
+ "@elliemae/ds-accordion": "3.57.0-next.3",
9
+ "@elliemae/ds-app-picker": "3.57.0-next.3",
10
+ "@elliemae/ds-backdrop": "3.57.0-next.3",
11
+ "@elliemae/ds-banner": "3.57.0-next.3",
12
+ "@elliemae/ds-basic": "3.57.0-next.3",
13
+ "@elliemae/ds-breadcrumb": "3.57.0-next.3",
14
+ "@elliemae/ds-button": "3.57.0-next.3",
15
+ "@elliemae/ds-button-group": "3.57.0-next.3",
16
+ "@elliemae/ds-button-v1": "3.57.0-next.3",
17
+ "@elliemae/ds-button-v2": "3.57.0-next.3",
18
+ "@elliemae/ds-card": "3.57.0-next.3",
19
+ "@elliemae/ds-card-navigation": "3.57.0-next.3",
20
+ "@elliemae/ds-card-v1": "3.57.0-next.3",
21
+ "@elliemae/ds-card-v1-detail": "3.57.0-next.3",
22
+ "@elliemae/ds-card-array": "3.57.0-next.3",
23
+ "@elliemae/ds-card-v2": "3.57.0-next.3",
24
+ "@elliemae/ds-card-v2-group": "3.57.0-next.3",
25
+ "@elliemae/ds-card-v3": "3.57.0-next.3",
26
+ "@elliemae/ds-card-v2-action-addon": "3.57.0-next.3",
27
+ "@elliemae/ds-card-v3-poc": "3.57.0-next.3",
28
+ "@elliemae/ds-chat": "3.57.0-next.3",
29
+ "@elliemae/ds-chat-bubble": "3.57.0-next.3",
30
+ "@elliemae/ds-chat-card": "3.57.0-next.3",
31
+ "@elliemae/ds-chat-container": "3.57.0-next.3",
32
+ "@elliemae/ds-chat-container-header": "3.57.0-next.3",
33
+ "@elliemae/ds-chat-empty-state": "3.57.0-next.3",
34
+ "@elliemae/ds-chat-floating-button": "3.57.0-next.3",
35
+ "@elliemae/ds-chat-message-delimeter": "3.57.0-next.3",
36
+ "@elliemae/ds-chat-sidebar": "3.57.0-next.3",
37
+ "@elliemae/ds-chat-system-message": "3.57.0-next.3",
38
+ "@elliemae/ds-chat-tile": "3.57.0-next.3",
39
+ "@elliemae/ds-chip": "3.57.0-next.3",
40
+ "@elliemae/ds-circular-progress-indicator": "3.57.0-next.3",
41
+ "@elliemae/ds-classnames": "3.57.0-next.3",
42
+ "@elliemae/ds-common": "3.57.0-next.3",
43
+ "@elliemae/ds-comments": "3.57.0-next.3",
44
+ "@elliemae/ds-codeeditor": "3.57.0-next.3",
45
+ "@elliemae/ds-controlled-form": "3.57.0-next.3",
46
+ "@elliemae/ds-csv-converter": "3.57.0-next.3",
47
+ "@elliemae/ds-data-table": "3.57.0-next.3",
48
+ "@elliemae/ds-data-table-action-cell": "3.57.0-next.3",
49
+ "@elliemae/ds-data-table-cell": "3.57.0-next.3",
50
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.57.0-next.3",
51
+ "@elliemae/ds-data-table-expand-cell": "3.57.0-next.3",
52
+ "@elliemae/ds-data-table-single-select-cell": "3.57.0-next.3",
53
+ "@elliemae/ds-data-table-cell-header": "3.57.0-next.3",
54
+ "@elliemae/ds-data-table-filters": "3.57.0-next.3",
55
+ "@elliemae/ds-data-table-multi-select-cell": "3.57.0-next.3",
56
+ "@elliemae/ds-dataviz": "3.57.0-next.3",
57
+ "@elliemae/ds-datagrids": "3.57.0-next.3",
58
+ "@elliemae/ds-date-picker": "3.57.0-next.3",
59
+ "@elliemae/ds-dataviz-pie": "3.57.0-next.3",
60
+ "@elliemae/ds-date-time-picker": "3.57.0-next.3",
61
+ "@elliemae/ds-date-range-selector": "3.57.0-next.3",
62
+ "@elliemae/ds-date-range-picker": "3.57.0-next.3",
63
+ "@elliemae/ds-decision-graph": "3.57.0-next.3",
64
+ "@elliemae/ds-date-time-recurrence-picker": "3.57.0-next.3",
65
+ "@elliemae/ds-dialog": "3.57.0-next.3",
66
+ "@elliemae/ds-drag-and-drop": "3.57.0-next.3",
67
+ "@elliemae/ds-dropdownmenu": "3.57.0-next.3",
68
+ "@elliemae/ds-dropdownmenu-v2": "3.57.0-next.3",
69
+ "@elliemae/ds-dropzone": "3.57.0-next.3",
70
+ "@elliemae/ds-fast-list": "3.57.0-next.3",
71
+ "@elliemae/ds-floating-context": "3.57.0-next.3",
72
+ "@elliemae/ds-filterbar": "3.57.0-next.3",
73
+ "@elliemae/ds-form": "3.57.0-next.3",
74
+ "@elliemae/ds-form-date-range-picker": "3.57.0-next.3",
75
+ "@elliemae/ds-form-combobox": "3.57.0-next.3",
76
+ "@elliemae/ds-form-checkbox": "3.57.0-next.3",
77
+ "@elliemae/ds-form-input-textarea": "3.57.0-next.3",
78
+ "@elliemae/ds-form-date-time-picker": "3.57.0-next.3",
79
+ "@elliemae/ds-form-input-text": "3.57.0-next.3",
80
+ "@elliemae/ds-form-layout-autocomplete": "3.57.0-next.3",
81
+ "@elliemae/ds-form-helpers-mask-hooks": "3.57.0-next.3",
82
+ "@elliemae/ds-form-layout-blocks": "3.57.0-next.3",
83
+ "@elliemae/ds-form-layout-label": "3.57.0-next.3",
84
+ "@elliemae/ds-form-layout-input-group": "3.57.0-next.3",
85
+ "@elliemae/ds-form-multi-combobox": "3.57.0-next.3",
86
+ "@elliemae/ds-form-select": "3.57.0-next.3",
87
+ "@elliemae/ds-form-native-select": "3.57.0-next.3",
88
+ "@elliemae/ds-form-radio": "3.57.0-next.3",
89
+ "@elliemae/ds-form-single-combobox": "3.57.0-next.3",
90
+ "@elliemae/ds-form-toggle": "3.57.0-next.3",
91
+ "@elliemae/ds-grid": "3.57.0-next.3",
92
+ "@elliemae/ds-global-header": "3.57.0-next.3",
93
+ "@elliemae/ds-group-box": "3.57.0-next.3",
94
+ "@elliemae/ds-header": "3.57.0-next.3",
95
+ "@elliemae/ds-hidden": "3.57.0-next.3",
96
+ "@elliemae/ds-hooks-focus-stack": "3.57.0-next.3",
97
+ "@elliemae/ds-hooks-focus-trap": "3.57.0-next.3",
98
+ "@elliemae/ds-hooks-fontsize-media": "3.57.0-next.3",
99
+ "@elliemae/ds-hooks-fontsize-detector": "3.57.0-next.3",
100
+ "@elliemae/ds-hooks-headless-tooltip": "3.57.0-next.3",
101
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.57.0-next.3",
102
+ "@elliemae/ds-hooks-is-mobile": "3.57.0-next.3",
103
+ "@elliemae/ds-hooks-keyboard-navigation": "3.57.0-next.3",
104
+ "@elliemae/ds-hooks-on-first-focus-in": "3.57.0-next.3",
105
+ "@elliemae/ds-image": "3.57.0-next.3",
106
+ "@elliemae/ds-hooks-on-blur-out": "3.57.0-next.3",
107
+ "@elliemae/ds-icon": "3.57.0-next.3",
108
+ "@elliemae/ds-icons": "3.57.0-next.3",
109
+ "@elliemae/ds-indeterminate-progress-indicator": "3.57.0-next.3",
110
+ "@elliemae/ds-imagelibrarymodal": "3.57.0-next.3",
111
+ "@elliemae/ds-label-value": "3.57.0-next.3",
112
+ "@elliemae/ds-left-navigation": "3.57.0-next.3",
113
+ "@elliemae/ds-list-section-header": "3.57.0-next.3",
114
+ "@elliemae/ds-layout-provider": "3.57.0-next.3",
115
+ "@elliemae/ds-loading-indicator": "3.57.0-next.3",
116
+ "@elliemae/ds-menu-button": "3.57.0-next.3",
117
+ "@elliemae/ds-menu": "3.57.0-next.3",
118
+ "@elliemae/ds-menu-items": "3.57.0-next.3",
119
+ "@elliemae/ds-menu-items-action": "3.57.0-next.3",
120
+ "@elliemae/ds-menu-items-multi": "3.57.0-next.3",
121
+ "@elliemae/ds-menu-items-section": "3.57.0-next.3",
122
+ "@elliemae/ds-menu-items-commons": "3.57.0-next.3",
123
+ "@elliemae/ds-menu-items-separator": "3.57.0-next.3",
124
+ "@elliemae/ds-menu-items-single": "3.57.0-next.3",
125
+ "@elliemae/ds-menu-items-single-with-submenu": "3.57.0-next.3",
126
+ "@elliemae/ds-menu-items-submenu": "3.57.0-next.3",
127
+ "@elliemae/ds-menu-items-skeleton": "3.57.0-next.3",
128
+ "@elliemae/ds-menu-tree-item": "3.57.0-next.3",
129
+ "@elliemae/ds-modal": "3.57.0-next.3",
130
+ "@elliemae/ds-mini-toolbar": "3.57.0-next.3",
131
+ "@elliemae/ds-mobile": "3.57.0-next.3",
132
+ "@elliemae/ds-number-range-field": "3.57.0-next.3",
133
+ "@elliemae/ds-notification-badge": "3.57.0-next.3",
134
+ "@elliemae/ds-overlay": "3.57.0-next.3",
135
+ "@elliemae/ds-modal-slide": "3.57.0-next.3",
136
+ "@elliemae/ds-page-header": "3.57.0-next.3",
137
+ "@elliemae/ds-page-header-v1": "3.57.0-next.3",
138
+ "@elliemae/ds-page-header-v2": "3.57.0-next.3",
139
+ "@elliemae/ds-page-layout": "3.57.0-next.3",
140
+ "@elliemae/ds-pills": "3.57.0-next.3",
141
+ "@elliemae/ds-page-number": "3.57.0-next.3",
142
+ "@elliemae/ds-pagination": "3.57.0-next.3",
143
+ "@elliemae/ds-pills-v2": "3.57.0-next.3",
144
+ "@elliemae/ds-popper": "3.57.0-next.3",
145
+ "@elliemae/ds-popover": "3.57.0-next.3",
146
+ "@elliemae/ds-popperjs": "3.57.0-next.3",
147
+ "@elliemae/ds-progress-indicator": "3.57.0-next.3",
148
+ "@elliemae/ds-portal": "3.57.0-next.3",
149
+ "@elliemae/ds-props-helpers": "3.57.0-next.3",
150
+ "@elliemae/ds-query-builder": "3.57.0-next.3",
151
+ "@elliemae/ds-resizeable-container": "3.57.0-next.3",
152
+ "@elliemae/ds-read-more": "3.57.0-next.3",
153
+ "@elliemae/ds-search-field": "3.57.0-next.3",
154
+ "@elliemae/ds-scrollable-container": "3.57.0-next.3",
155
+ "@elliemae/ds-ribbon": "3.57.0-next.3",
156
+ "@elliemae/ds-separator": "3.57.0-next.3",
157
+ "@elliemae/ds-shared": "3.57.0-next.3",
158
+ "@elliemae/ds-side-panel": "3.57.0-next.3",
159
+ "@elliemae/ds-shuttle-v2": "3.57.0-next.3",
160
+ "@elliemae/ds-shuttle": "3.57.0-next.3",
161
+ "@elliemae/ds-skeleton": "3.57.0-next.3",
162
+ "@elliemae/ds-side-panel-header": "3.57.0-next.3",
163
+ "@elliemae/ds-slider": "3.57.0-next.3",
164
+ "@elliemae/ds-spinner": "3.57.0-next.3",
165
+ "@elliemae/ds-slider-v2": "3.57.0-next.3",
166
+ "@elliemae/ds-svg": "3.57.0-next.3",
167
+ "@elliemae/ds-square-indicator": "3.57.0-next.3",
168
+ "@elliemae/ds-stepper": "3.57.0-next.3",
169
+ "@elliemae/ds-system": "3.57.0-next.3",
170
+ "@elliemae/ds-test-utils": "3.57.0-next.3",
171
+ "@elliemae/ds-tabs": "3.57.0-next.3",
172
+ "@elliemae/ds-text-wrapper": "3.57.0-next.3",
173
+ "@elliemae/ds-toast": "3.57.0-next.3",
174
+ "@elliemae/ds-time-picker": "3.57.0-next.3",
175
+ "@elliemae/ds-toolbar": "3.57.0-next.3",
176
+ "@elliemae/ds-toolbar-v2": "3.57.0-next.3",
177
+ "@elliemae/ds-toolbar-v1": "3.57.0-next.3",
178
+ "@elliemae/ds-tooltip-v3": "3.57.0-next.3",
179
+ "@elliemae/ds-truncated-expandable-text": "3.57.0-next.3",
180
+ "@elliemae/ds-treeview": "3.57.0-next.3",
181
+ "@elliemae/ds-transition": "3.57.0-next.3",
182
+ "@elliemae/ds-tree-model": "3.57.0-next.3",
183
+ "@elliemae/ds-typescript-helpers": "3.57.0-next.3",
184
+ "@elliemae/ds-truncated-tooltip-text": "3.57.0-next.3",
185
+ "@elliemae/ds-typography": "3.57.0-next.3",
186
+ "@elliemae/ds-virtual-list": "3.57.0-next.3",
187
+ "@elliemae/ds-uploader": "3.57.0-next.3",
188
+ "@elliemae/ds-wizard": "3.57.0-next.3",
189
+ "@elliemae/ds-wysiwygeditor": "3.57.0-next.3",
190
+ "@elliemae/ds-zipcode-search": "3.57.0-next.3",
191
+ "@elliemae/ds-zoom": "3.57.0-next.3",
192
+ "@elliemae/ds-zustand-helpers": "3.57.0-next.3"
193
193
  }
194
194
  }
package/paths.js CHANGED
@@ -313,6 +313,7 @@ export const PATH_E2E_VIRTUAL_LIST = `${PATH_E2E}/Virtual-list`;
313
313
  export const PATH_E2E_COMBOBOX = `${PATH_E2E_END_OF_LIFE}/ComboboxV2`;
314
314
  export const PATH_E2E_COMBOBOX_V3 = `${PATH_E2E}/ComboboxV3`;
315
315
  export const PATH_E2E_COMBOBOX_MULTI = `${PATH_E2E}/ComboboxMulti`;
316
+ export const PATH_E2E_COMBOBOX_MULTI_SLOTS = `${PATH_E2E}/ComboboxMulti/Slots`;
316
317
  export const PATH_E2E_COMBOBOX_SINGLE = `${PATH_E2E}/ComboboxSingle`;
317
318
  export const PATH_E2E_COMBOBOX_SINGLE_SLOTS = `${PATH_E2E}/ComboboxSingle/Slots`;
318
319
  export const PATH_E2E_CONTROLLEDFORM = `${PATH_E2E}/Controlled-form`;