dimsum-e2e-tests 3.55.0-next.7 → 3.55.0-next.8

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.55.0-next.8 (2025-09-05)
7
+
8
+ ### Features
9
+
10
+ - ds-tabs:: fixed axe + improved CI testing logs ([#7621](https://git.elliemae.io/platform-ui/dimsum/issues/7621)) ([8e0d8be](https://git.elliemae.io/platform-ui/dimsum/commit/8e0d8bec61d678a79ef6c69e8d43d0f228c2fc32))
11
+
6
12
  ## 3.55.0-next.7 (2025-09-01)
7
13
 
8
14
  ### Bug Fixes
@@ -106,29 +106,29 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
106
106
  const secondInput = await DSInputTextCO.getInputTextByIndex(1); // Allow Negative
107
107
  const thirdInput = await DSInputTextCO.getInputTextByIndex(2); // Thousands Separator Not Included
108
108
  const fourthInput = await DSInputTextCO.getInputTextByIndex(3); // Decimal required - initial value '1000.0'
109
- const ninthInput = await DSInputTextCO.getInputTextByIndex(8); // Decimal required - initial value '1000'
109
+ const tenthInput = await DSInputTextCO.getInputTextByIndex(9); // Decimal required - initial value '1000'
110
110
  await expect(firstInput).toHaveValue('200');
111
111
  await expect(secondInput).toHaveValue('-0.30');
112
112
  await expect(thirdInput).toHaveValue('10000000');
113
- await expect(fourthInput).toHaveValue('1,000.0');
114
- await expect(ninthInput).toHaveValue('1,000.000');
113
+ await expect(fourthInput).toHaveValue('1,000.000');
114
+ await expect(tenthInput).toHaveValue('1,000.000');
115
115
  });
116
116
  it('02: should correctly clear all inputs', async () => {
117
117
  const firstInput = await DSInputTextCO.getInputTextByIndex(0); // No decimals allowed
118
118
  const secondInput = await DSInputTextCO.getInputTextByIndex(1); // Allow Negative
119
119
  const thirdInput = await DSInputTextCO.getInputTextByIndex(2); // Thousands Separator Not Included
120
120
  const fourthInput = await DSInputTextCO.getInputTextByIndex(3); // Decimal required - initial value '1000.0'
121
- const ninthInput = await DSInputTextCO.getInputTextByIndex(8); // Decimal required - initial value '1000'
121
+ const tenthInput = await DSInputTextCO.getInputTextByIndex(9); // Decimal required - initial value '1000'
122
122
  await UseMaskCO.clearValue(firstInput);
123
123
  await UseMaskCO.clearValue(secondInput);
124
124
  await UseMaskCO.clearValue(thirdInput);
125
125
  await UseMaskCO.clearValue(fourthInput);
126
- await UseMaskCO.clearValue(ninthInput);
126
+ await UseMaskCO.clearValue(tenthInput);
127
127
  await expect(firstInput).toHaveValue('');
128
128
  await expect(secondInput).toHaveValue('');
129
129
  await expect(thirdInput).toHaveValue('');
130
130
  await expect(fourthInput).toHaveValue('');
131
- await expect(ninthInput).toHaveValue('');
131
+ await expect(tenthInput).toHaveValue('');
132
132
  });
133
133
  it('03: should correctly format the No decimal allowed input', async () => {
134
134
  const firstInput = await DSInputTextCO.getInputTextByIndex(4);
@@ -155,10 +155,12 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
155
155
  await expect(fourthInput).toHaveValue('0.323');
156
156
  });
157
157
  it('07: should correctly format the Decimal Required input accordingly to the mask', async () => {
158
- const fourthInput = await DSInputTextCO.getInputTextByIndex(7);
159
- await fourthInput.click();
158
+ const tenthInput = await DSInputTextCO.getInputTextByIndex(9);
159
+ await tenthInput.click();
160
+ await tenthInput.clearValue();
160
161
  await type('23952345');
161
- await expect(fourthInput).toHaveValue('23952345.000');
162
+ await browser.keys([Key.Shift, Key.Tab]);
163
+ await expect(tenthInput).toHaveValue('23,952,345.000');
162
164
  });
163
165
  });
