dimsum-e2e-tests 3.61.5-rc.0 → 3.61.5-rc.1
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,10 @@
|
|
|
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.61.5-rc.1 (2026-05-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package dimsum-e2e-tests
|
|
9
|
+
|
|
6
10
|
## 3.61.5-rc.0 (2026-05-04)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package dimsum-e2e-tests
|
|
@@ -21,6 +21,8 @@ export default class DSMenuButtonCO extends PageObject {
|
|
|
21
21
|
|
|
22
22
|
static skeletonMenuItem = new Urlbuilder(PATH_E2E_MENU_BUTTON, 'skeleton-menu-item-test');
|
|
23
23
|
|
|
24
|
+
static slotsTest = new Urlbuilder(PATH_E2E_MENU_BUTTON, 'slots-test');
|
|
25
|
+
|
|
24
26
|
// UseCases (E2E simplified versions)
|
|
25
27
|
static cardExample = new Urlbuilder(PATH_MENU_BUTTON_USECASES, 'card-example-test');
|
|
26
28
|
|
|
@@ -85,6 +87,27 @@ export default class DSMenuButtonCO extends PageObject {
|
|
|
85
87
|
return $(`${item} div span`);
|
|
86
88
|
}
|
|
87
89
|
|
|
90
|
+
// Slots test selectors (by data-dimsum-slot)
|
|
91
|
+
static async getSlotsOpinionatedButtonRoot() {
|
|
92
|
+
return $('[data-dimsum-parent-slot="dsOpinionatedbuttonRoot"');
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
static async getSlotsFloatingWrapper() {
|
|
96
|
+
return $('[data-dimsum-parent-slot="dsFlyoutmenuFloatingWrapper"');
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
static async getSlotsFlyoutMenuRoot() {
|
|
100
|
+
return $('[data-dimsum-slot="dsFlyoutmenuRoot"]');
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
static async getSlotsListWrapper() {
|
|
104
|
+
return $('[data-dimsum-slot="dsFlyoutmenuListWrapper"]');
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
static async getSlotsMenuItemWrappers(index = 0) {
|
|
108
|
+
return $$('[data-dimsum-slot="dsMenuitemMenuItemWrapper"]')[index];
|
|
109
|
+
}
|
|
110
|
+
|
|
88
111
|
// Snapshots
|
|
89
112
|
static snapshotPath(example = 'basic') {
|
|
90
113
|
return PageObject.getSnapshotPathBuilder('DSMenuItems', example, 'ds-menu-items');
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import DSMenuButtonCO from '../DSMenuButtonCO';
|
|
2
|
+
|
|
3
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
4
|
+
describe('PUI-18356 - DSMenuButton:: Slots - Func', () => {
|
|
5
|
+
before('loading page', async () => {
|
|
6
|
+
const errorOnGo = await DSMenuButtonCO.slotsTest.go();
|
|
7
|
+
if (errorOnGo) throw errorOnGo;
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
it('01: should have custom aria-label to each slot', async () => {
|
|
11
|
+
const triggerBtn = await DSMenuButtonCO.getSlotsOpinionatedButtonRoot();
|
|
12
|
+
await expect(triggerBtn).toHaveAttribute('aria-label', 'im dsOpinionatedbuttonRoot aria');
|
|
13
|
+
await triggerBtn.click();
|
|
14
|
+
|
|
15
|
+
const flyoutRoot = await DSMenuButtonCO.getSlotsFlyoutMenuRoot();
|
|
16
|
+
await flyoutRoot.waitForDisplayed();
|
|
17
|
+
const listWrapper = await DSMenuButtonCO.getSlotsListWrapper();
|
|
18
|
+
const floatingWrapper = await DSMenuButtonCO.getSlotsFloatingWrapper();
|
|
19
|
+
const menuItem = await DSMenuButtonCO.getSlotsMenuItemWrappers();
|
|
20
|
+
await expect(listWrapper).toHaveAttribute('aria-label', 'im dsFlyoutmenuListWrapper aria');
|
|
21
|
+
await expect(flyoutRoot).toHaveAttribute('aria-label', 'im dsFlyoutmenuRoot aria');
|
|
22
|
+
await expect(floatingWrapper).toHaveAttribute('aria-label', 'im dsFlyoutmenuFloatingWrapper aria');
|
|
23
|
+
await expect(menuItem).toHaveAttribute('aria-label', 'im dsMenuitemMenuItemWrapper aria');
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
it('02: should apply custom data-testid to each slot', async () => {
|
|
27
|
+
const triggerBtn = await DSMenuButtonCO.getSlotsOpinionatedButtonRoot();
|
|
28
|
+
const flyoutRoot = await DSMenuButtonCO.getSlotsFlyoutMenuRoot();
|
|
29
|
+
const listWrapper = await DSMenuButtonCO.getSlotsListWrapper();
|
|
30
|
+
const floatingWrapper = await DSMenuButtonCO.getSlotsFloatingWrapper();
|
|
31
|
+
const menuItem = await DSMenuButtonCO.getSlotsMenuItemWrappers();
|
|
32
|
+
|
|
33
|
+
await expect(triggerBtn).toHaveAttribute('data-testid', 'im dsOpinionatedbuttonRoot data');
|
|
34
|
+
await expect(flyoutRoot).toHaveAttribute('data-testid', 'im dsFlyoutmenuRoot data');
|
|
35
|
+
await expect(listWrapper).toHaveAttribute('data-testid', 'im dsFlyoutmenuListWrapper data');
|
|
36
|
+
await expect(floatingWrapper).toHaveAttribute('data-testid', 'im dsFlyoutmenuFloatingWrapper data');
|
|
37
|
+
await expect(menuItem).toHaveAttribute('data-testid', 'im dsMenuitemMenuItemWrapper data');
|
|
38
|
+
});
|
|
39
|
+
});
|
|
40
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import DSMenuButtonCO from '../DSMenuButtonCO';
|
|
2
|
+
|
|
3
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
4
|
+
describe('PUI-18357 - DSMenuButton:: Slots - Visual', () => {
|
|
5
|
+
before('loading page', async () => {
|
|
6
|
+
const errorOnGo = await DSMenuButtonCO.slotsTest.go();
|
|
7
|
+
if (errorOnGo) throw errorOnGo;
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
it('01: should display slots story in dark theme default state correctly', async () => {
|
|
11
|
+
const triggerBtn = await DSMenuButtonCO.getSlotsOpinionatedButtonRoot();
|
|
12
|
+
await triggerBtn.waitForDisplayed();
|
|
13
|
+
const snapshot = await browser.percyCheckScreenshot(DSMenuButtonCO.snapshotPath('slots-default'));
|
|
14
|
+
await expect(snapshot).toEqual(0);
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
it('02: should display slots story with menu open in dark theme correctly', async () => {
|
|
18
|
+
const triggerBtn = await DSMenuButtonCO.getSlotsOpinionatedButtonRoot();
|
|
19
|
+
await triggerBtn.click();
|
|
20
|
+
const flyoutRoot = await DSMenuButtonCO.getSlotsFlyoutMenuRoot();
|
|
21
|
+
await flyoutRoot.waitForDisplayed();
|
|
22
|
+
const snapshot = await browser.percyCheckScreenshot(DSMenuButtonCO.snapshotPath('slots-open'));
|
|
23
|
+
await expect(snapshot).toEqual(0);
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "dimsum-e2e-tests",
|
|
4
|
-
"version": "3.61.5-rc.
|
|
4
|
+
"version": "3.61.5-rc.1",
|
|
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.61.5-rc.
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-banner": "3.61.5-rc.
|
|
49
|
-
"@elliemae/ds-basic": "3.61.5-rc.
|
|
50
|
-
"@elliemae/ds-
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-
|
|
54
|
-
"@elliemae/ds-card-v1": "3.61.5-rc.
|
|
55
|
-
"@elliemae/ds-card-v1-detail": "3.61.5-rc.
|
|
56
|
-
"@elliemae/ds-card-v2": "3.61.5-rc.
|
|
57
|
-
"@elliemae/ds-card-v2-action-addon": "3.61.5-rc.
|
|
58
|
-
"@elliemae/ds-card-v2-group": "3.61.5-rc.
|
|
59
|
-
"@elliemae/ds-card-v3": "3.61.5-rc.
|
|
60
|
-
"@elliemae/ds-card-v3-poc": "3.61.5-rc.
|
|
61
|
-
"@elliemae/ds-chat
|
|
62
|
-
"@elliemae/ds-chat-
|
|
63
|
-
"@elliemae/ds-chat-
|
|
64
|
-
"@elliemae/ds-chat": "3.61.5-rc.
|
|
65
|
-
"@elliemae/ds-chat-
|
|
66
|
-
"@elliemae/ds-chat-
|
|
67
|
-
"@elliemae/ds-chat-
|
|
68
|
-
"@elliemae/ds-chat-sidebar": "3.61.5-rc.
|
|
69
|
-
"@elliemae/ds-chat-system-message": "3.61.5-rc.
|
|
70
|
-
"@elliemae/ds-chat-
|
|
71
|
-
"@elliemae/ds-chat-tile": "3.61.5-rc.
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-controlled-form": "3.61.5-rc.
|
|
79
|
-
"@elliemae/ds-
|
|
80
|
-
"@elliemae/ds-data-table
|
|
81
|
-
"@elliemae/ds-data-table-cell": "3.61.5-rc.
|
|
82
|
-
"@elliemae/ds-data-table-cell
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-expand-cell": "3.61.5-rc.
|
|
85
|
-
"@elliemae/ds-data-table-multi-select-cell": "3.61.5-rc.
|
|
86
|
-
"@elliemae/ds-data-table-
|
|
87
|
-
"@elliemae/ds-data-table-
|
|
88
|
-
"@elliemae/ds-
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-floating-context": "3.61.5-rc.
|
|
99
|
-
"@elliemae/ds-
|
|
100
|
-
"@elliemae/ds-form-
|
|
101
|
-
"@elliemae/ds-form-
|
|
102
|
-
"@elliemae/ds-form-date-range-picker": "3.61.5-rc.
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-input-
|
|
105
|
-
"@elliemae/ds-form-input-
|
|
106
|
-
"@elliemae/ds-form-layout-autocomplete": "3.61.5-rc.
|
|
107
|
-
"@elliemae/ds-form-layout-
|
|
108
|
-
"@elliemae/ds-form-layout-
|
|
109
|
-
"@elliemae/ds-form-multi-combobox": "3.61.5-rc.
|
|
110
|
-
"@elliemae/ds-form-layout-label": "3.61.5-rc.
|
|
111
|
-
"@elliemae/ds-form-native-select": "3.61.5-rc.
|
|
112
|
-
"@elliemae/ds-form-
|
|
113
|
-
"@elliemae/ds-form-
|
|
114
|
-
"@elliemae/ds-form-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-
|
|
119
|
-
"@elliemae/ds-hooks-
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-
|
|
122
|
-
"@elliemae/ds-hooks-
|
|
123
|
-
"@elliemae/ds-hooks-is-mobile": "3.61.5-rc.
|
|
124
|
-
"@elliemae/ds-hooks-
|
|
125
|
-
"@elliemae/ds-hooks-
|
|
126
|
-
"@elliemae/ds-hooks-
|
|
127
|
-
"@elliemae/ds-icon": "3.61.5-rc.
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-layout-provider": "3.61.5-rc.
|
|
133
|
-
"@elliemae/ds-
|
|
134
|
-
"@elliemae/ds-left-navigation": "3.61.5-rc.
|
|
135
|
-
"@elliemae/ds-
|
|
136
|
-
"@elliemae/ds-
|
|
137
|
-
"@elliemae/ds-menu-items": "3.61.5-rc.
|
|
138
|
-
"@elliemae/ds-menu-items-
|
|
139
|
-
"@elliemae/ds-menu-items-
|
|
140
|
-
"@elliemae/ds-menu-items-
|
|
141
|
-
"@elliemae/ds-menu-items-
|
|
142
|
-
"@elliemae/ds-menu-items-single": "3.61.5-rc.
|
|
143
|
-
"@elliemae/ds-menu-items-
|
|
144
|
-
"@elliemae/ds-menu-items-
|
|
145
|
-
"@elliemae/ds-menu-
|
|
146
|
-
"@elliemae/ds-menu-items-single-with-submenu": "3.61.5-rc.
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-
|
|
150
|
-
"@elliemae/ds-notification-badge": "3.61.5-rc.
|
|
151
|
-
"@elliemae/ds-
|
|
152
|
-
"@elliemae/ds-page-header
|
|
153
|
-
"@elliemae/ds-page-header": "3.61.5-rc.
|
|
154
|
-
"@elliemae/ds-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-
|
|
162
|
-
"@elliemae/ds-query-builder": "3.61.5-rc.
|
|
163
|
-
"@elliemae/ds-read-more": "3.61.5-rc.
|
|
164
|
-
"@elliemae/ds-resizeable-container": "3.61.5-rc.
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-side-panel": "3.61.5-rc.
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-stepper": "3.61.5-rc.
|
|
176
|
-
"@elliemae/ds-
|
|
177
|
-
"@elliemae/ds-
|
|
178
|
-
"@elliemae/ds-svg": "3.61.5-rc.
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-toast": "3.61.5-rc.
|
|
182
|
-
"@elliemae/ds-toolbar-v2": "3.61.5-rc.
|
|
183
|
-
"@elliemae/ds-tooltip-v3": "3.61.5-rc.
|
|
184
|
-
"@elliemae/ds-tree-model": "3.61.5-rc.
|
|
185
|
-
"@elliemae/ds-transition": "3.61.5-rc.
|
|
186
|
-
"@elliemae/ds-treeview": "3.61.5-rc.
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-truncated-
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-
|
|
191
|
-
"@elliemae/ds-
|
|
192
|
-
"@elliemae/ds-
|
|
193
|
-
"@elliemae/ds-
|
|
44
|
+
"@elliemae/ds-accessibility": "3.61.5-rc.1",
|
|
45
|
+
"@elliemae/ds-app-picker": "3.61.5-rc.1",
|
|
46
|
+
"@elliemae/ds-backdrop": "3.61.5-rc.1",
|
|
47
|
+
"@elliemae/ds-accordion": "3.61.5-rc.1",
|
|
48
|
+
"@elliemae/ds-banner": "3.61.5-rc.1",
|
|
49
|
+
"@elliemae/ds-basic": "3.61.5-rc.1",
|
|
50
|
+
"@elliemae/ds-breadcrumb": "3.61.5-rc.1",
|
|
51
|
+
"@elliemae/ds-card": "3.61.5-rc.1",
|
|
52
|
+
"@elliemae/ds-button-v2": "3.61.5-rc.1",
|
|
53
|
+
"@elliemae/ds-card-navigation": "3.61.5-rc.1",
|
|
54
|
+
"@elliemae/ds-card-v1": "3.61.5-rc.1",
|
|
55
|
+
"@elliemae/ds-card-v1-detail": "3.61.5-rc.1",
|
|
56
|
+
"@elliemae/ds-card-v2": "3.61.5-rc.1",
|
|
57
|
+
"@elliemae/ds-card-v2-action-addon": "3.61.5-rc.1",
|
|
58
|
+
"@elliemae/ds-card-v2-group": "3.61.5-rc.1",
|
|
59
|
+
"@elliemae/ds-card-v3": "3.61.5-rc.1",
|
|
60
|
+
"@elliemae/ds-card-v3-poc": "3.61.5-rc.1",
|
|
61
|
+
"@elliemae/ds-chat": "3.61.5-rc.1",
|
|
62
|
+
"@elliemae/ds-chat-bubble": "3.61.5-rc.1",
|
|
63
|
+
"@elliemae/ds-chat-card": "3.61.5-rc.1",
|
|
64
|
+
"@elliemae/ds-chat-container": "3.61.5-rc.1",
|
|
65
|
+
"@elliemae/ds-chat-container-header": "3.61.5-rc.1",
|
|
66
|
+
"@elliemae/ds-chat-empty-state": "3.61.5-rc.1",
|
|
67
|
+
"@elliemae/ds-chat-floating-button": "3.61.5-rc.1",
|
|
68
|
+
"@elliemae/ds-chat-sidebar": "3.61.5-rc.1",
|
|
69
|
+
"@elliemae/ds-chat-system-message": "3.61.5-rc.1",
|
|
70
|
+
"@elliemae/ds-chat-message-delimeter": "3.61.5-rc.1",
|
|
71
|
+
"@elliemae/ds-chat-tile": "3.61.5-rc.1",
|
|
72
|
+
"@elliemae/ds-circular-progress-indicator": "3.61.5-rc.1",
|
|
73
|
+
"@elliemae/ds-chip": "3.61.5-rc.1",
|
|
74
|
+
"@elliemae/ds-classnames": "3.61.5-rc.1",
|
|
75
|
+
"@elliemae/ds-comments": "3.61.5-rc.1",
|
|
76
|
+
"@elliemae/ds-codeeditor": "3.61.5-rc.1",
|
|
77
|
+
"@elliemae/ds-csv-converter": "3.61.5-rc.1",
|
|
78
|
+
"@elliemae/ds-controlled-form": "3.61.5-rc.1",
|
|
79
|
+
"@elliemae/ds-data-table-action-cell": "3.61.5-rc.1",
|
|
80
|
+
"@elliemae/ds-data-table": "3.61.5-rc.1",
|
|
81
|
+
"@elliemae/ds-data-table-cell": "3.61.5-rc.1",
|
|
82
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.61.5-rc.1",
|
|
83
|
+
"@elliemae/ds-data-table-cell-header": "3.61.5-rc.1",
|
|
84
|
+
"@elliemae/ds-data-table-expand-cell": "3.61.5-rc.1",
|
|
85
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.61.5-rc.1",
|
|
86
|
+
"@elliemae/ds-data-table-filters": "3.61.5-rc.1",
|
|
87
|
+
"@elliemae/ds-data-table-single-select-cell": "3.61.5-rc.1",
|
|
88
|
+
"@elliemae/ds-date-time-picker": "3.61.5-rc.1",
|
|
89
|
+
"@elliemae/ds-dataviz-pie": "3.61.5-rc.1",
|
|
90
|
+
"@elliemae/ds-decision-graph": "3.61.5-rc.1",
|
|
91
|
+
"@elliemae/ds-dialog": "3.61.5-rc.1",
|
|
92
|
+
"@elliemae/ds-dataviz": "3.61.5-rc.1",
|
|
93
|
+
"@elliemae/ds-dropdownmenu-v2": "3.61.5-rc.1",
|
|
94
|
+
"@elliemae/ds-filter-bar": "3.61.5-rc.1",
|
|
95
|
+
"@elliemae/ds-form-checkbox": "3.61.5-rc.1",
|
|
96
|
+
"@elliemae/ds-drag-and-drop": "3.61.5-rc.1",
|
|
97
|
+
"@elliemae/ds-fast-list": "3.61.5-rc.1",
|
|
98
|
+
"@elliemae/ds-floating-context": "3.61.5-rc.1",
|
|
99
|
+
"@elliemae/ds-dropzone": "3.61.5-rc.1",
|
|
100
|
+
"@elliemae/ds-form-combobox": "3.61.5-rc.1",
|
|
101
|
+
"@elliemae/ds-form-date-time-picker": "3.61.5-rc.1",
|
|
102
|
+
"@elliemae/ds-form-date-range-picker": "3.61.5-rc.1",
|
|
103
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.61.5-rc.1",
|
|
104
|
+
"@elliemae/ds-form-input-textarea": "3.61.5-rc.1",
|
|
105
|
+
"@elliemae/ds-form-input-text": "3.61.5-rc.1",
|
|
106
|
+
"@elliemae/ds-form-layout-autocomplete": "3.61.5-rc.1",
|
|
107
|
+
"@elliemae/ds-form-layout-input-group": "3.61.5-rc.1",
|
|
108
|
+
"@elliemae/ds-form-layout-blocks": "3.61.5-rc.1",
|
|
109
|
+
"@elliemae/ds-form-multi-combobox": "3.61.5-rc.1",
|
|
110
|
+
"@elliemae/ds-form-layout-label": "3.61.5-rc.1",
|
|
111
|
+
"@elliemae/ds-form-native-select": "3.61.5-rc.1",
|
|
112
|
+
"@elliemae/ds-form-select": "3.61.5-rc.1",
|
|
113
|
+
"@elliemae/ds-form-radio": "3.61.5-rc.1",
|
|
114
|
+
"@elliemae/ds-form-toggle": "3.61.5-rc.1",
|
|
115
|
+
"@elliemae/ds-grid": "3.61.5-rc.1",
|
|
116
|
+
"@elliemae/ds-global-header": "3.61.5-rc.1",
|
|
117
|
+
"@elliemae/ds-hooks-focus-trap": "3.61.5-rc.1",
|
|
118
|
+
"@elliemae/ds-form-single-combobox": "3.61.5-rc.1",
|
|
119
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.61.5-rc.1",
|
|
120
|
+
"@elliemae/ds-hooks-focus-stack": "3.61.5-rc.1",
|
|
121
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.61.5-rc.1",
|
|
122
|
+
"@elliemae/ds-hooks-fontsize-media": "3.61.5-rc.1",
|
|
123
|
+
"@elliemae/ds-hooks-is-mobile": "3.61.5-rc.1",
|
|
124
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.61.5-rc.1",
|
|
125
|
+
"@elliemae/ds-hooks-on-blur-out": "3.61.5-rc.1",
|
|
126
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.61.5-rc.1",
|
|
127
|
+
"@elliemae/ds-icon": "3.61.5-rc.1",
|
|
128
|
+
"@elliemae/ds-image": "3.61.5-rc.1",
|
|
129
|
+
"@elliemae/ds-icons": "3.61.5-rc.1",
|
|
130
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.61.5-rc.1",
|
|
131
|
+
"@elliemae/ds-imagelibrarymodal": "3.61.5-rc.1",
|
|
132
|
+
"@elliemae/ds-layout-provider": "3.61.5-rc.1",
|
|
133
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.61.5-rc.1",
|
|
134
|
+
"@elliemae/ds-left-navigation": "3.61.5-rc.1",
|
|
135
|
+
"@elliemae/ds-menu-button": "3.61.5-rc.1",
|
|
136
|
+
"@elliemae/ds-loading-indicator": "3.61.5-rc.1",
|
|
137
|
+
"@elliemae/ds-menu-items": "3.61.5-rc.1",
|
|
138
|
+
"@elliemae/ds-menu-items-commons": "3.61.5-rc.1",
|
|
139
|
+
"@elliemae/ds-menu-items-multi": "3.61.5-rc.1",
|
|
140
|
+
"@elliemae/ds-menu-items-action": "3.61.5-rc.1",
|
|
141
|
+
"@elliemae/ds-menu-items-separator": "3.61.5-rc.1",
|
|
142
|
+
"@elliemae/ds-menu-items-single": "3.61.5-rc.1",
|
|
143
|
+
"@elliemae/ds-menu-items-skeleton": "3.61.5-rc.1",
|
|
144
|
+
"@elliemae/ds-menu-items-section": "3.61.5-rc.1",
|
|
145
|
+
"@elliemae/ds-menu-items-submenu": "3.61.5-rc.1",
|
|
146
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.61.5-rc.1",
|
|
147
|
+
"@elliemae/ds-modal-slide": "3.61.5-rc.1",
|
|
148
|
+
"@elliemae/ds-menu-tree-item": "3.61.5-rc.1",
|
|
149
|
+
"@elliemae/ds-mobile": "3.61.5-rc.1",
|
|
150
|
+
"@elliemae/ds-notification-badge": "3.61.5-rc.1",
|
|
151
|
+
"@elliemae/ds-overlay": "3.61.5-rc.1",
|
|
152
|
+
"@elliemae/ds-page-header": "3.61.5-rc.1",
|
|
153
|
+
"@elliemae/ds-page-header-v1": "3.61.5-rc.1",
|
|
154
|
+
"@elliemae/ds-page-header-v2": "3.61.5-rc.1",
|
|
155
|
+
"@elliemae/ds-pills-v2": "3.61.5-rc.1",
|
|
156
|
+
"@elliemae/ds-pagination": "3.61.5-rc.1",
|
|
157
|
+
"@elliemae/ds-popperjs": "3.61.5-rc.1",
|
|
158
|
+
"@elliemae/ds-page-layout": "3.61.5-rc.1",
|
|
159
|
+
"@elliemae/ds-portal": "3.61.5-rc.1",
|
|
160
|
+
"@elliemae/ds-progress-indicator": "3.61.5-rc.1",
|
|
161
|
+
"@elliemae/ds-props-helpers": "3.61.5-rc.1",
|
|
162
|
+
"@elliemae/ds-query-builder": "3.61.5-rc.1",
|
|
163
|
+
"@elliemae/ds-read-more": "3.61.5-rc.1",
|
|
164
|
+
"@elliemae/ds-resizeable-container": "3.61.5-rc.1",
|
|
165
|
+
"@elliemae/ds-scrollable-container": "3.61.5-rc.1",
|
|
166
|
+
"@elliemae/ds-ribbon": "3.61.5-rc.1",
|
|
167
|
+
"@elliemae/ds-shared": "3.61.5-rc.1",
|
|
168
|
+
"@elliemae/ds-separator": "3.61.5-rc.1",
|
|
169
|
+
"@elliemae/ds-shuttle-v2": "3.61.5-rc.1",
|
|
170
|
+
"@elliemae/ds-side-panel": "3.61.5-rc.1",
|
|
171
|
+
"@elliemae/ds-side-panel-header": "3.61.5-rc.1",
|
|
172
|
+
"@elliemae/ds-slider-v2": "3.61.5-rc.1",
|
|
173
|
+
"@elliemae/ds-skeleton": "3.61.5-rc.1",
|
|
174
|
+
"@elliemae/ds-square-indicator": "3.61.5-rc.1",
|
|
175
|
+
"@elliemae/ds-stepper": "3.61.5-rc.1",
|
|
176
|
+
"@elliemae/ds-tabs": "3.61.5-rc.1",
|
|
177
|
+
"@elliemae/ds-system": "3.61.5-rc.1",
|
|
178
|
+
"@elliemae/ds-svg": "3.61.5-rc.1",
|
|
179
|
+
"@elliemae/ds-toolbar-v1": "3.61.5-rc.1",
|
|
180
|
+
"@elliemae/ds-test-utils": "3.61.5-rc.1",
|
|
181
|
+
"@elliemae/ds-toast": "3.61.5-rc.1",
|
|
182
|
+
"@elliemae/ds-toolbar-v2": "3.61.5-rc.1",
|
|
183
|
+
"@elliemae/ds-tooltip-v3": "3.61.5-rc.1",
|
|
184
|
+
"@elliemae/ds-tree-model": "3.61.5-rc.1",
|
|
185
|
+
"@elliemae/ds-transition": "3.61.5-rc.1",
|
|
186
|
+
"@elliemae/ds-treeview": "3.61.5-rc.1",
|
|
187
|
+
"@elliemae/ds-typescript-helpers": "3.61.5-rc.1",
|
|
188
|
+
"@elliemae/ds-truncated-tooltip-text": "3.61.5-rc.1",
|
|
189
|
+
"@elliemae/ds-truncated-expandable-text": "3.61.5-rc.1",
|
|
190
|
+
"@elliemae/ds-typography": "3.61.5-rc.1",
|
|
191
|
+
"@elliemae/ds-virtual-list": "3.61.5-rc.1",
|
|
192
|
+
"@elliemae/ds-wizard": "3.61.5-rc.1",
|
|
193
|
+
"@elliemae/ds-zustand-helpers": "3.61.5-rc.1"
|
|
194
194
|
}
|
|
195
195
|
}
|