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 +12 -0
- package/ds-leftnavigation/LeftNavigation.func.spec.js +1 -1
- package/ds-leftnavigation/LeftNavigation.slots.func.spec.js +86 -29
- package/ds-leftnavigation/LeftNavigation.slots.visual.spec.js +4 -4
- package/ds-leftnavigation/LeftNavigationCO.js +12 -0
- package/package.json +150 -150
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
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
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
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
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
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
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
|
|
137
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
28
|
-
await (await LeftNavCO.
|
|
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.
|
|
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.
|
|
45
|
-
"@elliemae/ds-accordion": "3.60.0-next.
|
|
46
|
-
"@elliemae/ds-app-picker": "3.60.0-next.
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-card-
|
|
53
|
-
"@elliemae/ds-card
|
|
54
|
-
"@elliemae/ds-card-
|
|
55
|
-
"@elliemae/ds-card-
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-card-
|
|
58
|
-
"@elliemae/ds-card-v3": "3.60.0-next.
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-card-v3
|
|
61
|
-
"@elliemae/ds-
|
|
62
|
-
"@elliemae/ds-chat-bubble": "3.60.0-next.
|
|
63
|
-
"@elliemae/ds-chat-
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-
|
|
66
|
-
"@elliemae/ds-chat-
|
|
67
|
-
"@elliemae/ds-chat-
|
|
68
|
-
"@elliemae/ds-chat-sidebar": "3.60.0-next.
|
|
69
|
-
"@elliemae/ds-chat-message
|
|
70
|
-
"@elliemae/ds-chat-
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-controlled-form": "3.60.0-next.
|
|
78
|
-
"@elliemae/ds-csv-converter": "3.60.0-next.
|
|
79
|
-
"@elliemae/ds-data-table-cell
|
|
80
|
-
"@elliemae/ds-data-table": "3.60.0-next.
|
|
81
|
-
"@elliemae/ds-data-table-action-cell": "3.60.0-next.
|
|
82
|
-
"@elliemae/ds-data-table-
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-cell": "3.60.0-next.
|
|
85
|
-
"@elliemae/ds-data-table-
|
|
86
|
-
"@elliemae/ds-data-table-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-dataviz": "3.60.0-next.
|
|
89
|
-
"@elliemae/ds-date-time-picker": "3.60.0-next.
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-dialog": "3.60.0-next.
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-dropzone": "3.60.0-next.
|
|
96
|
-
"@elliemae/ds-fast-list": "3.60.0-next.
|
|
97
|
-
"@elliemae/ds-floating-context": "3.60.0-next.
|
|
98
|
-
"@elliemae/ds-form-checkbox": "3.60.0-next.
|
|
99
|
-
"@elliemae/ds-form-combobox": "3.60.0-next.
|
|
100
|
-
"@elliemae/ds-form-date-range-picker": "3.60.0-next.
|
|
101
|
-
"@elliemae/ds-form-date-time-picker": "3.60.0-next.
|
|
102
|
-
"@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.
|
|
103
|
-
"@elliemae/ds-form-input-text": "3.60.0-next.
|
|
104
|
-
"@elliemae/ds-form-
|
|
105
|
-
"@elliemae/ds-form-layout-
|
|
106
|
-
"@elliemae/ds-form-layout-
|
|
107
|
-
"@elliemae/ds-form-
|
|
108
|
-
"@elliemae/ds-form-
|
|
109
|
-
"@elliemae/ds-form-
|
|
110
|
-
"@elliemae/ds-form-select": "3.60.0-next.
|
|
111
|
-
"@elliemae/ds-form-radio": "3.60.0-next.
|
|
112
|
-
"@elliemae/ds-form-
|
|
113
|
-
"@elliemae/ds-form-
|
|
114
|
-
"@elliemae/ds-form-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-grid": "3.60.0-next.
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-hooks-focus-
|
|
119
|
-
"@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-
|
|
122
|
-
"@elliemae/ds-hooks-
|
|
123
|
-
"@elliemae/ds-hooks-is-
|
|
124
|
-
"@elliemae/ds-hooks-
|
|
125
|
-
"@elliemae/ds-hooks-on-blur-out": "3.60.0-next.
|
|
126
|
-
"@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.
|
|
127
|
-
"@elliemae/ds-
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-
|
|
133
|
-
"@elliemae/ds-
|
|
134
|
-
"@elliemae/ds-loading-indicator": "3.60.0-next.
|
|
135
|
-
"@elliemae/ds-menu-
|
|
136
|
-
"@elliemae/ds-
|
|
137
|
-
"@elliemae/ds-menu-items-action": "3.60.0-next.
|
|
138
|
-
"@elliemae/ds-menu-items": "3.60.0-next.
|
|
139
|
-
"@elliemae/ds-menu-items-
|
|
140
|
-
"@elliemae/ds-menu-items-section": "3.60.0-next.
|
|
141
|
-
"@elliemae/ds-menu-items-separator": "3.60.0-next.
|
|
142
|
-
"@elliemae/ds-menu-items-single": "3.60.0-next.
|
|
143
|
-
"@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.
|
|
144
|
-
"@elliemae/ds-menu-items-
|
|
145
|
-
"@elliemae/ds-menu-
|
|
146
|
-
"@elliemae/ds-
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-notification-badge": "3.60.0-next.
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-
|
|
152
|
-
"@elliemae/ds-page-header-v1": "3.60.0-next.
|
|
153
|
-
"@elliemae/ds-page-
|
|
154
|
-
"@elliemae/ds-page-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-props-helpers": "3.60.0-next.
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-
|
|
162
|
-
"@elliemae/ds-query-builder": "3.60.0-next.
|
|
163
|
-
"@elliemae/ds-resizeable-container": "3.60.0-next.
|
|
164
|
-
"@elliemae/ds-ribbon": "3.60.0-next.
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-tabs": "3.60.0-next.
|
|
177
|
-
"@elliemae/ds-
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-toolbar-
|
|
182
|
-
"@elliemae/ds-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-virtual-list": "3.60.0-next.
|
|
191
|
-
"@elliemae/ds-wizard": "3.60.0-next.
|
|
192
|
-
"@elliemae/ds-zustand-helpers": "3.60.0-next.
|
|
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"
|