dimsum-e2e-tests 3.55.0-next.4 → 3.55.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,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.55.0-next.6 (2025-08-27)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-form-helpers-mask-hooks:: add functional test for initial value issue [PUI-17076](https://jira.elliemae.io/browse/PUI-17076) ([#7606](https://git.elliemae.io/platform-ui/dimsum/issues/7606)) ([ccbeb6d](https://git.elliemae.io/platform-ui/dimsum/commit/ccbeb6d8692c5e1d9fcdd982331e36004c79459c))
11
+
12
+ ## [3.55.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v3.55.0-next.4...v3.55.0-next.5) (2025-08-26)
13
+
14
+ **Note:** Version bump only for package dimsum-e2e-tests
15
+
6
16
  ## [3.55.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v3.55.0-next.3...v3.55.0-next.4) (2025-08-25)
7
17
 
8
18
  **Note:** Version bump only for package dimsum-e2e-tests
@@ -2,7 +2,7 @@
2
2
  import { Key } from 'webdriverio';
3
3
  import UseMaskCO from '../useMaskCO';
4
4
  import { type } from '../../../helpers';
5
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
5
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
6
6
 
7
7
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
8
8
  describe('PUI-8167 - useNumberMask:: Currency', () => {
@@ -101,29 +101,34 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
101
101
  const errorOnGo = await UseMaskCO.numberURL.go();
102
102
  if (errorOnGo) throw errorOnGo;
103
103
  });
104
- it('01: all initial values should be displayed', async () => {
105
- const firstInput = await DSInputTextCO.getInputTextByIndex(0);
106
- const secondInput = await DSInputTextCO.getInputTextByIndex(1);
107
- const thirdInput = await DSInputTextCO.getInputTextByIndex(2);
108
- const fourthInput = await DSInputTextCO.getInputTextByIndex(3);
109
- await expect(firstInput).toHaveValue('20,030');
104
+ it('01: all initial values should be displayed correctly', async () => {
105
+ const firstInput = await DSInputTextCO.getInputTextByIndex(0); // No decimals allowed
106
+ const secondInput = await DSInputTextCO.getInputTextByIndex(1); // Allow Negative
107
+ const thirdInput = await DSInputTextCO.getInputTextByIndex(2); // Thousands Separator Not Included
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'
110
+ await expect(firstInput).toHaveValue('200');
110
111
  await expect(secondInput).toHaveValue('-0.30');
111
112
  await expect(thirdInput).toHaveValue('10000000');
112
113
  await expect(fourthInput).toHaveValue('1,000.0');
114
+ await expect(ninthInput).toHaveValue('1,000.000');
113
115
  });
114
116
  it('02: should correctly clear all inputs', async () => {
115
- const firstInput = await DSInputTextCO.getInputTextByIndex(0);
116
- const secondInput = await DSInputTextCO.getInputTextByIndex(1);
117
- const thirdInput = await DSInputTextCO.getInputTextByIndex(2);
118
- const fourthInput = await DSInputTextCO.getInputTextByIndex(3);
117
+ const firstInput = await DSInputTextCO.getInputTextByIndex(0); // No decimals allowed
118
+ const secondInput = await DSInputTextCO.getInputTextByIndex(1); // Allow Negative
119
+ const thirdInput = await DSInputTextCO.getInputTextByIndex(2); // Thousands Separator Not Included
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'
119
122
  await UseMaskCO.clearValue(firstInput);
120
123
  await UseMaskCO.clearValue(secondInput);
121
124
  await UseMaskCO.clearValue(thirdInput);
122
125
  await UseMaskCO.clearValue(fourthInput);
126
+ await UseMaskCO.clearValue(ninthInput);
123
127
  await expect(firstInput).toHaveValue('');
124
128
  await expect(secondInput).toHaveValue('');
125
129
  await expect(thirdInput).toHaveValue('');
126
130
  await expect(fourthInput).toHaveValue('');
131
+ await expect(ninthInput).toHaveValue('');
127
132
  });
128
133
  it('03: should correctly format the No decimal allowed input', async () => {
129
134
  const firstInput = await DSInputTextCO.getInputTextByIndex(4);
@@ -149,6 +154,12 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
149
154
  await type('.323952345');
150
155
  await expect(fourthInput).toHaveValue('0.323');
151
156
  });
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();
160
+ await type('23952345');
161
+ await expect(fourthInput).toHaveValue('23952345.000');
162
+ });
152
163
  });
