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 +10 -0
- package/{ds-controlled-form → ds-hooks}/useMask/Number/UseNumberMask.func.spec.js +22 -11
- package/{ds-controlled-form → ds-hooks}/useMask/Number/UseNumberMask.visual.spec.js +1 -1
- package/{ds-controlled-form → ds-hooks}/useMask/Phone/UsePhoneMask.func.spec.js +1 -1
- package/{ds-controlled-form → ds-hooks}/useMask/Phone/UsePhoneMask.visual.spec.js +1 -1
- package/{ds-controlled-form → ds-hooks}/useMask/ReackHookFormWithMask/ReactHookFormWithMask.func.spec.js +1 -1
- package/{ds-controlled-form → ds-hooks}/useMask/ReackHookFormWithMask/ReactHookFormWithMask.visual.spec.js +1 -1
- package/{ds-controlled-form → ds-hooks}/useMask/RegExp/UseRegExpMask.func.spec.js +1 -1
- package/{ds-controlled-form → ds-hooks}/useMask/SSN/UseSsnMask.func.spec.js +1 -1
- package/{ds-controlled-form → ds-hooks}/useMask/ZipCode/UseZipCodeMask.func.spec.js +1 -1
- package/package.json +187 -187
- /package/{ds-controlled-form → ds-hooks}/useMask/useMaskCO.js +0 -0
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 '
|
|
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
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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
|
+
"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.
|
|
8
|
-
"@elliemae/ds-
|
|
9
|
-
"@elliemae/ds-
|
|
10
|
-
"@elliemae/ds-
|
|
11
|
-
"@elliemae/ds-basic": "3.55.0-next.
|
|
12
|
-
"@elliemae/ds-
|
|
13
|
-
"@elliemae/ds-
|
|
14
|
-
"@elliemae/ds-
|
|
15
|
-
"@elliemae/ds-
|
|
16
|
-
"@elliemae/ds-button-v1": "3.55.0-next.
|
|
17
|
-
"@elliemae/ds-
|
|
18
|
-
"@elliemae/ds-
|
|
19
|
-
"@elliemae/ds-card
|
|
20
|
-
"@elliemae/ds-card-navigation": "3.55.0-next.
|
|
21
|
-
"@elliemae/ds-card-v1": "3.55.0-next.
|
|
22
|
-
"@elliemae/ds-card-
|
|
23
|
-
"@elliemae/ds-card-v2": "3.55.0-next.
|
|
24
|
-
"@elliemae/ds-card-v2-group": "3.55.0-next.
|
|
25
|
-
"@elliemae/ds-card-
|
|
26
|
-
"@elliemae/ds-card-v3
|
|
27
|
-
"@elliemae/ds-card-
|
|
28
|
-
"@elliemae/ds-chat": "3.55.0-next.
|
|
29
|
-
"@elliemae/ds-chat-bubble": "3.55.0-next.
|
|
30
|
-
"@elliemae/ds-chat-card": "3.55.0-next.
|
|
31
|
-
"@elliemae/ds-chat-
|
|
32
|
-
"@elliemae/ds-chat-container": "3.55.0-next.
|
|
33
|
-
"@elliemae/ds-chat-
|
|
34
|
-
"@elliemae/ds-chat-message-delimeter": "3.55.0-next.
|
|
35
|
-
"@elliemae/ds-chat-
|
|
36
|
-
"@elliemae/ds-chat-tile": "3.55.0-next.
|
|
37
|
-
"@elliemae/ds-chat-
|
|
38
|
-
"@elliemae/ds-
|
|
39
|
-
"@elliemae/ds-chat-
|
|
40
|
-
"@elliemae/ds-circular-progress-indicator": "3.55.0-next.
|
|
41
|
-
"@elliemae/ds-
|
|
42
|
-
"@elliemae/ds-codeeditor": "3.55.0-next.
|
|
43
|
-
"@elliemae/ds-comments": "3.55.0-next.
|
|
44
|
-
"@elliemae/ds-common": "3.55.0-next.
|
|
45
|
-
"@elliemae/ds-controlled-form": "3.55.0-next.
|
|
46
|
-
"@elliemae/ds-csv-converter": "3.55.0-next.
|
|
47
|
-
"@elliemae/ds-data-table": "3.55.0-next.
|
|
48
|
-
"@elliemae/ds-data-table-cell": "3.55.0-next.
|
|
49
|
-
"@elliemae/ds-data-table-cell
|
|
50
|
-
"@elliemae/ds-data-table-
|
|
51
|
-
"@elliemae/ds-data-table-drag-and-drop-cell": "3.55.0-next.
|
|
52
|
-
"@elliemae/ds-data-table-expand-cell": "3.55.0-next.
|
|
53
|
-
"@elliemae/ds-data-table-filters": "3.55.0-next.
|
|
54
|
-
"@elliemae/ds-data-table-multi-select-cell": "3.55.0-next.
|
|
55
|
-
"@elliemae/ds-data-table-single-select-cell": "3.55.0-next.
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-
|
|
59
|
-
"@elliemae/ds-date-picker": "3.55.0-next.
|
|
60
|
-
"@elliemae/ds-date-range-selector": "3.55.0-next.
|
|
61
|
-
"@elliemae/ds-
|
|
62
|
-
"@elliemae/ds-date-
|
|
63
|
-
"@elliemae/ds-date-time-recurrence-picker": "3.55.0-next.
|
|
64
|
-
"@elliemae/ds-decision-graph": "3.55.0-next.
|
|
65
|
-
"@elliemae/ds-dialog": "3.55.0-next.
|
|
66
|
-
"@elliemae/ds-drag-and-drop": "3.55.0-next.
|
|
67
|
-
"@elliemae/ds-dropdownmenu": "3.55.0-next.
|
|
68
|
-
"@elliemae/ds-dropdownmenu-v2": "3.55.0-next.
|
|
69
|
-
"@elliemae/ds-dropzone": "3.55.0-next.
|
|
70
|
-
"@elliemae/ds-filterbar": "3.55.0-next.
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-form": "3.55.0-next.
|
|
74
|
-
"@elliemae/ds-form
|
|
75
|
-
"@elliemae/ds-form-combobox": "3.55.0-next.
|
|
76
|
-
"@elliemae/ds-form-date-range-picker": "3.55.0-next.
|
|
77
|
-
"@elliemae/ds-form-date-time-picker": "3.55.0-next.
|
|
78
|
-
"@elliemae/ds-form-helpers-mask-hooks": "3.55.0-next.
|
|
79
|
-
"@elliemae/ds-form-input-text": "3.55.0-next.
|
|
80
|
-
"@elliemae/ds-form-
|
|
81
|
-
"@elliemae/ds-form-
|
|
82
|
-
"@elliemae/ds-form-layout-
|
|
83
|
-
"@elliemae/ds-form-layout-
|
|
84
|
-
"@elliemae/ds-form-
|
|
85
|
-
"@elliemae/ds-form-
|
|
86
|
-
"@elliemae/ds-form-
|
|
87
|
-
"@elliemae/ds-form-
|
|
88
|
-
"@elliemae/ds-form-
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-form-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-group-box": "3.55.0-next.
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-hooks-focus-
|
|
98
|
-
"@elliemae/ds-hooks-fontsize-detector": "3.55.0-next.
|
|
99
|
-
"@elliemae/ds-hooks-fontsize-media": "3.55.0-next.
|
|
100
|
-
"@elliemae/ds-hooks-headless-tooltip": "3.55.0-next.
|
|
101
|
-
"@elliemae/ds-hooks-is-showing-ellipsis": "3.55.0-next.
|
|
102
|
-
"@elliemae/ds-hooks-
|
|
103
|
-
"@elliemae/ds-hooks-
|
|
104
|
-
"@elliemae/ds-hooks-
|
|
105
|
-
"@elliemae/ds-hooks-on-first-focus-in": "3.55.0-next.
|
|
106
|
-
"@elliemae/ds-icon": "3.55.0-next.
|
|
107
|
-
"@elliemae/ds-image": "3.55.0-next.
|
|
108
|
-
"@elliemae/ds-
|
|
109
|
-
"@elliemae/ds-
|
|
110
|
-
"@elliemae/ds-indeterminate-progress-indicator": "3.55.0-next.
|
|
111
|
-
"@elliemae/ds-label-value": "3.55.0-next.
|
|
112
|
-
"@elliemae/ds-layout-provider": "3.55.0-next.
|
|
113
|
-
"@elliemae/ds-left-navigation": "3.55.0-next.
|
|
114
|
-
"@elliemae/ds-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-menu": "3.55.0-next.
|
|
117
|
-
"@elliemae/ds-menu-
|
|
118
|
-
"@elliemae/ds-menu-
|
|
119
|
-
"@elliemae/ds-menu-items-
|
|
120
|
-
"@elliemae/ds-menu-items-
|
|
121
|
-
"@elliemae/ds-menu-items-multi": "3.55.0-next.
|
|
122
|
-
"@elliemae/ds-menu-items-
|
|
123
|
-
"@elliemae/ds-menu-items-
|
|
124
|
-
"@elliemae/ds-menu-items-single-with-submenu": "3.55.0-next.
|
|
125
|
-
"@elliemae/ds-menu-items-
|
|
126
|
-
"@elliemae/ds-menu-
|
|
127
|
-
"@elliemae/ds-mini-toolbar": "3.55.0-next.
|
|
128
|
-
"@elliemae/ds-menu-
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-modal
|
|
133
|
-
"@elliemae/ds-notification-badge": "3.55.0-next.
|
|
134
|
-
"@elliemae/ds-
|
|
135
|
-
"@elliemae/ds-
|
|
136
|
-
"@elliemae/ds-page-header": "3.55.0-next.
|
|
137
|
-
"@elliemae/ds-page-header-v1": "3.55.0-next.
|
|
138
|
-
"@elliemae/ds-page-
|
|
139
|
-
"@elliemae/ds-page-
|
|
140
|
-
"@elliemae/ds-page-
|
|
141
|
-
"@elliemae/ds-pills-v2": "3.55.0-next.
|
|
142
|
-
"@elliemae/ds-
|
|
143
|
-
"@elliemae/ds-pills": "3.55.0-next.
|
|
144
|
-
"@elliemae/ds-
|
|
145
|
-
"@elliemae/ds-
|
|
146
|
-
"@elliemae/ds-
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-
|
|
152
|
-
"@elliemae/ds-
|
|
153
|
-
"@elliemae/ds-search-field": "3.55.0-next.
|
|
154
|
-
"@elliemae/ds-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-shared": "3.55.0-next.
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-shuttle-v2": "3.55.0-next.
|
|
160
|
-
"@elliemae/ds-side-panel": "3.55.0-next.
|
|
161
|
-
"@elliemae/ds-side-panel-header": "3.55.0-next.
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-system": "3.55.0-next.
|
|
169
|
-
"@elliemae/ds-tabs": "3.55.0-next.
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-time-picker": "3.55.0-next.
|
|
174
|
-
"@elliemae/ds-toast": "3.55.0-next.
|
|
175
|
-
"@elliemae/ds-toolbar": "3.55.0-next.
|
|
176
|
-
"@elliemae/ds-toolbar-v1": "3.55.0-next.
|
|
177
|
-
"@elliemae/ds-toolbar-v2": "3.55.0-next.
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-
|
|
182
|
-
"@elliemae/ds-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-virtual-list": "3.55.0-next.
|
|
188
|
-
"@elliemae/ds-wizard": "3.55.0-next.
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-
|
|
191
|
-
"@elliemae/ds-
|
|
192
|
-
"@elliemae/ds-
|
|
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
|
}
|
|
File without changes
|