dimsum-e2e-tests 3.37.0-next.5 → 3.37.0-next.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.37.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v3.37.0-next.5...v3.37.0-next.6) (2024-06-11)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- ds-card-v3:: e2e - test cases added [PUI-13244](https://jira.elliemae.io/browse/PUI-1244) ([#6868](https://git.elliemae.io/platform-ui/dimsum/issues/6868)) ([5ea625b](https://git.elliemae.io/platform-ui/dimsum/commit/5ea625b49e33901db04b72002f0f916ac3988a33))
|
|
11
|
+
|
|
6
12
|
## [3.37.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v3.37.0-next.4...v3.37.0-next.5) (2024-06-10)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/ds-card-v3/DSCardV3CO.js
CHANGED
|
@@ -5,30 +5,25 @@ import { PageObject, Urlbuilder } from '../helpers';
|
|
|
5
5
|
|
|
6
6
|
export default class DSCardV3CO extends PageObject {
|
|
7
7
|
// URL's
|
|
8
|
-
|
|
9
8
|
static accordionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'accordion-test');
|
|
10
9
|
|
|
11
|
-
static
|
|
10
|
+
static actionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'action-test');
|
|
11
|
+
|
|
12
|
+
static disabledURL = new Urlbuilder(PATH_E2E_CARD_V3, 'disabled-test');
|
|
12
13
|
|
|
13
14
|
static dragAndDropURL = new Urlbuilder(PATH_E2E_CARD_V3, 'drag-and-drop-test');
|
|
14
15
|
|
|
15
|
-
static
|
|
16
|
+
static multiActionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'multi-action-test');
|
|
16
17
|
|
|
17
|
-
static
|
|
18
|
+
static multiSelectURL = new Urlbuilder(PATH_E2E_CARD_V3, 'multi-select-test');
|
|
18
19
|
|
|
19
|
-
static
|
|
20
|
+
static noActionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'no-action-test');
|
|
20
21
|
|
|
21
|
-
static
|
|
22
|
+
static notificationBadgesURL = new Urlbuilder(PATH_E2E_CARD_V3, 'notification-badges-test');
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
static async getButtonByIndex(index = 0) {
|
|
25
|
-
return $$('[data-testid="ds-button"]')[index];
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
static async getRadioByIndex(index = 0) {
|
|
29
|
-
return $$('[data-testid="ds-radio-container"]')[index];
|
|
30
|
-
}
|
|
24
|
+
static singleSelectURL = new Urlbuilder(PATH_E2E_CARD_V3, 'single-select-test');
|
|
31
25
|
|
|
26
|
+
// selectors
|
|
32
27
|
static async getActionAreaByIndex(index = 0) {
|
|
33
28
|
return $$('[data-testid="ds-card-v3-action-area"]')[index];
|
|
34
29
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import DSCardV3CO from '../DSCardV3CO';
|
|
4
|
+
import DSControlledRadioCO from '../../ds-controlled-form/ds-controlled-radio/DSControlledRadioCO';
|
|
5
|
+
|
|
6
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
7
|
+
describe('PUI-13700 - CardV3: Single Select (keyboard) - Func Test', () => {
|
|
8
|
+
before('loading page', async () => {
|
|
9
|
+
const errorOnGo = await DSCardV3CO.singleSelectURL.go();
|
|
10
|
+
if (errorOnGo) throw errorOnGo;
|
|
11
|
+
});
|
|
12
|
+
it('01: first radio button should be focused - [TAB]', async () => {
|
|
13
|
+
await browser.keys(Key.Tab);
|
|
14
|
+
const firstRadioButton = await DSControlledRadioCO.getRadioByIndex(0);
|
|
15
|
+
await expect(firstRadioButton).toBeFocused();
|
|
16
|
+
});
|
|
17
|
+
it('02: first radio button should be selected - [SPACE]', async () => {
|
|
18
|
+
await browser.keys(Key.Space);
|
|
19
|
+
const firstRadioButton = await DSControlledRadioCO.getRadioByIndex(0);
|
|
20
|
+
await expect(firstRadioButton).toBeSelected();
|
|
21
|
+
});
|
|
22
|
+
it('03: second radio button should be focused - [TAB]', async () => {
|
|
23
|
+
await browser.keys(Key.Tab);
|
|
24
|
+
await browser.keys(Key.Tab);
|
|
25
|
+
const secondRadioButton = await DSControlledRadioCO.getRadioByIndex(1);
|
|
26
|
+
await expect(secondRadioButton).toBeFocused();
|
|
27
|
+
});
|
|
28
|
+
it('04: second radio button should be selected - [Enter]', async () => {
|
|
29
|
+
await browser.keys(Key.Enter);
|
|
30
|
+
const secondRadioButton = await DSControlledRadioCO.getRadioByIndex(1);
|
|
31
|
+
await expect(secondRadioButton).toBeSelected();
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import DSCardV3CO from '../DSCardV3CO';
|
|
3
|
+
import DSControlledRadioCO from '../../ds-controlled-form/ds-controlled-radio/DSControlledRadioCO';
|
|
4
|
+
import DSButtonV3CO from '../../ds-button-v3/DSButtonV3CO';
|
|
5
|
+
|
|
6
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
7
|
+
describe('PUI-13713 - CardV3: Single Select (keyboard) - Visual Test', () => {
|
|
8
|
+
before('loading page', async () => {
|
|
9
|
+
const errorOnGo = await DSCardV3CO.singleSelectURL.go();
|
|
10
|
+
if (errorOnGo) throw errorOnGo;
|
|
11
|
+
});
|
|
12
|
+
it('01: first radio button should be selected, and the dropdown menu should be opened', async () => {
|
|
13
|
+
await browser.eyesOpen();
|
|
14
|
+
const firstRadioButton = await DSControlledRadioCO.getRadioByIndex(0);
|
|
15
|
+
const ellipsisMenuBtn = await DSButtonV3CO.getButtonByIndex(0);
|
|
16
|
+
await firstRadioButton.click();
|
|
17
|
+
await ellipsisMenuBtn.click();
|
|
18
|
+
const snapshot = await browser.eyesCheckSnapshot(DSCardV3CO.snapshotPath('card-v3-sigle-select'));
|
|
19
|
+
await expect(snapshot).toEqual(0);
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
}
|
package/package.json
CHANGED
|
@@ -1,126 +1,126 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dimsum-e2e-tests",
|
|
3
|
-
"version": "3.37.0-next.
|
|
3
|
+
"version": "3.37.0-next.6",
|
|
4
4
|
"description": "End-to-end tests for dimsum library",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@elliemae/ds-accessibility": "3.37.0-next.
|
|
7
|
-
"@elliemae/ds-
|
|
8
|
-
"@elliemae/ds-
|
|
9
|
-
"@elliemae/ds-
|
|
10
|
-
"@elliemae/ds-
|
|
11
|
-
"@elliemae/ds-app-picker": "3.37.0-next.
|
|
12
|
-
"@elliemae/ds-
|
|
13
|
-
"@elliemae/ds-
|
|
14
|
-
"@elliemae/ds-button": "3.37.0-next.
|
|
15
|
-
"@elliemae/ds-button-v1": "3.37.0-next.
|
|
16
|
-
"@elliemae/ds-
|
|
17
|
-
"@elliemae/ds-card-array": "3.37.0-next.
|
|
18
|
-
"@elliemae/ds-card": "3.37.0-next.
|
|
19
|
-
"@elliemae/ds-card-
|
|
20
|
-
"@elliemae/ds-card-v2": "3.37.0-next.
|
|
21
|
-
"@elliemae/ds-
|
|
22
|
-
"@elliemae/ds-
|
|
23
|
-
"@elliemae/ds-chat": "3.37.0-next.
|
|
24
|
-
"@elliemae/ds-chat-
|
|
25
|
-
"@elliemae/ds-
|
|
26
|
-
"@elliemae/ds-
|
|
27
|
-
"@elliemae/ds-
|
|
28
|
-
"@elliemae/ds-
|
|
29
|
-
"@elliemae/ds-comments": "3.37.0-next.
|
|
30
|
-
"@elliemae/ds-
|
|
31
|
-
"@elliemae/ds-data-table
|
|
32
|
-
"@elliemae/ds-
|
|
33
|
-
"@elliemae/ds-
|
|
34
|
-
"@elliemae/ds-
|
|
35
|
-
"@elliemae/ds-
|
|
36
|
-
"@elliemae/ds-dataviz-pie": "3.37.0-next.
|
|
37
|
-
"@elliemae/ds-
|
|
38
|
-
"@elliemae/ds-date-range-picker": "3.37.0-next.
|
|
39
|
-
"@elliemae/ds-date-range-selector": "3.37.0-next.
|
|
40
|
-
"@elliemae/ds-date-time-picker": "3.37.0-next.
|
|
41
|
-
"@elliemae/ds-date-time-recurrence-picker": "3.37.0-next.
|
|
42
|
-
"@elliemae/ds-decision-graph": "3.37.0-next.
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-dropzone": "3.37.0-next.
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-fast-list": "3.37.0-next.
|
|
48
|
-
"@elliemae/ds-filterbar": "3.37.0-next.
|
|
49
|
-
"@elliemae/ds-form-date-
|
|
50
|
-
"@elliemae/ds-form": "3.37.0-next.
|
|
51
|
-
"@elliemae/ds-form
|
|
52
|
-
"@elliemae/ds-form-
|
|
53
|
-
"@elliemae/ds-form-layout-label": "3.37.0-next.
|
|
54
|
-
"@elliemae/ds-
|
|
55
|
-
"@elliemae/ds-grid": "3.37.0-next.
|
|
56
|
-
"@elliemae/ds-header": "3.37.0-next.
|
|
57
|
-
"@elliemae/ds-group-box": "3.37.0-next.
|
|
58
|
-
"@elliemae/ds-hooks-fontsize-
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-icon": "3.37.0-next.
|
|
61
|
-
"@elliemae/ds-image": "3.37.0-next.
|
|
62
|
-
"@elliemae/ds-
|
|
63
|
-
"@elliemae/ds-
|
|
64
|
-
"@elliemae/ds-indeterminate-progress-indicator": "3.37.0-next.
|
|
65
|
-
"@elliemae/ds-label-value": "3.37.0-next.
|
|
66
|
-
"@elliemae/ds-
|
|
67
|
-
"@elliemae/ds-
|
|
68
|
-
"@elliemae/ds-
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-modal": "3.37.0-next.
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-page-header-v1": "3.37.0-next.
|
|
78
|
-
"@elliemae/ds-page-header": "3.37.0-next.
|
|
79
|
-
"@elliemae/ds-page-
|
|
80
|
-
"@elliemae/ds-page-
|
|
81
|
-
"@elliemae/ds-page-
|
|
82
|
-
"@elliemae/ds-
|
|
83
|
-
"@elliemae/ds-
|
|
84
|
-
"@elliemae/ds-
|
|
85
|
-
"@elliemae/ds-
|
|
86
|
-
"@elliemae/ds-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-ribbon": "3.37.0-next.
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-search-field": "3.37.0-next.
|
|
93
|
-
"@elliemae/ds-separator": "3.37.0-next.
|
|
94
|
-
"@elliemae/ds-shuttle": "3.37.0-next.
|
|
95
|
-
"@elliemae/ds-shuttle
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-slider": "3.37.0-next.
|
|
99
|
-
"@elliemae/ds-spinner": "3.37.0-next.
|
|
100
|
-
"@elliemae/ds-square-indicator": "3.37.0-next.
|
|
101
|
-
"@elliemae/ds-stepper": "3.37.0-next.
|
|
102
|
-
"@elliemae/ds-
|
|
103
|
-
"@elliemae/ds-
|
|
104
|
-
"@elliemae/ds-
|
|
105
|
-
"@elliemae/ds-text-wrapper": "3.37.0-next.
|
|
106
|
-
"@elliemae/ds-
|
|
107
|
-
"@elliemae/ds-
|
|
108
|
-
"@elliemae/ds-
|
|
109
|
-
"@elliemae/ds-toolbar": "3.37.0-next.
|
|
110
|
-
"@elliemae/ds-
|
|
111
|
-
"@elliemae/ds-
|
|
112
|
-
"@elliemae/ds-
|
|
113
|
-
"@elliemae/ds-
|
|
114
|
-
"@elliemae/ds-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-
|
|
119
|
-
"@elliemae/ds-
|
|
120
|
-
"@elliemae/ds-
|
|
121
|
-
"@elliemae/ds-
|
|
122
|
-
"@elliemae/ds-
|
|
123
|
-
"@elliemae/ds-
|
|
124
|
-
"@elliemae/ds-
|
|
6
|
+
"@elliemae/ds-accessibility": "3.37.0-next.6",
|
|
7
|
+
"@elliemae/ds-backdrop": "3.37.0-next.6",
|
|
8
|
+
"@elliemae/ds-banner": "3.37.0-next.6",
|
|
9
|
+
"@elliemae/ds-accordion": "3.37.0-next.6",
|
|
10
|
+
"@elliemae/ds-basic": "3.37.0-next.6",
|
|
11
|
+
"@elliemae/ds-app-picker": "3.37.0-next.6",
|
|
12
|
+
"@elliemae/ds-breadcrumb": "3.37.0-next.6",
|
|
13
|
+
"@elliemae/ds-button": "3.37.0-next.6",
|
|
14
|
+
"@elliemae/ds-button-group": "3.37.0-next.6",
|
|
15
|
+
"@elliemae/ds-button-v1": "3.37.0-next.6",
|
|
16
|
+
"@elliemae/ds-card": "3.37.0-next.6",
|
|
17
|
+
"@elliemae/ds-card-array": "3.37.0-next.6",
|
|
18
|
+
"@elliemae/ds-card-navigation": "3.37.0-next.6",
|
|
19
|
+
"@elliemae/ds-card-v2": "3.37.0-next.6",
|
|
20
|
+
"@elliemae/ds-card-v2-group": "3.37.0-next.6",
|
|
21
|
+
"@elliemae/ds-button-v2": "3.37.0-next.6",
|
|
22
|
+
"@elliemae/ds-chat": "3.37.0-next.6",
|
|
23
|
+
"@elliemae/ds-chat-tile": "3.37.0-next.6",
|
|
24
|
+
"@elliemae/ds-chat-bubble": "3.37.0-next.6",
|
|
25
|
+
"@elliemae/ds-card-v2-action-addon": "3.37.0-next.6",
|
|
26
|
+
"@elliemae/ds-chip": "3.37.0-next.6",
|
|
27
|
+
"@elliemae/ds-circular-progress-indicator": "3.37.0-next.6",
|
|
28
|
+
"@elliemae/ds-codeeditor": "3.37.0-next.6",
|
|
29
|
+
"@elliemae/ds-comments": "3.37.0-next.6",
|
|
30
|
+
"@elliemae/ds-controlled-form": "3.37.0-next.6",
|
|
31
|
+
"@elliemae/ds-data-table": "3.37.0-next.6",
|
|
32
|
+
"@elliemae/ds-csv-converter": "3.37.0-next.6",
|
|
33
|
+
"@elliemae/ds-dataviz": "3.37.0-next.6",
|
|
34
|
+
"@elliemae/ds-datagrids": "3.37.0-next.6",
|
|
35
|
+
"@elliemae/ds-date-picker": "3.37.0-next.6",
|
|
36
|
+
"@elliemae/ds-dataviz-pie": "3.37.0-next.6",
|
|
37
|
+
"@elliemae/ds-data-table-cell-header": "3.37.0-next.6",
|
|
38
|
+
"@elliemae/ds-date-range-picker": "3.37.0-next.6",
|
|
39
|
+
"@elliemae/ds-date-range-selector": "3.37.0-next.6",
|
|
40
|
+
"@elliemae/ds-date-time-picker": "3.37.0-next.6",
|
|
41
|
+
"@elliemae/ds-date-time-recurrence-picker": "3.37.0-next.6",
|
|
42
|
+
"@elliemae/ds-decision-graph": "3.37.0-next.6",
|
|
43
|
+
"@elliemae/ds-drag-and-drop": "3.37.0-next.6",
|
|
44
|
+
"@elliemae/ds-dropdownmenu": "3.37.0-next.6",
|
|
45
|
+
"@elliemae/ds-dropzone": "3.37.0-next.6",
|
|
46
|
+
"@elliemae/ds-dialog": "3.37.0-next.6",
|
|
47
|
+
"@elliemae/ds-fast-list": "3.37.0-next.6",
|
|
48
|
+
"@elliemae/ds-filterbar": "3.37.0-next.6",
|
|
49
|
+
"@elliemae/ds-form-date-time-picker": "3.37.0-next.6",
|
|
50
|
+
"@elliemae/ds-form-date-range-picker": "3.37.0-next.6",
|
|
51
|
+
"@elliemae/ds-form": "3.37.0-next.6",
|
|
52
|
+
"@elliemae/ds-form-layout-blocks": "3.37.0-next.6",
|
|
53
|
+
"@elliemae/ds-form-layout-label": "3.37.0-next.6",
|
|
54
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.37.0-next.6",
|
|
55
|
+
"@elliemae/ds-grid": "3.37.0-next.6",
|
|
56
|
+
"@elliemae/ds-global-header": "3.37.0-next.6",
|
|
57
|
+
"@elliemae/ds-group-box": "3.37.0-next.6",
|
|
58
|
+
"@elliemae/ds-hooks-fontsize-media": "3.37.0-next.6",
|
|
59
|
+
"@elliemae/ds-header": "3.37.0-next.6",
|
|
60
|
+
"@elliemae/ds-icon": "3.37.0-next.6",
|
|
61
|
+
"@elliemae/ds-image": "3.37.0-next.6",
|
|
62
|
+
"@elliemae/ds-imagelibrarymodal": "3.37.0-next.6",
|
|
63
|
+
"@elliemae/ds-icons": "3.37.0-next.6",
|
|
64
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.37.0-next.6",
|
|
65
|
+
"@elliemae/ds-label-value": "3.37.0-next.6",
|
|
66
|
+
"@elliemae/ds-list-section-header": "3.37.0-next.6",
|
|
67
|
+
"@elliemae/ds-left-navigation": "3.37.0-next.6",
|
|
68
|
+
"@elliemae/ds-loading-indicator": "3.37.0-next.6",
|
|
69
|
+
"@elliemae/ds-menu": "3.37.0-next.6",
|
|
70
|
+
"@elliemae/ds-menu-items": "3.37.0-next.6",
|
|
71
|
+
"@elliemae/ds-mobile": "3.37.0-next.6",
|
|
72
|
+
"@elliemae/ds-modal": "3.37.0-next.6",
|
|
73
|
+
"@elliemae/ds-modal-slide": "3.37.0-next.6",
|
|
74
|
+
"@elliemae/ds-notification-badge": "3.37.0-next.6",
|
|
75
|
+
"@elliemae/ds-mini-toolbar": "3.37.0-next.6",
|
|
76
|
+
"@elliemae/ds-number-range-field": "3.37.0-next.6",
|
|
77
|
+
"@elliemae/ds-page-header-v1": "3.37.0-next.6",
|
|
78
|
+
"@elliemae/ds-page-header": "3.37.0-next.6",
|
|
79
|
+
"@elliemae/ds-page-header-v2": "3.37.0-next.6",
|
|
80
|
+
"@elliemae/ds-page-layout": "3.37.0-next.6",
|
|
81
|
+
"@elliemae/ds-page-number": "3.37.0-next.6",
|
|
82
|
+
"@elliemae/ds-popover": "3.37.0-next.6",
|
|
83
|
+
"@elliemae/ds-popper": "3.37.0-next.6",
|
|
84
|
+
"@elliemae/ds-pills": "3.37.0-next.6",
|
|
85
|
+
"@elliemae/ds-popperjs": "3.37.0-next.6",
|
|
86
|
+
"@elliemae/ds-progress-indicator": "3.37.0-next.6",
|
|
87
|
+
"@elliemae/ds-query-builder": "3.37.0-next.6",
|
|
88
|
+
"@elliemae/ds-pagination": "3.37.0-next.6",
|
|
89
|
+
"@elliemae/ds-resizeable-container": "3.37.0-next.6",
|
|
90
|
+
"@elliemae/ds-ribbon": "3.37.0-next.6",
|
|
91
|
+
"@elliemae/ds-read-more": "3.37.0-next.6",
|
|
92
|
+
"@elliemae/ds-search-field": "3.37.0-next.6",
|
|
93
|
+
"@elliemae/ds-separator": "3.37.0-next.6",
|
|
94
|
+
"@elliemae/ds-shuttle-v2": "3.37.0-next.6",
|
|
95
|
+
"@elliemae/ds-shuttle": "3.37.0-next.6",
|
|
96
|
+
"@elliemae/ds-side-panel": "3.37.0-next.6",
|
|
97
|
+
"@elliemae/ds-skeleton": "3.37.0-next.6",
|
|
98
|
+
"@elliemae/ds-slider": "3.37.0-next.6",
|
|
99
|
+
"@elliemae/ds-spinner": "3.37.0-next.6",
|
|
100
|
+
"@elliemae/ds-square-indicator": "3.37.0-next.6",
|
|
101
|
+
"@elliemae/ds-stepper": "3.37.0-next.6",
|
|
102
|
+
"@elliemae/ds-system": "3.37.0-next.6",
|
|
103
|
+
"@elliemae/ds-tabs": "3.37.0-next.6",
|
|
104
|
+
"@elliemae/ds-svg": "3.37.0-next.6",
|
|
105
|
+
"@elliemae/ds-text-wrapper": "3.37.0-next.6",
|
|
106
|
+
"@elliemae/ds-time-picker": "3.37.0-next.6",
|
|
107
|
+
"@elliemae/ds-test-utils": "3.37.0-next.6",
|
|
108
|
+
"@elliemae/ds-toolbar": "3.37.0-next.6",
|
|
109
|
+
"@elliemae/ds-toolbar-v2": "3.37.0-next.6",
|
|
110
|
+
"@elliemae/ds-tooltip": "3.37.0-next.6",
|
|
111
|
+
"@elliemae/ds-toast": "3.37.0-next.6",
|
|
112
|
+
"@elliemae/ds-transition": "3.37.0-next.6",
|
|
113
|
+
"@elliemae/ds-tree-model": "3.37.0-next.6",
|
|
114
|
+
"@elliemae/ds-treeview": "3.37.0-next.6",
|
|
115
|
+
"@elliemae/ds-truncated-tooltip-text": "3.37.0-next.6",
|
|
116
|
+
"@elliemae/ds-truncated-expandable-text": "3.37.0-next.6",
|
|
117
|
+
"@elliemae/ds-uploader": "3.37.0-next.6",
|
|
118
|
+
"@elliemae/ds-utilities": "3.37.0-next.6",
|
|
119
|
+
"@elliemae/ds-typography": "3.37.0-next.6",
|
|
120
|
+
"@elliemae/ds-virtual-list": "3.37.0-next.6",
|
|
121
|
+
"@elliemae/ds-zipcode-search": "3.37.0-next.6",
|
|
122
|
+
"@elliemae/ds-wysiwygeditor": "3.37.0-next.6",
|
|
123
|
+
"@elliemae/ds-wizard": "3.37.0-next.6",
|
|
124
|
+
"@elliemae/ds-zoom": "3.37.0-next.6"
|
|
125
125
|
}
|
|
126
126
|
}
|