dimsum-e2e-tests 3.60.0-next.26 → 3.60.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,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.60.0-next.28 (2026-02-20)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-left-navigation:: add functional test for slots customization [PUI-15560](https://jira.elliemae.io/browse/PUI-15560) ([#7892](https://git.elliemae.io/platform-ui/dimsum/issues/7892)) ([6732509](https://git.elliemae.io/platform-ui/dimsum/commit/6732509aaaafeb3c3cc4f2e8e85986177b782c58))
11
+
12
+ ## 3.60.0-next.27 (2026-02-20)
13
+
14
+ ### Bug Fixes
15
+
16
+ - ds-tabs:: show outline in tabpanel ([b9db99f](https://git.elliemae.io/platform-ui/dimsum/commit/b9db99ff6878f67c06cb1abe0e813a85b3ce8dfe))
17
+
6
18
  ## 3.60.0-next.26 (2026-02-19)
7
19
 
8
20
  ### Features
@@ -5,7 +5,7 @@ import LeftNavCO from './LeftNavigationCO';
5
5
  import { mouseOver } from '../helpers';
6
6
 
7
7
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
8
- describe('PUI-6120 - LeftNavigation: expand and collapse behaviour', () => {
8
+ describe.only('PUI-6120 - LeftNavigation: expand and collapse behaviour', () => {
9
9
  before('loading page', async () => {
10
10
  const errorOnGo = await LeftNavCO.fullFeatures.go();
11
11
  if (errorOnGo) throw errorOnGo;
@@ -14,22 +14,41 @@ if (
14
14
  if (errorOnGo) throw errorOnGo;
15
15
  });
16
16
  it('01: leftnav collapsed - slots should have custom data-* and aria-*', async () => {
17
- const getLeftnavigationRootSlot = await LeftNavCO.getLeftnavigationRootSlot();
18
- const getLeftnavigationAreasContainerSlot = await LeftNavCO.getLeftnavigationAreasContainerSlot();
19
- const getLeftnavigationHeaderAreaSlot = await LeftNavCO.getLeftnavigationHeaderAreaSlot();
20
- const getLeftnavigationItemSlot = await LeftNavCO.getLeftnavigationItemSlot();
21
- const getLeftnavigationCollapsedContainerSlot = await LeftNavCO.getLeftnavigationCollapsedContainerSlot();
22
- const getLeftnavigationNotificationsContainerSlot =
23
- await LeftNavCO.getLeftnavigationNotificationsContainerSlot(0);
24
- const getLeftnavigationExceptionsIconSlot = await LeftNavCO.getLeftnavigationExceptionsIconSlot();
25
- const getLeftnavigationAlertsIconSlot = await LeftNavCO.getLeftnavigationAlertsIconSlot();
26
- const dsLeftnavigationMessagesIcon = await LeftNavCO.getLeftnavigationMessagesIconSlot();
27
- const getLeftnavigationItemBorderBottomSlot = await LeftNavCO.getLeftnavigationItemBorderBottomSlot();
28
- const getLeftnavigationBodyAreasContainerSlot = await LeftNavCO.getLeftnavigationBodyAreasContainerSlot();
29
- const getLeftnavigationBodyHeaderAreaSlot = await LeftNavCO.getLeftnavigationBodyHeaderAreaSlot();
30
- const getLeftnavigationBodyItemsAreaSlot = await LeftNavCO.getLeftnavigationBodyItemsAreaSlot();
31
- const getLeftnavigationFooterMenuSlot = await LeftNavCO.getLeftnavigationFooterMenuSlot();
32
- const getLeftnavigationFooterItemSlot = await LeftNavCO.getLeftnavigationFooterItemSlot();
17
+ const [
18
+ getLeftnavigationRootSlot,
19
+ getLeftnavigationAreasContainerSlot,
20
+ getLeftnavigationHeaderAreaSlot,
21
+ getLeftnavigationItemSlot,
22
+ getLeftnavigationCollapsedContainerSlot,
23
+ getLeftnavigationNotificationsContainerSlot,
24
+ getLeftnavigationExceptionsIconSlot,
25
+ getLeftnavigationAlertsIconSlot,
26
+ dsLeftnavigationMessagesIcon,
27
+ getLeftnavigationItemBorderBottomSlot,
28
+ getLeftnavigationBodyAreasContainerSlot,
29
+ getLeftnavigationBodyHeaderAreaSlot,
30
+ getLeftnavigationBodyItemsAreaSlot,
31
+ getLeftnavigationFooterMenuSlot,
32
+ getLeftnavigationFooterItemSlot,
33
+ getLeftnavigationNotificationsIconSlot,
34
+ ] = await Promise.all([
35
+ LeftNavCO.getLeftnavigationRootSlot(),
36
+ LeftNavCO.getLeftnavigationAreasContainerSlot(),
37
+ LeftNavCO.getLeftnavigationHeaderAreaSlot(),
38
+ LeftNavCO.getLeftnavigationItemSlot(),
39
+ LeftNavCO.getLeftnavigationCollapsedContainerSlot(),
40
+ LeftNavCO.getLeftnavigationNotificationsContainerSlot(0),
41
+ LeftNavCO.getLeftnavigationExceptionsIconSlot(),
42
+ LeftNavCO.getLeftnavigationAlertsIconSlot(),
43
+ LeftNavCO.getLeftnavigationMessagesIconSlot(),
44
+ LeftNavCO.getLeftnavigationItemBorderBottomSlot(),
45
+ LeftNavCO.getLeftnavigationBodyAreasContainerSlot(),
46
+ LeftNavCO.getLeftnavigationBodyHeaderAreaSlot(),
47
+ LeftNavCO.getLeftnavigationBodyItemsAreaSlot(),
48
+ LeftNavCO.getLeftnavigationFooterMenuSlot(),
49
+ LeftNavCO.getLeftnavigationFooterItemSlot(),
50
+ LeftNavCO.getLeftnavigationNotificationsIconSlot(),
51
+ ]);
33
52
 
34
53
  await expect(getLeftnavigationRootSlot).toHaveAttribute('aria-label', 'root-label');
35
54
  await expect(getLeftnavigationRootSlot).toHaveAttribute('data-testid', 'root-data-testid');
@@ -79,15 +98,28 @@ if (
79
98
  await expect(getLeftnavigationFooterMenuSlot).toHaveAttribute('data-testid', 'footer-menu-data-testid');
80
99
  await expect(getLeftnavigationFooterItemSlot).toHaveAttribute('aria-label', 'footer-item-label');
81
100
  await expect(getLeftnavigationFooterItemSlot).toHaveAttribute('data-testid', 'footer-item-data-testid');
101
+ await expect(getLeftnavigationNotificationsIconSlot).toHaveAttribute('aria-label', 'notifications-icon-label');
102
+ await expect(getLeftnavigationNotificationsIconSlot).toHaveAttribute(
103
+ 'data-testid',
104
+ 'notifications-icon-data-testid',
105
+ );
82
106
  });
83
107
  it('02: leftnav expanded - slots should have custom data-* and aria-*', async () => {
84
108
  await (await LeftNavCO.getLeftnavigationItemSlotByIndex(0)).click();
85
109
 
86
- const getLeftnavigationLeftContainerSlot = await LeftNavCO.getLeftnavigationLeftContainerSlot();
87
- const getLeftnavigationItemLabelSlot = await LeftNavCO.getLeftnavigationItemLabelSlot();
88
- const getLeftnavigationRightContainerSlot = await LeftNavCO.getLeftnavigationRightContainerSlot();
89
- const getLeftnavigationFooterLabelSlot = await LeftNavCO.getLeftnavigationFooterLabelSlot();
90
- const getLeftnavigationFooterSeparatorSlot = await LeftNavCO.getLeftnavigationFooterSeparatorSlot();
110
+ const [
111
+ getLeftnavigationLeftContainerSlot,
112
+ getLeftnavigationItemLabelSlot,
113
+ getLeftnavigationRightContainerSlot,
114
+ getLeftnavigationFooterLabelSlot,
115
+ getLeftnavigationFooterSeparatorSlot,
116
+ ] = await Promise.all([
117
+ LeftNavCO.getLeftnavigationLeftContainerSlot(),
118
+ LeftNavCO.getLeftnavigationItemLabelSlot(),
119
+ LeftNavCO.getLeftnavigationRightContainerSlot(),
120
+ LeftNavCO.getLeftnavigationFooterLabelSlot(),
121
+ LeftNavCO.getLeftnavigationFooterSeparatorSlot(),
122
+ ]);
91
123
 
92
124
  await expect(getLeftnavigationLeftContainerSlot).toHaveAttribute('aria-label', 'left-container-label');
93
125
  await expect(getLeftnavigationLeftContainerSlot).toHaveAttribute('data-testid', 'left-container-data-testid');
@@ -103,13 +135,31 @@ if (
103
135
  it('03: Notifications expanded - slots should have custom data-* and aria-*', async () => {
104
136
  await (await LeftNavCO.getLeftnavigationItemSlotByIndex(0)).click();
105
137
 
106
- const getLeftnavigationSectionContainerSlot = await LeftNavCO.getLeftnavigationSectionContainerSlot();
107
- const getLeftnavigationSectionLabelSlot = await LeftNavCO.getLeftnavigationSectionLabelSlot();
108
- const getLeftnavigationVerticalSeparatorSlot = await LeftNavCO.getLeftnavigationVerticalSeparatorSlot();
109
- const getLeftnavigationSectionRightLabelSlot = await LeftNavCO.getLeftnavigationSectionRightLabelSlot();
110
- const getLeftnavigationItemDateSlot = await LeftNavCO.getLeftnavigationItemDateSlot();
111
- const getLeftnavigationItemSeparatorSlot = await LeftNavCO.getLeftnavigationItemSeparatorSlot();
138
+ const [
139
+ getLeftnavigationFooterMenuCollapseSlot,
140
+ getLeftnavigationSectionContainerSlot,
141
+ getLeftnavigationSectionLabelSlot,
142
+ getLeftnavigationVerticalSeparatorSlot,
143
+ getLeftnavigationSectionRightLabelSlot,
144
+ getLeftnavigationItemDateSlot,
145
+ getLeftnavigationItemSeparatorSlot,
146
+ getLeftnavigationItemChevronBackSlot,
147
+ ] = await Promise.all([
148
+ LeftNavCO.getLeftnavigationFooterMenuCollapseSlot(),
149
+ LeftNavCO.getLeftnavigationSectionContainerSlot(),
150
+ LeftNavCO.getLeftnavigationSectionLabelSlot(),
151
+ LeftNavCO.getLeftnavigationVerticalSeparatorSlot(),
152
+ LeftNavCO.getLeftnavigationSectionRightLabelSlot(),
153
+ LeftNavCO.getLeftnavigationItemDateSlot(),
154
+ LeftNavCO.getLeftnavigationItemSeparatorSlot(),
155
+ LeftNavCO.getLeftnavigationItemChevronBackSlot(),
156
+ ]);
112
157
 
158
+ await expect(getLeftnavigationFooterMenuCollapseSlot).toHaveAttribute('aria-label', 'footer-menu-collapse-label');
159
+ await expect(getLeftnavigationFooterMenuCollapseSlot).toHaveAttribute(
160
+ 'data-testid',
161
+ 'footer-menu-collapse-data-testid',
162
+ );
113
163
  await expect(getLeftnavigationSectionContainerSlot).toHaveAttribute('aria-label', 'section-container-label');
114
164
  await expect(getLeftnavigationSectionContainerSlot).toHaveAttribute(
115
165
  'data-testid',
@@ -128,13 +178,20 @@ if (
128
178
  await expect(getLeftnavigationItemDateSlot).toHaveAttribute('data-testid', 'item-date-data-testid');
129
179
  await expect(getLeftnavigationItemSeparatorSlot).toHaveAttribute('aria-label', 'item-separator-label');
130
180
  await expect(getLeftnavigationItemSeparatorSlot).toHaveAttribute('data-testid', 'item-separator-data-testid');
181
+ await expect(getLeftnavigationItemChevronBackSlot).toHaveAttribute('aria-label', 'item-chevron-back-label');
182
+ await expect(getLeftnavigationItemChevronBackSlot).toHaveAttribute(
183
+ 'data-testid',
184
+ 'item-chevron-back-data-testid',
185
+ );
131
186
  });
132
187
  it('04: Logs expanded - slots should have custom data-* and aria-*', async () => {
133
188
  await (await LeftNavCO.getIconSlotByIndex(0)).click();
134
189
  await (await LeftNavCO.getLeftnavigationItemSlotByIndex(1)).click();
135
190
 
136
- const getLeftnavigationBottomContainerSlot = await LeftNavCO.getLeftnavigationBottomContainerSlot();
137
- const getLeftnavigationArrowContainerSlot = await LeftNavCO.getLeftnavigationArrowContainerSlot();
191
+ const [getLeftnavigationBottomContainerSlot, getLeftnavigationArrowContainerSlot] = await Promise.all([
192
+ LeftNavCO.getLeftnavigationBottomContainerSlot(),
193
+ LeftNavCO.getLeftnavigationArrowContainerSlot(),
194
+ ]);
138
195
 
139
196
  await expect(getLeftnavigationBottomContainerSlot).toHaveAttribute('aria-label', 'bottom-container-label');
140
197
  await expect(getLeftnavigationBottomContainerSlot).toHaveAttribute('data-testid', 'bottom-container-data-testid');
@@ -12,20 +12,20 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
12
12
  await expect(snapshot).toEqual(0);
13
13
  });
14
14
  it('02: Leftnav expanded - custom styles should be displayed correctly', async () => {
15
- await (await LeftNavCO.leftComponent(0)).click();
15
+ await (await LeftNavCO.getLeftnavigationCollapsedContainerSlot()).click();
16
16
  await $('body').click();
17
17
  const snapshot = await browser.checkSnapshot(LeftNavCO.snapshotPath('leftnav-slots-expanded'));
18
18
  await expect(snapshot).toEqual(0);
19
19
  });
20
20
  it('03: Notification expanded - custom styles should be displayed correctly', async () => {
21
- await (await LeftNavCO.leftNavItem(0)).click();
21
+ await (await LeftNavCO.getLeftnavigationItemSlotByIndex(0)).click();
22
22
  await $('body').click();
23
23
  const snapshot = await browser.checkSnapshot(LeftNavCO.snapshotPath('leftnav-slots-notifications'));
24
24
  await expect(snapshot).toEqual(0);
25
25
  });
26
26
  it('04: Logs expanded - custom styles should be displayed correctly', async () => {
27
- await (await LeftNavCO.leftChevron()).click();
28
- await (await LeftNavCO.leftNavItem(1)).click();
27
+ await (await LeftNavCO.getLeftnavigationItemChevronBackSlot()).click();
28
+ await (await LeftNavCO.getLeftnavigationItemSlotByIndex(1)).click();
29
29
  await $('body').click();
30
30
  const snapshot = await browser.checkSnapshot(LeftNavCO.snapshotPath('leftnav-slots-logs'));
31
31
  await expect(snapshot).toEqual(0);
@@ -279,6 +279,10 @@ export default class LeftNavCO extends PageObject {
279
279
  return $$('[data-dimsum-slot="dsLeftnavigationNotificationsContainer"]')[index];
280
280
  }
281
281
 
282
+ static async getLeftnavigationNotificationsIconSlot() {
283
+ return $('[data-dimsum-parent-slot="dsLeftnavigationNotificationsIcon"]');
284
+ }
285
+
282
286
  static async getLeftnavigationExceptionsIconSlot() {
283
287
  return $('[data-dimsum-slot="dsLeftnavigationExceptionsIcon"]');
284
288
  }
@@ -295,6 +299,10 @@ export default class LeftNavCO extends PageObject {
295
299
  return $('[data-dimsum-slot="dsLeftnavigationItemBorderBottom"]');
296
300
  }
297
301
 
302
+ static async getLeftnavigationItemChevronBackSlot() {
303
+ return $('[data-dimsum-parent-slot="dsLeftnavigationItemChevronBack"]');
304
+ }
305
+
298
306
  static async getLeftnavigationBodyAreasContainerSlot() {
299
307
  return $('[data-dimsum-slot="dsLeftnavigationBodyAreasContainer"]');
300
308
  }
@@ -311,6 +319,10 @@ export default class LeftNavCO extends PageObject {
311
319
  return $('[data-dimsum-slot="dsLeftnavigationFooterMenu"]');
312
320
  }
313
321
 
322
+ static async getLeftnavigationFooterMenuCollapseSlot() {
323
+ return $('[data-dimsum-parent-slot="dsLeftnavigationFooterMenuCollapse"]');
324
+ }
325
+
314
326
  static async getLeftnavigationFooterItemSlot() {
315
327
  return $('[data-dimsum-slot="dsLeftnavigationFooterItem"]');
316
328
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "dimsum-e2e-tests",
4
- "version": "3.60.0-next.26",
4
+ "version": "3.60.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",
@@ -41,155 +41,155 @@
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.60.0-next.26",
45
- "@elliemae/ds-accordion": "3.60.0-next.26",
46
- "@elliemae/ds-app-picker": "3.60.0-next.26",
47
- "@elliemae/ds-backdrop": "3.60.0-next.26",
48
- "@elliemae/ds-banner": "3.60.0-next.26",
49
- "@elliemae/ds-breadcrumb": "3.60.0-next.26",
50
- "@elliemae/ds-basic": "3.60.0-next.26",
51
- "@elliemae/ds-card": "3.60.0-next.26",
52
- "@elliemae/ds-card-v1": "3.60.0-next.26",
53
- "@elliemae/ds-card-v1-detail": "3.60.0-next.26",
54
- "@elliemae/ds-card-v2": "3.60.0-next.26",
55
- "@elliemae/ds-card-v2-action-addon": "3.60.0-next.26",
56
- "@elliemae/ds-button-v2": "3.60.0-next.26",
57
- "@elliemae/ds-card-navigation": "3.60.0-next.26",
58
- "@elliemae/ds-card-v3": "3.60.0-next.26",
59
- "@elliemae/ds-card-v2-group": "3.60.0-next.26",
60
- "@elliemae/ds-card-v3-poc": "3.60.0-next.26",
61
- "@elliemae/ds-chat": "3.60.0-next.26",
62
- "@elliemae/ds-chat-bubble": "3.60.0-next.26",
63
- "@elliemae/ds-chat-container": "3.60.0-next.26",
64
- "@elliemae/ds-chat-card": "3.60.0-next.26",
65
- "@elliemae/ds-chat-empty-state": "3.60.0-next.26",
66
- "@elliemae/ds-chat-container-header": "3.60.0-next.26",
67
- "@elliemae/ds-chat-floating-button": "3.60.0-next.26",
68
- "@elliemae/ds-chat-sidebar": "3.60.0-next.26",
69
- "@elliemae/ds-chat-message-delimeter": "3.60.0-next.26",
70
- "@elliemae/ds-chat-system-message": "3.60.0-next.26",
71
- "@elliemae/ds-chat-tile": "3.60.0-next.26",
72
- "@elliemae/ds-classnames": "3.60.0-next.26",
73
- "@elliemae/ds-chip": "3.60.0-next.26",
74
- "@elliemae/ds-codeeditor": "3.60.0-next.26",
75
- "@elliemae/ds-comments": "3.60.0-next.26",
76
- "@elliemae/ds-circular-progress-indicator": "3.60.0-next.26",
77
- "@elliemae/ds-controlled-form": "3.60.0-next.26",
78
- "@elliemae/ds-csv-converter": "3.60.0-next.26",
79
- "@elliemae/ds-data-table-cell-header": "3.60.0-next.26",
80
- "@elliemae/ds-data-table": "3.60.0-next.26",
81
- "@elliemae/ds-data-table-action-cell": "3.60.0-next.26",
82
- "@elliemae/ds-data-table-filters": "3.60.0-next.26",
83
- "@elliemae/ds-data-table-expand-cell": "3.60.0-next.26",
84
- "@elliemae/ds-data-table-cell": "3.60.0-next.26",
85
- "@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.26",
86
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.26",
87
- "@elliemae/ds-data-table-single-select-cell": "3.60.0-next.26",
88
- "@elliemae/ds-dataviz": "3.60.0-next.26",
89
- "@elliemae/ds-date-time-picker": "3.60.0-next.26",
90
- "@elliemae/ds-dataviz-pie": "3.60.0-next.26",
91
- "@elliemae/ds-decision-graph": "3.60.0-next.26",
92
- "@elliemae/ds-dialog": "3.60.0-next.26",
93
- "@elliemae/ds-dropdownmenu-v2": "3.60.0-next.26",
94
- "@elliemae/ds-drag-and-drop": "3.60.0-next.26",
95
- "@elliemae/ds-dropzone": "3.60.0-next.26",
96
- "@elliemae/ds-fast-list": "3.60.0-next.26",
97
- "@elliemae/ds-floating-context": "3.60.0-next.26",
98
- "@elliemae/ds-form-checkbox": "3.60.0-next.26",
99
- "@elliemae/ds-form-combobox": "3.60.0-next.26",
100
- "@elliemae/ds-form-date-range-picker": "3.60.0-next.26",
101
- "@elliemae/ds-form-date-time-picker": "3.60.0-next.26",
102
- "@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.26",
103
- "@elliemae/ds-form-input-text": "3.60.0-next.26",
104
- "@elliemae/ds-form-layout-autocomplete": "3.60.0-next.26",
105
- "@elliemae/ds-form-layout-blocks": "3.60.0-next.26",
106
- "@elliemae/ds-form-layout-input-group": "3.60.0-next.26",
107
- "@elliemae/ds-form-multi-combobox": "3.60.0-next.26",
108
- "@elliemae/ds-form-input-textarea": "3.60.0-next.26",
109
- "@elliemae/ds-form-layout-label": "3.60.0-next.26",
110
- "@elliemae/ds-form-select": "3.60.0-next.26",
111
- "@elliemae/ds-form-radio": "3.60.0-next.26",
112
- "@elliemae/ds-form-single-combobox": "3.60.0-next.26",
113
- "@elliemae/ds-form-toggle": "3.60.0-next.26",
114
- "@elliemae/ds-form-native-select": "3.60.0-next.26",
115
- "@elliemae/ds-hooks-focus-stack": "3.60.0-next.26",
116
- "@elliemae/ds-grid": "3.60.0-next.26",
117
- "@elliemae/ds-global-header": "3.60.0-next.26",
118
- "@elliemae/ds-hooks-focus-trap": "3.60.0-next.26",
119
- "@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.26",
120
- "@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.26",
121
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.26",
122
- "@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.26",
123
- "@elliemae/ds-hooks-is-mobile": "3.60.0-next.26",
124
- "@elliemae/ds-hooks-fontsize-media": "3.60.0-next.26",
125
- "@elliemae/ds-hooks-on-blur-out": "3.60.0-next.26",
126
- "@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.26",
127
- "@elliemae/ds-icon": "3.60.0-next.26",
128
- "@elliemae/ds-image": "3.60.0-next.26",
129
- "@elliemae/ds-imagelibrarymodal": "3.60.0-next.26",
130
- "@elliemae/ds-layout-provider": "3.60.0-next.26",
131
- "@elliemae/ds-indeterminate-progress-indicator": "3.60.0-next.26",
132
- "@elliemae/ds-icons": "3.60.0-next.26",
133
- "@elliemae/ds-left-navigation": "3.60.0-next.26",
134
- "@elliemae/ds-loading-indicator": "3.60.0-next.26",
135
- "@elliemae/ds-menu-button": "3.60.0-next.26",
136
- "@elliemae/ds-menu-items-multi": "3.60.0-next.26",
137
- "@elliemae/ds-menu-items-action": "3.60.0-next.26",
138
- "@elliemae/ds-menu-items": "3.60.0-next.26",
139
- "@elliemae/ds-menu-items-commons": "3.60.0-next.26",
140
- "@elliemae/ds-menu-items-section": "3.60.0-next.26",
141
- "@elliemae/ds-menu-items-separator": "3.60.0-next.26",
142
- "@elliemae/ds-menu-items-single": "3.60.0-next.26",
143
- "@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.26",
144
- "@elliemae/ds-menu-items-skeleton": "3.60.0-next.26",
145
- "@elliemae/ds-menu-items-submenu": "3.60.0-next.26",
146
- "@elliemae/ds-mobile": "3.60.0-next.26",
147
- "@elliemae/ds-modal-slide": "3.60.0-next.26",
148
- "@elliemae/ds-overlay": "3.60.0-next.26",
149
- "@elliemae/ds-notification-badge": "3.60.0-next.26",
150
- "@elliemae/ds-page-header": "3.60.0-next.26",
151
- "@elliemae/ds-menu-tree-item": "3.60.0-next.26",
152
- "@elliemae/ds-page-header-v1": "3.60.0-next.26",
153
- "@elliemae/ds-page-layout": "3.60.0-next.26",
154
- "@elliemae/ds-page-header-v2": "3.60.0-next.26",
155
- "@elliemae/ds-popperjs": "3.60.0-next.26",
156
- "@elliemae/ds-pills-v2": "3.60.0-next.26",
157
- "@elliemae/ds-pagination": "3.60.0-next.26",
158
- "@elliemae/ds-progress-indicator": "3.60.0-next.26",
159
- "@elliemae/ds-props-helpers": "3.60.0-next.26",
160
- "@elliemae/ds-portal": "3.60.0-next.26",
161
- "@elliemae/ds-read-more": "3.60.0-next.26",
162
- "@elliemae/ds-query-builder": "3.60.0-next.26",
163
- "@elliemae/ds-resizeable-container": "3.60.0-next.26",
164
- "@elliemae/ds-ribbon": "3.60.0-next.26",
165
- "@elliemae/ds-scrollable-container": "3.60.0-next.26",
166
- "@elliemae/ds-shared": "3.60.0-next.26",
167
- "@elliemae/ds-separator": "3.60.0-next.26",
168
- "@elliemae/ds-shuttle-v2": "3.60.0-next.26",
169
- "@elliemae/ds-side-panel": "3.60.0-next.26",
170
- "@elliemae/ds-skeleton": "3.60.0-next.26",
171
- "@elliemae/ds-side-panel-header": "3.60.0-next.26",
172
- "@elliemae/ds-slider-v2": "3.60.0-next.26",
173
- "@elliemae/ds-svg": "3.60.0-next.26",
174
- "@elliemae/ds-square-indicator": "3.60.0-next.26",
175
- "@elliemae/ds-system": "3.60.0-next.26",
176
- "@elliemae/ds-tabs": "3.60.0-next.26",
177
- "@elliemae/ds-toast": "3.60.0-next.26",
178
- "@elliemae/ds-stepper": "3.60.0-next.26",
179
- "@elliemae/ds-test-utils": "3.60.0-next.26",
180
- "@elliemae/ds-toolbar-v2": "3.60.0-next.26",
181
- "@elliemae/ds-toolbar-v1": "3.60.0-next.26",
182
- "@elliemae/ds-tooltip-v3": "3.60.0-next.26",
183
- "@elliemae/ds-transition": "3.60.0-next.26",
184
- "@elliemae/ds-truncated-expandable-text": "3.60.0-next.26",
185
- "@elliemae/ds-tree-model": "3.60.0-next.26",
186
- "@elliemae/ds-treeview": "3.60.0-next.26",
187
- "@elliemae/ds-typescript-helpers": "3.60.0-next.26",
188
- "@elliemae/ds-typography": "3.60.0-next.26",
189
- "@elliemae/ds-truncated-tooltip-text": "3.60.0-next.26",
190
- "@elliemae/ds-virtual-list": "3.60.0-next.26",
191
- "@elliemae/ds-wizard": "3.60.0-next.26",
192
- "@elliemae/ds-zustand-helpers": "3.60.0-next.26"
44
+ "@elliemae/ds-accessibility": "3.60.0-next.28",
45
+ "@elliemae/ds-accordion": "3.60.0-next.28",
46
+ "@elliemae/ds-app-picker": "3.60.0-next.28",
47
+ "@elliemae/ds-banner": "3.60.0-next.28",
48
+ "@elliemae/ds-basic": "3.60.0-next.28",
49
+ "@elliemae/ds-backdrop": "3.60.0-next.28",
50
+ "@elliemae/ds-breadcrumb": "3.60.0-next.28",
51
+ "@elliemae/ds-button-v2": "3.60.0-next.28",
52
+ "@elliemae/ds-card-navigation": "3.60.0-next.28",
53
+ "@elliemae/ds-card": "3.60.0-next.28",
54
+ "@elliemae/ds-card-v1": "3.60.0-next.28",
55
+ "@elliemae/ds-card-v1-detail": "3.60.0-next.28",
56
+ "@elliemae/ds-card-v2": "3.60.0-next.28",
57
+ "@elliemae/ds-card-v2-action-addon": "3.60.0-next.28",
58
+ "@elliemae/ds-card-v3-poc": "3.60.0-next.28",
59
+ "@elliemae/ds-chat": "3.60.0-next.28",
60
+ "@elliemae/ds-card-v3": "3.60.0-next.28",
61
+ "@elliemae/ds-card-v2-group": "3.60.0-next.28",
62
+ "@elliemae/ds-chat-bubble": "3.60.0-next.28",
63
+ "@elliemae/ds-chat-card": "3.60.0-next.28",
64
+ "@elliemae/ds-chat-container": "3.60.0-next.28",
65
+ "@elliemae/ds-chat-container-header": "3.60.0-next.28",
66
+ "@elliemae/ds-chat-floating-button": "3.60.0-next.28",
67
+ "@elliemae/ds-chat-empty-state": "3.60.0-next.28",
68
+ "@elliemae/ds-chat-sidebar": "3.60.0-next.28",
69
+ "@elliemae/ds-chat-system-message": "3.60.0-next.28",
70
+ "@elliemae/ds-chat-tile": "3.60.0-next.28",
71
+ "@elliemae/ds-circular-progress-indicator": "3.60.0-next.28",
72
+ "@elliemae/ds-chat-message-delimeter": "3.60.0-next.28",
73
+ "@elliemae/ds-codeeditor": "3.60.0-next.28",
74
+ "@elliemae/ds-classnames": "3.60.0-next.28",
75
+ "@elliemae/ds-chip": "3.60.0-next.28",
76
+ "@elliemae/ds-comments": "3.60.0-next.28",
77
+ "@elliemae/ds-controlled-form": "3.60.0-next.28",
78
+ "@elliemae/ds-csv-converter": "3.60.0-next.28",
79
+ "@elliemae/ds-data-table-cell": "3.60.0-next.28",
80
+ "@elliemae/ds-data-table": "3.60.0-next.28",
81
+ "@elliemae/ds-data-table-action-cell": "3.60.0-next.28",
82
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.28",
83
+ "@elliemae/ds-data-table-cell-header": "3.60.0-next.28",
84
+ "@elliemae/ds-data-table-expand-cell": "3.60.0-next.28",
85
+ "@elliemae/ds-data-table-filters": "3.60.0-next.28",
86
+ "@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.28",
87
+ "@elliemae/ds-dataviz": "3.60.0-next.28",
88
+ "@elliemae/ds-dataviz-pie": "3.60.0-next.28",
89
+ "@elliemae/ds-date-time-picker": "3.60.0-next.28",
90
+ "@elliemae/ds-decision-graph": "3.60.0-next.28",
91
+ "@elliemae/ds-data-table-single-select-cell": "3.60.0-next.28",
92
+ "@elliemae/ds-dialog": "3.60.0-next.28",
93
+ "@elliemae/ds-drag-and-drop": "3.60.0-next.28",
94
+ "@elliemae/ds-dropdownmenu-v2": "3.60.0-next.28",
95
+ "@elliemae/ds-dropzone": "3.60.0-next.28",
96
+ "@elliemae/ds-fast-list": "3.60.0-next.28",
97
+ "@elliemae/ds-floating-context": "3.60.0-next.28",
98
+ "@elliemae/ds-form-checkbox": "3.60.0-next.28",
99
+ "@elliemae/ds-form-combobox": "3.60.0-next.28",
100
+ "@elliemae/ds-form-date-range-picker": "3.60.0-next.28",
101
+ "@elliemae/ds-form-date-time-picker": "3.60.0-next.28",
102
+ "@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.28",
103
+ "@elliemae/ds-form-input-text": "3.60.0-next.28",
104
+ "@elliemae/ds-form-input-textarea": "3.60.0-next.28",
105
+ "@elliemae/ds-form-layout-autocomplete": "3.60.0-next.28",
106
+ "@elliemae/ds-form-layout-blocks": "3.60.0-next.28",
107
+ "@elliemae/ds-form-layout-input-group": "3.60.0-next.28",
108
+ "@elliemae/ds-form-layout-label": "3.60.0-next.28",
109
+ "@elliemae/ds-form-multi-combobox": "3.60.0-next.28",
110
+ "@elliemae/ds-form-native-select": "3.60.0-next.28",
111
+ "@elliemae/ds-form-radio": "3.60.0-next.28",
112
+ "@elliemae/ds-form-select": "3.60.0-next.28",
113
+ "@elliemae/ds-form-single-combobox": "3.60.0-next.28",
114
+ "@elliemae/ds-form-toggle": "3.60.0-next.28",
115
+ "@elliemae/ds-global-header": "3.60.0-next.28",
116
+ "@elliemae/ds-grid": "3.60.0-next.28",
117
+ "@elliemae/ds-hooks-focus-trap": "3.60.0-next.28",
118
+ "@elliemae/ds-hooks-focus-stack": "3.60.0-next.28",
119
+ "@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.28",
120
+ "@elliemae/ds-hooks-fontsize-media": "3.60.0-next.28",
121
+ "@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.28",
122
+ "@elliemae/ds-hooks-is-mobile": "3.60.0-next.28",
123
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.28",
124
+ "@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.28",
125
+ "@elliemae/ds-hooks-on-blur-out": "3.60.0-next.28",
126
+ "@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.28",
127
+ "@elliemae/ds-indeterminate-progress-indicator": "3.60.0-next.28",
128
+ "@elliemae/ds-icons": "3.60.0-next.28",
129
+ "@elliemae/ds-image": "3.60.0-next.28",
130
+ "@elliemae/ds-icon": "3.60.0-next.28",
131
+ "@elliemae/ds-layout-provider": "3.60.0-next.28",
132
+ "@elliemae/ds-menu-button": "3.60.0-next.28",
133
+ "@elliemae/ds-imagelibrarymodal": "3.60.0-next.28",
134
+ "@elliemae/ds-loading-indicator": "3.60.0-next.28",
135
+ "@elliemae/ds-menu-items": "3.60.0-next.28",
136
+ "@elliemae/ds-left-navigation": "3.60.0-next.28",
137
+ "@elliemae/ds-menu-items-action": "3.60.0-next.28",
138
+ "@elliemae/ds-menu-items-commons": "3.60.0-next.28",
139
+ "@elliemae/ds-menu-items-multi": "3.60.0-next.28",
140
+ "@elliemae/ds-menu-items-section": "3.60.0-next.28",
141
+ "@elliemae/ds-menu-items-separator": "3.60.0-next.28",
142
+ "@elliemae/ds-menu-items-single": "3.60.0-next.28",
143
+ "@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.28",
144
+ "@elliemae/ds-menu-items-submenu": "3.60.0-next.28",
145
+ "@elliemae/ds-menu-tree-item": "3.60.0-next.28",
146
+ "@elliemae/ds-menu-items-skeleton": "3.60.0-next.28",
147
+ "@elliemae/ds-mobile": "3.60.0-next.28",
148
+ "@elliemae/ds-modal-slide": "3.60.0-next.28",
149
+ "@elliemae/ds-notification-badge": "3.60.0-next.28",
150
+ "@elliemae/ds-overlay": "3.60.0-next.28",
151
+ "@elliemae/ds-page-header": "3.60.0-next.28",
152
+ "@elliemae/ds-page-header-v1": "3.60.0-next.28",
153
+ "@elliemae/ds-page-header-v2": "3.60.0-next.28",
154
+ "@elliemae/ds-page-layout": "3.60.0-next.28",
155
+ "@elliemae/ds-pills-v2": "3.60.0-next.28",
156
+ "@elliemae/ds-portal": "3.60.0-next.28",
157
+ "@elliemae/ds-progress-indicator": "3.60.0-next.28",
158
+ "@elliemae/ds-popperjs": "3.60.0-next.28",
159
+ "@elliemae/ds-props-helpers": "3.60.0-next.28",
160
+ "@elliemae/ds-read-more": "3.60.0-next.28",
161
+ "@elliemae/ds-pagination": "3.60.0-next.28",
162
+ "@elliemae/ds-query-builder": "3.60.0-next.28",
163
+ "@elliemae/ds-resizeable-container": "3.60.0-next.28",
164
+ "@elliemae/ds-ribbon": "3.60.0-next.28",
165
+ "@elliemae/ds-separator": "3.60.0-next.28",
166
+ "@elliemae/ds-side-panel": "3.60.0-next.28",
167
+ "@elliemae/ds-scrollable-container": "3.60.0-next.28",
168
+ "@elliemae/ds-shared": "3.60.0-next.28",
169
+ "@elliemae/ds-shuttle-v2": "3.60.0-next.28",
170
+ "@elliemae/ds-side-panel-header": "3.60.0-next.28",
171
+ "@elliemae/ds-skeleton": "3.60.0-next.28",
172
+ "@elliemae/ds-svg": "3.60.0-next.28",
173
+ "@elliemae/ds-square-indicator": "3.60.0-next.28",
174
+ "@elliemae/ds-stepper": "3.60.0-next.28",
175
+ "@elliemae/ds-slider-v2": "3.60.0-next.28",
176
+ "@elliemae/ds-tabs": "3.60.0-next.28",
177
+ "@elliemae/ds-system": "3.60.0-next.28",
178
+ "@elliemae/ds-toast": "3.60.0-next.28",
179
+ "@elliemae/ds-toolbar-v1": "3.60.0-next.28",
180
+ "@elliemae/ds-tooltip-v3": "3.60.0-next.28",
181
+ "@elliemae/ds-toolbar-v2": "3.60.0-next.28",
182
+ "@elliemae/ds-treeview": "3.60.0-next.28",
183
+ "@elliemae/ds-tree-model": "3.60.0-next.28",
184
+ "@elliemae/ds-transition": "3.60.0-next.28",
185
+ "@elliemae/ds-truncated-expandable-text": "3.60.0-next.28",
186
+ "@elliemae/ds-test-utils": "3.60.0-next.28",
187
+ "@elliemae/ds-truncated-tooltip-text": "3.60.0-next.28",
188
+ "@elliemae/ds-typescript-helpers": "3.60.0-next.28",
189
+ "@elliemae/ds-typography": "3.60.0-next.28",
190
+ "@elliemae/ds-virtual-list": "3.60.0-next.28",
191
+ "@elliemae/ds-wizard": "3.60.0-next.28",
192
+ "@elliemae/ds-zustand-helpers": "3.60.0-next.28"
193
193
  },
194
194
  "publishConfig": {
195
195
  "access": "public"