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
@@ -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 displayURL = new Urlbuilder(PATH_E2E_CARD_V3, 'display-test');
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 emptyURL = new Urlbuilder(PATH_E2E_CARD_V3, 'empty-test');
16
+ static multiActionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'multi-action-test');
16
17
 
17
- static objectURL = new Urlbuilder(PATH_E2E_CARD_V3, 'object-test');
18
+ static multiSelectURL = new Urlbuilder(PATH_E2E_CARD_V3, 'multi-select-test');
18
19
 
19
- static selectURL = new Urlbuilder(PATH_E2E_CARD_V3, 'select-test');
20
+ static noActionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'no-action-test');
20
21
 
21
- static statesURL = new Urlbuilder(PATH_E2E_CARD_V3, 'states-test');
22
+ static notificationBadgesURL = new Urlbuilder(PATH_E2E_CARD_V3, 'notification-badges-test');
22
23
 
23
- // selectors
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.5",
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.5",
7
- "@elliemae/ds-accordion": "3.37.0-next.5",
8
- "@elliemae/ds-backdrop": "3.37.0-next.5",
9
- "@elliemae/ds-banner": "3.37.0-next.5",
10
- "@elliemae/ds-breadcrumb": "3.37.0-next.5",
11
- "@elliemae/ds-app-picker": "3.37.0-next.5",
12
- "@elliemae/ds-button-group": "3.37.0-next.5",
13
- "@elliemae/ds-basic": "3.37.0-next.5",
14
- "@elliemae/ds-button": "3.37.0-next.5",
15
- "@elliemae/ds-button-v1": "3.37.0-next.5",
16
- "@elliemae/ds-button-v2": "3.37.0-next.5",
17
- "@elliemae/ds-card-array": "3.37.0-next.5",
18
- "@elliemae/ds-card": "3.37.0-next.5",
19
- "@elliemae/ds-card-navigation": "3.37.0-next.5",
20
- "@elliemae/ds-card-v2": "3.37.0-next.5",
21
- "@elliemae/ds-card-v2-action-addon": "3.37.0-next.5",
22
- "@elliemae/ds-card-v2-group": "3.37.0-next.5",
23
- "@elliemae/ds-chat": "3.37.0-next.5",
24
- "@elliemae/ds-chat-tile": "3.37.0-next.5",
25
- "@elliemae/ds-chat-bubble": "3.37.0-next.5",
26
- "@elliemae/ds-codeeditor": "3.37.0-next.5",
27
- "@elliemae/ds-chip": "3.37.0-next.5",
28
- "@elliemae/ds-circular-progress-indicator": "3.37.0-next.5",
29
- "@elliemae/ds-comments": "3.37.0-next.5",
30
- "@elliemae/ds-csv-converter": "3.37.0-next.5",
31
- "@elliemae/ds-data-table-cell-header": "3.37.0-next.5",
32
- "@elliemae/ds-controlled-form": "3.37.0-next.5",
33
- "@elliemae/ds-datagrids": "3.37.0-next.5",
34
- "@elliemae/ds-data-table": "3.37.0-next.5",
35
- "@elliemae/ds-dataviz": "3.37.0-next.5",
36
- "@elliemae/ds-dataviz-pie": "3.37.0-next.5",
37
- "@elliemae/ds-date-picker": "3.37.0-next.5",
38
- "@elliemae/ds-date-range-picker": "3.37.0-next.5",
39
- "@elliemae/ds-date-range-selector": "3.37.0-next.5",
40
- "@elliemae/ds-date-time-picker": "3.37.0-next.5",
41
- "@elliemae/ds-date-time-recurrence-picker": "3.37.0-next.5",
42
- "@elliemae/ds-decision-graph": "3.37.0-next.5",
43
- "@elliemae/ds-dropdownmenu": "3.37.0-next.5",
44
- "@elliemae/ds-dialog": "3.37.0-next.5",
45
- "@elliemae/ds-dropzone": "3.37.0-next.5",
46
- "@elliemae/ds-drag-and-drop": "3.37.0-next.5",
47
- "@elliemae/ds-fast-list": "3.37.0-next.5",
48
- "@elliemae/ds-filterbar": "3.37.0-next.5",
49
- "@elliemae/ds-form-date-range-picker": "3.37.0-next.5",
50
- "@elliemae/ds-form": "3.37.0-next.5",
51
- "@elliemae/ds-form-layout-blocks": "3.37.0-next.5",
52
- "@elliemae/ds-form-date-time-picker": "3.37.0-next.5",
53
- "@elliemae/ds-form-layout-label": "3.37.0-next.5",
54
- "@elliemae/ds-global-header": "3.37.0-next.5",
55
- "@elliemae/ds-grid": "3.37.0-next.5",
56
- "@elliemae/ds-header": "3.37.0-next.5",
57
- "@elliemae/ds-group-box": "3.37.0-next.5",
58
- "@elliemae/ds-hooks-fontsize-detector": "3.37.0-next.5",
59
- "@elliemae/ds-hooks-fontsize-media": "3.37.0-next.5",
60
- "@elliemae/ds-icon": "3.37.0-next.5",
61
- "@elliemae/ds-image": "3.37.0-next.5",
62
- "@elliemae/ds-icons": "3.37.0-next.5",
63
- "@elliemae/ds-imagelibrarymodal": "3.37.0-next.5",
64
- "@elliemae/ds-indeterminate-progress-indicator": "3.37.0-next.5",
65
- "@elliemae/ds-label-value": "3.37.0-next.5",
66
- "@elliemae/ds-left-navigation": "3.37.0-next.5",
67
- "@elliemae/ds-list-section-header": "3.37.0-next.5",
68
- "@elliemae/ds-menu": "3.37.0-next.5",
69
- "@elliemae/ds-loading-indicator": "3.37.0-next.5",
70
- "@elliemae/ds-mobile": "3.37.0-next.5",
71
- "@elliemae/ds-mini-toolbar": "3.37.0-next.5",
72
- "@elliemae/ds-modal": "3.37.0-next.5",
73
- "@elliemae/ds-menu-items": "3.37.0-next.5",
74
- "@elliemae/ds-number-range-field": "3.37.0-next.5",
75
- "@elliemae/ds-modal-slide": "3.37.0-next.5",
76
- "@elliemae/ds-notification-badge": "3.37.0-next.5",
77
- "@elliemae/ds-page-header-v1": "3.37.0-next.5",
78
- "@elliemae/ds-page-header": "3.37.0-next.5",
79
- "@elliemae/ds-page-layout": "3.37.0-next.5",
80
- "@elliemae/ds-page-number": "3.37.0-next.5",
81
- "@elliemae/ds-page-header-v2": "3.37.0-next.5",
82
- "@elliemae/ds-pagination": "3.37.0-next.5",
83
- "@elliemae/ds-pills": "3.37.0-next.5",
84
- "@elliemae/ds-popover": "3.37.0-next.5",
85
- "@elliemae/ds-popper": "3.37.0-next.5",
86
- "@elliemae/ds-popperjs": "3.37.0-next.5",
87
- "@elliemae/ds-progress-indicator": "3.37.0-next.5",
88
- "@elliemae/ds-read-more": "3.37.0-next.5",
89
- "@elliemae/ds-query-builder": "3.37.0-next.5",
90
- "@elliemae/ds-ribbon": "3.37.0-next.5",
91
- "@elliemae/ds-resizeable-container": "3.37.0-next.5",
92
- "@elliemae/ds-search-field": "3.37.0-next.5",
93
- "@elliemae/ds-separator": "3.37.0-next.5",
94
- "@elliemae/ds-shuttle": "3.37.0-next.5",
95
- "@elliemae/ds-shuttle-v2": "3.37.0-next.5",
96
- "@elliemae/ds-skeleton": "3.37.0-next.5",
97
- "@elliemae/ds-side-panel": "3.37.0-next.5",
98
- "@elliemae/ds-slider": "3.37.0-next.5",
99
- "@elliemae/ds-spinner": "3.37.0-next.5",
100
- "@elliemae/ds-square-indicator": "3.37.0-next.5",
101
- "@elliemae/ds-stepper": "3.37.0-next.5",
102
- "@elliemae/ds-svg": "3.37.0-next.5",
103
- "@elliemae/ds-system": "3.37.0-next.5",
104
- "@elliemae/ds-test-utils": "3.37.0-next.5",
105
- "@elliemae/ds-text-wrapper": "3.37.0-next.5",
106
- "@elliemae/ds-tabs": "3.37.0-next.5",
107
- "@elliemae/ds-toast": "3.37.0-next.5",
108
- "@elliemae/ds-time-picker": "3.37.0-next.5",
109
- "@elliemae/ds-toolbar": "3.37.0-next.5",
110
- "@elliemae/ds-toolbar-v2": "3.37.0-next.5",
111
- "@elliemae/ds-transition": "3.37.0-next.5",
112
- "@elliemae/ds-tooltip": "3.37.0-next.5",
113
- "@elliemae/ds-truncated-expandable-text": "3.37.0-next.5",
114
- "@elliemae/ds-tree-model": "3.37.0-next.5",
115
- "@elliemae/ds-treeview": "3.37.0-next.5",
116
- "@elliemae/ds-typography": "3.37.0-next.5",
117
- "@elliemae/ds-truncated-tooltip-text": "3.37.0-next.5",
118
- "@elliemae/ds-uploader": "3.37.0-next.5",
119
- "@elliemae/ds-utilities": "3.37.0-next.5",
120
- "@elliemae/ds-wysiwygeditor": "3.37.0-next.5",
121
- "@elliemae/ds-virtual-list": "3.37.0-next.5",
122
- "@elliemae/ds-wizard": "3.37.0-next.5",
123
- "@elliemae/ds-zoom": "3.37.0-next.5",
124
- "@elliemae/ds-zipcode-search": "3.37.0-next.5"
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
  }