dimsum-e2e-tests 3.60.0-next.50 → 3.60.0-next.52
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,18 @@
|
|
|
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.60.0-next.52 (2026-04-06)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- ds-dialog:: confirmation and form example; status message as pitfall [PUI-15048](https://jira.elliemae.io/browse/PUI-15048) ([#7969](https://git.elliemae.io/platform-ui/dimsum/issues/7969)) ([85edf83](https://git.elliemae.io/platform-ui/dimsum/commit/85edf8357497a8f3684814c2c183d15de4600d0c))
|
|
11
|
+
|
|
12
|
+
## 3.60.0-next.51 (2026-04-06)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- ds-dialog:: basic use case [PUI-15045](https://jira.elliemae.io/browse/PUI-15045) ([#7968](https://git.elliemae.io/platform-ui/dimsum/issues/7968)) ([77143b7](https://git.elliemae.io/platform-ui/dimsum/commit/77143b7c1dafb252e4e899557306085d9e51cd0f))
|
|
17
|
+
|
|
6
18
|
## 3.60.0-next.50 (2026-04-02)
|
|
7
19
|
|
|
8
20
|
### Features
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { Key } from 'webdriverio';
|
|
2
|
+
import DateRangePickerCO from '../DateRangePickerCO';
|
|
3
|
+
|
|
4
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
5
|
+
describe('PUI-18263 - DSControlledDateRangePicker:: ArrowUp/ArrowDown on date input fields - Func', () => {
|
|
6
|
+
before('loading page', async () => {
|
|
7
|
+
const errorOnGo = await DateRangePickerCO.basic.go();
|
|
8
|
+
if (errorOnGo) throw errorOnGo;
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
it('01: Start Date month should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
12
|
+
const monthInput = await DateRangePickerCO.getMonthInputByIndex(0);
|
|
13
|
+
await monthInput.click();
|
|
14
|
+
await browser.keys(Key.ArrowUp);
|
|
15
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
16
|
+
await browser.keys(Key.ArrowUp);
|
|
17
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('02'));
|
|
18
|
+
await browser.keys(Key.ArrowDown);
|
|
19
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('02: Start Date day should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
23
|
+
const dayInput = await DateRangePickerCO.getDayInputByIndex(0);
|
|
24
|
+
await dayInput.click();
|
|
25
|
+
await browser.keys(Key.ArrowUp);
|
|
26
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
27
|
+
await browser.keys(Key.ArrowUp);
|
|
28
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('02'));
|
|
29
|
+
await browser.keys(Key.ArrowDown);
|
|
30
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
it('03: Start Date year should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
34
|
+
const yearInput = await DateRangePickerCO.getYearInputByIndex(0);
|
|
35
|
+
await yearInput.click();
|
|
36
|
+
await browser.keys(Key.ArrowUp);
|
|
37
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
38
|
+
await browser.keys(Key.ArrowUp);
|
|
39
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0002'));
|
|
40
|
+
await browser.keys(Key.ArrowDown);
|
|
41
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
it('04: End Date month should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
45
|
+
const monthInput = await DateRangePickerCO.getMonthInputByIndex(1);
|
|
46
|
+
await monthInput.click();
|
|
47
|
+
await browser.keys(Key.ArrowUp);
|
|
48
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
49
|
+
await browser.keys(Key.ArrowUp);
|
|
50
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('02'));
|
|
51
|
+
await browser.keys(Key.ArrowDown);
|
|
52
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('05: End Date day should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
56
|
+
const dayInput = await DateRangePickerCO.getDayInputByIndex(1);
|
|
57
|
+
await dayInput.click();
|
|
58
|
+
await browser.keys(Key.ArrowUp);
|
|
59
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
60
|
+
await browser.keys(Key.ArrowUp);
|
|
61
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('02'));
|
|
62
|
+
await browser.keys(Key.ArrowDown);
|
|
63
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
it('06: End Date year should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
67
|
+
const yearInput = await DateRangePickerCO.getYearInputByIndex(1);
|
|
68
|
+
await yearInput.click();
|
|
69
|
+
await browser.keys(Key.ArrowUp);
|
|
70
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
71
|
+
await browser.keys(Key.ArrowUp);
|
|
72
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0002'));
|
|
73
|
+
await browser.keys(Key.ArrowDown);
|
|
74
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
75
|
+
});
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
// eslint-disable-next-line max-len
|
|
79
|
+
describe('PUI-18264 - DSControlledDateRangePicker:: ArrowDown from empty initializes date input fields to minimum value - Func', () => {
|
|
80
|
+
before('loading page', async () => {
|
|
81
|
+
const errorOnGo = await DateRangePickerCO.basic.go();
|
|
82
|
+
if (errorOnGo) throw errorOnGo;
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
it('01: Start Date month should initialize to 01 with ArrowDown from empty', async () => {
|
|
86
|
+
const monthInput = await DateRangePickerCO.getMonthInputByIndex(0);
|
|
87
|
+
await monthInput.click();
|
|
88
|
+
await browser.keys(Key.ArrowDown);
|
|
89
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
it('02: Start Date day should initialize to 01 with ArrowDown from empty', async () => {
|
|
93
|
+
const dayInput = await DateRangePickerCO.getDayInputByIndex(0);
|
|
94
|
+
await dayInput.click();
|
|
95
|
+
await browser.keys(Key.ArrowDown);
|
|
96
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
it('03: Start Date year should initialize to 0001 with ArrowDown from empty', async () => {
|
|
100
|
+
const yearInput = await DateRangePickerCO.getYearInputByIndex(0);
|
|
101
|
+
await yearInput.click();
|
|
102
|
+
await browser.keys(Key.ArrowDown);
|
|
103
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
it('04: End Date month should initialize to 01 with ArrowDown from empty', async () => {
|
|
107
|
+
const monthInput = await DateRangePickerCO.getMonthInputByIndex(1);
|
|
108
|
+
await monthInput.click();
|
|
109
|
+
await browser.keys(Key.ArrowDown);
|
|
110
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
it('05: End Date day should initialize to 01 with ArrowDown from empty', async () => {
|
|
114
|
+
const dayInput = await DateRangePickerCO.getDayInputByIndex(1);
|
|
115
|
+
await dayInput.click();
|
|
116
|
+
await browser.keys(Key.ArrowDown);
|
|
117
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
it('06: End Date year should initialize to 0001 with ArrowDown from empty', async () => {
|
|
121
|
+
const yearInput = await DateRangePickerCO.getYearInputByIndex(1);
|
|
122
|
+
await yearInput.click();
|
|
123
|
+
await browser.keys(Key.ArrowDown);
|
|
124
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
125
|
+
});
|
|
126
|
+
});
|
|
127
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { Key } from 'webdriverio';
|
|
2
|
+
import DSDateTimePickerCO from '../DSControlledDateTimePickerCO';
|
|
3
|
+
|
|
4
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
5
|
+
describe('PUI-18261 - DSControlledDateTimePicker:: ArrowUp/ArrowDown on date and time input fields - Func', () => {
|
|
6
|
+
before('loading page', async () => {
|
|
7
|
+
const errorOnGo = await DSDateTimePickerCO.dateTimeOnly.go();
|
|
8
|
+
if (errorOnGo) throw errorOnGo;
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
it('01: month should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
12
|
+
const monthInput = await DSDateTimePickerCO.getMonthInput();
|
|
13
|
+
await monthInput.click();
|
|
14
|
+
await browser.keys(Key.ArrowUp);
|
|
15
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
16
|
+
await browser.keys(Key.ArrowUp);
|
|
17
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('02'));
|
|
18
|
+
await browser.keys(Key.ArrowDown);
|
|
19
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('02: day should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
23
|
+
const dayInput = await DSDateTimePickerCO.getDayInput();
|
|
24
|
+
await dayInput.click();
|
|
25
|
+
await browser.keys(Key.ArrowUp);
|
|
26
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
27
|
+
await browser.keys(Key.ArrowUp);
|
|
28
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('02'));
|
|
29
|
+
await browser.keys(Key.ArrowDown);
|
|
30
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
it('03: year should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
34
|
+
const yearInput = await DSDateTimePickerCO.getYearInput();
|
|
35
|
+
await yearInput.click();
|
|
36
|
+
await browser.keys(Key.ArrowUp);
|
|
37
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
38
|
+
await browser.keys(Key.ArrowUp);
|
|
39
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0002'));
|
|
40
|
+
await browser.keys(Key.ArrowDown);
|
|
41
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
it('04: hours should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
45
|
+
const hourInput = await DSDateTimePickerCO.getHourInput();
|
|
46
|
+
await hourInput.click();
|
|
47
|
+
await browser.keys(Key.ArrowUp);
|
|
48
|
+
await expect(hourInput).toHaveValue(expect.stringContaining('01'));
|
|
49
|
+
await browser.keys(Key.ArrowUp);
|
|
50
|
+
await expect(hourInput).toHaveValue(expect.stringContaining('02'));
|
|
51
|
+
await browser.keys(Key.ArrowDown);
|
|
52
|
+
await expect(hourInput).toHaveValue(expect.stringContaining('01'));
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('05: minutes should increment with ArrowUp and decrement with ArrowDown', async () => {
|
|
56
|
+
const minutesInput = await DSDateTimePickerCO.getMinutesInput();
|
|
57
|
+
await minutesInput.click();
|
|
58
|
+
await browser.keys(Key.ArrowUp);
|
|
59
|
+
await expect(minutesInput).toHaveValue(expect.stringContaining('01'));
|
|
60
|
+
await browser.keys(Key.ArrowUp);
|
|
61
|
+
await expect(minutesInput).toHaveValue(expect.stringContaining('02'));
|
|
62
|
+
await browser.keys(Key.ArrowDown);
|
|
63
|
+
await expect(minutesInput).toHaveValue(expect.stringContaining('01'));
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
it('06: meridiem should toggle to PM with ArrowDown and back to AM with ArrowUp', async () => {
|
|
67
|
+
const meridiemInput = await DSDateTimePickerCO.getMeridiemInput();
|
|
68
|
+
await meridiemInput.click();
|
|
69
|
+
await browser.keys(Key.ArrowDown);
|
|
70
|
+
await expect(meridiemInput).toHaveValue('PM');
|
|
71
|
+
await browser.keys(Key.ArrowUp);
|
|
72
|
+
await expect(meridiemInput).toHaveValue('AM');
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
// eslint-disable-next-line max-len
|
|
77
|
+
describe('PUI-18262 - DSControlledDateTimePicker:: ArrowDown from empty initializes date and time input fields to minimum value - Func', () => {
|
|
78
|
+
before('loading page', async () => {
|
|
79
|
+
const errorOnGo = await DSDateTimePickerCO.dateTimeOnly.go();
|
|
80
|
+
if (errorOnGo) throw errorOnGo;
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
it('01: month should initialize to 01 with ArrowDown from empty', async () => {
|
|
84
|
+
const monthInput = await DSDateTimePickerCO.getMonthInput();
|
|
85
|
+
await monthInput.click();
|
|
86
|
+
await browser.keys(Key.ArrowDown);
|
|
87
|
+
await expect(monthInput).toHaveValue(expect.stringContaining('01'));
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
it('02: day should initialize to 01 with ArrowDown from empty', async () => {
|
|
91
|
+
const dayInput = await DSDateTimePickerCO.getDayInput();
|
|
92
|
+
await dayInput.click();
|
|
93
|
+
await browser.keys(Key.ArrowDown);
|
|
94
|
+
await expect(dayInput).toHaveValue(expect.stringContaining('01'));
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
it('03: year should initialize to 0001 with ArrowDown from empty', async () => {
|
|
98
|
+
const yearInput = await DSDateTimePickerCO.getYearInput();
|
|
99
|
+
await yearInput.click();
|
|
100
|
+
await browser.keys(Key.ArrowDown);
|
|
101
|
+
await expect(yearInput).toHaveValue(expect.stringContaining('0001'));
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
it('04: hours should initialize to 01 with ArrowDown from empty', async () => {
|
|
105
|
+
const hourInput = await DSDateTimePickerCO.getHourInput();
|
|
106
|
+
await hourInput.click();
|
|
107
|
+
await browser.keys(Key.ArrowDown);
|
|
108
|
+
await expect(hourInput).toHaveValue(expect.stringContaining('01'));
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
it('05: minutes should initialize to 00 with ArrowDown from empty', async () => {
|
|
112
|
+
const minutesInput = await DSDateTimePickerCO.getMinutesInput();
|
|
113
|
+
await minutesInput.click();
|
|
114
|
+
await browser.keys(Key.ArrowDown);
|
|
115
|
+
await expect(minutesInput).toHaveValue(expect.stringContaining('00'));
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
it('06: meridiem should initialize to PM with ArrowDown from empty', async () => {
|
|
119
|
+
const meridiemInput = await DSDateTimePickerCO.getMeridiemInput();
|
|
120
|
+
await meridiemInput.click();
|
|
121
|
+
await browser.keys(Key.ArrowDown);
|
|
122
|
+
await expect(meridiemInput).toHaveValue('PM');
|
|
123
|
+
});
|
|
124
|
+
});
|
|
125
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "dimsum-e2e-tests",
|
|
4
|
-
"version": "3.60.0-next.
|
|
4
|
+
"version": "3.60.0-next.52",
|
|
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.60.0-next.
|
|
45
|
-
"@elliemae/ds-backdrop": "3.60.0-next.
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-card
|
|
53
|
-
"@elliemae/ds-card-
|
|
54
|
-
"@elliemae/ds-
|
|
55
|
-
"@elliemae/ds-card-
|
|
56
|
-
"@elliemae/ds-card-
|
|
57
|
-
"@elliemae/ds-card-
|
|
58
|
-
"@elliemae/ds-card-v2-
|
|
59
|
-
"@elliemae/ds-card-
|
|
60
|
-
"@elliemae/ds-
|
|
61
|
-
"@elliemae/ds-chat": "3.60.0-next.
|
|
62
|
-
"@elliemae/ds-chat-
|
|
63
|
-
"@elliemae/ds-chat-container": "3.60.0-next.
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-floating-button": "3.60.0-next.
|
|
66
|
-
"@elliemae/ds-chat-
|
|
67
|
-
"@elliemae/ds-chat-
|
|
68
|
-
"@elliemae/ds-chat-
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-chat-
|
|
71
|
-
"@elliemae/ds-chat-
|
|
72
|
-
"@elliemae/ds-chip": "3.60.0-next.
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-data-table-
|
|
80
|
-
"@elliemae/ds-
|
|
81
|
-
"@elliemae/ds-data-table-cell": "3.60.0-next.
|
|
82
|
-
"@elliemae/ds-data-table-
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-cell
|
|
85
|
-
"@elliemae/ds-data-table-
|
|
86
|
-
"@elliemae/ds-data-table-
|
|
87
|
-
"@elliemae/ds-data-table-
|
|
88
|
-
"@elliemae/ds-dataviz
|
|
89
|
-
"@elliemae/ds-dataviz": "3.60.0-next.
|
|
90
|
-
"@elliemae/ds-date-time-picker": "3.60.0-next.
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-dropdownmenu-v2": "3.60.0-next.
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-form-checkbox": "3.60.0-next.
|
|
100
|
-
"@elliemae/ds-form-combobox": "3.60.0-next.
|
|
101
|
-
"@elliemae/ds-form-date-
|
|
102
|
-
"@elliemae/ds-form-date-
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-
|
|
105
|
-
"@elliemae/ds-form-layout-
|
|
106
|
-
"@elliemae/ds-form-layout-
|
|
107
|
-
"@elliemae/ds-form-
|
|
108
|
-
"@elliemae/ds-form-input-
|
|
109
|
-
"@elliemae/ds-form-
|
|
110
|
-
"@elliemae/ds-form-
|
|
111
|
-
"@elliemae/ds-form-
|
|
112
|
-
"@elliemae/ds-form-
|
|
113
|
-
"@elliemae/ds-form-select": "3.60.0-next.
|
|
114
|
-
"@elliemae/ds-form-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-grid": "3.60.0-next.
|
|
118
|
-
"@elliemae/ds-hooks-focus-
|
|
119
|
-
"@elliemae/ds-hooks-
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-fontsize-media": "3.60.0-next.
|
|
122
|
-
"@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.
|
|
123
|
-
"@elliemae/ds-hooks-is-mobile": "3.60.0-next.
|
|
124
|
-
"@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.
|
|
125
|
-
"@elliemae/ds-hooks-
|
|
126
|
-
"@elliemae/ds-hooks-
|
|
127
|
-
"@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.
|
|
128
|
-
"@elliemae/ds-icon": "3.60.0-next.
|
|
129
|
-
"@elliemae/ds-image": "3.60.0-next.
|
|
130
|
-
"@elliemae/ds-icons": "3.60.0-next.
|
|
131
|
-
"@elliemae/ds-imagelibrarymodal": "3.60.0-next.
|
|
132
|
-
"@elliemae/ds-
|
|
133
|
-
"@elliemae/ds-
|
|
134
|
-
"@elliemae/ds-
|
|
135
|
-
"@elliemae/ds-
|
|
136
|
-
"@elliemae/ds-menu-
|
|
137
|
-
"@elliemae/ds-menu-
|
|
138
|
-
"@elliemae/ds-menu-items-action": "3.60.0-next.
|
|
139
|
-
"@elliemae/ds-menu-items": "3.60.0-next.
|
|
140
|
-
"@elliemae/ds-menu-items-
|
|
141
|
-
"@elliemae/ds-menu-items-
|
|
142
|
-
"@elliemae/ds-menu-items-separator": "3.60.0-next.
|
|
143
|
-
"@elliemae/ds-menu-items-single": "3.60.0-next.
|
|
144
|
-
"@elliemae/ds-menu-items-
|
|
145
|
-
"@elliemae/ds-menu-items-
|
|
146
|
-
"@elliemae/ds-
|
|
147
|
-
"@elliemae/ds-menu-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-modal-slide": "3.60.0-next.
|
|
150
|
-
"@elliemae/ds-notification-badge": "3.60.0-next.
|
|
151
|
-
"@elliemae/ds-overlay": "3.60.0-next.
|
|
152
|
-
"@elliemae/ds-page-header": "3.60.0-next.
|
|
153
|
-
"@elliemae/ds-page-header-v1": "3.60.0-next.
|
|
154
|
-
"@elliemae/ds-page-header
|
|
155
|
-
"@elliemae/ds-page-layout": "3.60.0-next.
|
|
156
|
-
"@elliemae/ds-pagination": "3.60.0-next.
|
|
157
|
-
"@elliemae/ds-pills-v2": "3.60.0-next.
|
|
158
|
-
"@elliemae/ds-popperjs": "3.60.0-next.
|
|
159
|
-
"@elliemae/ds-portal": "3.60.0-next.
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-resizeable-container": "3.60.0-next.
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-svg": "3.60.0-next.
|
|
177
|
-
"@elliemae/ds-
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-test-utils": "3.60.0-next.
|
|
180
|
-
"@elliemae/ds-toast": "3.60.0-next.
|
|
181
|
-
"@elliemae/ds-
|
|
182
|
-
"@elliemae/ds-toolbar-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-truncated-expandable-text": "3.60.0-next.
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-
|
|
191
|
-
"@elliemae/ds-virtual-list": "3.60.0-next.
|
|
192
|
-
"@elliemae/ds-wizard": "3.60.0-next.
|
|
193
|
-
"@elliemae/ds-zustand-helpers": "3.60.0-next.
|
|
44
|
+
"@elliemae/ds-accessibility": "3.60.0-next.52",
|
|
45
|
+
"@elliemae/ds-backdrop": "3.60.0-next.52",
|
|
46
|
+
"@elliemae/ds-app-picker": "3.60.0-next.52",
|
|
47
|
+
"@elliemae/ds-banner": "3.60.0-next.52",
|
|
48
|
+
"@elliemae/ds-basic": "3.60.0-next.52",
|
|
49
|
+
"@elliemae/ds-accordion": "3.60.0-next.52",
|
|
50
|
+
"@elliemae/ds-breadcrumb": "3.60.0-next.52",
|
|
51
|
+
"@elliemae/ds-button-v2": "3.60.0-next.52",
|
|
52
|
+
"@elliemae/ds-card": "3.60.0-next.52",
|
|
53
|
+
"@elliemae/ds-card-navigation": "3.60.0-next.52",
|
|
54
|
+
"@elliemae/ds-card-v1": "3.60.0-next.52",
|
|
55
|
+
"@elliemae/ds-card-v1-detail": "3.60.0-next.52",
|
|
56
|
+
"@elliemae/ds-card-v2": "3.60.0-next.52",
|
|
57
|
+
"@elliemae/ds-card-v3": "3.60.0-next.52",
|
|
58
|
+
"@elliemae/ds-card-v2-action-addon": "3.60.0-next.52",
|
|
59
|
+
"@elliemae/ds-card-v2-group": "3.60.0-next.52",
|
|
60
|
+
"@elliemae/ds-chat": "3.60.0-next.52",
|
|
61
|
+
"@elliemae/ds-chat-card": "3.60.0-next.52",
|
|
62
|
+
"@elliemae/ds-chat-empty-state": "3.60.0-next.52",
|
|
63
|
+
"@elliemae/ds-chat-container": "3.60.0-next.52",
|
|
64
|
+
"@elliemae/ds-chat-container-header": "3.60.0-next.52",
|
|
65
|
+
"@elliemae/ds-chat-floating-button": "3.60.0-next.52",
|
|
66
|
+
"@elliemae/ds-chat-message-delimeter": "3.60.0-next.52",
|
|
67
|
+
"@elliemae/ds-chat-bubble": "3.60.0-next.52",
|
|
68
|
+
"@elliemae/ds-chat-sidebar": "3.60.0-next.52",
|
|
69
|
+
"@elliemae/ds-card-v3-poc": "3.60.0-next.52",
|
|
70
|
+
"@elliemae/ds-chat-tile": "3.60.0-next.52",
|
|
71
|
+
"@elliemae/ds-chat-system-message": "3.60.0-next.52",
|
|
72
|
+
"@elliemae/ds-chip": "3.60.0-next.52",
|
|
73
|
+
"@elliemae/ds-circular-progress-indicator": "3.60.0-next.52",
|
|
74
|
+
"@elliemae/ds-classnames": "3.60.0-next.52",
|
|
75
|
+
"@elliemae/ds-comments": "3.60.0-next.52",
|
|
76
|
+
"@elliemae/ds-controlled-form": "3.60.0-next.52",
|
|
77
|
+
"@elliemae/ds-codeeditor": "3.60.0-next.52",
|
|
78
|
+
"@elliemae/ds-csv-converter": "3.60.0-next.52",
|
|
79
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.52",
|
|
80
|
+
"@elliemae/ds-data-table": "3.60.0-next.52",
|
|
81
|
+
"@elliemae/ds-data-table-cell": "3.60.0-next.52",
|
|
82
|
+
"@elliemae/ds-data-table-cell-header": "3.60.0-next.52",
|
|
83
|
+
"@elliemae/ds-data-table-action-cell": "3.60.0-next.52",
|
|
84
|
+
"@elliemae/ds-data-table-expand-cell": "3.60.0-next.52",
|
|
85
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.52",
|
|
86
|
+
"@elliemae/ds-data-table-single-select-cell": "3.60.0-next.52",
|
|
87
|
+
"@elliemae/ds-data-table-filters": "3.60.0-next.52",
|
|
88
|
+
"@elliemae/ds-dataviz": "3.60.0-next.52",
|
|
89
|
+
"@elliemae/ds-dataviz-pie": "3.60.0-next.52",
|
|
90
|
+
"@elliemae/ds-date-time-picker": "3.60.0-next.52",
|
|
91
|
+
"@elliemae/ds-decision-graph": "3.60.0-next.52",
|
|
92
|
+
"@elliemae/ds-dialog": "3.60.0-next.52",
|
|
93
|
+
"@elliemae/ds-drag-and-drop": "3.60.0-next.52",
|
|
94
|
+
"@elliemae/ds-dropdownmenu-v2": "3.60.0-next.52",
|
|
95
|
+
"@elliemae/ds-dropzone": "3.60.0-next.52",
|
|
96
|
+
"@elliemae/ds-filter-bar": "3.60.0-next.52",
|
|
97
|
+
"@elliemae/ds-floating-context": "3.60.0-next.52",
|
|
98
|
+
"@elliemae/ds-fast-list": "3.60.0-next.52",
|
|
99
|
+
"@elliemae/ds-form-checkbox": "3.60.0-next.52",
|
|
100
|
+
"@elliemae/ds-form-combobox": "3.60.0-next.52",
|
|
101
|
+
"@elliemae/ds-form-date-time-picker": "3.60.0-next.52",
|
|
102
|
+
"@elliemae/ds-form-date-range-picker": "3.60.0-next.52",
|
|
103
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.52",
|
|
104
|
+
"@elliemae/ds-form-input-textarea": "3.60.0-next.52",
|
|
105
|
+
"@elliemae/ds-form-layout-blocks": "3.60.0-next.52",
|
|
106
|
+
"@elliemae/ds-form-layout-autocomplete": "3.60.0-next.52",
|
|
107
|
+
"@elliemae/ds-form-input-text": "3.60.0-next.52",
|
|
108
|
+
"@elliemae/ds-form-layout-input-group": "3.60.0-next.52",
|
|
109
|
+
"@elliemae/ds-form-layout-label": "3.60.0-next.52",
|
|
110
|
+
"@elliemae/ds-form-multi-combobox": "3.60.0-next.52",
|
|
111
|
+
"@elliemae/ds-form-radio": "3.60.0-next.52",
|
|
112
|
+
"@elliemae/ds-form-single-combobox": "3.60.0-next.52",
|
|
113
|
+
"@elliemae/ds-form-native-select": "3.60.0-next.52",
|
|
114
|
+
"@elliemae/ds-form-select": "3.60.0-next.52",
|
|
115
|
+
"@elliemae/ds-form-toggle": "3.60.0-next.52",
|
|
116
|
+
"@elliemae/ds-global-header": "3.60.0-next.52",
|
|
117
|
+
"@elliemae/ds-grid": "3.60.0-next.52",
|
|
118
|
+
"@elliemae/ds-hooks-focus-stack": "3.60.0-next.52",
|
|
119
|
+
"@elliemae/ds-hooks-focus-trap": "3.60.0-next.52",
|
|
120
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.52",
|
|
121
|
+
"@elliemae/ds-hooks-fontsize-media": "3.60.0-next.52",
|
|
122
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.52",
|
|
123
|
+
"@elliemae/ds-hooks-is-mobile": "3.60.0-next.52",
|
|
124
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.52",
|
|
125
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.52",
|
|
126
|
+
"@elliemae/ds-hooks-on-blur-out": "3.60.0-next.52",
|
|
127
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.52",
|
|
128
|
+
"@elliemae/ds-icon": "3.60.0-next.52",
|
|
129
|
+
"@elliemae/ds-image": "3.60.0-next.52",
|
|
130
|
+
"@elliemae/ds-icons": "3.60.0-next.52",
|
|
131
|
+
"@elliemae/ds-imagelibrarymodal": "3.60.0-next.52",
|
|
132
|
+
"@elliemae/ds-layout-provider": "3.60.0-next.52",
|
|
133
|
+
"@elliemae/ds-loading-indicator": "3.60.0-next.52",
|
|
134
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.60.0-next.52",
|
|
135
|
+
"@elliemae/ds-left-navigation": "3.60.0-next.52",
|
|
136
|
+
"@elliemae/ds-menu-button": "3.60.0-next.52",
|
|
137
|
+
"@elliemae/ds-menu-items": "3.60.0-next.52",
|
|
138
|
+
"@elliemae/ds-menu-items-action": "3.60.0-next.52",
|
|
139
|
+
"@elliemae/ds-menu-items-section": "3.60.0-next.52",
|
|
140
|
+
"@elliemae/ds-menu-items-commons": "3.60.0-next.52",
|
|
141
|
+
"@elliemae/ds-menu-items-multi": "3.60.0-next.52",
|
|
142
|
+
"@elliemae/ds-menu-items-separator": "3.60.0-next.52",
|
|
143
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.52",
|
|
144
|
+
"@elliemae/ds-menu-items-single": "3.60.0-next.52",
|
|
145
|
+
"@elliemae/ds-menu-items-submenu": "3.60.0-next.52",
|
|
146
|
+
"@elliemae/ds-mobile": "3.60.0-next.52",
|
|
147
|
+
"@elliemae/ds-menu-tree-item": "3.60.0-next.52",
|
|
148
|
+
"@elliemae/ds-menu-items-skeleton": "3.60.0-next.52",
|
|
149
|
+
"@elliemae/ds-modal-slide": "3.60.0-next.52",
|
|
150
|
+
"@elliemae/ds-notification-badge": "3.60.0-next.52",
|
|
151
|
+
"@elliemae/ds-overlay": "3.60.0-next.52",
|
|
152
|
+
"@elliemae/ds-page-header-v2": "3.60.0-next.52",
|
|
153
|
+
"@elliemae/ds-page-header-v1": "3.60.0-next.52",
|
|
154
|
+
"@elliemae/ds-page-header": "3.60.0-next.52",
|
|
155
|
+
"@elliemae/ds-page-layout": "3.60.0-next.52",
|
|
156
|
+
"@elliemae/ds-pagination": "3.60.0-next.52",
|
|
157
|
+
"@elliemae/ds-pills-v2": "3.60.0-next.52",
|
|
158
|
+
"@elliemae/ds-popperjs": "3.60.0-next.52",
|
|
159
|
+
"@elliemae/ds-portal": "3.60.0-next.52",
|
|
160
|
+
"@elliemae/ds-progress-indicator": "3.60.0-next.52",
|
|
161
|
+
"@elliemae/ds-query-builder": "3.60.0-next.52",
|
|
162
|
+
"@elliemae/ds-props-helpers": "3.60.0-next.52",
|
|
163
|
+
"@elliemae/ds-ribbon": "3.60.0-next.52",
|
|
164
|
+
"@elliemae/ds-resizeable-container": "3.60.0-next.52",
|
|
165
|
+
"@elliemae/ds-separator": "3.60.0-next.52",
|
|
166
|
+
"@elliemae/ds-shared": "3.60.0-next.52",
|
|
167
|
+
"@elliemae/ds-shuttle-v2": "3.60.0-next.52",
|
|
168
|
+
"@elliemae/ds-scrollable-container": "3.60.0-next.52",
|
|
169
|
+
"@elliemae/ds-side-panel": "3.60.0-next.52",
|
|
170
|
+
"@elliemae/ds-read-more": "3.60.0-next.52",
|
|
171
|
+
"@elliemae/ds-slider-v2": "3.60.0-next.52",
|
|
172
|
+
"@elliemae/ds-skeleton": "3.60.0-next.52",
|
|
173
|
+
"@elliemae/ds-side-panel-header": "3.60.0-next.52",
|
|
174
|
+
"@elliemae/ds-stepper": "3.60.0-next.52",
|
|
175
|
+
"@elliemae/ds-square-indicator": "3.60.0-next.52",
|
|
176
|
+
"@elliemae/ds-svg": "3.60.0-next.52",
|
|
177
|
+
"@elliemae/ds-tabs": "3.60.0-next.52",
|
|
178
|
+
"@elliemae/ds-system": "3.60.0-next.52",
|
|
179
|
+
"@elliemae/ds-test-utils": "3.60.0-next.52",
|
|
180
|
+
"@elliemae/ds-toast": "3.60.0-next.52",
|
|
181
|
+
"@elliemae/ds-tooltip-v3": "3.60.0-next.52",
|
|
182
|
+
"@elliemae/ds-toolbar-v1": "3.60.0-next.52",
|
|
183
|
+
"@elliemae/ds-transition": "3.60.0-next.52",
|
|
184
|
+
"@elliemae/ds-treeview": "3.60.0-next.52",
|
|
185
|
+
"@elliemae/ds-tree-model": "3.60.0-next.52",
|
|
186
|
+
"@elliemae/ds-toolbar-v2": "3.60.0-next.52",
|
|
187
|
+
"@elliemae/ds-truncated-expandable-text": "3.60.0-next.52",
|
|
188
|
+
"@elliemae/ds-typescript-helpers": "3.60.0-next.52",
|
|
189
|
+
"@elliemae/ds-truncated-tooltip-text": "3.60.0-next.52",
|
|
190
|
+
"@elliemae/ds-typography": "3.60.0-next.52",
|
|
191
|
+
"@elliemae/ds-virtual-list": "3.60.0-next.52",
|
|
192
|
+
"@elliemae/ds-wizard": "3.60.0-next.52",
|
|
193
|
+
"@elliemae/ds-zustand-helpers": "3.60.0-next.52"
|
|
194
194
|
},
|
|
195
195
|
"publishConfig": {
|
|
196
196
|
"access": "public"
|