153
164
  describe('PUI-8169 - useNumberMask:: Percent', () => {
154
165
  before('loading page', async () => {
@@ -1,6 +1,6 @@
1
1
  import { type } from '../../../helpers';
2
2
  import UseMaskCO from '../useMaskCO';
3
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
3
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
4
4
 
5
5
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
6
6
  describe('PUI-8175: UseNumberMask - visual', () => {
@@ -1,6 +1,6 @@
1
1
  import { type } from '../../../helpers';
2
2
  import UseMaskCO from '../useMaskCO';
3
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
3
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
4
4
 
5
5
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
6
6
  describe('PUI-8170 - usePhoneMask:: Phone', () => {
@@ -1,6 +1,6 @@
1
1
  import UseMaskCO from '../useMaskCO';
2
2
  import { type } from '../../../helpers';
3
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
3
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
4
4
 
5
5
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
6
6
  describe('PUI-10142 - usePhoneMask:: Phone - visual', () => {
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable max-lines */
2
2
  import { type } from '../../../helpers';
3
3
  import UseMaskCO from '../useMaskCO';
4
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
4
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
5
5
 
6
6
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
7
7
  describe('PUI-9283 - useRegExpMask:: With React Hook Form', () => {
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable max-lines */
2
2
  import { type } from '../../../helpers';
3
3
  import UseMaskCO from '../useMaskCO';
4
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
4
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
5
5
 
6
6
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
7
7
  describe('PUI-10170 - useRegExpMask:: With React Hook Form - visual', () => {
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable max-lines */
2
2
  import { type } from '../../../helpers';
3
3
  import UseMaskCO from '../useMaskCO';
4
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
4
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
5
5
 
6
6
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
7
7
  describe('PUI-8171 - useRegExpMask:: RegExp', () => {
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable max-lines */
2
2
  import { type } from '../../../helpers';
3
3
  import UseMaskCO from '../useMaskCO';
4
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
4
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
5
5
 
6
6
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
7
7
  describe('PUI-8172 - useSSNMask -func', () => {
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable max-lines */
2
2
  import { type } from '../../../helpers';
3
3
  import UseMaskCO from '../useMaskCO';
4
- import DSInputTextCO from '../../ds-input-text/DSInputTextCO';
4
+ import DSInputTextCO from '../../../ds-controlled-form/ds-input-text/DSInputTextCO';
5
5
 
6
6
  if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
7
7
  describe('PUI-8173 - useZipCodeMask:: ZipCode', () => {
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.4",
4
+ "version": "3.55.0-next.6",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
- "@elliemae/ds-accessibility": "3.55.0-next.4",
8
- "@elliemae/ds-accordion": "3.55.0-next.4",
9
- "@elliemae/ds-app-picker": "3.55.0-next.4",
10
- "@elliemae/ds-backdrop": "3.55.0-next.4",
11
- "@elliemae/ds-basic": "3.55.0-next.4",
12
- "@elliemae/ds-banner": "3.55.0-next.4",
13
- "@elliemae/ds-button": "3.55.0-next.4",
14
- "@elliemae/ds-breadcrumb": "3.55.0-next.4",
15
- "@elliemae/ds-button-group": "3.55.0-next.4",
16
- "@elliemae/ds-button-v1": "3.55.0-next.4",
17
- "@elliemae/ds-button-v2": "3.55.0-next.4",
18
- "@elliemae/ds-card": "3.55.0-next.4",
19
- "@elliemae/ds-card-array": "3.55.0-next.4",
20
- "@elliemae/ds-card-navigation": "3.55.0-next.4",
21
- "@elliemae/ds-card-v1": "3.55.0-next.4",
22
- "@elliemae/ds-card-v2-action-addon": "3.55.0-next.4",
23
- "@elliemae/ds-card-v2": "3.55.0-next.4",
24
- "@elliemae/ds-card-v2-group": "3.55.0-next.4",
25
- "@elliemae/ds-card-v3": "3.55.0-next.4",
26
- "@elliemae/ds-card-v3-poc": "3.55.0-next.4",
27
- "@elliemae/ds-card-v1-detail": "3.55.0-next.4",
28
- "@elliemae/ds-chat": "3.55.0-next.4",
29
- "@elliemae/ds-chat-bubble": "3.55.0-next.4",
30
- "@elliemae/ds-chat-card": "3.55.0-next.4",
31
- "@elliemae/ds-chat-empty-state": "3.55.0-next.4",
32
- "@elliemae/ds-chat-container": "3.55.0-next.4",
33
- "@elliemae/ds-chat-container-header": "3.55.0-next.4",
34
- "@elliemae/ds-chat-message-delimeter": "3.55.0-next.4",
35
- "@elliemae/ds-chat-floating-button": "3.55.0-next.4",
36
- "@elliemae/ds-chat-tile": "3.55.0-next.4",
37
- "@elliemae/ds-chat-system-message": "3.55.0-next.4",
38
- "@elliemae/ds-classnames": "3.55.0-next.4",
39
- "@elliemae/ds-chat-sidebar": "3.55.0-next.4",
40
- "@elliemae/ds-circular-progress-indicator": "3.55.0-next.4",
41
- "@elliemae/ds-chip": "3.55.0-next.4",
42
- "@elliemae/ds-codeeditor": "3.55.0-next.4",
43
- "@elliemae/ds-comments": "3.55.0-next.4",
44
- "@elliemae/ds-common": "3.55.0-next.4",
45
- "@elliemae/ds-controlled-form": "3.55.0-next.4",
46
- "@elliemae/ds-csv-converter": "3.55.0-next.4",
47
- "@elliemae/ds-data-table": "3.55.0-next.4",
48
- "@elliemae/ds-data-table-cell": "3.55.0-next.4",
49
- "@elliemae/ds-data-table-cell-header": "3.55.0-next.4",
50
- "@elliemae/ds-data-table-action-cell": "3.55.0-next.4",
51
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.55.0-next.4",
52
- "@elliemae/ds-data-table-expand-cell": "3.55.0-next.4",
53
- "@elliemae/ds-data-table-filters": "3.55.0-next.4",
54
- "@elliemae/ds-data-table-multi-select-cell": "3.55.0-next.4",
55
- "@elliemae/ds-data-table-single-select-cell": "3.55.0-next.4",
56
- "@elliemae/ds-dataviz": "3.55.0-next.4",
57
- "@elliemae/ds-datagrids": "3.55.0-next.4",
58
- "@elliemae/ds-dataviz-pie": "3.55.0-next.4",
59
- "@elliemae/ds-date-picker": "3.55.0-next.4",
60
- "@elliemae/ds-date-range-selector": "3.55.0-next.4",
61
- "@elliemae/ds-date-time-picker": "3.55.0-next.4",
62
- "@elliemae/ds-date-range-picker": "3.55.0-next.4",
63
- "@elliemae/ds-date-time-recurrence-picker": "3.55.0-next.4",
64
- "@elliemae/ds-decision-graph": "3.55.0-next.4",
65
- "@elliemae/ds-dialog": "3.55.0-next.4",
66
- "@elliemae/ds-drag-and-drop": "3.55.0-next.4",
67
- "@elliemae/ds-dropdownmenu": "3.55.0-next.4",
68
- "@elliemae/ds-dropdownmenu-v2": "3.55.0-next.4",
69
- "@elliemae/ds-dropzone": "3.55.0-next.4",
70
- "@elliemae/ds-filterbar": "3.55.0-next.4",
71
- "@elliemae/ds-floating-context": "3.55.0-next.4",
72
- "@elliemae/ds-fast-list": "3.55.0-next.4",
73
- "@elliemae/ds-form": "3.55.0-next.4",
74
- "@elliemae/ds-form-checkbox": "3.55.0-next.4",
75
- "@elliemae/ds-form-combobox": "3.55.0-next.4",
76
- "@elliemae/ds-form-date-range-picker": "3.55.0-next.4",
77
- "@elliemae/ds-form-date-time-picker": "3.55.0-next.4",
78
- "@elliemae/ds-form-helpers-mask-hooks": "3.55.0-next.4",
79
- "@elliemae/ds-form-input-text": "3.55.0-next.4",
80
- "@elliemae/ds-form-layout-autocomplete": "3.55.0-next.4",
81
- "@elliemae/ds-form-input-textarea": "3.55.0-next.4",
82
- "@elliemae/ds-form-layout-input-group": "3.55.0-next.4",
83
- "@elliemae/ds-form-layout-blocks": "3.55.0-next.4",
84
- "@elliemae/ds-form-native-select": "3.55.0-next.4",
85
- "@elliemae/ds-form-multi-combobox": "3.55.0-next.4",
86
- "@elliemae/ds-form-layout-label": "3.55.0-next.4",
87
- "@elliemae/ds-form-radio": "3.55.0-next.4",
88
- "@elliemae/ds-form-select": "3.55.0-next.4",
89
- "@elliemae/ds-form-single-combobox": "3.55.0-next.4",
90
- "@elliemae/ds-form-toggle": "3.55.0-next.4",
91
- "@elliemae/ds-global-header": "3.55.0-next.4",
92
- "@elliemae/ds-grid": "3.55.0-next.4",
93
- "@elliemae/ds-group-box": "3.55.0-next.4",
94
- "@elliemae/ds-hidden": "3.55.0-next.4",
95
- "@elliemae/ds-hooks-focus-trap": "3.55.0-next.4",
96
- "@elliemae/ds-header": "3.55.0-next.4",
97
- "@elliemae/ds-hooks-focus-stack": "3.55.0-next.4",
98
- "@elliemae/ds-hooks-fontsize-detector": "3.55.0-next.4",
99
- "@elliemae/ds-hooks-fontsize-media": "3.55.0-next.4",
100
- "@elliemae/ds-hooks-headless-tooltip": "3.55.0-next.4",
101
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.55.0-next.4",
102
- "@elliemae/ds-hooks-is-mobile": "3.55.0-next.4",
103
- "@elliemae/ds-hooks-on-blur-out": "3.55.0-next.4",
104
- "@elliemae/ds-hooks-keyboard-navigation": "3.55.0-next.4",
105
- "@elliemae/ds-hooks-on-first-focus-in": "3.55.0-next.4",
106
- "@elliemae/ds-icon": "3.55.0-next.4",
107
- "@elliemae/ds-image": "3.55.0-next.4",
108
- "@elliemae/ds-imagelibrarymodal": "3.55.0-next.4",
109
- "@elliemae/ds-icons": "3.55.0-next.4",
110
- "@elliemae/ds-indeterminate-progress-indicator": "3.55.0-next.4",
111
- "@elliemae/ds-label-value": "3.55.0-next.4",
112
- "@elliemae/ds-layout-provider": "3.55.0-next.4",
113
- "@elliemae/ds-left-navigation": "3.55.0-next.4",
114
- "@elliemae/ds-list-section-header": "3.55.0-next.4",
115
- "@elliemae/ds-loading-indicator": "3.55.0-next.4",
116
- "@elliemae/ds-menu": "3.55.0-next.4",
117
- "@elliemae/ds-menu-button": "3.55.0-next.4",
118
- "@elliemae/ds-menu-items": "3.55.0-next.4",
119
- "@elliemae/ds-menu-items-action": "3.55.0-next.4",
120
- "@elliemae/ds-menu-items-section": "3.55.0-next.4",
121
- "@elliemae/ds-menu-items-multi": "3.55.0-next.4",
122
- "@elliemae/ds-menu-items-separator": "3.55.0-next.4",
123
- "@elliemae/ds-menu-items-single": "3.55.0-next.4",
124
- "@elliemae/ds-menu-items-single-with-submenu": "3.55.0-next.4",
125
- "@elliemae/ds-menu-items-skeleton": "3.55.0-next.4",
126
- "@elliemae/ds-menu-tree-item": "3.55.0-next.4",
127
- "@elliemae/ds-mini-toolbar": "3.55.0-next.4",
128
- "@elliemae/ds-menu-items-commons": "3.55.0-next.4",
129
- "@elliemae/ds-modal": "3.55.0-next.4",
130
- "@elliemae/ds-menu-items-submenu": "3.55.0-next.4",
131
- "@elliemae/ds-mobile": "3.55.0-next.4",
132
- "@elliemae/ds-modal-slide": "3.55.0-next.4",
133
- "@elliemae/ds-notification-badge": "3.55.0-next.4",
134
- "@elliemae/ds-overlay": "3.55.0-next.4",
135
- "@elliemae/ds-number-range-field": "3.55.0-next.4",
136
- "@elliemae/ds-page-header": "3.55.0-next.4",
137
- "@elliemae/ds-page-header-v1": "3.55.0-next.4",
138
- "@elliemae/ds-page-layout": "3.55.0-next.4",
139
- "@elliemae/ds-page-header-v2": "3.55.0-next.4",
140
- "@elliemae/ds-page-number": "3.55.0-next.4",
141
- "@elliemae/ds-pills-v2": "3.55.0-next.4",
142
- "@elliemae/ds-pagination": "3.55.0-next.4",
143
- "@elliemae/ds-pills": "3.55.0-next.4",
144
- "@elliemae/ds-popover": "3.55.0-next.4",
145
- "@elliemae/ds-portal": "3.55.0-next.4",
146
- "@elliemae/ds-popperjs": "3.55.0-next.4",
147
- "@elliemae/ds-progress-indicator": "3.55.0-next.4",
148
- "@elliemae/ds-popper": "3.55.0-next.4",
149
- "@elliemae/ds-props-helpers": "3.55.0-next.4",
150
- "@elliemae/ds-read-more": "3.55.0-next.4",
151
- "@elliemae/ds-resizeable-container": "3.55.0-next.4",
152
- "@elliemae/ds-scrollable-container": "3.55.0-next.4",
153
- "@elliemae/ds-search-field": "3.55.0-next.4",
154
- "@elliemae/ds-query-builder": "3.55.0-next.4",
155
- "@elliemae/ds-ribbon": "3.55.0-next.4",
156
- "@elliemae/ds-shuttle": "3.55.0-next.4",
157
- "@elliemae/ds-shared": "3.55.0-next.4",
158
- "@elliemae/ds-separator": "3.55.0-next.4",
159
- "@elliemae/ds-shuttle-v2": "3.55.0-next.4",
160
- "@elliemae/ds-side-panel": "3.55.0-next.4",
161
- "@elliemae/ds-side-panel-header": "3.55.0-next.4",
162
- "@elliemae/ds-slider": "3.55.0-next.4",
163
- "@elliemae/ds-skeleton": "3.55.0-next.4",
164
- "@elliemae/ds-slider-v2": "3.55.0-next.4",
165
- "@elliemae/ds-spinner": "3.55.0-next.4",
166
- "@elliemae/ds-stepper": "3.55.0-next.4",
167
- "@elliemae/ds-svg": "3.55.0-next.4",
168
- "@elliemae/ds-system": "3.55.0-next.4",
169
- "@elliemae/ds-tabs": "3.55.0-next.4",
170
- "@elliemae/ds-text-wrapper": "3.55.0-next.4",
171
- "@elliemae/ds-square-indicator": "3.55.0-next.4",
172
- "@elliemae/ds-test-utils": "3.55.0-next.4",
173
- "@elliemae/ds-time-picker": "3.55.0-next.4",
174
- "@elliemae/ds-toast": "3.55.0-next.4",
175
- "@elliemae/ds-toolbar": "3.55.0-next.4",
176
- "@elliemae/ds-toolbar-v1": "3.55.0-next.4",
177
- "@elliemae/ds-toolbar-v2": "3.55.0-next.4",
178
- "@elliemae/ds-transition": "3.55.0-next.4",
179
- "@elliemae/ds-tree-model": "3.55.0-next.4",
180
- "@elliemae/ds-treeview": "3.55.0-next.4",
181
- "@elliemae/ds-truncated-expandable-text": "3.55.0-next.4",
182
- "@elliemae/ds-tooltip-v3": "3.55.0-next.4",
183
- "@elliemae/ds-typography": "3.55.0-next.4",
184
- "@elliemae/ds-uploader": "3.55.0-next.4",
185
- "@elliemae/ds-typescript-helpers": "3.55.0-next.4",
186
- "@elliemae/ds-truncated-tooltip-text": "3.55.0-next.4",
187
- "@elliemae/ds-virtual-list": "3.55.0-next.4",
188
- "@elliemae/ds-wizard": "3.55.0-next.4",
189
- "@elliemae/ds-zipcode-search": "3.55.0-next.4",
190
- "@elliemae/ds-wysiwygeditor": "3.55.0-next.4",
191
- "@elliemae/ds-zustand-helpers": "3.55.0-next.4",
192
- "@elliemae/ds-zoom": "3.55.0-next.4"
7
+ "@elliemae/ds-accessibility": "3.55.0-next.6",
8
+ "@elliemae/ds-app-picker": "3.55.0-next.6",
9
+ "@elliemae/ds-accordion": "3.55.0-next.6",
10
+ "@elliemae/ds-banner": "3.55.0-next.6",
11
+ "@elliemae/ds-basic": "3.55.0-next.6",
12
+ "@elliemae/ds-button": "3.55.0-next.6",
13
+ "@elliemae/ds-backdrop": "3.55.0-next.6",
14
+ "@elliemae/ds-button-group": "3.55.0-next.6",
15
+ "@elliemae/ds-breadcrumb": "3.55.0-next.6",
16
+ "@elliemae/ds-button-v1": "3.55.0-next.6",
17
+ "@elliemae/ds-card-array": "3.55.0-next.6",
18
+ "@elliemae/ds-button-v2": "3.55.0-next.6",
19
+ "@elliemae/ds-card": "3.55.0-next.6",
20
+ "@elliemae/ds-card-navigation": "3.55.0-next.6",
21
+ "@elliemae/ds-card-v1-detail": "3.55.0-next.6",
22
+ "@elliemae/ds-card-v1": "3.55.0-next.6",
23
+ "@elliemae/ds-card-v2": "3.55.0-next.6",
24
+ "@elliemae/ds-card-v2-group": "3.55.0-next.6",
25
+ "@elliemae/ds-card-v2-action-addon": "3.55.0-next.6",
26
+ "@elliemae/ds-card-v3": "3.55.0-next.6",
27
+ "@elliemae/ds-card-v3-poc": "3.55.0-next.6",
28
+ "@elliemae/ds-chat": "3.55.0-next.6",
29
+ "@elliemae/ds-chat-bubble": "3.55.0-next.6",
30
+ "@elliemae/ds-chat-card": "3.55.0-next.6",
31
+ "@elliemae/ds-chat-container": "3.55.0-next.6",
32
+ "@elliemae/ds-chat-container-header": "3.55.0-next.6",
33
+ "@elliemae/ds-chat-floating-button": "3.55.0-next.6",
34
+ "@elliemae/ds-chat-message-delimeter": "3.55.0-next.6",
35
+ "@elliemae/ds-chat-sidebar": "3.55.0-next.6",
36
+ "@elliemae/ds-chat-tile": "3.55.0-next.6",
37
+ "@elliemae/ds-chat-empty-state": "3.55.0-next.6",
38
+ "@elliemae/ds-chip": "3.55.0-next.6",
39
+ "@elliemae/ds-chat-system-message": "3.55.0-next.6",
40
+ "@elliemae/ds-circular-progress-indicator": "3.55.0-next.6",
41
+ "@elliemae/ds-classnames": "3.55.0-next.6",
42
+ "@elliemae/ds-codeeditor": "3.55.0-next.6",
43
+ "@elliemae/ds-comments": "3.55.0-next.6",
44
+ "@elliemae/ds-common": "3.55.0-next.6",
45
+ "@elliemae/ds-controlled-form": "3.55.0-next.6",
46
+ "@elliemae/ds-csv-converter": "3.55.0-next.6",
47
+ "@elliemae/ds-data-table": "3.55.0-next.6",
48
+ "@elliemae/ds-data-table-action-cell": "3.55.0-next.6",
49
+ "@elliemae/ds-data-table-cell": "3.55.0-next.6",
50
+ "@elliemae/ds-data-table-cell-header": "3.55.0-next.6",
51
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.55.0-next.6",
52
+ "@elliemae/ds-data-table-expand-cell": "3.55.0-next.6",
53
+ "@elliemae/ds-data-table-filters": "3.55.0-next.6",
54
+ "@elliemae/ds-data-table-multi-select-cell": "3.55.0-next.6",
55
+ "@elliemae/ds-data-table-single-select-cell": "3.55.0-next.6",
56
+ "@elliemae/ds-datagrids": "3.55.0-next.6",
57
+ "@elliemae/ds-dataviz-pie": "3.55.0-next.6",
58
+ "@elliemae/ds-date-range-picker": "3.55.0-next.6",
59
+ "@elliemae/ds-date-picker": "3.55.0-next.6",
60
+ "@elliemae/ds-date-range-selector": "3.55.0-next.6",
61
+ "@elliemae/ds-dataviz": "3.55.0-next.6",
62
+ "@elliemae/ds-date-time-picker": "3.55.0-next.6",
63
+ "@elliemae/ds-date-time-recurrence-picker": "3.55.0-next.6",
64
+ "@elliemae/ds-decision-graph": "3.55.0-next.6",
65
+ "@elliemae/ds-dialog": "3.55.0-next.6",
66
+ "@elliemae/ds-drag-and-drop": "3.55.0-next.6",
67
+ "@elliemae/ds-dropdownmenu": "3.55.0-next.6",
68
+ "@elliemae/ds-dropdownmenu-v2": "3.55.0-next.6",
69
+ "@elliemae/ds-dropzone": "3.55.0-next.6",
70
+ "@elliemae/ds-filterbar": "3.55.0-next.6",
71
+ "@elliemae/ds-fast-list": "3.55.0-next.6",
72
+ "@elliemae/ds-floating-context": "3.55.0-next.6",
73
+ "@elliemae/ds-form-checkbox": "3.55.0-next.6",
74
+ "@elliemae/ds-form": "3.55.0-next.6",
75
+ "@elliemae/ds-form-combobox": "3.55.0-next.6",
76
+ "@elliemae/ds-form-date-range-picker": "3.55.0-next.6",
77
+ "@elliemae/ds-form-date-time-picker": "3.55.0-next.6",
78
+ "@elliemae/ds-form-helpers-mask-hooks": "3.55.0-next.6",
79
+ "@elliemae/ds-form-input-text": "3.55.0-next.6",
80
+ "@elliemae/ds-form-input-textarea": "3.55.0-next.6",
81
+ "@elliemae/ds-form-layout-autocomplete": "3.55.0-next.6",
82
+ "@elliemae/ds-form-layout-blocks": "3.55.0-next.6",
83
+ "@elliemae/ds-form-layout-label": "3.55.0-next.6",
84
+ "@elliemae/ds-form-layout-input-group": "3.55.0-next.6",
85
+ "@elliemae/ds-form-native-select": "3.55.0-next.6",
86
+ "@elliemae/ds-form-radio": "3.55.0-next.6",
87
+ "@elliemae/ds-form-select": "3.55.0-next.6",
88
+ "@elliemae/ds-form-single-combobox": "3.55.0-next.6",
89
+ "@elliemae/ds-global-header": "3.55.0-next.6",
90
+ "@elliemae/ds-form-multi-combobox": "3.55.0-next.6",
91
+ "@elliemae/ds-grid": "3.55.0-next.6",
92
+ "@elliemae/ds-form-toggle": "3.55.0-next.6",
93
+ "@elliemae/ds-group-box": "3.55.0-next.6",
94
+ "@elliemae/ds-header": "3.55.0-next.6",
95
+ "@elliemae/ds-hidden": "3.55.0-next.6",
96
+ "@elliemae/ds-hooks-focus-stack": "3.55.0-next.6",
97
+ "@elliemae/ds-hooks-focus-trap": "3.55.0-next.6",
98
+ "@elliemae/ds-hooks-fontsize-detector": "3.55.0-next.6",
99
+ "@elliemae/ds-hooks-fontsize-media": "3.55.0-next.6",
100
+ "@elliemae/ds-hooks-headless-tooltip": "3.55.0-next.6",
101
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.55.0-next.6",
102
+ "@elliemae/ds-hooks-keyboard-navigation": "3.55.0-next.6",
103
+ "@elliemae/ds-hooks-is-mobile": "3.55.0-next.6",
104
+ "@elliemae/ds-hooks-on-blur-out": "3.55.0-next.6",
105
+ "@elliemae/ds-hooks-on-first-focus-in": "3.55.0-next.6",
106
+ "@elliemae/ds-icon": "3.55.0-next.6",
107
+ "@elliemae/ds-image": "3.55.0-next.6",
108
+ "@elliemae/ds-icons": "3.55.0-next.6",
109
+ "@elliemae/ds-imagelibrarymodal": "3.55.0-next.6",
110
+ "@elliemae/ds-indeterminate-progress-indicator": "3.55.0-next.6",
111
+ "@elliemae/ds-label-value": "3.55.0-next.6",
112
+ "@elliemae/ds-layout-provider": "3.55.0-next.6",
113
+ "@elliemae/ds-left-navigation": "3.55.0-next.6",
114
+ "@elliemae/ds-loading-indicator": "3.55.0-next.6",
115
+ "@elliemae/ds-list-section-header": "3.55.0-next.6",
116
+ "@elliemae/ds-menu": "3.55.0-next.6",
117
+ "@elliemae/ds-menu-items": "3.55.0-next.6",
118
+ "@elliemae/ds-menu-button": "3.55.0-next.6",
119
+ "@elliemae/ds-menu-items-commons": "3.55.0-next.6",
120
+ "@elliemae/ds-menu-items-action": "3.55.0-next.6",
121
+ "@elliemae/ds-menu-items-multi": "3.55.0-next.6",
122
+ "@elliemae/ds-menu-items-section": "3.55.0-next.6",
123
+ "@elliemae/ds-menu-items-separator": "3.55.0-next.6",
124
+ "@elliemae/ds-menu-items-single-with-submenu": "3.55.0-next.6",
125
+ "@elliemae/ds-menu-items-single": "3.55.0-next.6",
126
+ "@elliemae/ds-menu-items-skeleton": "3.55.0-next.6",
127
+ "@elliemae/ds-mini-toolbar": "3.55.0-next.6",
128
+ "@elliemae/ds-menu-tree-item": "3.55.0-next.6",
129
+ "@elliemae/ds-menu-items-submenu": "3.55.0-next.6",
130
+ "@elliemae/ds-mobile": "3.55.0-next.6",
131
+ "@elliemae/ds-modal-slide": "3.55.0-next.6",
132
+ "@elliemae/ds-modal": "3.55.0-next.6",
133
+ "@elliemae/ds-notification-badge": "3.55.0-next.6",
134
+ "@elliemae/ds-number-range-field": "3.55.0-next.6",
135
+ "@elliemae/ds-overlay": "3.55.0-next.6",
136
+ "@elliemae/ds-page-header": "3.55.0-next.6",
137
+ "@elliemae/ds-page-header-v1": "3.55.0-next.6",
138
+ "@elliemae/ds-page-header-v2": "3.55.0-next.6",
139
+ "@elliemae/ds-page-number": "3.55.0-next.6",
140
+ "@elliemae/ds-page-layout": "3.55.0-next.6",
141
+ "@elliemae/ds-pills-v2": "3.55.0-next.6",
142
+ "@elliemae/ds-popover": "3.55.0-next.6",
143
+ "@elliemae/ds-pills": "3.55.0-next.6",
144
+ "@elliemae/ds-pagination": "3.55.0-next.6",
145
+ "@elliemae/ds-popperjs": "3.55.0-next.6",
146
+ "@elliemae/ds-progress-indicator": "3.55.0-next.6",
147
+ "@elliemae/ds-props-helpers": "3.55.0-next.6",
148
+ "@elliemae/ds-query-builder": "3.55.0-next.6",
149
+ "@elliemae/ds-popper": "3.55.0-next.6",
150
+ "@elliemae/ds-portal": "3.55.0-next.6",
151
+ "@elliemae/ds-read-more": "3.55.0-next.6",
152
+ "@elliemae/ds-ribbon": "3.55.0-next.6",
153
+ "@elliemae/ds-search-field": "3.55.0-next.6",
154
+ "@elliemae/ds-scrollable-container": "3.55.0-next.6",
155
+ "@elliemae/ds-resizeable-container": "3.55.0-next.6",
156
+ "@elliemae/ds-separator": "3.55.0-next.6",
157
+ "@elliemae/ds-shared": "3.55.0-next.6",
158
+ "@elliemae/ds-shuttle": "3.55.0-next.6",
159
+ "@elliemae/ds-shuttle-v2": "3.55.0-next.6",
160
+ "@elliemae/ds-side-panel": "3.55.0-next.6",
161
+ "@elliemae/ds-side-panel-header": "3.55.0-next.6",
162
+ "@elliemae/ds-skeleton": "3.55.0-next.6",
163
+ "@elliemae/ds-slider": "3.55.0-next.6",
164
+ "@elliemae/ds-spinner": "3.55.0-next.6",
165
+ "@elliemae/ds-square-indicator": "3.55.0-next.6",
166
+ "@elliemae/ds-slider-v2": "3.55.0-next.6",
167
+ "@elliemae/ds-stepper": "3.55.0-next.6",
168
+ "@elliemae/ds-system": "3.55.0-next.6",
169
+ "@elliemae/ds-tabs": "3.55.0-next.6",
170
+ "@elliemae/ds-test-utils": "3.55.0-next.6",
171
+ "@elliemae/ds-text-wrapper": "3.55.0-next.6",
172
+ "@elliemae/ds-svg": "3.55.0-next.6",
173
+ "@elliemae/ds-time-picker": "3.55.0-next.6",
174
+ "@elliemae/ds-toast": "3.55.0-next.6",
175
+ "@elliemae/ds-toolbar": "3.55.0-next.6",
176
+ "@elliemae/ds-toolbar-v1": "3.55.0-next.6",
177
+ "@elliemae/ds-toolbar-v2": "3.55.0-next.6",
178
+ "@elliemae/ds-tooltip-v3": "3.55.0-next.6",
179
+ "@elliemae/ds-transition": "3.55.0-next.6",
180
+ "@elliemae/ds-tree-model": "3.55.0-next.6",
181
+ "@elliemae/ds-treeview": "3.55.0-next.6",
182
+ "@elliemae/ds-truncated-expandable-text": "3.55.0-next.6",
183
+ "@elliemae/ds-typescript-helpers": "3.55.0-next.6",
184
+ "@elliemae/ds-truncated-tooltip-text": "3.55.0-next.6",
185
+ "@elliemae/ds-uploader": "3.55.0-next.6",
186
+ "@elliemae/ds-typography": "3.55.0-next.6",
187
+ "@elliemae/ds-virtual-list": "3.55.0-next.6",
188
+ "@elliemae/ds-wizard": "3.55.0-next.6",
189
+ "@elliemae/ds-wysiwygeditor": "3.55.0-next.6",
190
+ "@elliemae/ds-zipcode-search": "3.55.0-next.6",
191
+ "@elliemae/ds-zoom": "3.55.0-next.6",
192
+ "@elliemae/ds-zustand-helpers": "3.55.0-next.6"
193
193
  }
194
194
  }