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