dimsum-e2e-tests 3.70.0-next.1 → 3.70.0-next.2
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 +4 -0
- package/ds-chip/DSChipCO.js +1 -1
- package/ds-data-table-async/filters/DSDataTable.text-filters.func.spec.js +1 -1
- package/ds-form-date-time-picker/DSControlledDateTimePickerCO.js +3 -0
- package/ds-form-date-time-picker/date-time-full/DateTimePicker.func.spec.js +1 -1
- package/ds-form-date-time-picker/showcase/DateTimePicker.applyAriaDisabled-invalid-selection-showcase.visual.spec.js +2 -2
- package/ds-form-date-time-picker/showcase/DateTimePicker.readOnly-invalid-selection-showcase.visual.spec.js +3 -3
- package/ds-global-header/slots/GlobalHeader.slots.visual.spec.js +1 -1
- package/ds-pills-v2/DSPillsV2CO.js +1 -1
- package/ds-pills-v2/selection/DSPills.func.spec.js +18 -18
- package/ds-slider-v2/DSSliderV2.extra.func.spec.js +14 -2
- package/package.json +151 -151
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.70.0-next.2 (2026-05-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package dimsum-e2e-tests
|
|
9
|
+
|
|
6
10
|
## 3.70.0-next.1 (2026-04-22)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package dimsum-e2e-tests
|
package/ds-chip/DSChipCO.js
CHANGED
|
@@ -57,7 +57,7 @@ export default class DSChipCO extends PageObject {
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
static async getEllipsisSlotByIndex(index = 0) {
|
|
60
|
-
return $$('[data-dimsum-slot="dsChipEllipsis"]')[index];
|
|
60
|
+
return $$('[data-dimsum-parent-slot="dsChipEllipsis"]')[index];
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
static async getLabelSlotByIndex(index = 0) {
|
|
@@ -169,7 +169,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
169
169
|
await expect(pill).not.toBeDisplayed();
|
|
170
170
|
});
|
|
171
171
|
it('should remove correctly an option from name column', async () => {
|
|
172
|
-
const removePill = await FilterBarCO.getPillCloseButtonByName('Remove Francisco');
|
|
172
|
+
const removePill = await FilterBarCO.getPillCloseButtonByName('Remove Francisco from Name');
|
|
173
173
|
await removePill.click();
|
|
174
174
|
const pill = await FilterBarCO.getPillByText('Francisco');
|
|
175
175
|
await expect(pill).not.toBeDisplayed();
|
|
@@ -318,6 +318,9 @@ export default class DSDateTimePickerCO extends PageObject {
|
|
|
318
318
|
static getTimeWheelCurrentMeridiemVisual = async () =>
|
|
319
319
|
$(`[data-testid="ds-controlled-date-time-picker-timewheel-current-meridiem-visual-element"]`);
|
|
320
320
|
|
|
321
|
+
static getTimeWheelCurrentMeridiemVisualByIndex = async (index) =>
|
|
322
|
+
(await $$(`[data-testid="ds-controlled-date-time-picker-timewheel-current-meridiem-visual-element"]`))[index];
|
|
323
|
+
|
|
321
324
|
static getTimeWheelNextMeridiem = async () =>
|
|
322
325
|
$(`[data-testid="ds-controlled-date-time-picker-timewheel-next-meridiem"]`);
|
|
323
326
|
|
|
@@ -115,7 +115,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
115
115
|
await dateTrigger.click();
|
|
116
116
|
const nextHour = await DateTimePickerCO.getTimeWheelNextHour();
|
|
117
117
|
await nextHour.click(); // This sets time at 06
|
|
118
|
-
const focusedDay = await (await DateTimePickerCO.
|
|
118
|
+
const focusedDay = await (await DateTimePickerCO.getCalendarSelectedDay()).getAttribute('aria-label');
|
|
119
119
|
const dayInput = await (await DateTimePickerCO.getDayInputByIndex()).getAttribute('value');
|
|
120
120
|
const monthInput = await (await DateTimePickerCO.getMonthInputByIndex()).getAttribute('value');
|
|
121
121
|
const yearInput = await (await DateTimePickerCO.getYearInputByIndex()).getAttribute('value');
|
|
@@ -20,7 +20,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
20
20
|
await expect(snapshot).toEqual(0);
|
|
21
21
|
});
|
|
22
22
|
it('02: should display focus and hover states on the controller only calendar', async () => {
|
|
23
|
-
const currentMeridiem = await DateTimePickerCO.
|
|
23
|
+
const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiemVisual();
|
|
24
24
|
await browser.keys('ArrowRight');
|
|
25
25
|
await mouseOver(currentMeridiem);
|
|
26
26
|
const snapshot = await browser.checkSnapshot(
|
|
@@ -42,7 +42,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
42
42
|
await browser.keys('Escape');
|
|
43
43
|
const timePicker = await DateTimePickerCO.getTimeWheelPickerBtnByIndex(0);
|
|
44
44
|
await timePicker.click();
|
|
45
|
-
const currentMeridiem = await DateTimePickerCO.
|
|
45
|
+
const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiemVisualByIndex(2);
|
|
46
46
|
await mouseOver(currentMeridiem);
|
|
47
47
|
const snapshot = await browser.checkSnapshot(
|
|
48
48
|
DateTimePickerCO.snapshotPath('applyAriaDisabled-invalid-selection-showcase-open-time'),
|
|
@@ -20,7 +20,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
20
20
|
await expect(snapshot).toEqual(0);
|
|
21
21
|
});
|
|
22
22
|
it('02: should display focus and hover states on the controller only calendar', async () => {
|
|
23
|
-
const am = await DateTimePickerCO.
|
|
23
|
+
const am = await DateTimePickerCO.getTimeWheelCurrentMeridiemVisual('AM');
|
|
24
24
|
await browser.keys('ArrowRight');
|
|
25
25
|
await mouseOver(am);
|
|
26
26
|
const snapshot = await browser.checkSnapshot(
|
|
@@ -31,7 +31,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
31
31
|
it('03: should display readOnly + N/A state with open date picker', async () => {
|
|
32
32
|
const picker = await DateTimePickerCO.getCalendarPickerBtn();
|
|
33
33
|
await picker.click();
|
|
34
|
-
const focusedDay = await DateTimePickerCO.
|
|
34
|
+
const focusedDay = await DateTimePickerCO.getCalendarSelectedFocusedDay();
|
|
35
35
|
await mouseOver(focusedDay);
|
|
36
36
|
const snapshot = await browser.checkSnapshot(
|
|
37
37
|
DateTimePickerCO.snapshotPath('readOnly-invalid-selection-showcase-open-date'),
|
|
@@ -42,7 +42,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
42
42
|
await browser.keys('Escape');
|
|
43
43
|
const timePicker = await DateTimePickerCO.getTimeWheelPickerBtnByIndex(0);
|
|
44
44
|
await timePicker.click();
|
|
45
|
-
const currentMeridiem = await DateTimePickerCO.
|
|
45
|
+
const currentMeridiem = await DateTimePickerCO.getTimeWheelCurrentMeridiemVisualByIndex(2);
|
|
46
46
|
await mouseOver(currentMeridiem);
|
|
47
47
|
const snapshot = await browser.checkSnapshot(
|
|
48
48
|
DateTimePickerCO.snapshotPath('readOnly-invalid-selection-showcase-open-time'),
|
|
@@ -12,7 +12,7 @@ if (
|
|
|
12
12
|
if (errorOnGo) throw errorOnGo;
|
|
13
13
|
});
|
|
14
14
|
it('01: should display basic GlobalHeadercwith customized slots', async () => {
|
|
15
|
-
await (await GlobalHeader.
|
|
15
|
+
await (await GlobalHeader.getGHMenubarItemButtonSlotByIndex(3)).click();
|
|
16
16
|
const snapshot = await browser.checkSnapshot(GlobalHeader.snapshotPath('global-header-slots'));
|
|
17
17
|
await expect(snapshot).toEqual(0);
|
|
18
18
|
});
|
|
@@ -70,7 +70,7 @@ export default class DSPillsV2CO extends PageObject {
|
|
|
70
70
|
static getPillByIndex = async (index) => getElementByIndex(this.getPills, index);
|
|
71
71
|
|
|
72
72
|
static async getPillsTextByIndex(index = 0) {
|
|
73
|
-
return $$('[data-testid="ds-pill-wrapper"]
|
|
73
|
+
return $$('[data-testid="ds-pill-wrapper"]')[index];
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
static async getResetBtn() {
|
|
@@ -28,10 +28,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
28
28
|
const pills = await DSPillsV2CO.getPills();
|
|
29
29
|
const howManyPills = pills.length;
|
|
30
30
|
const menu = await DSMenuButtonCO.getMenuRoot();
|
|
31
|
-
const
|
|
32
|
-
const
|
|
33
|
-
await expect(
|
|
34
|
-
await expect(
|
|
31
|
+
const minipill1 = await DSPillsV2CO.getPillsTextByIndex(1);
|
|
32
|
+
const minipill2 = await DSPillsV2CO.getPillsTextByIndex(2);
|
|
33
|
+
await expect(minipill1).toHaveAttribute('data-label', 'Bold');
|
|
34
|
+
await expect(minipill2).toHaveAttribute('data-label', 'Underlined');
|
|
35
35
|
await expect(menu).toBeDisplayedInViewport();
|
|
36
36
|
await expect(howManyPills).toEqual(3);
|
|
37
37
|
});
|
|
@@ -57,9 +57,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
57
57
|
const pills = await DSPillsV2CO.getPills();
|
|
58
58
|
const howManyPills = pills.length;
|
|
59
59
|
const menu = await DSMenuButtonCO.getMenuRoot();
|
|
60
|
-
const
|
|
60
|
+
const minipill1 = await DSPillsV2CO.getPillsTextByIndex(1);
|
|
61
61
|
await expect(optionRed).toHaveAttribute('aria-checked', 'true');
|
|
62
|
-
await expect(
|
|
62
|
+
await expect(minipill1).toHaveAttribute('data-label', 'Red');
|
|
63
63
|
await expect(menu).toBeDisplayedInViewport();
|
|
64
64
|
await expect(howManyPills).toEqual(2);
|
|
65
65
|
});
|
|
@@ -77,9 +77,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
77
77
|
const pills = await DSPillsV2CO.getPills();
|
|
78
78
|
const howManyPills = pills.length;
|
|
79
79
|
const menu = await DSMenuButtonCO.getMenuRoot();
|
|
80
|
-
const
|
|
80
|
+
const minipill1 = await DSPillsV2CO.getPillsTextByIndex(1);
|
|
81
81
|
await expect(optionBlack).toHaveAttribute('aria-checked', 'true');
|
|
82
|
-
await expect(
|
|
82
|
+
await expect(minipill1).toHaveAttribute('data-label', 'Black');
|
|
83
83
|
await expect(menu).toBeDisplayedInViewport();
|
|
84
84
|
await expect(howManyPills).toEqual(4);
|
|
85
85
|
});
|
|
@@ -90,10 +90,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
90
90
|
const pills = await DSPillsV2CO.getPills();
|
|
91
91
|
const howManyPills = pills.length;
|
|
92
92
|
const menu = await DSMenuButtonCO.getMenuRoot();
|
|
93
|
-
const
|
|
93
|
+
const minipill1 = await DSPillsV2CO.getPillsTextByIndex(1);
|
|
94
94
|
await expect(optionBlack).toHaveAttribute('aria-checked', 'false');
|
|
95
95
|
await expect(optionRed).toHaveAttribute('aria-checked', 'true');
|
|
96
|
-
await expect(
|
|
96
|
+
await expect(minipill1).toHaveAttribute('data-label', 'Red');
|
|
97
97
|
await expect(menu).toBeDisplayedInViewport();
|
|
98
98
|
await expect(howManyPills).toEqual(4);
|
|
99
99
|
});
|
|
@@ -117,9 +117,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
117
117
|
const pills = await DSPillsV2CO.getPills();
|
|
118
118
|
const howManyPills = pills.length;
|
|
119
119
|
const menu = await DSMenuButtonCO.getMenuRoot();
|
|
120
|
-
const
|
|
120
|
+
const minipill1 = await DSPillsV2CO.getPillsTextByIndex(3);
|
|
121
121
|
await expect(optionItalic).toHaveAttribute('aria-checked', 'true');
|
|
122
|
-
await expect(
|
|
122
|
+
await expect(minipill1).toHaveAttribute('data-label', 'Italic');
|
|
123
123
|
await expect(menu).toBeDisplayedInViewport();
|
|
124
124
|
await expect(howManyPills).toEqual(4);
|
|
125
125
|
});
|
|
@@ -130,12 +130,12 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
130
130
|
const pills = await DSPillsV2CO.getPills();
|
|
131
131
|
const howManyPills = pills.length;
|
|
132
132
|
const menu = await DSMenuButtonCO.getMenuRoot();
|
|
133
|
-
const
|
|
134
|
-
const
|
|
133
|
+
const minipill1 = await DSPillsV2CO.getPillsTextByIndex(3);
|
|
134
|
+
const minipill2 = await DSPillsV2CO.getPillsTextByIndex(4);
|
|
135
135
|
await expect(optionItalic).toHaveAttribute('aria-checked', 'true');
|
|
136
136
|
await expect(optionBold).toHaveAttribute('aria-checked', 'true');
|
|
137
|
-
await expect(
|
|
138
|
-
await expect(
|
|
137
|
+
await expect(minipill1).toHaveAttribute('data-label', 'Italic');
|
|
138
|
+
await expect(minipill2).toHaveAttribute('data-label', 'Bold');
|
|
139
139
|
await expect(menu).toBeDisplayedInViewport();
|
|
140
140
|
await expect(howManyPills).toEqual(5);
|
|
141
141
|
});
|
|
@@ -146,10 +146,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
146
146
|
const pills = await DSPillsV2CO.getPills();
|
|
147
147
|
const howManyPills = pills.length;
|
|
148
148
|
const menu = await DSMenuButtonCO.getMenuRoot();
|
|
149
|
-
const
|
|
149
|
+
const minipill1 = await DSPillsV2CO.getPillsTextByIndex(3);
|
|
150
150
|
await expect(optionItalic).toHaveAttribute('aria-checked', 'false');
|
|
151
151
|
await expect(optionBold).toHaveAttribute('aria-checked', 'true');
|
|
152
|
-
await expect(
|
|
152
|
+
await expect(minipill1).toHaveAttribute('data-label', 'Bold');
|
|
153
153
|
await expect(menu).toBeDisplayedInViewport();
|
|
154
154
|
await expect(howManyPills).toEqual(4);
|
|
155
155
|
});
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
/* eslint-disable max-statements */
|
|
2
2
|
import DSSliderV2CO from './DSSliderV2CO';
|
|
3
|
+
import { clickPosition } from '../helpers';
|
|
4
|
+
|
|
5
|
+
// Use viewport-absolute coordinates instead of element.click({ x, y }):
|
|
6
|
+
// safaridriver scales element-origin offsets by DPR (doubles them on Retina),
|
|
7
|
+
// which produced 2× the expected slider value in Safari.
|
|
8
|
+
const clickAtOffsetFrom = async (element, dx, dy = 0) => {
|
|
9
|
+
const { x, y } = await element.getLocation();
|
|
10
|
+
const { width, height } = await element.getSize();
|
|
11
|
+
const cx = Math.round(x + width / 2) + dx;
|
|
12
|
+
const cy = Math.round(y + height / 2) + dy;
|
|
13
|
+
await clickPosition(cx, cy);
|
|
14
|
+
};
|
|
3
15
|
|
|
4
16
|
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
5
17
|
describe('PUI-16581 - SliderV2 - Track Click, Single -Func', () => {
|
|
@@ -9,13 +21,13 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
9
21
|
});
|
|
10
22
|
it('01: should change slider value with click jump (click on track right)', async () => {
|
|
11
23
|
const handler = await DSSliderV2CO.getSliderThumb();
|
|
12
|
-
await handler
|
|
24
|
+
await clickAtOffsetFrom(handler, 400);
|
|
13
25
|
const valueAfterChange = await DSSliderV2CO.getSliderValue(handler);
|
|
14
26
|
await expect(valueAfterChange).toEqual('20');
|
|
15
27
|
});
|
|
16
28
|
it('02: should change slider value with click jump (click on track left)', async () => {
|
|
17
29
|
const handler = await DSSliderV2CO.getSliderThumb();
|
|
18
|
-
await handler
|
|
30
|
+
await clickAtOffsetFrom(handler, -200);
|
|
19
31
|
const valueAfterChange = await DSSliderV2CO.getSliderValue(handler);
|
|
20
32
|
await expect(valueAfterChange).toEqual('10');
|
|
21
33
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "dimsum-e2e-tests",
|
|
4
|
-
"version": "3.70.0-next.
|
|
4
|
+
"version": "3.70.0-next.2",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elliemae/ds-legacy-button": "1.0.16",
|
|
@@ -41,156 +41,156 @@
|
|
|
41
41
|
"@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
|
|
42
42
|
"@elliemae/ds-legacy-zipcode-search": "1.0.16",
|
|
43
43
|
"@elliemae/ds-legacy-zoom": "1.0.16",
|
|
44
|
-
"@elliemae/ds-accessibility": "3.70.0-next.
|
|
45
|
-
"@elliemae/ds-accordion": "3.70.0-next.
|
|
46
|
-
"@elliemae/ds-backdrop": "3.70.0-next.
|
|
47
|
-
"@elliemae/ds-app-picker": "3.70.0-next.
|
|
48
|
-
"@elliemae/ds-banner": "3.70.0-next.
|
|
49
|
-
"@elliemae/ds-basic": "3.70.0-next.
|
|
50
|
-
"@elliemae/ds-breadcrumb": "3.70.0-next.
|
|
51
|
-
"@elliemae/ds-button-v2": "3.70.0-next.
|
|
52
|
-
"@elliemae/ds-card": "3.70.0-next.
|
|
53
|
-
"@elliemae/ds-card
|
|
54
|
-
"@elliemae/ds-card-
|
|
55
|
-
"@elliemae/ds-card-
|
|
56
|
-
"@elliemae/ds-card-v2": "3.70.0-next.
|
|
57
|
-
"@elliemae/ds-card-v2-
|
|
58
|
-
"@elliemae/ds-card-
|
|
59
|
-
"@elliemae/ds-card-
|
|
60
|
-
"@elliemae/ds-card-v3": "3.70.0-next.
|
|
61
|
-
"@elliemae/ds-chat
|
|
62
|
-
"@elliemae/ds-chat": "3.70.0-next.
|
|
63
|
-
"@elliemae/ds-chat-card": "3.70.0-next.
|
|
64
|
-
"@elliemae/ds-chat-container": "3.70.0-next.
|
|
65
|
-
"@elliemae/ds-chat-container
|
|
66
|
-
"@elliemae/ds-chat-empty-state": "3.70.0-next.
|
|
67
|
-
"@elliemae/ds-chat-
|
|
68
|
-
"@elliemae/ds-chat-
|
|
69
|
-
"@elliemae/ds-chat-
|
|
70
|
-
"@elliemae/ds-chat-system-message": "3.70.0-next.
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-
|
|
80
|
-
"@elliemae/ds-data-table-cell": "3.70.0-next.
|
|
81
|
-
"@elliemae/ds-data-table-
|
|
82
|
-
"@elliemae/ds-data-table-cell
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-
|
|
85
|
-
"@elliemae/ds-data-table-
|
|
86
|
-
"@elliemae/ds-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-data-table-
|
|
89
|
-
"@elliemae/ds-dataviz
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-dropdownmenu-v2": "3.70.0-next.
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-form-checkbox": "3.70.0-next.
|
|
99
|
-
"@elliemae/ds-floating-context": "3.70.0-next.
|
|
100
|
-
"@elliemae/ds-form-date-
|
|
101
|
-
"@elliemae/ds-form-
|
|
102
|
-
"@elliemae/ds-form-
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-input-
|
|
105
|
-
"@elliemae/ds-form-
|
|
106
|
-
"@elliemae/ds-form-layout-
|
|
107
|
-
"@elliemae/ds-form-layout-
|
|
108
|
-
"@elliemae/ds-form-input-
|
|
109
|
-
"@elliemae/ds-form-layout-label": "3.70.0-next.
|
|
110
|
-
"@elliemae/ds-form-
|
|
111
|
-
"@elliemae/ds-form-select": "3.70.0-next.
|
|
112
|
-
"@elliemae/ds-form-
|
|
113
|
-
"@elliemae/ds-form-
|
|
114
|
-
"@elliemae/ds-form-toggle": "3.70.0-next.
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-
|
|
119
|
-
"@elliemae/ds-hooks-
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-fontsize-
|
|
122
|
-
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.
|
|
123
|
-
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.
|
|
124
|
-
"@elliemae/ds-hooks-
|
|
125
|
-
"@elliemae/ds-hooks-
|
|
126
|
-
"@elliemae/ds-
|
|
127
|
-
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.
|
|
133
|
-
"@elliemae/ds-
|
|
134
|
-
"@elliemae/ds-left-navigation": "3.70.0-next.
|
|
135
|
-
"@elliemae/ds-loading-indicator": "3.70.0-next.
|
|
136
|
-
"@elliemae/ds-menu-button": "3.70.0-next.
|
|
137
|
-
"@elliemae/ds-menu-items": "3.70.0-next.
|
|
138
|
-
"@elliemae/ds-menu-items-action": "3.70.0-next.
|
|
139
|
-
"@elliemae/ds-menu-items-commons": "3.70.0-next.
|
|
140
|
-
"@elliemae/ds-menu-items-multi": "3.70.0-next.
|
|
141
|
-
"@elliemae/ds-menu-items-
|
|
142
|
-
"@elliemae/ds-menu-items-
|
|
143
|
-
"@elliemae/ds-menu-items-single
|
|
144
|
-
"@elliemae/ds-menu-items-single": "3.70.0-next.
|
|
145
|
-
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.
|
|
146
|
-
"@elliemae/ds-menu-items-submenu": "3.70.0-next.
|
|
147
|
-
"@elliemae/ds-menu-tree-item": "3.70.0-next.
|
|
148
|
-
"@elliemae/ds-mobile": "3.70.0-next.
|
|
149
|
-
"@elliemae/ds-
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-overlay": "3.70.0-next.
|
|
152
|
-
"@elliemae/ds-page-header": "3.70.0-next.
|
|
153
|
-
"@elliemae/ds-page-header-
|
|
154
|
-
"@elliemae/ds-page-
|
|
155
|
-
"@elliemae/ds-page-
|
|
156
|
-
"@elliemae/ds-pagination": "3.70.0-next.
|
|
157
|
-
"@elliemae/ds-pills-v2": "3.70.0-next.
|
|
158
|
-
"@elliemae/ds-popperjs": "3.70.0-next.
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-props-helpers": "3.70.0-next.
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-ribbon": "3.70.0-next.
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-shared": "3.70.0-next.
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-side-panel
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-
|
|
177
|
-
"@elliemae/ds-system": "3.70.0-next.
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-toolbar-v1": "3.70.0-next.
|
|
182
|
-
"@elliemae/ds-toolbar-v2": "3.70.0-next.
|
|
183
|
-
"@elliemae/ds-tooltip-v3": "3.70.0-next.
|
|
184
|
-
"@elliemae/ds-transition": "3.70.0-next.
|
|
185
|
-
"@elliemae/ds-tree-model": "3.70.0-next.
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-typography": "3.70.0-next.
|
|
191
|
-
"@elliemae/ds-virtual-list": "3.70.0-next.
|
|
192
|
-
"@elliemae/ds-zustand-helpers": "3.70.0-next.
|
|
193
|
-
"@elliemae/ds-wizard": "3.70.0-next.
|
|
44
|
+
"@elliemae/ds-accessibility": "3.70.0-next.2",
|
|
45
|
+
"@elliemae/ds-accordion": "3.70.0-next.2",
|
|
46
|
+
"@elliemae/ds-backdrop": "3.70.0-next.2",
|
|
47
|
+
"@elliemae/ds-app-picker": "3.70.0-next.2",
|
|
48
|
+
"@elliemae/ds-banner": "3.70.0-next.2",
|
|
49
|
+
"@elliemae/ds-basic": "3.70.0-next.2",
|
|
50
|
+
"@elliemae/ds-breadcrumb": "3.70.0-next.2",
|
|
51
|
+
"@elliemae/ds-button-v2": "3.70.0-next.2",
|
|
52
|
+
"@elliemae/ds-card-v1": "3.70.0-next.2",
|
|
53
|
+
"@elliemae/ds-card": "3.70.0-next.2",
|
|
54
|
+
"@elliemae/ds-card-v1-detail": "3.70.0-next.2",
|
|
55
|
+
"@elliemae/ds-card-navigation": "3.70.0-next.2",
|
|
56
|
+
"@elliemae/ds-card-v2": "3.70.0-next.2",
|
|
57
|
+
"@elliemae/ds-card-v2-group": "3.70.0-next.2",
|
|
58
|
+
"@elliemae/ds-card-v3": "3.70.0-next.2",
|
|
59
|
+
"@elliemae/ds-card-v2-action-addon": "3.70.0-next.2",
|
|
60
|
+
"@elliemae/ds-card-v3-poc": "3.70.0-next.2",
|
|
61
|
+
"@elliemae/ds-chat": "3.70.0-next.2",
|
|
62
|
+
"@elliemae/ds-chat-bubble": "3.70.0-next.2",
|
|
63
|
+
"@elliemae/ds-chat-card": "3.70.0-next.2",
|
|
64
|
+
"@elliemae/ds-chat-container-header": "3.70.0-next.2",
|
|
65
|
+
"@elliemae/ds-chat-container": "3.70.0-next.2",
|
|
66
|
+
"@elliemae/ds-chat-empty-state": "3.70.0-next.2",
|
|
67
|
+
"@elliemae/ds-chat-message-delimeter": "3.70.0-next.2",
|
|
68
|
+
"@elliemae/ds-chat-sidebar": "3.70.0-next.2",
|
|
69
|
+
"@elliemae/ds-chat-floating-button": "3.70.0-next.2",
|
|
70
|
+
"@elliemae/ds-chat-system-message": "3.70.0-next.2",
|
|
71
|
+
"@elliemae/ds-chat-tile": "3.70.0-next.2",
|
|
72
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.2",
|
|
73
|
+
"@elliemae/ds-classnames": "3.70.0-next.2",
|
|
74
|
+
"@elliemae/ds-chip": "3.70.0-next.2",
|
|
75
|
+
"@elliemae/ds-codeeditor": "3.70.0-next.2",
|
|
76
|
+
"@elliemae/ds-data-table": "3.70.0-next.2",
|
|
77
|
+
"@elliemae/ds-comments": "3.70.0-next.2",
|
|
78
|
+
"@elliemae/ds-csv-converter": "3.70.0-next.2",
|
|
79
|
+
"@elliemae/ds-controlled-form": "3.70.0-next.2",
|
|
80
|
+
"@elliemae/ds-data-table-cell": "3.70.0-next.2",
|
|
81
|
+
"@elliemae/ds-data-table-cell-header": "3.70.0-next.2",
|
|
82
|
+
"@elliemae/ds-data-table-action-cell": "3.70.0-next.2",
|
|
83
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.2",
|
|
84
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.2",
|
|
85
|
+
"@elliemae/ds-data-table-filters": "3.70.0-next.2",
|
|
86
|
+
"@elliemae/ds-data-table-expand-cell": "3.70.0-next.2",
|
|
87
|
+
"@elliemae/ds-date-time-picker": "3.70.0-next.2",
|
|
88
|
+
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.2",
|
|
89
|
+
"@elliemae/ds-dataviz": "3.70.0-next.2",
|
|
90
|
+
"@elliemae/ds-dialog": "3.70.0-next.2",
|
|
91
|
+
"@elliemae/ds-dataviz-pie": "3.70.0-next.2",
|
|
92
|
+
"@elliemae/ds-drag-and-drop": "3.70.0-next.2",
|
|
93
|
+
"@elliemae/ds-decision-graph": "3.70.0-next.2",
|
|
94
|
+
"@elliemae/ds-dropdownmenu-v2": "3.70.0-next.2",
|
|
95
|
+
"@elliemae/ds-dropzone": "3.70.0-next.2",
|
|
96
|
+
"@elliemae/ds-filter-bar": "3.70.0-next.2",
|
|
97
|
+
"@elliemae/ds-fast-list": "3.70.0-next.2",
|
|
98
|
+
"@elliemae/ds-form-checkbox": "3.70.0-next.2",
|
|
99
|
+
"@elliemae/ds-floating-context": "3.70.0-next.2",
|
|
100
|
+
"@elliemae/ds-form-date-time-picker": "3.70.0-next.2",
|
|
101
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.2",
|
|
102
|
+
"@elliemae/ds-form-date-range-picker": "3.70.0-next.2",
|
|
103
|
+
"@elliemae/ds-form-combobox": "3.70.0-next.2",
|
|
104
|
+
"@elliemae/ds-form-input-textarea": "3.70.0-next.2",
|
|
105
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.2",
|
|
106
|
+
"@elliemae/ds-form-layout-autocomplete": "3.70.0-next.2",
|
|
107
|
+
"@elliemae/ds-form-layout-blocks": "3.70.0-next.2",
|
|
108
|
+
"@elliemae/ds-form-layout-input-group": "3.70.0-next.2",
|
|
109
|
+
"@elliemae/ds-form-layout-label": "3.70.0-next.2",
|
|
110
|
+
"@elliemae/ds-form-radio": "3.70.0-next.2",
|
|
111
|
+
"@elliemae/ds-form-native-select": "3.70.0-next.2",
|
|
112
|
+
"@elliemae/ds-form-multi-combobox": "3.70.0-next.2",
|
|
113
|
+
"@elliemae/ds-form-select": "3.70.0-next.2",
|
|
114
|
+
"@elliemae/ds-form-toggle": "3.70.0-next.2",
|
|
115
|
+
"@elliemae/ds-form-single-combobox": "3.70.0-next.2",
|
|
116
|
+
"@elliemae/ds-global-header": "3.70.0-next.2",
|
|
117
|
+
"@elliemae/ds-grid": "3.70.0-next.2",
|
|
118
|
+
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.2",
|
|
119
|
+
"@elliemae/ds-hooks-focus-trap": "3.70.0-next.2",
|
|
120
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.2",
|
|
121
|
+
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.2",
|
|
122
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.2",
|
|
123
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.2",
|
|
124
|
+
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.2",
|
|
125
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.2",
|
|
126
|
+
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.2",
|
|
127
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.2",
|
|
128
|
+
"@elliemae/ds-icon": "3.70.0-next.2",
|
|
129
|
+
"@elliemae/ds-icons": "3.70.0-next.2",
|
|
130
|
+
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.2",
|
|
131
|
+
"@elliemae/ds-image": "3.70.0-next.2",
|
|
132
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.2",
|
|
133
|
+
"@elliemae/ds-layout-provider": "3.70.0-next.2",
|
|
134
|
+
"@elliemae/ds-left-navigation": "3.70.0-next.2",
|
|
135
|
+
"@elliemae/ds-loading-indicator": "3.70.0-next.2",
|
|
136
|
+
"@elliemae/ds-menu-button": "3.70.0-next.2",
|
|
137
|
+
"@elliemae/ds-menu-items": "3.70.0-next.2",
|
|
138
|
+
"@elliemae/ds-menu-items-action": "3.70.0-next.2",
|
|
139
|
+
"@elliemae/ds-menu-items-commons": "3.70.0-next.2",
|
|
140
|
+
"@elliemae/ds-menu-items-multi": "3.70.0-next.2",
|
|
141
|
+
"@elliemae/ds-menu-items-section": "3.70.0-next.2",
|
|
142
|
+
"@elliemae/ds-menu-items-separator": "3.70.0-next.2",
|
|
143
|
+
"@elliemae/ds-menu-items-single": "3.70.0-next.2",
|
|
144
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.2",
|
|
145
|
+
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.2",
|
|
146
|
+
"@elliemae/ds-menu-items-submenu": "3.70.0-next.2",
|
|
147
|
+
"@elliemae/ds-menu-tree-item": "3.70.0-next.2",
|
|
148
|
+
"@elliemae/ds-mobile": "3.70.0-next.2",
|
|
149
|
+
"@elliemae/ds-modal-slide": "3.70.0-next.2",
|
|
150
|
+
"@elliemae/ds-notification-badge": "3.70.0-next.2",
|
|
151
|
+
"@elliemae/ds-overlay": "3.70.0-next.2",
|
|
152
|
+
"@elliemae/ds-page-header": "3.70.0-next.2",
|
|
153
|
+
"@elliemae/ds-page-header-v2": "3.70.0-next.2",
|
|
154
|
+
"@elliemae/ds-page-layout": "3.70.0-next.2",
|
|
155
|
+
"@elliemae/ds-page-header-v1": "3.70.0-next.2",
|
|
156
|
+
"@elliemae/ds-pagination": "3.70.0-next.2",
|
|
157
|
+
"@elliemae/ds-pills-v2": "3.70.0-next.2",
|
|
158
|
+
"@elliemae/ds-popperjs": "3.70.0-next.2",
|
|
159
|
+
"@elliemae/ds-portal": "3.70.0-next.2",
|
|
160
|
+
"@elliemae/ds-progress-indicator": "3.70.0-next.2",
|
|
161
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.2",
|
|
162
|
+
"@elliemae/ds-resizeable-container": "3.70.0-next.2",
|
|
163
|
+
"@elliemae/ds-query-builder": "3.70.0-next.2",
|
|
164
|
+
"@elliemae/ds-ribbon": "3.70.0-next.2",
|
|
165
|
+
"@elliemae/ds-scrollable-container": "3.70.0-next.2",
|
|
166
|
+
"@elliemae/ds-separator": "3.70.0-next.2",
|
|
167
|
+
"@elliemae/ds-read-more": "3.70.0-next.2",
|
|
168
|
+
"@elliemae/ds-shared": "3.70.0-next.2",
|
|
169
|
+
"@elliemae/ds-shuttle-v2": "3.70.0-next.2",
|
|
170
|
+
"@elliemae/ds-side-panel-header": "3.70.0-next.2",
|
|
171
|
+
"@elliemae/ds-side-panel": "3.70.0-next.2",
|
|
172
|
+
"@elliemae/ds-slider-v2": "3.70.0-next.2",
|
|
173
|
+
"@elliemae/ds-square-indicator": "3.70.0-next.2",
|
|
174
|
+
"@elliemae/ds-svg": "3.70.0-next.2",
|
|
175
|
+
"@elliemae/ds-tabs": "3.70.0-next.2",
|
|
176
|
+
"@elliemae/ds-skeleton": "3.70.0-next.2",
|
|
177
|
+
"@elliemae/ds-system": "3.70.0-next.2",
|
|
178
|
+
"@elliemae/ds-stepper": "3.70.0-next.2",
|
|
179
|
+
"@elliemae/ds-test-utils": "3.70.0-next.2",
|
|
180
|
+
"@elliemae/ds-toast": "3.70.0-next.2",
|
|
181
|
+
"@elliemae/ds-toolbar-v1": "3.70.0-next.2",
|
|
182
|
+
"@elliemae/ds-toolbar-v2": "3.70.0-next.2",
|
|
183
|
+
"@elliemae/ds-tooltip-v3": "3.70.0-next.2",
|
|
184
|
+
"@elliemae/ds-transition": "3.70.0-next.2",
|
|
185
|
+
"@elliemae/ds-tree-model": "3.70.0-next.2",
|
|
186
|
+
"@elliemae/ds-treeview": "3.70.0-next.2",
|
|
187
|
+
"@elliemae/ds-truncated-expandable-text": "3.70.0-next.2",
|
|
188
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.2",
|
|
189
|
+
"@elliemae/ds-truncated-tooltip-text": "3.70.0-next.2",
|
|
190
|
+
"@elliemae/ds-typography": "3.70.0-next.2",
|
|
191
|
+
"@elliemae/ds-virtual-list": "3.70.0-next.2",
|
|
192
|
+
"@elliemae/ds-zustand-helpers": "3.70.0-next.2",
|
|
193
|
+
"@elliemae/ds-wizard": "3.70.0-next.2"
|
|
194
194
|
},
|
|
195
195
|
"publishConfig": {
|
|
196
196
|
"access": "public"
|