dimsum-e2e-tests 3.26.0-next.2 → 3.26.0-next.4

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,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.26.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v3.26.0-next.3...v3.26.0-next.4) (2023-12-11)
7
+
8
+ **Note:** Version bump only for package dimsum-e2e-tests
9
+
10
+ ## [3.26.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v3.26.0-next.2...v3.26.0-next.3) (2023-12-08)
11
+
12
+ ### Features
13
+
14
+ - ds-form-combobox:: single multi packages and native select [PUI-12092](https://jira.elliemae.io/browse/PUI-12092) ([#6435](https://git.elliemae.io/platform-ui/dimsum/issues/6435)) ([ed12c39](https://git.elliemae.io/platform-ui/dimsum/commit/ed12c3976a6e3eb4262f7554673cb28a72e90159))
15
+
6
16
  ## [3.26.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v3.25.0-next.5...v3.26.0-next.2) (2023-12-08)
7
17
 
8
18
  **Note:** Version bump only for package dimsum-e2e-tests
@@ -2,20 +2,24 @@
2
2
  /* eslint-disable import/no-relative-packages */
3
3
  /* eslint-disable max-lines */
4
4
  import { Key } from 'webdriverio';
5
- import { PATH_COMBOBOX_V3_EXAMPLES, PATH_E2E_COMBOBOX_V3 } from '../../../environments/storybook/paths';
5
+ import {
6
+ PATH_COMBOBOX_MULTI_EXAMPLES,
7
+ PATH_COMBOBOX_SINGLE_EXAMPLES,
8
+ PATH_E2E_COMBOBOX_V3,
9
+ } from '../../../environments/storybook/paths';
6
10
  import { PageObject, Urlbuilder } from '../../helpers';
7
11
 
8
12
  export default class DSComboboxCO extends PageObject {
9
13
  // STORIES
10
14
  static disabled = new Urlbuilder(PATH_E2E_COMBOBOX_V3, 'disabled-fixed-width');
11
15
 
12
- static errorState = new Urlbuilder(PATH_COMBOBOX_V3_EXAMPLES, 'error-state');
16
+ static errorState = new Urlbuilder(PATH_COMBOBOX_SINGLE_EXAMPLES, 'error-state');
13
17
 
14
- static insideForm = new Urlbuilder(PATH_COMBOBOX_V3_EXAMPLES, 'inside-form');
18
+ static insideForm = new Urlbuilder(PATH_E2E_COMBOBOX_V3, 'inside-form');
15
19
 
16
20
  static loadingURL = new Urlbuilder(PATH_E2E_COMBOBOX_V3, 'loading-test');
17
21
 
18
- static filterByGroup = new Urlbuilder(PATH_COMBOBOX_V3_EXAMPLES, 'filter-by-group');
22
+ static filterByGroup = new Urlbuilder(PATH_COMBOBOX_MULTI_EXAMPLES, 'filter-by-group');
19
23
 
20
24
  static singleSelectFixedWidth = new Urlbuilder(PATH_E2E_COMBOBOX_V3, 'single-select-fixed-width');
21
25
 
@@ -25,7 +29,7 @@ export default class DSComboboxCO extends PageObject {
25
29
 
26
30
  static multiSelectFixedWidth = new Urlbuilder(PATH_E2E_COMBOBOX_V3, 'multi-select-fixed-width');
27
31
 
28
- static multiSelect = new Urlbuilder(PATH_COMBOBOX_V3_EXAMPLES, 'multi-select');
32
+ static multiSelect = new Urlbuilder(PATH_COMBOBOX_MULTI_EXAMPLES, 'basic');
29
33
 
30
34
  static TenThousandOptionsFixedWidth = new Urlbuilder(PATH_E2E_COMBOBOX_V3, 'ten-thousand-options-fixed-width');
31
35
 
@@ -35,7 +39,7 @@ export default class DSComboboxCO extends PageObject {
35
39
 
36
40
  static advancedFocus = new Urlbuilder(PATH_E2E_COMBOBOX_V3, 'advanced-focus-management-test');
37
41
 
38
- static onlySelectable = new Urlbuilder(PATH_COMBOBOX_V3_EXAMPLES, 'only-selectable');
42
+ static onlySelectable = new Urlbuilder(PATH_COMBOBOX_MULTI_EXAMPLES, 'only-selectable');
39
43
 
40
44
  static inlineDropDownPill = new Urlbuilder(PATH_E2E_COMBOBOX_V3, 'inline-drop-down-pill');
41
45
 
@@ -285,7 +285,7 @@ if (!browser.capabilities['ice:options'].isPhone) {
285
285
  await expect(selectedOption).toHaveTextContaining('(555) 555-5555');
286
286
  });
287
287
  });
288
- describe('PUI-8129 - ComboboxV3:: Single Select - unselect - keyboard func', () => {
288
+ describe.skip('PUI-8129 - ComboboxV3:: Single Select - unselect - keyboard func', () => {
289
289
  before('loading page', async () => {
290
290
  const errorOnGo = await DSComboboxCO.singleSelectFixedWidth.go();
291
291
  if (errorOnGo) throw errorOnGo;
@@ -64,7 +64,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
64
64
  await expect(selectedOption).toHaveTextContaining('(555) 555-5555');
65
65
  });
66
66
  });
67
- describe('PUI-8129 - ComboboxV3:: Single Select - unselect - keyboard func', () => {
67
+ describe.skip('PUI-8129 - ComboboxV3:: Single Select - unselect - keyboard func', () => {
68
68
  before('loading page', async () => {
69
69
  const errorOnGo = await DSComboboxCO.singleSelectFixedWidth.go();
70
70
  if (errorOnGo) throw errorOnGo;
@@ -0,0 +1,151 @@
1
+ /* eslint-disable max-lines */
2
+ import DSTabsCO from './DSTabsCO';
3
+ import { axeCoreCheck } from '../helpers';
4
+
5
+ if (
6
+ (!browser.capabilities['ice:options'].isPhone &&
7
+ !browser.capabilities['ice:options'].isTablet &&
8
+ browser.capabilities.browserName === 'chrome') ||
9
+ browser.capabilities.browserName === 'Chrome'
10
+ ) {
11
+ describe('PUI-12089 - Tabs: Basic -AxeCore', () => {
12
+ before('loading page', async () => {
13
+ const errorOnGo = await DSTabsCO.basicURL.go();
14
+ if (errorOnGo) throw errorOnGo;
15
+ });
16
+ it('01: should have basic tab component example passing axe-core scan', async () => {
17
+ await (await DSTabsCO.getTab(1)).waitForDisplayed();
18
+ const result = await axeCoreCheck();
19
+ expect(result.length).toBe(0);
20
+ });
21
+ });
22
+
23
+ describe('PUI-12090 - Tabs: Nested -AxeCore', () => {
24
+ before('loading page', async () => {
25
+ const errorOnGo = await DSTabsCO.nestedURL.go();
26
+ if (errorOnGo) throw errorOnGo;
27
+ });
28
+ it('01:should have nested tabs and pass axe-core scan', async () => {
29
+ const subtab3 = await DSTabsCO.getSubTabsByIndex(2);
30
+ await subtab3.click();
31
+ const result = await axeCoreCheck();
32
+ expect(result.length).toBe(0);
33
+ });
34
+ it('02: should change from parent tab and pass axe-core scan', async () => {
35
+ const tab1 = await DSTabsCO.getTab(1);
36
+ await tab1.click();
37
+ const subtab3 = await DSTabsCO.getSubTabsByIndex(2);
38
+ await subtab3.click();
39
+ const result = await axeCoreCheck();
40
+ expect(result.length).toBe(0);
41
+ });
42
+ });
43
+
44
+ // Unskip after PUI-12097 is fixed
45
+ describe.skip('PUI-12091 - Tabs: Integrated && Carousel -AxeCore', () => {
46
+ before('loading page', async () => {
47
+ const errorOnGo = await DSTabsCO.integratedCarousel.go();
48
+ if (errorOnGo) throw errorOnGo;
49
+ });
50
+ it('01: should have a integrated tabs example to the left by default and pass axe-core scan', async () => {
51
+ await (await DSTabsCO.getTab(1)).waitForDisplayed();
52
+ const result = await axeCoreCheck();
53
+ expect(result.length).toBe(0);
54
+ });
55
+ // eslint-disable-next-line max-len
56
+ it('02: should have a integrated tabs example scrolled to the right, last one selected and pass axe-core scan', async () => {
57
+ const rightChevron = await DSTabsCO.getChevronRight();
58
+ const tab = await DSTabsCO.getTab(11);
59
+ await rightChevron.click();
60
+ await tab.click();
61
+ const result = await axeCoreCheck();
62
+ expect(result.length).toBe(0);
63
+ });
64
+ });
65
+
66
+ describe('PUI-12092 - Tabs, various tab groups (grid) -AxeCore', () => {
67
+ before('loading page', async () => {
68
+ const errorOnGo = await DSTabsCO.withGridURL.go();
69
+ if (errorOnGo) throw errorOnGo;
70
+ });
71
+ it('01: should have tabs with a grid, default selection passing axe-core scan', async () => {
72
+ await (await DSTabsCO.getTab(1)).waitForDisplayed();
73
+ const result = await axeCoreCheck();
74
+ expect(result.length).toBe(0);
75
+ });
76
+ it('02: should have tabs with a grid, interacted passing axe-core scan', async () => {
77
+ await (await DSTabsCO.getTab(1)).click();
78
+ await (await DSTabsCO.getTab(5)).click();
79
+ const result = await axeCoreCheck();
80
+ expect(result.length).toBe(0);
81
+ });
82
+ });
83
+
84
+ // Unskip after PUI-12097 is fixed
85
+ describe.skip('PUI-12093 - Tabs, with modal -AxeCore', () => {
86
+ before('loading page', async () => {
87
+ const errorOnGo = await DSTabsCO.withModalURL.go();
88
+ if (errorOnGo) throw errorOnGo;
89
+ });
90
+ it('should have tabs within a modal by default, passing axe-core scan', async () => {
91
+ const openDialogBtn = $('[data-testid="ds-button"]');
92
+ await openDialogBtn.click();
93
+ await (await DSTabsCO.getTab(4)).waitForDisplayed();
94
+ const result = await axeCoreCheck();
95
+ expect(result.length).toBe(0);
96
+ });
97
+ it('should have tabs within a modal interacted, passing axe-core scan', async () => {
98
+ await (await DSTabsCO.getTab(3)).waitForDisplayed();
99
+ await (await DSTabsCO.getTab(3)).click();
100
+ const result = await axeCoreCheck();
101
+ expect(result.length).toBe(0);
102
+ });
103
+ });
104
+
105
+ describe('PUI-12094 - Tabs, required -AxeCore', () => {
106
+ before('loading page', async () => {
107
+ const errorOnGo = await DSTabsCO.delayedRequired.go();
108
+ if (errorOnGo) throw errorOnGo;
109
+ });
110
+ it('01: should have a required tab and pass axe-core scan', async () => {
111
+ // eslint-disable-next-line wdio/no-pause
112
+ await browser.pause(8000);
113
+ await (await DSTabsCO.getTab(3)).waitForDisplayed();
114
+ const result = await axeCoreCheck();
115
+ expect(result.length).toBe(0);
116
+ });
117
+ it('02: should have a required tab selected', async () => {
118
+ // eslint-disable-next-line wdio/no-pause
119
+ await browser.pause(8000);
120
+ await (await DSTabsCO.getTab(3)).waitForDisplayed();
121
+ await (await DSTabsCO.getTab(3)).click();
122
+ await (await DSTabsCO.getTab(4)).click();
123
+ const result = await axeCoreCheck();
124
+ expect(result.length).toBe(0);
125
+ });
126
+ });
127
+
128
+ describe('PUI-12095 - Tabs, type secondary', () => {
129
+ before('loading page', async () => {
130
+ const errorOnGo = await DSTabsCO.secondaryURL.go();
131
+ if (errorOnGo) throw errorOnGo;
132
+ });
133
+ it('should have secondary tabs and pass axe-core scan', async () => {
134
+ await (await DSTabsCO.getSubTabsList()).waitForDisplayed();
135
+ const result = await axeCoreCheck();
136
+ expect(result.length).toBe(0);
137
+ });
138
+ });
139
+
140
+ describe('PUI-12096 - Tabs: Disabled - AxeCore', () => {
141
+ before('loading page', async () => {
142
+ const errorOnGo = await DSTabsCO.disabledURL.go();
143
+ if (errorOnGo) throw errorOnGo;
144
+ });
145
+ it('should have disabled tabs and pass axe-core scan', async () => {
146
+ await (await DSTabsCO.getTabsList()).waitForDisplayed();
147
+ const result = await axeCoreCheck();
148
+ expect(result.length).toBe(0);
149
+ });
150
+ });
151
+ }
@@ -115,7 +115,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
115
115
 
116
116
  describe('PUI-8066 - Tabs, with grid', () => {
117
117
  before('loading page', async () => {
118
- const errorOnGo = await DSTabsCO.delayedWithGrid.go();
118
+ const errorOnGo = await DSTabsCO.withGridURL.go();
119
119
  if (errorOnGo) throw errorOnGo;
120
120
  });
121
121
  it('should display tabs with a grid both to the left', async () => {
@@ -194,7 +194,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
194
194
 
195
195
  describe('PUI-8070 - Tabs, basic small', () => {
196
196
  before('loading page', async () => {
197
- const errorOnGo = await DSTabsCO.basicURL.go();
197
+ const errorOnGo = await DSTabsCO.basicSmallURL.go();
198
198
  if (errorOnGo) throw errorOnGo;
199
199
  });
200
200
  it('should display small tabs one selected one hovered', async () => {
@@ -1,32 +1,32 @@
1
1
  // eslint-disable-next-line import/no-relative-packages
2
- import { PATH_TABS, PATH_E2E_TABS } from '../../environments/storybook/paths';
2
+ import { PATH_E2E_TABS } from '../../environments/storybook/paths';
3
3
  import { PageObject, Urlbuilder, getElementByIndex } from '../helpers';
4
4
 
5
- export default class DSTextBoxCO extends PageObject {
5
+ export default class DSTabsCO extends PageObject {
6
6
  // Desktop
7
- static basicURL = new Urlbuilder(PATH_TABS, 'basic');
7
+ static basicURL = new Urlbuilder(PATH_E2E_TABS, 'basic-test');
8
8
 
9
- static secondaryURL = new Urlbuilder(PATH_TABS, 'secondary');
9
+ static basicSmallURL = new Urlbuilder(PATH_E2E_TABS, 'basic-small-test');
10
10
 
11
- static nestedURL = new Urlbuilder(PATH_TABS, 'nested');
11
+ static disabledURL = new Urlbuilder(PATH_E2E_TABS, 'disabled-test');
12
12
 
13
- static disabledURL = new Urlbuilder(PATH_TABS, 'disabled');
13
+ static extraContentURL = new Urlbuilder(PATH_E2E_TABS, 'extra-content-test');
14
14
 
15
- static requiredURL = new Urlbuilder(PATH_TABS, 'required');
15
+ static integratedCarousel = new Urlbuilder(PATH_E2E_TABS, 'integrated-example-carousel-test');
16
16
 
17
- static withModalURL = new Urlbuilder(PATH_TABS, 'with-modal');
17
+ static nestedURL = new Urlbuilder(PATH_E2E_TABS, 'nested-test');
18
18
 
19
- static withGridURL = new Urlbuilder(PATH_TABS, 'with-grid');
19
+ static delayedRequired = new Urlbuilder(PATH_E2E_TABS, 'required-test');
20
20
 
21
- static mouseEventsURL = new Urlbuilder(PATH_TABS, 'mouse-events');
21
+ static requiredURL = new Urlbuilder(PATH_E2E_TABS, 'required-test');
22
22
 
23
- static withExtraPadding = new Urlbuilder(PATH_TABS, 'with-extra-padding');
23
+ static secondaryURL = new Urlbuilder(PATH_E2E_TABS, 'secondary-test');
24
24
 
25
- static integratedCarousel = new Urlbuilder(PATH_TABS, 'integrated-example-carousel');
25
+ static withExtraPadding = new Urlbuilder(PATH_E2E_TABS, 'with-extra-padding-test');
26
26
 
27
- static basicSmallURL = new Urlbuilder(PATH_TABS, 'basic-small');
27
+ static withGridURL = new Urlbuilder(PATH_E2E_TABS, 'with-grid-test');
28
28
 
29
- static extraContentURL = new Urlbuilder(PATH_TABS, 'extra-content');
29
+ static withModalURL = new Urlbuilder(PATH_E2E_TABS, 'with-modal-test');
30
30
 
31
31
  static carouselFixed = new Urlbuilder(PATH_E2E_TABS, 'carousel-fixed-width');
32
32
 
@@ -36,16 +36,12 @@ export default class DSTextBoxCO extends PageObject {
36
36
 
37
37
  static withMaxWidth = new Urlbuilder(PATH_E2E_TABS, 'with-max-width');
38
38
 
39
- static delayedWithGrid = new Urlbuilder(PATH_E2E_TABS, 'with-grid-test');
40
-
41
- static delayedRequired = new Urlbuilder(PATH_E2E_TABS, 'required-test');
42
-
43
39
  static delayedPadding = new Urlbuilder(PATH_E2E_TABS, 'with-extra-padding-test');
44
40
 
45
41
  static tabsCustomProps = new Urlbuilder(PATH_E2E_TABS, 'tabs-custom-props');
46
42
 
47
43
  static getUrl(component = 'basic') {
48
- return PageObject.getUrl(PATH_TABS, component);
44
+ return PageObject.getUrl(PATH_E2E_TABS, component);
49
45
  }
50
46
 
51
47
  static async getChevronRight() {
package/package.json CHANGED
@@ -1,125 +1,125 @@
1
1
  {
2
2
  "name": "dimsum-e2e-tests",
3
- "version": "3.26.0-next.2",
3
+ "version": "3.26.0-next.4",
4
4
  "description": "End-to-end tests for dimsum library",
5
5
  "dependencies": {
6
- "@elliemae/ds-accessibility": "3.26.0-next.2",
7
- "@elliemae/ds-app-picker": "3.26.0-next.2",
8
- "@elliemae/ds-accordion": "3.26.0-next.2",
9
- "@elliemae/ds-backdrop": "3.26.0-next.2",
10
- "@elliemae/ds-basic": "3.26.0-next.2",
11
- "@elliemae/ds-breadcrumb": "3.26.0-next.2",
12
- "@elliemae/ds-banner": "3.26.0-next.2",
13
- "@elliemae/ds-button": "3.26.0-next.2",
14
- "@elliemae/ds-button-v1": "3.26.0-next.2",
15
- "@elliemae/ds-button-group": "3.26.0-next.2",
16
- "@elliemae/ds-button-v2": "3.26.0-next.2",
17
- "@elliemae/ds-card-array": "3.26.0-next.2",
18
- "@elliemae/ds-card": "3.26.0-next.2",
19
- "@elliemae/ds-card-navigation": "3.26.0-next.2",
20
- "@elliemae/ds-card-v2-action-addon": "3.26.0-next.2",
21
- "@elliemae/ds-card-v2": "3.26.0-next.2",
22
- "@elliemae/ds-card-v2-group": "3.26.0-next.2",
23
- "@elliemae/ds-chat-bubble": "3.26.0-next.2",
24
- "@elliemae/ds-chat": "3.26.0-next.2",
25
- "@elliemae/ds-chat-tile": "3.26.0-next.2",
26
- "@elliemae/ds-circular-progress-indicator": "3.26.0-next.2",
27
- "@elliemae/ds-chip": "3.26.0-next.2",
28
- "@elliemae/ds-codeeditor": "3.26.0-next.2",
29
- "@elliemae/ds-comments": "3.26.0-next.2",
30
- "@elliemae/ds-controlled-form": "3.26.0-next.2",
31
- "@elliemae/ds-data-table": "3.26.0-next.2",
32
- "@elliemae/ds-datagrids": "3.26.0-next.2",
33
- "@elliemae/ds-dataviz": "3.26.0-next.2",
34
- "@elliemae/ds-csv-converter": "3.26.0-next.2",
35
- "@elliemae/ds-dataviz-pie": "3.26.0-next.2",
36
- "@elliemae/ds-date-range-picker": "3.26.0-next.2",
37
- "@elliemae/ds-date-picker": "3.26.0-next.2",
38
- "@elliemae/ds-date-range-selector": "3.26.0-next.2",
39
- "@elliemae/ds-date-time-recurrence-picker": "3.26.0-next.2",
40
- "@elliemae/ds-date-time-picker": "3.26.0-next.2",
41
- "@elliemae/ds-decision-graph": "3.26.0-next.2",
42
- "@elliemae/ds-dialog": "3.26.0-next.2",
43
- "@elliemae/ds-drag-and-drop": "3.26.0-next.2",
44
- "@elliemae/ds-dropzone": "3.26.0-next.2",
45
- "@elliemae/ds-dropdownmenu": "3.26.0-next.2",
46
- "@elliemae/ds-fast-list": "3.26.0-next.2",
47
- "@elliemae/ds-form": "3.26.0-next.2",
48
- "@elliemae/ds-filterbar": "3.26.0-next.2",
49
- "@elliemae/ds-form-date-range-picker": "3.26.0-next.2",
50
- "@elliemae/ds-form-date-time-picker": "3.26.0-next.2",
51
- "@elliemae/ds-form-layout-blocks": "3.26.0-next.2",
52
- "@elliemae/ds-form-layout-label": "3.26.0-next.2",
53
- "@elliemae/ds-global-header": "3.26.0-next.2",
54
- "@elliemae/ds-grid": "3.26.0-next.2",
55
- "@elliemae/ds-group-box": "3.26.0-next.2",
56
- "@elliemae/ds-hooks-fontsize-detector": "3.26.0-next.2",
57
- "@elliemae/ds-header": "3.26.0-next.2",
58
- "@elliemae/ds-hooks-fontsize-media": "3.26.0-next.2",
59
- "@elliemae/ds-icon": "3.26.0-next.2",
60
- "@elliemae/ds-icons": "3.26.0-next.2",
61
- "@elliemae/ds-imagelibrarymodal": "3.26.0-next.2",
62
- "@elliemae/ds-image": "3.26.0-next.2",
63
- "@elliemae/ds-indeterminate-progress-indicator": "3.26.0-next.2",
64
- "@elliemae/ds-label-value": "3.26.0-next.2",
65
- "@elliemae/ds-left-navigation": "3.26.0-next.2",
66
- "@elliemae/ds-list-section-header": "3.26.0-next.2",
67
- "@elliemae/ds-loading-indicator": "3.26.0-next.2",
68
- "@elliemae/ds-menu": "3.26.0-next.2",
69
- "@elliemae/ds-menu-items": "3.26.0-next.2",
70
- "@elliemae/ds-mobile": "3.26.0-next.2",
71
- "@elliemae/ds-mini-toolbar": "3.26.0-next.2",
72
- "@elliemae/ds-modal": "3.26.0-next.2",
73
- "@elliemae/ds-modal-slide": "3.26.0-next.2",
74
- "@elliemae/ds-number-range-field": "3.26.0-next.2",
75
- "@elliemae/ds-notification-badge": "3.26.0-next.2",
76
- "@elliemae/ds-page-header": "3.26.0-next.2",
77
- "@elliemae/ds-page-layout": "3.26.0-next.2",
78
- "@elliemae/ds-page-header-v2": "3.26.0-next.2",
79
- "@elliemae/ds-page-number": "3.26.0-next.2",
80
- "@elliemae/ds-pagination": "3.26.0-next.2",
81
- "@elliemae/ds-pills": "3.26.0-next.2",
82
- "@elliemae/ds-page-header-v1": "3.26.0-next.2",
83
- "@elliemae/ds-popover": "3.26.0-next.2",
84
- "@elliemae/ds-popperjs": "3.26.0-next.2",
85
- "@elliemae/ds-popper": "3.26.0-next.2",
86
- "@elliemae/ds-progress-indicator": "3.26.0-next.2",
87
- "@elliemae/ds-read-more": "3.26.0-next.2",
88
- "@elliemae/ds-query-builder": "3.26.0-next.2",
89
- "@elliemae/ds-search-field": "3.26.0-next.2",
90
- "@elliemae/ds-resizeable-container": "3.26.0-next.2",
91
- "@elliemae/ds-ribbon": "3.26.0-next.2",
92
- "@elliemae/ds-separator": "3.26.0-next.2",
93
- "@elliemae/ds-shuttle-v2": "3.26.0-next.2",
94
- "@elliemae/ds-side-panel": "3.26.0-next.2",
95
- "@elliemae/ds-shuttle": "3.26.0-next.2",
96
- "@elliemae/ds-skeleton": "3.26.0-next.2",
97
- "@elliemae/ds-slider": "3.26.0-next.2",
98
- "@elliemae/ds-spinner": "3.26.0-next.2",
99
- "@elliemae/ds-svg": "3.26.0-next.2",
100
- "@elliemae/ds-square-indicator": "3.26.0-next.2",
101
- "@elliemae/ds-stepper": "3.26.0-next.2",
102
- "@elliemae/ds-system": "3.26.0-next.2",
103
- "@elliemae/ds-tabs": "3.26.0-next.2",
104
- "@elliemae/ds-test-utils": "3.26.0-next.2",
105
- "@elliemae/ds-text-wrapper": "3.26.0-next.2",
106
- "@elliemae/ds-toast": "3.26.0-next.2",
107
- "@elliemae/ds-time-picker": "3.26.0-next.2",
108
- "@elliemae/ds-toolbar": "3.26.0-next.2",
109
- "@elliemae/ds-toolbar-v2": "3.26.0-next.2",
110
- "@elliemae/ds-tooltip": "3.26.0-next.2",
111
- "@elliemae/ds-tree-model": "3.26.0-next.2",
112
- "@elliemae/ds-transition": "3.26.0-next.2",
113
- "@elliemae/ds-treeview": "3.26.0-next.2",
114
- "@elliemae/ds-truncated-expandable-text": "3.26.0-next.2",
115
- "@elliemae/ds-truncated-tooltip-text": "3.26.0-next.2",
116
- "@elliemae/ds-uploader": "3.26.0-next.2",
117
- "@elliemae/ds-typography": "3.26.0-next.2",
118
- "@elliemae/ds-utilities": "3.26.0-next.2",
119
- "@elliemae/ds-virtual-list": "3.26.0-next.2",
120
- "@elliemae/ds-wizard": "3.26.0-next.2",
121
- "@elliemae/ds-zipcode-search": "3.26.0-next.2",
122
- "@elliemae/ds-wysiwygeditor": "3.26.0-next.2",
123
- "@elliemae/ds-zoom": "3.26.0-next.2"
6
+ "@elliemae/ds-accessibility": "3.26.0-next.4",
7
+ "@elliemae/ds-accordion": "3.26.0-next.4",
8
+ "@elliemae/ds-app-picker": "3.26.0-next.4",
9
+ "@elliemae/ds-backdrop": "3.26.0-next.4",
10
+ "@elliemae/ds-banner": "3.26.0-next.4",
11
+ "@elliemae/ds-basic": "3.26.0-next.4",
12
+ "@elliemae/ds-breadcrumb": "3.26.0-next.4",
13
+ "@elliemae/ds-button-group": "3.26.0-next.4",
14
+ "@elliemae/ds-button": "3.26.0-next.4",
15
+ "@elliemae/ds-button-v1": "3.26.0-next.4",
16
+ "@elliemae/ds-button-v2": "3.26.0-next.4",
17
+ "@elliemae/ds-card": "3.26.0-next.4",
18
+ "@elliemae/ds-card-array": "3.26.0-next.4",
19
+ "@elliemae/ds-card-navigation": "3.26.0-next.4",
20
+ "@elliemae/ds-card-v2": "3.26.0-next.4",
21
+ "@elliemae/ds-card-v2-action-addon": "3.26.0-next.4",
22
+ "@elliemae/ds-card-v2-group": "3.26.0-next.4",
23
+ "@elliemae/ds-chat": "3.26.0-next.4",
24
+ "@elliemae/ds-chat-bubble": "3.26.0-next.4",
25
+ "@elliemae/ds-chat-tile": "3.26.0-next.4",
26
+ "@elliemae/ds-chip": "3.26.0-next.4",
27
+ "@elliemae/ds-circular-progress-indicator": "3.26.0-next.4",
28
+ "@elliemae/ds-codeeditor": "3.26.0-next.4",
29
+ "@elliemae/ds-comments": "3.26.0-next.4",
30
+ "@elliemae/ds-controlled-form": "3.26.0-next.4",
31
+ "@elliemae/ds-csv-converter": "3.26.0-next.4",
32
+ "@elliemae/ds-data-table": "3.26.0-next.4",
33
+ "@elliemae/ds-dataviz": "3.26.0-next.4",
34
+ "@elliemae/ds-datagrids": "3.26.0-next.4",
35
+ "@elliemae/ds-dataviz-pie": "3.26.0-next.4",
36
+ "@elliemae/ds-date-picker": "3.26.0-next.4",
37
+ "@elliemae/ds-date-range-picker": "3.26.0-next.4",
38
+ "@elliemae/ds-date-range-selector": "3.26.0-next.4",
39
+ "@elliemae/ds-date-time-picker": "3.26.0-next.4",
40
+ "@elliemae/ds-date-time-recurrence-picker": "3.26.0-next.4",
41
+ "@elliemae/ds-decision-graph": "3.26.0-next.4",
42
+ "@elliemae/ds-dialog": "3.26.0-next.4",
43
+ "@elliemae/ds-drag-and-drop": "3.26.0-next.4",
44
+ "@elliemae/ds-dropdownmenu": "3.26.0-next.4",
45
+ "@elliemae/ds-dropzone": "3.26.0-next.4",
46
+ "@elliemae/ds-fast-list": "3.26.0-next.4",
47
+ "@elliemae/ds-filterbar": "3.26.0-next.4",
48
+ "@elliemae/ds-form": "3.26.0-next.4",
49
+ "@elliemae/ds-form-date-range-picker": "3.26.0-next.4",
50
+ "@elliemae/ds-form-date-time-picker": "3.26.0-next.4",
51
+ "@elliemae/ds-form-layout-blocks": "3.26.0-next.4",
52
+ "@elliemae/ds-form-layout-label": "3.26.0-next.4",
53
+ "@elliemae/ds-global-header": "3.26.0-next.4",
54
+ "@elliemae/ds-grid": "3.26.0-next.4",
55
+ "@elliemae/ds-group-box": "3.26.0-next.4",
56
+ "@elliemae/ds-header": "3.26.0-next.4",
57
+ "@elliemae/ds-hooks-fontsize-detector": "3.26.0-next.4",
58
+ "@elliemae/ds-icon": "3.26.0-next.4",
59
+ "@elliemae/ds-icons": "3.26.0-next.4",
60
+ "@elliemae/ds-image": "3.26.0-next.4",
61
+ "@elliemae/ds-hooks-fontsize-media": "3.26.0-next.4",
62
+ "@elliemae/ds-imagelibrarymodal": "3.26.0-next.4",
63
+ "@elliemae/ds-indeterminate-progress-indicator": "3.26.0-next.4",
64
+ "@elliemae/ds-label-value": "3.26.0-next.4",
65
+ "@elliemae/ds-left-navigation": "3.26.0-next.4",
66
+ "@elliemae/ds-list-section-header": "3.26.0-next.4",
67
+ "@elliemae/ds-loading-indicator": "3.26.0-next.4",
68
+ "@elliemae/ds-menu": "3.26.0-next.4",
69
+ "@elliemae/ds-menu-items": "3.26.0-next.4",
70
+ "@elliemae/ds-mini-toolbar": "3.26.0-next.4",
71
+ "@elliemae/ds-mobile": "3.26.0-next.4",
72
+ "@elliemae/ds-modal": "3.26.0-next.4",
73
+ "@elliemae/ds-notification-badge": "3.26.0-next.4",
74
+ "@elliemae/ds-number-range-field": "3.26.0-next.4",
75
+ "@elliemae/ds-modal-slide": "3.26.0-next.4",
76
+ "@elliemae/ds-page-header": "3.26.0-next.4",
77
+ "@elliemae/ds-page-header-v1": "3.26.0-next.4",
78
+ "@elliemae/ds-page-header-v2": "3.26.0-next.4",
79
+ "@elliemae/ds-page-layout": "3.26.0-next.4",
80
+ "@elliemae/ds-page-number": "3.26.0-next.4",
81
+ "@elliemae/ds-pagination": "3.26.0-next.4",
82
+ "@elliemae/ds-pills": "3.26.0-next.4",
83
+ "@elliemae/ds-popover": "3.26.0-next.4",
84
+ "@elliemae/ds-popper": "3.26.0-next.4",
85
+ "@elliemae/ds-popperjs": "3.26.0-next.4",
86
+ "@elliemae/ds-progress-indicator": "3.26.0-next.4",
87
+ "@elliemae/ds-query-builder": "3.26.0-next.4",
88
+ "@elliemae/ds-read-more": "3.26.0-next.4",
89
+ "@elliemae/ds-resizeable-container": "3.26.0-next.4",
90
+ "@elliemae/ds-ribbon": "3.26.0-next.4",
91
+ "@elliemae/ds-search-field": "3.26.0-next.4",
92
+ "@elliemae/ds-separator": "3.26.0-next.4",
93
+ "@elliemae/ds-shuttle": "3.26.0-next.4",
94
+ "@elliemae/ds-shuttle-v2": "3.26.0-next.4",
95
+ "@elliemae/ds-side-panel": "3.26.0-next.4",
96
+ "@elliemae/ds-skeleton": "3.26.0-next.4",
97
+ "@elliemae/ds-slider": "3.26.0-next.4",
98
+ "@elliemae/ds-spinner": "3.26.0-next.4",
99
+ "@elliemae/ds-square-indicator": "3.26.0-next.4",
100
+ "@elliemae/ds-stepper": "3.26.0-next.4",
101
+ "@elliemae/ds-svg": "3.26.0-next.4",
102
+ "@elliemae/ds-system": "3.26.0-next.4",
103
+ "@elliemae/ds-tabs": "3.26.0-next.4",
104
+ "@elliemae/ds-test-utils": "3.26.0-next.4",
105
+ "@elliemae/ds-text-wrapper": "3.26.0-next.4",
106
+ "@elliemae/ds-time-picker": "3.26.0-next.4",
107
+ "@elliemae/ds-toast": "3.26.0-next.4",
108
+ "@elliemae/ds-toolbar": "3.26.0-next.4",
109
+ "@elliemae/ds-toolbar-v2": "3.26.0-next.4",
110
+ "@elliemae/ds-tooltip": "3.26.0-next.4",
111
+ "@elliemae/ds-transition": "3.26.0-next.4",
112
+ "@elliemae/ds-tree-model": "3.26.0-next.4",
113
+ "@elliemae/ds-treeview": "3.26.0-next.4",
114
+ "@elliemae/ds-truncated-expandable-text": "3.26.0-next.4",
115
+ "@elliemae/ds-truncated-tooltip-text": "3.26.0-next.4",
116
+ "@elliemae/ds-typography": "3.26.0-next.4",
117
+ "@elliemae/ds-uploader": "3.26.0-next.4",
118
+ "@elliemae/ds-utilities": "3.26.0-next.4",
119
+ "@elliemae/ds-virtual-list": "3.26.0-next.4",
120
+ "@elliemae/ds-wizard": "3.26.0-next.4",
121
+ "@elliemae/ds-wysiwygeditor": "3.26.0-next.4",
122
+ "@elliemae/ds-zipcode-search": "3.26.0-next.4",
123
+ "@elliemae/ds-zoom": "3.26.0-next.4"
124
124
  }
125
125
  }