dimsum-e2e-tests 3.51.0-rc.21 → 3.51.0-rc.22

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,14 @@
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.51.0-rc.22](https://git.elliemae.io/platform-ui/dimsum/compare/v3.51.0-rc.21...v3.51.0-rc.22) (2025-03-18)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-form-radio:: add visual test for wrapLabel prop [PUI-15712](https://jira.elliemae.io/browse/PUI-15712) ([#7382](https://git.elliemae.io/platform-ui/dimsum/issues/7382)) ([25fe9ef](https://git.elliemae.io/platform-ui/dimsum/commit/25fe9efcd43cd1cd00b9eb4816494bbae1ca0a28))
11
+ - ds-tabs:: add visual test for carousel prop [PUI-15723](https://jira.elliemae.io/browse/PUI-15723) ([#7383](https://git.elliemae.io/platform-ui/dimsum/issues/7383)) ([477d627](https://git.elliemae.io/platform-ui/dimsum/commit/477d627c6b32d166518a4b661daa14b25dcc1991))
12
+ - ds-treeview:: add visual test for removeWidthMaxContent prop [PUI-15729](https://jira.elliemae.io/browse/PUI-15729) ([#7385](https://git.elliemae.io/platform-ui/dimsum/issues/7385)) ([be4bac8](https://git.elliemae.io/platform-ui/dimsum/commit/be4bac81281642eb2406025cd6345779ed0bfc63))
13
+
6
14
  ## [3.51.0-rc.21](https://git.elliemae.io/platform-ui/dimsum/compare/v3.51.0-rc.20...v3.51.0-rc.21) (2025-03-18)
7
15
 
8
16
  **Note:** Version bump only for package dimsum-e2e-tests
@@ -14,6 +14,8 @@ export default class DSControlledRadioCO extends PageObject {
14
14
 
15
15
  static applyAriaDisabled = new Urlbuilder(PATH_E2E_RADIO, 'apply-aria-disabled-test');
16
16
 
17
+ static wrapLabel = new Urlbuilder(PATH_E2E_RADIO, 'wrap-label');
18
+
17
19
  static async getRadio() {
18
20
  return $('[data-testid="ds-radio"]');
19
21
  }
@@ -0,0 +1,15 @@
1
+ import DSControlledRadioCO from '../DSControlledRadioCO';
2
+
3
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
4
+ describe('PUI-15710 - [DSControlledRadio] wrapLabel prop - visual Test', () => {
5
+ before('loading page', async () => {
6
+ const errorOnGo = await DSControlledRadioCO.wrapLabel.go();
7
+ if (errorOnGo) throw errorOnGo;
8
+ });
9
+ it('01: the first label should be wrapped', async () => {
10
+ await browser.eyesOpen();
11
+ const snapshot = await browser.eyesCheckSnapshot(DSControlledRadioCO.snapshotPath('radio-wrap-label'));
12
+ await expect(snapshot).toEqual(0);
13
+ });
14
+ });
15
+ }
@@ -4,20 +4,6 @@ import DSTabsCO from './DSTabsCO';
4
4
  import { mouseOver } from '../helpers';
5
5
 
6
6
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
7
- describe('PUI-5600 - Selected reposition', () => {
8
- before('loading page', async () => {
9
- const errorOnGo = await DSTabsCO.carouselFixed.go();
10
- if (errorOnGo) throw errorOnGo;
11
- });
12
- it('should reposition and display full tab', async () => {
13
- await (await DSTabsCO.getTabsList()).waitForDisplayed();
14
- await DSTabsCO.carouselNav();
15
- await (await DSTabsCO.getTab(4)).click();
16
- const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-reposition'));
17
- await expect(snapshot).toEqual(0);
18
- });
19
- });
20
-
21
7
  describe('PUI-5784 - Tabs, Focus state of the tabs - Visual Test', () => {
22
8
  before('loading page', async () => {
23
9
  const errorOnGo = await DSTabsCO.disabledURL.go();
@@ -149,25 +135,6 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
149
135
  });
150
136
  });
151
137
 
152
- describe('PUI-8068 - Tabs, integrated example carousel', () => {
153
- before('loading page', async () => {
154
- const errorOnGo = await DSTabsCO.integratedCarousel.go();
155
- if (errorOnGo) throw errorOnGo;
156
- });
157
- it('should display a integrated example tab default to the left ', async () => {
158
- const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-intrgrated-car-default'));
159
- await expect(snapshot).toEqual(0);
160
- });
161
- it('should display a integrated example tab to the right one focused', async () => {
162
- const rightChevron = await DSTabsCO.getChevronRight();
163
- const tab = await DSTabsCO.getTab(11);
164
- await rightChevron.click();
165
- await tab.click();
166
- const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-intrgrated-car-moved'));
167
- await expect(snapshot).toEqual(0);
168
- });
169
- });
170
-
171
138
  describe('PUI-8069 - Tabs, nested', () => {
172
139
  before('loading page', async () => {
173
140
  const errorOnGo = await DSTabsCO.nestedURL.go();
@@ -46,6 +46,8 @@ export default class DSTabsCO extends PageObject {
46
46
 
47
47
  static contentVisibility = new Urlbuilder(PATH_E2E_TABS, 'pui-15366-fix-works-in-all-notable-configs-test');
48
48
 
49
+ static integratedCarouselFull = new Urlbuilder(PATH_E2E_TABS, 'integrated-example-carousel-full-test');
50
+
49
51
  static getUrl(component = 'basic') {
50
52
  return PageObject.getUrl(PATH_E2E_TABS, component);
51
53
  }
@@ -94,6 +96,8 @@ export default class DSTabsCO extends PageObject {
94
96
 
95
97
  static getSubTabsByIndex = async (index) => getElementByIndex(this.getSubTabs, index);
96
98
 
99
+ static getTabByName = async (name) => $(`button*=${name}`);
100
+
97
101
  // Snapshots
98
102
  static snapshotPath(example = 'basic') {
99
103
  return PageObject.getSnapshotPathBuilder('Tabs', example);
@@ -0,0 +1,58 @@
1
+ /* eslint-disable max-lines */
2
+ import DSTabsCO from '../DSTabsCO';
3
+
4
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
5
+ describe('PUI-5600 - Selected reposition', () => {
6
+ before('loading page', async () => {
7
+ const errorOnGo = await DSTabsCO.carouselFixed.go();
8
+ if (errorOnGo) throw errorOnGo;
9
+ });
10
+ it('should reposition and display full tab', async () => {
11
+ await (await DSTabsCO.getTabsList()).waitForDisplayed();
12
+ await DSTabsCO.carouselNav();
13
+ await (await DSTabsCO.getTab(4)).click();
14
+ const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-reposition'));
15
+ await expect(snapshot).toEqual(0);
16
+ });
17
+ });
18
+ describe('PUI-8068 - Tabs, integrated example carousel', () => {
19
+ before('loading page', async () => {
20
+ const errorOnGo = await DSTabsCO.integratedCarousel.go();
21
+ if (errorOnGo) throw errorOnGo;
22
+ });
23
+ it('should display a integrated example tab default to the left ', async () => {
24
+ const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-intrgrated-car-default'));
25
+ await expect(snapshot).toEqual(0);
26
+ });
27
+ it('should display a integrated example tab to the right one focused', async () => {
28
+ const rightChevron = await DSTabsCO.getChevronRight();
29
+ const tab = await DSTabsCO.getTab(11);
30
+ await rightChevron.click();
31
+ await tab.click();
32
+ const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-intrgrated-car-moved'));
33
+ await expect(snapshot).toEqual(0);
34
+ });
35
+ });
36
+ describe('PUI-15721 - Tabs - Carousel - animation testing - visual test', () => {
37
+ before('loading page', async () => {
38
+ const errorOnGo = await DSTabsCO.integratedCarouselFull.go();
39
+ if (errorOnGo) throw errorOnGo;
40
+ });
41
+ it('01: should select last tab ', async () => {
42
+ await DSTabsCO.carouselNav('right', 10);
43
+
44
+ const theEndTab = await DSTabsCO.getTabByName('The end');
45
+ await theEndTab.click();
46
+ const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-carousel-last-tab'));
47
+ await expect(snapshot).toEqual(0);
48
+ });
49
+ it('02: should select another tab and the focus and selected indicator should be on the selected tab', async () => {
50
+ await DSTabsCO.carouselNav('left', 1);
51
+
52
+ const tab = await DSTabsCO.getTabByName('Just to make it bigger');
53
+ await tab.click();
54
+ const snapshot = await browser.checkSnapshot(DSTabsCO.snapshotPath('tab-carousel-selected-tab'));
55
+ await expect(snapshot).toEqual(0);
56
+ });
57
+ });
58
+ }
@@ -87,6 +87,8 @@ export default class DSTreeViewCO extends PageObject {
87
87
 
88
88
  static applyAriaDisabled = new Urlbuilder(PATH_E2E_TREEVIEW, 'apply-aria-disabled-test');
89
89
 
90
+ static removeWidthMaxContentProp = new Urlbuilder(PATH_E2E_TREEVIEW, 'pui-15656');
91
+
90
92
  // Selectors
91
93
  static async getTreeList() {
92
94
  return $('[data-testid="tree-list"]');
@@ -0,0 +1,16 @@
1
+ /* eslint-disable wdio/no-pause */
2
+ import DSTreeViewCO from '../DSTreeViewCO';
3
+
4
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
5
+ describe('PUI-15727 - [TreeView] removeWidthMaxContent Prop - visual test', () => {
6
+ before(async () => {
7
+ const errorOnGo = await DSTreeViewCO.removeWidthMaxContentProp.go();
8
+ if (errorOnGo) throw errorOnGo;
9
+ });
10
+ it('01: should display 3 treeViews with default & removeWidthMaxContent (false/true) - visual test', async () => {
11
+ await browser.eyesOpen();
12
+ const snapshot = await browser.eyesCheckSnapshot(DSTreeViewCO.snapshotPath('treeview-removeWidthMaxContent'));
13
+ await expect(snapshot).toEqual(0);
14
+ });
15
+ });
16
+ }
package/package.json CHANGED
@@ -1,125 +1,125 @@
1
1
  {
2
2
  "name": "dimsum-e2e-tests",
3
- "version": "3.51.0-rc.21",
3
+ "version": "3.51.0-rc.22",
4
4
  "description": "End-to-end tests for dimsum library",
5
5
  "dependencies": {
6
- "@elliemae/ds-app-picker": "3.51.0-rc.21",
7
- "@elliemae/ds-accordion": "3.51.0-rc.21",
8
- "@elliemae/ds-accessibility": "3.51.0-rc.21",
9
- "@elliemae/ds-breadcrumb": "3.51.0-rc.21",
10
- "@elliemae/ds-button-v1": "3.51.0-rc.21",
11
- "@elliemae/ds-banner": "3.51.0-rc.21",
12
- "@elliemae/ds-button-v2": "3.51.0-rc.21",
13
- "@elliemae/ds-button-group": "3.51.0-rc.21",
14
- "@elliemae/ds-card": "3.51.0-rc.21",
15
- "@elliemae/ds-card-v2": "3.51.0-rc.21",
16
- "@elliemae/ds-card-navigation": "3.51.0-rc.21",
17
- "@elliemae/ds-card-array": "3.51.0-rc.21",
18
- "@elliemae/ds-button": "3.51.0-rc.21",
19
- "@elliemae/ds-chip": "3.51.0-rc.21",
20
- "@elliemae/ds-card-v2-action-addon": "3.51.0-rc.21",
21
- "@elliemae/ds-backdrop": "3.51.0-rc.21",
22
- "@elliemae/ds-circular-progress-indicator": "3.51.0-rc.21",
23
- "@elliemae/ds-chat": "3.51.0-rc.21",
24
- "@elliemae/ds-basic": "3.51.0-rc.21",
25
- "@elliemae/ds-chat-tile": "3.51.0-rc.21",
26
- "@elliemae/ds-codeeditor": "3.51.0-rc.21",
27
- "@elliemae/ds-card-v2-group": "3.51.0-rc.21",
28
- "@elliemae/ds-chat-bubble": "3.51.0-rc.21",
29
- "@elliemae/ds-csv-converter": "3.51.0-rc.21",
30
- "@elliemae/ds-controlled-form": "3.51.0-rc.21",
31
- "@elliemae/ds-data-table-cell-header": "3.51.0-rc.21",
32
- "@elliemae/ds-comments": "3.51.0-rc.21",
33
- "@elliemae/ds-data-table": "3.51.0-rc.21",
34
- "@elliemae/ds-dataviz": "3.51.0-rc.21",
35
- "@elliemae/ds-datagrids": "3.51.0-rc.21",
36
- "@elliemae/ds-dataviz-pie": "3.51.0-rc.21",
37
- "@elliemae/ds-date-picker": "3.51.0-rc.21",
38
- "@elliemae/ds-date-range-selector": "3.51.0-rc.21",
39
- "@elliemae/ds-date-range-picker": "3.51.0-rc.21",
40
- "@elliemae/ds-date-time-picker": "3.51.0-rc.21",
41
- "@elliemae/ds-date-time-recurrence-picker": "3.51.0-rc.21",
42
- "@elliemae/ds-decision-graph": "3.51.0-rc.21",
43
- "@elliemae/ds-dropdownmenu": "3.51.0-rc.21",
44
- "@elliemae/ds-dropzone": "3.51.0-rc.21",
45
- "@elliemae/ds-drag-and-drop": "3.51.0-rc.21",
46
- "@elliemae/ds-fast-list": "3.51.0-rc.21",
47
- "@elliemae/ds-dialog": "3.51.0-rc.21",
48
- "@elliemae/ds-form-date-range-picker": "3.51.0-rc.21",
49
- "@elliemae/ds-form-date-time-picker": "3.51.0-rc.21",
50
- "@elliemae/ds-form-layout-blocks": "3.51.0-rc.21",
51
- "@elliemae/ds-global-header": "3.51.0-rc.21",
52
- "@elliemae/ds-form": "3.51.0-rc.21",
53
- "@elliemae/ds-form-layout-label": "3.51.0-rc.21",
54
- "@elliemae/ds-grid": "3.51.0-rc.21",
55
- "@elliemae/ds-header": "3.51.0-rc.21",
56
- "@elliemae/ds-hooks-fontsize-detector": "3.51.0-rc.21",
57
- "@elliemae/ds-hooks-fontsize-media": "3.51.0-rc.21",
58
- "@elliemae/ds-filterbar": "3.51.0-rc.21",
59
- "@elliemae/ds-icons": "3.51.0-rc.21",
60
- "@elliemae/ds-imagelibrarymodal": "3.51.0-rc.21",
61
- "@elliemae/ds-group-box": "3.51.0-rc.21",
62
- "@elliemae/ds-icon": "3.51.0-rc.21",
63
- "@elliemae/ds-image": "3.51.0-rc.21",
64
- "@elliemae/ds-indeterminate-progress-indicator": "3.51.0-rc.21",
65
- "@elliemae/ds-label-value": "3.51.0-rc.21",
66
- "@elliemae/ds-list-section-header": "3.51.0-rc.21",
67
- "@elliemae/ds-left-navigation": "3.51.0-rc.21",
68
- "@elliemae/ds-loading-indicator": "3.51.0-rc.21",
69
- "@elliemae/ds-menu": "3.51.0-rc.21",
70
- "@elliemae/ds-mobile": "3.51.0-rc.21",
71
- "@elliemae/ds-menu-items": "3.51.0-rc.21",
72
- "@elliemae/ds-notification-badge": "3.51.0-rc.21",
73
- "@elliemae/ds-page-header-v1": "3.51.0-rc.21",
74
- "@elliemae/ds-page-header": "3.51.0-rc.21",
75
- "@elliemae/ds-page-header-v2": "3.51.0-rc.21",
76
- "@elliemae/ds-mini-toolbar": "3.51.0-rc.21",
77
- "@elliemae/ds-modal-slide": "3.51.0-rc.21",
78
- "@elliemae/ds-page-number": "3.51.0-rc.21",
79
- "@elliemae/ds-page-layout": "3.51.0-rc.21",
80
- "@elliemae/ds-pagination": "3.51.0-rc.21",
81
- "@elliemae/ds-pills": "3.51.0-rc.21",
82
- "@elliemae/ds-modal": "3.51.0-rc.21",
83
- "@elliemae/ds-popover": "3.51.0-rc.21",
84
- "@elliemae/ds-popperjs": "3.51.0-rc.21",
85
- "@elliemae/ds-popper": "3.51.0-rc.21",
86
- "@elliemae/ds-progress-indicator": "3.51.0-rc.21",
87
- "@elliemae/ds-read-more": "3.51.0-rc.21",
88
- "@elliemae/ds-number-range-field": "3.51.0-rc.21",
89
- "@elliemae/ds-query-builder": "3.51.0-rc.21",
90
- "@elliemae/ds-separator": "3.51.0-rc.21",
91
- "@elliemae/ds-ribbon": "3.51.0-rc.21",
92
- "@elliemae/ds-resizeable-container": "3.51.0-rc.21",
93
- "@elliemae/ds-shuttle": "3.51.0-rc.21",
94
- "@elliemae/ds-search-field": "3.51.0-rc.21",
95
- "@elliemae/ds-side-panel": "3.51.0-rc.21",
96
- "@elliemae/ds-shuttle-v2": "3.51.0-rc.21",
97
- "@elliemae/ds-stepper": "3.51.0-rc.21",
98
- "@elliemae/ds-slider": "3.51.0-rc.21",
99
- "@elliemae/ds-square-indicator": "3.51.0-rc.21",
100
- "@elliemae/ds-spinner": "3.51.0-rc.21",
101
- "@elliemae/ds-svg": "3.51.0-rc.21",
102
- "@elliemae/ds-tabs": "3.51.0-rc.21",
103
- "@elliemae/ds-skeleton": "3.51.0-rc.21",
104
- "@elliemae/ds-test-utils": "3.51.0-rc.21",
105
- "@elliemae/ds-system": "3.51.0-rc.21",
106
- "@elliemae/ds-time-picker": "3.51.0-rc.21",
107
- "@elliemae/ds-toolbar": "3.51.0-rc.21",
108
- "@elliemae/ds-toast": "3.51.0-rc.21",
109
- "@elliemae/ds-toolbar-v2": "3.51.0-rc.21",
110
- "@elliemae/ds-text-wrapper": "3.51.0-rc.21",
111
- "@elliemae/ds-transition": "3.51.0-rc.21",
112
- "@elliemae/ds-tooltip": "3.51.0-rc.21",
113
- "@elliemae/ds-treeview": "3.51.0-rc.21",
114
- "@elliemae/ds-tree-model": "3.51.0-rc.21",
115
- "@elliemae/ds-truncated-tooltip-text": "3.51.0-rc.21",
116
- "@elliemae/ds-truncated-expandable-text": "3.51.0-rc.21",
117
- "@elliemae/ds-typography": "3.51.0-rc.21",
118
- "@elliemae/ds-uploader": "3.51.0-rc.21",
119
- "@elliemae/ds-wizard": "3.51.0-rc.21",
120
- "@elliemae/ds-wysiwygeditor": "3.51.0-rc.21",
121
- "@elliemae/ds-virtual-list": "3.51.0-rc.21",
122
- "@elliemae/ds-zoom": "3.51.0-rc.21",
123
- "@elliemae/ds-zipcode-search": "3.51.0-rc.21"
6
+ "@elliemae/ds-accessibility": "3.51.0-rc.22",
7
+ "@elliemae/ds-accordion": "3.51.0-rc.22",
8
+ "@elliemae/ds-app-picker": "3.51.0-rc.22",
9
+ "@elliemae/ds-backdrop": "3.51.0-rc.22",
10
+ "@elliemae/ds-banner": "3.51.0-rc.22",
11
+ "@elliemae/ds-breadcrumb": "3.51.0-rc.22",
12
+ "@elliemae/ds-basic": "3.51.0-rc.22",
13
+ "@elliemae/ds-button": "3.51.0-rc.22",
14
+ "@elliemae/ds-button-v1": "3.51.0-rc.22",
15
+ "@elliemae/ds-button-group": "3.51.0-rc.22",
16
+ "@elliemae/ds-button-v2": "3.51.0-rc.22",
17
+ "@elliemae/ds-card": "3.51.0-rc.22",
18
+ "@elliemae/ds-card-array": "3.51.0-rc.22",
19
+ "@elliemae/ds-card-navigation": "3.51.0-rc.22",
20
+ "@elliemae/ds-card-v2-action-addon": "3.51.0-rc.22",
21
+ "@elliemae/ds-card-v2": "3.51.0-rc.22",
22
+ "@elliemae/ds-chat": "3.51.0-rc.22",
23
+ "@elliemae/ds-card-v2-group": "3.51.0-rc.22",
24
+ "@elliemae/ds-chat-bubble": "3.51.0-rc.22",
25
+ "@elliemae/ds-chat-tile": "3.51.0-rc.22",
26
+ "@elliemae/ds-chip": "3.51.0-rc.22",
27
+ "@elliemae/ds-circular-progress-indicator": "3.51.0-rc.22",
28
+ "@elliemae/ds-codeeditor": "3.51.0-rc.22",
29
+ "@elliemae/ds-comments": "3.51.0-rc.22",
30
+ "@elliemae/ds-controlled-form": "3.51.0-rc.22",
31
+ "@elliemae/ds-csv-converter": "3.51.0-rc.22",
32
+ "@elliemae/ds-data-table": "3.51.0-rc.22",
33
+ "@elliemae/ds-data-table-cell-header": "3.51.0-rc.22",
34
+ "@elliemae/ds-datagrids": "3.51.0-rc.22",
35
+ "@elliemae/ds-dataviz-pie": "3.51.0-rc.22",
36
+ "@elliemae/ds-date-range-picker": "3.51.0-rc.22",
37
+ "@elliemae/ds-dataviz": "3.51.0-rc.22",
38
+ "@elliemae/ds-date-time-recurrence-picker": "3.51.0-rc.22",
39
+ "@elliemae/ds-date-range-selector": "3.51.0-rc.22",
40
+ "@elliemae/ds-date-picker": "3.51.0-rc.22",
41
+ "@elliemae/ds-date-time-picker": "3.51.0-rc.22",
42
+ "@elliemae/ds-decision-graph": "3.51.0-rc.22",
43
+ "@elliemae/ds-dialog": "3.51.0-rc.22",
44
+ "@elliemae/ds-drag-and-drop": "3.51.0-rc.22",
45
+ "@elliemae/ds-dropdownmenu": "3.51.0-rc.22",
46
+ "@elliemae/ds-fast-list": "3.51.0-rc.22",
47
+ "@elliemae/ds-dropzone": "3.51.0-rc.22",
48
+ "@elliemae/ds-form": "3.51.0-rc.22",
49
+ "@elliemae/ds-filterbar": "3.51.0-rc.22",
50
+ "@elliemae/ds-form-date-range-picker": "3.51.0-rc.22",
51
+ "@elliemae/ds-form-layout-blocks": "3.51.0-rc.22",
52
+ "@elliemae/ds-form-layout-label": "3.51.0-rc.22",
53
+ "@elliemae/ds-grid": "3.51.0-rc.22",
54
+ "@elliemae/ds-global-header": "3.51.0-rc.22",
55
+ "@elliemae/ds-form-date-time-picker": "3.51.0-rc.22",
56
+ "@elliemae/ds-group-box": "3.51.0-rc.22",
57
+ "@elliemae/ds-header": "3.51.0-rc.22",
58
+ "@elliemae/ds-hooks-fontsize-media": "3.51.0-rc.22",
59
+ "@elliemae/ds-icon": "3.51.0-rc.22",
60
+ "@elliemae/ds-hooks-fontsize-detector": "3.51.0-rc.22",
61
+ "@elliemae/ds-icons": "3.51.0-rc.22",
62
+ "@elliemae/ds-indeterminate-progress-indicator": "3.51.0-rc.22",
63
+ "@elliemae/ds-image": "3.51.0-rc.22",
64
+ "@elliemae/ds-imagelibrarymodal": "3.51.0-rc.22",
65
+ "@elliemae/ds-label-value": "3.51.0-rc.22",
66
+ "@elliemae/ds-left-navigation": "3.51.0-rc.22",
67
+ "@elliemae/ds-list-section-header": "3.51.0-rc.22",
68
+ "@elliemae/ds-loading-indicator": "3.51.0-rc.22",
69
+ "@elliemae/ds-menu": "3.51.0-rc.22",
70
+ "@elliemae/ds-menu-items": "3.51.0-rc.22",
71
+ "@elliemae/ds-mini-toolbar": "3.51.0-rc.22",
72
+ "@elliemae/ds-modal": "3.51.0-rc.22",
73
+ "@elliemae/ds-notification-badge": "3.51.0-rc.22",
74
+ "@elliemae/ds-modal-slide": "3.51.0-rc.22",
75
+ "@elliemae/ds-mobile": "3.51.0-rc.22",
76
+ "@elliemae/ds-number-range-field": "3.51.0-rc.22",
77
+ "@elliemae/ds-page-header-v1": "3.51.0-rc.22",
78
+ "@elliemae/ds-page-header": "3.51.0-rc.22",
79
+ "@elliemae/ds-page-header-v2": "3.51.0-rc.22",
80
+ "@elliemae/ds-page-layout": "3.51.0-rc.22",
81
+ "@elliemae/ds-page-number": "3.51.0-rc.22",
82
+ "@elliemae/ds-pagination": "3.51.0-rc.22",
83
+ "@elliemae/ds-pills": "3.51.0-rc.22",
84
+ "@elliemae/ds-popover": "3.51.0-rc.22",
85
+ "@elliemae/ds-popper": "3.51.0-rc.22",
86
+ "@elliemae/ds-popperjs": "3.51.0-rc.22",
87
+ "@elliemae/ds-query-builder": "3.51.0-rc.22",
88
+ "@elliemae/ds-progress-indicator": "3.51.0-rc.22",
89
+ "@elliemae/ds-read-more": "3.51.0-rc.22",
90
+ "@elliemae/ds-search-field": "3.51.0-rc.22",
91
+ "@elliemae/ds-resizeable-container": "3.51.0-rc.22",
92
+ "@elliemae/ds-shuttle": "3.51.0-rc.22",
93
+ "@elliemae/ds-separator": "3.51.0-rc.22",
94
+ "@elliemae/ds-shuttle-v2": "3.51.0-rc.22",
95
+ "@elliemae/ds-ribbon": "3.51.0-rc.22",
96
+ "@elliemae/ds-side-panel": "3.51.0-rc.22",
97
+ "@elliemae/ds-skeleton": "3.51.0-rc.22",
98
+ "@elliemae/ds-slider": "3.51.0-rc.22",
99
+ "@elliemae/ds-square-indicator": "3.51.0-rc.22",
100
+ "@elliemae/ds-spinner": "3.51.0-rc.22",
101
+ "@elliemae/ds-stepper": "3.51.0-rc.22",
102
+ "@elliemae/ds-svg": "3.51.0-rc.22",
103
+ "@elliemae/ds-system": "3.51.0-rc.22",
104
+ "@elliemae/ds-tabs": "3.51.0-rc.22",
105
+ "@elliemae/ds-test-utils": "3.51.0-rc.22",
106
+ "@elliemae/ds-text-wrapper": "3.51.0-rc.22",
107
+ "@elliemae/ds-time-picker": "3.51.0-rc.22",
108
+ "@elliemae/ds-toolbar": "3.51.0-rc.22",
109
+ "@elliemae/ds-toast": "3.51.0-rc.22",
110
+ "@elliemae/ds-tooltip": "3.51.0-rc.22",
111
+ "@elliemae/ds-toolbar-v2": "3.51.0-rc.22",
112
+ "@elliemae/ds-transition": "3.51.0-rc.22",
113
+ "@elliemae/ds-treeview": "3.51.0-rc.22",
114
+ "@elliemae/ds-tree-model": "3.51.0-rc.22",
115
+ "@elliemae/ds-truncated-tooltip-text": "3.51.0-rc.22",
116
+ "@elliemae/ds-truncated-expandable-text": "3.51.0-rc.22",
117
+ "@elliemae/ds-typography": "3.51.0-rc.22",
118
+ "@elliemae/ds-uploader": "3.51.0-rc.22",
119
+ "@elliemae/ds-virtual-list": "3.51.0-rc.22",
120
+ "@elliemae/ds-zipcode-search": "3.51.0-rc.22",
121
+ "@elliemae/ds-wysiwygeditor": "3.51.0-rc.22",
122
+ "@elliemae/ds-wizard": "3.51.0-rc.22",
123
+ "@elliemae/ds-zoom": "3.51.0-rc.22"
124
124
  }
125
125
  }