164
166
  describe('PUI-8169 - useNumberMask:: Percent', () => {
@@ -28,6 +28,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
28
28
  const eightInput = await DSInputTextCO.getInputTextByIndex(7);
29
29
  await eightInput.click();
30
30
  await type('123a4$bb56.1');
31
+ const ninthInput = await DSInputTextCO.getInputTextByIndex(8);
32
+ await ninthInput.click();
33
+ await type('123a4$bb56.1');
31
34
  await firstInput.click();
32
35
  const snapshot = await browser.checkSnapshot(UseMaskCO.snapshotPath('useMask-numbers-all-completed'));
33
36
  await expect(snapshot).toEqual(0);
@@ -0,0 +1,58 @@
1
+ import DSReadMoreCO from './DSReadMoreCO';
2
+
3
+ if (!browser.capabilities['ice:options'].isPhone) {
4
+ describe('PUI-17108: Read More, Slots -Func', () => {
5
+ before('loading page', async () => {
6
+ const errorOnGo = await DSReadMoreCO.slotsTest.go();
7
+ if (errorOnGo) throw errorOnGo;
8
+ });
9
+ it('01: Should have custom aria and data for button slot', async () => {
10
+ const buttonSlot1 = await DSReadMoreCO.getButtonSlotByIndex(0);
11
+ const buttonSlot2 = await DSReadMoreCO.getButtonSlotByIndex(1);
12
+ const buttonAria1 = await buttonSlot1.getAttribute('aria-label');
13
+ const buttonData1 = await buttonSlot1.getAttribute('data-testid');
14
+ const buttonAria2 = await buttonSlot2.getAttribute('aria-label');
15
+ const buttonData2 = await buttonSlot2.getAttribute('data-testid');
16
+ await expect(buttonAria1).toEqual('button aria');
17
+ await expect(buttonData1).toEqual('button data');
18
+ await expect(buttonAria2).toEqual('button aria');
19
+ await expect(buttonData2).toEqual('button data');
20
+ });
21
+ it('02: Should have custom aria and data for buttonWrapper slot', async () => {
22
+ const buttonWrapperSlot1 = await DSReadMoreCO.getButtonWrapperSlotByIndex(0);
23
+ const buttonWrapperSlot2 = await DSReadMoreCO.getButtonWrapperSlotByIndex(1);
24
+ const buttonWrapperAria1 = await buttonWrapperSlot1.getAttribute('aria-label');
25
+ const buttonWrapperData1 = await buttonWrapperSlot1.getAttribute('data-testid');
26
+ const buttonWrapperAria2 = await buttonWrapperSlot2.getAttribute('aria-label');
27
+ const buttonWrapperData2 = await buttonWrapperSlot2.getAttribute('data-testid');
28
+ await expect(buttonWrapperAria1).toEqual('button wrapper aria');
29
+ await expect(buttonWrapperData1).toEqual('button wrapper data');
30
+ await expect(buttonWrapperAria2).toEqual('button wrapper aria');
31
+ await expect(buttonWrapperData2).toEqual('button wrapper data');
32
+ });
33
+ it('03: Should have custom aria and data for root slot', async () => {
34
+ const rootSlot1 = await DSReadMoreCO.getRootSlotByIndex(0);
35
+ const rootSlot2 = await DSReadMoreCO.getRootSlotByIndex(1);
36
+ const rootAria1 = await rootSlot1.getAttribute('aria-label');
37
+ const rootData1 = await rootSlot1.getAttribute('data-testid');
38
+ const rootAria2 = await rootSlot2.getAttribute('aria-label');
39
+ const rootData2 = await rootSlot2.getAttribute('data-testid');
40
+ await expect(rootAria1).toEqual('root aria');
41
+ await expect(rootData1).toEqual('root data');
42
+ await expect(rootAria2).toEqual('root aria');
43
+ await expect(rootData2).toEqual('root data');
44
+ });
45
+ it('04: Should have custom aria and data for textcontent slot', async () => {
46
+ const textContentSlot1 = await DSReadMoreCO.getContentSlotByIndex(0);
47
+ const textContentSlot2 = await DSReadMoreCO.getContentSlotByIndex(1);
48
+ const textContentAria1 = await textContentSlot1.getAttribute('aria-label');
49
+ const textContentData1 = await textContentSlot1.getAttribute('data-testid');
50
+ const textContentAria2 = await textContentSlot2.getAttribute('aria-label');
51
+ const textContentData2 = await textContentSlot2.getAttribute('data-testid');
52
+ await expect(textContentAria1).toEqual('text content aria');
53
+ await expect(textContentData1).toEqual('text content data');
54
+ await expect(textContentAria2).toEqual('text content aria');
55
+ await expect(textContentData2).toEqual('text content data');
56
+ });
57
+ });
58
+ }
@@ -0,0 +1,23 @@
1
+ import { Key } from 'webdriverio';
2
+ import DSReadMoreCO from './DSReadMoreCO';
3
+ import { mouseOver } from '../helpers';
4
+
5
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
6
+ describe('PUI-17107: Read More, Slots -Visual', () => {
7
+ before('loading page', async () => {
8
+ const errorOnGo = await DSReadMoreCO.slotsTest.go();
9
+ if (errorOnGo) throw errorOnGo;
10
+ await browser.maximizeWindow();
11
+ });
12
+ it('01: Should display ReadMore customized colors for each slot', async () => {
13
+ await browser.eyesOpen();
14
+ await (await DSReadMoreCO.getButtonWrapperSlotByIndex()).waitForDisplayed();
15
+ await browser.keys(Key.Tab);
16
+ await browser.keys(Key.Return);
17
+ const secondReadmore = await DSReadMoreCO.getButtonWrapperSlotByIndex(1);
18
+ await mouseOver(secondReadmore);
19
+ const snapshot = await browser.eyesCheckSnapshot(DSReadMoreCO.snapshotPath('readmore-slots'));
20
+ await expect(snapshot).toEqual(0);
21
+ });
22
+ });
23
+ }
@@ -13,6 +13,8 @@ export default class DSReadMoreCO extends PageObject {
13
13
 
14
14
  static widthChange = new Urlbuilder(PATH_E2E_READMORE, 'width-change');
15
15
 
16
+ static slotsTest = new Urlbuilder(PATH_E2E_READMORE, 'slots-test');
17
+
16
18
  static async getMoreLessButton() {
17
19
  return $('[data-testid="ds-read_more-button"]');
18
20
  }
@@ -41,6 +43,24 @@ export default class DSReadMoreCO extends PageObject {
41
43
  return $('[data-testid="ds-button"]');
42
44
  }
43
45
 
46
+ // Slots
47
+
48
+ static async getButtonWrapperSlotByIndex(index = 0) {
49
+ return $$('[data-dimsum-slot="dsReadmoreButtonWrapper"]')[index];
50
+ }
51
+
52
+ static async getButtonSlotByIndex(index = 0) {
53
+ return $$('[data-dimsum-slot="dsButtonRoot"]')[index];
54
+ }
55
+
56
+ static async getContentSlotByIndex(index = 0) {
57
+ return $$('[data-dimsum-slot="dsReadmoreTextContent"]')[index];
58
+ }
59
+
60
+ static async getRootSlotByIndex(index = 0) {
61
+ return $$('[data-dimsum-slot="dsReadmoreRoot"]')[index];
62
+ }
63
+
44
64
  // Snapshots
45
65
  static snapshotPath(example = 'truncated') {
46
66
  return PageObject.getSnapshotPathBuilder('ReadMore', example);
@@ -0,0 +1,44 @@
1
+ /* eslint-disable max-statements */
2
+ import DSSliderV2CO from './DSSliderV2CO';
3
+
4
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
5
+ describe('PUI-16581 - SliderV2 - Track Click, Single -Func', () => {
6
+ before('loading page', async () => {
7
+ const errorOnGo = await DSSliderV2CO.singleURL.go();
8
+ if (errorOnGo) throw errorOnGo;
9
+ });
10
+ it('01: should change slider value with click jump (click on track right)', async () => {
11
+ const handler = await DSSliderV2CO.getSliderThumb();
12
+ await handler.click({ x: 400, y: 0 });
13
+ const valueAfterChange = await DSSliderV2CO.getSliderValue(handler);
14
+ await expect(valueAfterChange).toEqual('20');
15
+ });
16
+ it('02: should change slider value with click jump (click on track left)', async () => {
17
+ const handler = await DSSliderV2CO.getSliderThumb();
18
+ await handler.click({ x: -200, y: 0 });
19
+ const valueAfterChange = await DSSliderV2CO.getSliderValue(handler);
20
+ await expect(valueAfterChange).toEqual('10');
21
+ });
22
+ });
23
+
24
+ describe('PUI-16582 - SliderV2 - Track Click, Multi - Func', () => {
25
+ before('loading page', async () => {
26
+ const errorOnGo = await DSSliderV2CO.multipleURL.go();
27
+ if (errorOnGo) throw errorOnGo;
28
+ await browser.maximizeWindow();
29
+ });
30
+ it('01: should move both handlers when moving the selected track', async () => {
31
+ const maxValue = await DSSliderV2CO.getSliderThumb(1);
32
+ await maxValue.dragAndDrop({ x: -300, y: -0 });
33
+ const maxValueBeforechange = await DSSliderV2CO.getSliderValue(maxValue);
34
+ const track = await DSSliderV2CO.getSliderTrack();
35
+ await track.dragAndDrop({ x: 300, y: -0 });
36
+ const minValue = await DSSliderV2CO.getSliderThumb(0);
37
+ const valueAfterChange = await DSSliderV2CO.getSliderValue(minValue);
38
+ const value2AfterChange = await DSSliderV2CO.getSliderValue(maxValue);
39
+ await expect(maxValueBeforechange).toEqual('75');
40
+ await expect(valueAfterChange).toEqual('25');
41
+ await expect(value2AfterChange).toEqual('100');
42
+ });
43
+ });
44
+ }
package/package.json CHANGED
@@ -1,194 +1,194 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "dimsum-e2e-tests",
4
- "version": "3.55.0-next.7",
4
+ "version": "3.55.0-next.8",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
- "@elliemae/ds-accordion": "3.55.0-next.7",
8
- "@elliemae/ds-app-picker": "3.55.0-next.7",
9
- "@elliemae/ds-backdrop": "3.55.0-next.7",
10
- "@elliemae/ds-accessibility": "3.55.0-next.7",
11
- "@elliemae/ds-banner": "3.55.0-next.7",
12
- "@elliemae/ds-basic": "3.55.0-next.7",
13
- "@elliemae/ds-breadcrumb": "3.55.0-next.7",
14
- "@elliemae/ds-button-group": "3.55.0-next.7",
15
- "@elliemae/ds-button": "3.55.0-next.7",
16
- "@elliemae/ds-button-v1": "3.55.0-next.7",
17
- "@elliemae/ds-card-array": "3.55.0-next.7",
18
- "@elliemae/ds-button-v2": "3.55.0-next.7",
19
- "@elliemae/ds-card": "3.55.0-next.7",
20
- "@elliemae/ds-card-navigation": "3.55.0-next.7",
21
- "@elliemae/ds-card-v1": "3.55.0-next.7",
22
- "@elliemae/ds-card-v1-detail": "3.55.0-next.7",
23
- "@elliemae/ds-card-v2": "3.55.0-next.7",
24
- "@elliemae/ds-card-v2-action-addon": "3.55.0-next.7",
25
- "@elliemae/ds-card-v2-group": "3.55.0-next.7",
26
- "@elliemae/ds-card-v3": "3.55.0-next.7",
27
- "@elliemae/ds-card-v3-poc": "3.55.0-next.7",
28
- "@elliemae/ds-chat": "3.55.0-next.7",
29
- "@elliemae/ds-chat-bubble": "3.55.0-next.7",
30
- "@elliemae/ds-chat-card": "3.55.0-next.7",
31
- "@elliemae/ds-chat-container": "3.55.0-next.7",
32
- "@elliemae/ds-chat-empty-state": "3.55.0-next.7",
33
- "@elliemae/ds-chat-container-header": "3.55.0-next.7",
34
- "@elliemae/ds-chat-floating-button": "3.55.0-next.7",
35
- "@elliemae/ds-chat-sidebar": "3.55.0-next.7",
36
- "@elliemae/ds-chat-message-delimeter": "3.55.0-next.7",
37
- "@elliemae/ds-chat-tile": "3.55.0-next.7",
38
- "@elliemae/ds-chip": "3.55.0-next.7",
39
- "@elliemae/ds-circular-progress-indicator": "3.55.0-next.7",
40
- "@elliemae/ds-chat-system-message": "3.55.0-next.7",
41
- "@elliemae/ds-codeeditor": "3.55.0-next.7",
42
- "@elliemae/ds-classnames": "3.55.0-next.7",
43
- "@elliemae/ds-comments": "3.55.0-next.7",
44
- "@elliemae/ds-common": "3.55.0-next.7",
45
- "@elliemae/ds-controlled-form": "3.55.0-next.7",
46
- "@elliemae/ds-data-table": "3.55.0-next.7",
47
- "@elliemae/ds-csv-converter": "3.55.0-next.7",
48
- "@elliemae/ds-data-table-action-cell": "3.55.0-next.7",
49
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.55.0-next.7",
50
- "@elliemae/ds-data-table-cell": "3.55.0-next.7",
51
- "@elliemae/ds-data-table-cell-header": "3.55.0-next.7",
52
- "@elliemae/ds-data-table-expand-cell": "3.55.0-next.7",
53
- "@elliemae/ds-data-table-multi-select-cell": "3.55.0-next.7",
54
- "@elliemae/ds-data-table-filters": "3.55.0-next.7",
55
- "@elliemae/ds-dataviz": "3.55.0-next.7",
56
- "@elliemae/ds-datagrids": "3.55.0-next.7",
57
- "@elliemae/ds-data-table-single-select-cell": "3.55.0-next.7",
58
- "@elliemae/ds-date-picker": "3.55.0-next.7",
59
- "@elliemae/ds-dataviz-pie": "3.55.0-next.7",
60
- "@elliemae/ds-date-range-picker": "3.55.0-next.7",
61
- "@elliemae/ds-date-range-selector": "3.55.0-next.7",
62
- "@elliemae/ds-date-time-recurrence-picker": "3.55.0-next.7",
63
- "@elliemae/ds-date-time-picker": "3.55.0-next.7",
64
- "@elliemae/ds-decision-graph": "3.55.0-next.7",
65
- "@elliemae/ds-dialog": "3.55.0-next.7",
66
- "@elliemae/ds-drag-and-drop": "3.55.0-next.7",
67
- "@elliemae/ds-dropdownmenu": "3.55.0-next.7",
68
- "@elliemae/ds-dropdownmenu-v2": "3.55.0-next.7",
69
- "@elliemae/ds-dropzone": "3.55.0-next.7",
70
- "@elliemae/ds-fast-list": "3.55.0-next.7",
71
- "@elliemae/ds-floating-context": "3.55.0-next.7",
72
- "@elliemae/ds-form-checkbox": "3.55.0-next.7",
73
- "@elliemae/ds-form-combobox": "3.55.0-next.7",
74
- "@elliemae/ds-filterbar": "3.55.0-next.7",
75
- "@elliemae/ds-form": "3.55.0-next.7",
76
- "@elliemae/ds-form-date-range-picker": "3.55.0-next.7",
77
- "@elliemae/ds-form-helpers-mask-hooks": "3.55.0-next.7",
78
- "@elliemae/ds-form-date-time-picker": "3.55.0-next.7",
79
- "@elliemae/ds-form-input-text": "3.55.0-next.7",
80
- "@elliemae/ds-form-layout-autocomplete": "3.55.0-next.7",
81
- "@elliemae/ds-form-input-textarea": "3.55.0-next.7",
82
- "@elliemae/ds-form-layout-blocks": "3.55.0-next.7",
83
- "@elliemae/ds-form-layout-input-group": "3.55.0-next.7",
84
- "@elliemae/ds-form-layout-label": "3.55.0-next.7",
85
- "@elliemae/ds-form-multi-combobox": "3.55.0-next.7",
86
- "@elliemae/ds-form-native-select": "3.55.0-next.7",
87
- "@elliemae/ds-form-radio": "3.55.0-next.7",
88
- "@elliemae/ds-form-single-combobox": "3.55.0-next.7",
89
- "@elliemae/ds-global-header": "3.55.0-next.7",
90
- "@elliemae/ds-form-toggle": "3.55.0-next.7",
91
- "@elliemae/ds-form-select": "3.55.0-next.7",
92
- "@elliemae/ds-grid": "3.55.0-next.7",
93
- "@elliemae/ds-group-box": "3.55.0-next.7",
94
- "@elliemae/ds-header": "3.55.0-next.7",
95
- "@elliemae/ds-hooks-focus-stack": "3.55.0-next.7",
96
- "@elliemae/ds-hidden": "3.55.0-next.7",
97
- "@elliemae/ds-hooks-focus-trap": "3.55.0-next.7",
98
- "@elliemae/ds-hooks-fontsize-detector": "3.55.0-next.7",
99
- "@elliemae/ds-hooks-headless-tooltip": "3.55.0-next.7",
100
- "@elliemae/ds-hooks-fontsize-media": "3.55.0-next.7",
101
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.55.0-next.7",
102
- "@elliemae/ds-hooks-keyboard-navigation": "3.55.0-next.7",
103
- "@elliemae/ds-hooks-on-blur-out": "3.55.0-next.7",
104
- "@elliemae/ds-hooks-is-mobile": "3.55.0-next.7",
105
- "@elliemae/ds-icon": "3.55.0-next.7",
106
- "@elliemae/ds-hooks-on-first-focus-in": "3.55.0-next.7",
107
- "@elliemae/ds-imagelibrarymodal": "3.55.0-next.7",
108
- "@elliemae/ds-image": "3.55.0-next.7",
109
- "@elliemae/ds-label-value": "3.55.0-next.7",
110
- "@elliemae/ds-icons": "3.55.0-next.7",
111
- "@elliemae/ds-indeterminate-progress-indicator": "3.55.0-next.7",
112
- "@elliemae/ds-list-section-header": "3.55.0-next.7",
113
- "@elliemae/ds-left-navigation": "3.55.0-next.7",
114
- "@elliemae/ds-layout-provider": "3.55.0-next.7",
115
- "@elliemae/ds-menu": "3.55.0-next.7",
116
- "@elliemae/ds-loading-indicator": "3.55.0-next.7",
117
- "@elliemae/ds-menu-button": "3.55.0-next.7",
118
- "@elliemae/ds-menu-items": "3.55.0-next.7",
119
- "@elliemae/ds-menu-items-action": "3.55.0-next.7",
120
- "@elliemae/ds-menu-items-commons": "3.55.0-next.7",
121
- "@elliemae/ds-menu-items-section": "3.55.0-next.7",
122
- "@elliemae/ds-menu-items-multi": "3.55.0-next.7",
123
- "@elliemae/ds-menu-items-separator": "3.55.0-next.7",
124
- "@elliemae/ds-menu-items-single": "3.55.0-next.7",
125
- "@elliemae/ds-menu-items-single-with-submenu": "3.55.0-next.7",
126
- "@elliemae/ds-menu-items-submenu": "3.55.0-next.7",
127
- "@elliemae/ds-menu-items-skeleton": "3.55.0-next.7",
128
- "@elliemae/ds-menu-tree-item": "3.55.0-next.7",
129
- "@elliemae/ds-mobile": "3.55.0-next.7",
130
- "@elliemae/ds-mini-toolbar": "3.55.0-next.7",
131
- "@elliemae/ds-modal": "3.55.0-next.7",
132
- "@elliemae/ds-modal-slide": "3.55.0-next.7",
133
- "@elliemae/ds-notification-badge": "3.55.0-next.7",
134
- "@elliemae/ds-page-header": "3.55.0-next.7",
135
- "@elliemae/ds-number-range-field": "3.55.0-next.7",
136
- "@elliemae/ds-overlay": "3.55.0-next.7",
137
- "@elliemae/ds-page-header-v1": "3.55.0-next.7",
138
- "@elliemae/ds-page-header-v2": "3.55.0-next.7",
139
- "@elliemae/ds-page-layout": "3.55.0-next.7",
140
- "@elliemae/ds-pagination": "3.55.0-next.7",
141
- "@elliemae/ds-page-number": "3.55.0-next.7",
142
- "@elliemae/ds-pills-v2": "3.55.0-next.7",
143
- "@elliemae/ds-pills": "3.55.0-next.7",
144
- "@elliemae/ds-popover": "3.55.0-next.7",
145
- "@elliemae/ds-portal": "3.55.0-next.7",
146
- "@elliemae/ds-popper": "3.55.0-next.7",
147
- "@elliemae/ds-popperjs": "3.55.0-next.7",
148
- "@elliemae/ds-props-helpers": "3.55.0-next.7",
149
- "@elliemae/ds-progress-indicator": "3.55.0-next.7",
150
- "@elliemae/ds-query-builder": "3.55.0-next.7",
151
- "@elliemae/ds-read-more": "3.55.0-next.7",
152
- "@elliemae/ds-resizeable-container": "3.55.0-next.7",
153
- "@elliemae/ds-ribbon": "3.55.0-next.7",
154
- "@elliemae/ds-search-field": "3.55.0-next.7",
155
- "@elliemae/ds-scrollable-container": "3.55.0-next.7",
156
- "@elliemae/ds-separator": "3.55.0-next.7",
157
- "@elliemae/ds-shuttle": "3.55.0-next.7",
158
- "@elliemae/ds-shared": "3.55.0-next.7",
159
- "@elliemae/ds-shuttle-v2": "3.55.0-next.7",
160
- "@elliemae/ds-side-panel": "3.55.0-next.7",
161
- "@elliemae/ds-side-panel-header": "3.55.0-next.7",
162
- "@elliemae/ds-slider": "3.55.0-next.7",
163
- "@elliemae/ds-skeleton": "3.55.0-next.7",
164
- "@elliemae/ds-spinner": "3.55.0-next.7",
165
- "@elliemae/ds-slider-v2": "3.55.0-next.7",
166
- "@elliemae/ds-square-indicator": "3.55.0-next.7",
167
- "@elliemae/ds-stepper": "3.55.0-next.7",
168
- "@elliemae/ds-svg": "3.55.0-next.7",
169
- "@elliemae/ds-system": "3.55.0-next.7",
170
- "@elliemae/ds-tabs": "3.55.0-next.7",
171
- "@elliemae/ds-test-utils": "3.55.0-next.7",
172
- "@elliemae/ds-text-wrapper": "3.55.0-next.7",
173
- "@elliemae/ds-time-picker": "3.55.0-next.7",
174
- "@elliemae/ds-toolbar": "3.55.0-next.7",
175
- "@elliemae/ds-toolbar-v1": "3.55.0-next.7",
176
- "@elliemae/ds-tooltip-v3": "3.55.0-next.7",
177
- "@elliemae/ds-toast": "3.55.0-next.7",
178
- "@elliemae/ds-toolbar-v2": "3.55.0-next.7",
179
- "@elliemae/ds-transition": "3.55.0-next.7",
180
- "@elliemae/ds-tree-model": "3.55.0-next.7",
181
- "@elliemae/ds-treeview": "3.55.0-next.7",
182
- "@elliemae/ds-truncated-expandable-text": "3.55.0-next.7",
183
- "@elliemae/ds-typescript-helpers": "3.55.0-next.7",
184
- "@elliemae/ds-virtual-list": "3.55.0-next.7",
185
- "@elliemae/ds-truncated-tooltip-text": "3.55.0-next.7",
186
- "@elliemae/ds-uploader": "3.55.0-next.7",
187
- "@elliemae/ds-typography": "3.55.0-next.7",
188
- "@elliemae/ds-wizard": "3.55.0-next.7",
189
- "@elliemae/ds-wysiwygeditor": "3.55.0-next.7",
190
- "@elliemae/ds-zipcode-search": "3.55.0-next.7",
191
- "@elliemae/ds-zustand-helpers": "3.55.0-next.7",
192
- "@elliemae/ds-zoom": "3.55.0-next.7"
7
+ "@elliemae/ds-accessibility": "3.55.0-next.8",
8
+ "@elliemae/ds-accordion": "3.55.0-next.8",
9
+ "@elliemae/ds-app-picker": "3.55.0-next.8",
10
+ "@elliemae/ds-banner": "3.55.0-next.8",
11
+ "@elliemae/ds-backdrop": "3.55.0-next.8",
12
+ "@elliemae/ds-basic": "3.55.0-next.8",
13
+ "@elliemae/ds-button": "3.55.0-next.8",
14
+ "@elliemae/ds-button-group": "3.55.0-next.8",
15
+ "@elliemae/ds-button-v1": "3.55.0-next.8",
16
+ "@elliemae/ds-breadcrumb": "3.55.0-next.8",
17
+ "@elliemae/ds-button-v2": "3.55.0-next.8",
18
+ "@elliemae/ds-card": "3.55.0-next.8",
19
+ "@elliemae/ds-card-array": "3.55.0-next.8",
20
+ "@elliemae/ds-card-navigation": "3.55.0-next.8",
21
+ "@elliemae/ds-card-v1": "3.55.0-next.8",
22
+ "@elliemae/ds-card-v1-detail": "3.55.0-next.8",
23
+ "@elliemae/ds-card-v2": "3.55.0-next.8",
24
+ "@elliemae/ds-card-v2-group": "3.55.0-next.8",
25
+ "@elliemae/ds-chat": "3.55.0-next.8",
26
+ "@elliemae/ds-card-v2-action-addon": "3.55.0-next.8",
27
+ "@elliemae/ds-card-v3-poc": "3.55.0-next.8",
28
+ "@elliemae/ds-chat-card": "3.55.0-next.8",
29
+ "@elliemae/ds-chat-bubble": "3.55.0-next.8",
30
+ "@elliemae/ds-card-v3": "3.55.0-next.8",
31
+ "@elliemae/ds-chat-container": "3.55.0-next.8",
32
+ "@elliemae/ds-chat-container-header": "3.55.0-next.8",
33
+ "@elliemae/ds-chat-empty-state": "3.55.0-next.8",
34
+ "@elliemae/ds-chat-floating-button": "3.55.0-next.8",
35
+ "@elliemae/ds-chat-message-delimeter": "3.55.0-next.8",
36
+ "@elliemae/ds-chat-sidebar": "3.55.0-next.8",
37
+ "@elliemae/ds-chat-system-message": "3.55.0-next.8",
38
+ "@elliemae/ds-chat-tile": "3.55.0-next.8",
39
+ "@elliemae/ds-circular-progress-indicator": "3.55.0-next.8",
40
+ "@elliemae/ds-chip": "3.55.0-next.8",
41
+ "@elliemae/ds-comments": "3.55.0-next.8",
42
+ "@elliemae/ds-classnames": "3.55.0-next.8",
43
+ "@elliemae/ds-controlled-form": "3.55.0-next.8",
44
+ "@elliemae/ds-common": "3.55.0-next.8",
45
+ "@elliemae/ds-codeeditor": "3.55.0-next.8",
46
+ "@elliemae/ds-csv-converter": "3.55.0-next.8",
47
+ "@elliemae/ds-data-table": "3.55.0-next.8",
48
+ "@elliemae/ds-data-table-action-cell": "3.55.0-next.8",
49
+ "@elliemae/ds-data-table-cell-header": "3.55.0-next.8",
50
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.55.0-next.8",
51
+ "@elliemae/ds-data-table-cell": "3.55.0-next.8",
52
+ "@elliemae/ds-data-table-expand-cell": "3.55.0-next.8",
53
+ "@elliemae/ds-data-table-filters": "3.55.0-next.8",
54
+ "@elliemae/ds-data-table-single-select-cell": "3.55.0-next.8",
55
+ "@elliemae/ds-dataviz": "3.55.0-next.8",
56
+ "@elliemae/ds-datagrids": "3.55.0-next.8",
57
+ "@elliemae/ds-date-picker": "3.55.0-next.8",
58
+ "@elliemae/ds-data-table-multi-select-cell": "3.55.0-next.8",
59
+ "@elliemae/ds-dataviz-pie": "3.55.0-next.8",
60
+ "@elliemae/ds-date-range-picker": "3.55.0-next.8",
61
+ "@elliemae/ds-date-range-selector": "3.55.0-next.8",
62
+ "@elliemae/ds-date-time-picker": "3.55.0-next.8",
63
+ "@elliemae/ds-decision-graph": "3.55.0-next.8",
64
+ "@elliemae/ds-date-time-recurrence-picker": "3.55.0-next.8",
65
+ "@elliemae/ds-dialog": "3.55.0-next.8",
66
+ "@elliemae/ds-dropdownmenu": "3.55.0-next.8",
67
+ "@elliemae/ds-drag-and-drop": "3.55.0-next.8",
68
+ "@elliemae/ds-dropdownmenu-v2": "3.55.0-next.8",
69
+ "@elliemae/ds-fast-list": "3.55.0-next.8",
70
+ "@elliemae/ds-dropzone": "3.55.0-next.8",
71
+ "@elliemae/ds-filterbar": "3.55.0-next.8",
72
+ "@elliemae/ds-floating-context": "3.55.0-next.8",
73
+ "@elliemae/ds-form": "3.55.0-next.8",
74
+ "@elliemae/ds-form-checkbox": "3.55.0-next.8",
75
+ "@elliemae/ds-form-date-range-picker": "3.55.0-next.8",
76
+ "@elliemae/ds-form-date-time-picker": "3.55.0-next.8",
77
+ "@elliemae/ds-form-combobox": "3.55.0-next.8",
78
+ "@elliemae/ds-form-helpers-mask-hooks": "3.55.0-next.8",
79
+ "@elliemae/ds-form-input-textarea": "3.55.0-next.8",
80
+ "@elliemae/ds-form-layout-autocomplete": "3.55.0-next.8",
81
+ "@elliemae/ds-form-layout-input-group": "3.55.0-next.8",
82
+ "@elliemae/ds-form-layout-label": "3.55.0-next.8",
83
+ "@elliemae/ds-form-input-text": "3.55.0-next.8",
84
+ "@elliemae/ds-form-multi-combobox": "3.55.0-next.8",
85
+ "@elliemae/ds-form-layout-blocks": "3.55.0-next.8",
86
+ "@elliemae/ds-form-native-select": "3.55.0-next.8",
87
+ "@elliemae/ds-form-radio": "3.55.0-next.8",
88
+ "@elliemae/ds-form-select": "3.55.0-next.8",
89
+ "@elliemae/ds-form-single-combobox": "3.55.0-next.8",
90
+ "@elliemae/ds-global-header": "3.55.0-next.8",
91
+ "@elliemae/ds-grid": "3.55.0-next.8",
92
+ "@elliemae/ds-form-toggle": "3.55.0-next.8",
93
+ "@elliemae/ds-group-box": "3.55.0-next.8",
94
+ "@elliemae/ds-hidden": "3.55.0-next.8",
95
+ "@elliemae/ds-hooks-focus-trap": "3.55.0-next.8",
96
+ "@elliemae/ds-hooks-focus-stack": "3.55.0-next.8",
97
+ "@elliemae/ds-hooks-fontsize-media": "3.55.0-next.8",
98
+ "@elliemae/ds-header": "3.55.0-next.8",
99
+ "@elliemae/ds-hooks-headless-tooltip": "3.55.0-next.8",
100
+ "@elliemae/ds-hooks-fontsize-detector": "3.55.0-next.8",
101
+ "@elliemae/ds-hooks-is-mobile": "3.55.0-next.8",
102
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.55.0-next.8",
103
+ "@elliemae/ds-hooks-keyboard-navigation": "3.55.0-next.8",
104
+ "@elliemae/ds-hooks-on-blur-out": "3.55.0-next.8",
105
+ "@elliemae/ds-icon": "3.55.0-next.8",
106
+ "@elliemae/ds-hooks-on-first-focus-in": "3.55.0-next.8",
107
+ "@elliemae/ds-image": "3.55.0-next.8",
108
+ "@elliemae/ds-imagelibrarymodal": "3.55.0-next.8",
109
+ "@elliemae/ds-icons": "3.55.0-next.8",
110
+ "@elliemae/ds-indeterminate-progress-indicator": "3.55.0-next.8",
111
+ "@elliemae/ds-label-value": "3.55.0-next.8",
112
+ "@elliemae/ds-left-navigation": "3.55.0-next.8",
113
+ "@elliemae/ds-layout-provider": "3.55.0-next.8",
114
+ "@elliemae/ds-list-section-header": "3.55.0-next.8",
115
+ "@elliemae/ds-loading-indicator": "3.55.0-next.8",
116
+ "@elliemae/ds-menu": "3.55.0-next.8",
117
+ "@elliemae/ds-menu-button": "3.55.0-next.8",
118
+ "@elliemae/ds-menu-items": "3.55.0-next.8",
119
+ "@elliemae/ds-menu-items-action": "3.55.0-next.8",
120
+ "@elliemae/ds-menu-items-commons": "3.55.0-next.8",
121
+ "@elliemae/ds-menu-items-multi": "3.55.0-next.8",
122
+ "@elliemae/ds-menu-items-section": "3.55.0-next.8",
123
+ "@elliemae/ds-menu-items-single": "3.55.0-next.8",
124
+ "@elliemae/ds-menu-items-single-with-submenu": "3.55.0-next.8",
125
+ "@elliemae/ds-menu-items-skeleton": "3.55.0-next.8",
126
+ "@elliemae/ds-menu-items-submenu": "3.55.0-next.8",
127
+ "@elliemae/ds-menu-tree-item": "3.55.0-next.8",
128
+ "@elliemae/ds-menu-items-separator": "3.55.0-next.8",
129
+ "@elliemae/ds-mini-toolbar": "3.55.0-next.8",
130
+ "@elliemae/ds-mobile": "3.55.0-next.8",
131
+ "@elliemae/ds-modal": "3.55.0-next.8",
132
+ "@elliemae/ds-modal-slide": "3.55.0-next.8",
133
+ "@elliemae/ds-number-range-field": "3.55.0-next.8",
134
+ "@elliemae/ds-notification-badge": "3.55.0-next.8",
135
+ "@elliemae/ds-overlay": "3.55.0-next.8",
136
+ "@elliemae/ds-page-header": "3.55.0-next.8",
137
+ "@elliemae/ds-page-header-v1": "3.55.0-next.8",
138
+ "@elliemae/ds-page-header-v2": "3.55.0-next.8",
139
+ "@elliemae/ds-page-layout": "3.55.0-next.8",
140
+ "@elliemae/ds-pagination": "3.55.0-next.8",
141
+ "@elliemae/ds-pills": "3.55.0-next.8",
142
+ "@elliemae/ds-pills-v2": "3.55.0-next.8",
143
+ "@elliemae/ds-page-number": "3.55.0-next.8",
144
+ "@elliemae/ds-popper": "3.55.0-next.8",
145
+ "@elliemae/ds-popperjs": "3.55.0-next.8",
146
+ "@elliemae/ds-progress-indicator": "3.55.0-next.8",
147
+ "@elliemae/ds-portal": "3.55.0-next.8",
148
+ "@elliemae/ds-query-builder": "3.55.0-next.8",
149
+ "@elliemae/ds-props-helpers": "3.55.0-next.8",
150
+ "@elliemae/ds-popover": "3.55.0-next.8",
151
+ "@elliemae/ds-resizeable-container": "3.55.0-next.8",
152
+ "@elliemae/ds-scrollable-container": "3.55.0-next.8",
153
+ "@elliemae/ds-ribbon": "3.55.0-next.8",
154
+ "@elliemae/ds-read-more": "3.55.0-next.8",
155
+ "@elliemae/ds-separator": "3.55.0-next.8",
156
+ "@elliemae/ds-search-field": "3.55.0-next.8",
157
+ "@elliemae/ds-shared": "3.55.0-next.8",
158
+ "@elliemae/ds-shuttle": "3.55.0-next.8",
159
+ "@elliemae/ds-shuttle-v2": "3.55.0-next.8",
160
+ "@elliemae/ds-slider": "3.55.0-next.8",
161
+ "@elliemae/ds-side-panel": "3.55.0-next.8",
162
+ "@elliemae/ds-skeleton": "3.55.0-next.8",
163
+ "@elliemae/ds-side-panel-header": "3.55.0-next.8",
164
+ "@elliemae/ds-spinner": "3.55.0-next.8",
165
+ "@elliemae/ds-slider-v2": "3.55.0-next.8",
166
+ "@elliemae/ds-square-indicator": "3.55.0-next.8",
167
+ "@elliemae/ds-stepper": "3.55.0-next.8",
168
+ "@elliemae/ds-system": "3.55.0-next.8",
169
+ "@elliemae/ds-tabs": "3.55.0-next.8",
170
+ "@elliemae/ds-svg": "3.55.0-next.8",
171
+ "@elliemae/ds-text-wrapper": "3.55.0-next.8",
172
+ "@elliemae/ds-time-picker": "3.55.0-next.8",
173
+ "@elliemae/ds-toast": "3.55.0-next.8",
174
+ "@elliemae/ds-toolbar": "3.55.0-next.8",
175
+ "@elliemae/ds-test-utils": "3.55.0-next.8",
176
+ "@elliemae/ds-toolbar-v1": "3.55.0-next.8",
177
+ "@elliemae/ds-tooltip-v3": "3.55.0-next.8",
178
+ "@elliemae/ds-toolbar-v2": "3.55.0-next.8",
179
+ "@elliemae/ds-tree-model": "3.55.0-next.8",
180
+ "@elliemae/ds-truncated-expandable-text": "3.55.0-next.8",
181
+ "@elliemae/ds-transition": "3.55.0-next.8",
182
+ "@elliemae/ds-treeview": "3.55.0-next.8",
183
+ "@elliemae/ds-truncated-tooltip-text": "3.55.0-next.8",
184
+ "@elliemae/ds-typescript-helpers": "3.55.0-next.8",
185
+ "@elliemae/ds-uploader": "3.55.0-next.8",
186
+ "@elliemae/ds-typography": "3.55.0-next.8",
187
+ "@elliemae/ds-virtual-list": "3.55.0-next.8",
188
+ "@elliemae/ds-wizard": "3.55.0-next.8",
189
+ "@elliemae/ds-wysiwygeditor": "3.55.0-next.8",
190
+ "@elliemae/ds-zoom": "3.55.0-next.8",
191
+ "@elliemae/ds-zipcode-search": "3.55.0-next.8",
192
+ "@elliemae/ds-zustand-helpers": "3.55.0-next.8"
193
193
  }
194
194
  }