dimsum-e2e-tests 3.60.0-next.33 → 3.60.0-next.35
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 +8 -0
- package/ds-data-table-async/DSDataTableCO.js +10 -2
- package/ds-data-table-async/components/FiltersCO.js +2 -0
- package/ds-data-table-async/filters/DSDataTable.filter-role-dialog.func.spec.js +75 -0
- package/ds-data-table-async/filters/DSDataTable.filters.keybooard-nav.func.spec.js +12 -7
- package/ds-data-table-async/filters/DSDataTable.free-text-search.visual.spec.js +12 -17
- package/ds-data-table-async/filters/DSDataTable.text-filters.func.spec.js +1 -1
- package/ds-leftnavigation/LeftNavigation.func.spec.js +1 -1
- package/ds-tabs/with-carousel/DSTabs.with-carousel.visual.spec.js +3 -46
- package/package.json +150 -150
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.35 (2026-03-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package dimsum-e2e-tests
|
|
9
|
+
|
|
10
|
+
## 3.60.0-next.34 (2026-03-02)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package dimsum-e2e-tests
|
|
13
|
+
|
|
6
14
|
## 3.60.0-next.33 (2026-02-27)
|
|
7
15
|
|
|
8
16
|
### Features
|
|
@@ -93,6 +93,11 @@ export default class DataTableCO extends PageObject {
|
|
|
93
93
|
|
|
94
94
|
static freeTextSearchFilter = new Urlbuilder(PATH_E2E_DATATABLE_FILTERS, 'free-text-search-filter');
|
|
95
95
|
|
|
96
|
+
static filteredColumnWithAllFilterTypes = new Urlbuilder(
|
|
97
|
+
PATH_E2E_DATATABLE_FILTERS,
|
|
98
|
+
'filtered-column-with-all-filter-types',
|
|
99
|
+
);
|
|
100
|
+
|
|
96
101
|
// ADVANCED
|
|
97
102
|
|
|
98
103
|
static groupByCol = new Urlbuilder(PATH_E2E_DATATABLE_ADVANCED, 'group-by-column');
|
|
@@ -148,6 +153,11 @@ export default class DataTableCO extends PageObject {
|
|
|
148
153
|
'column-grouping-with-hidden-columns-test',
|
|
149
154
|
);
|
|
150
155
|
|
|
156
|
+
static groupedResizebleAndHidden = new Urlbuilder(
|
|
157
|
+
PATH_E2E_DATATABLE_COLUMN,
|
|
158
|
+
'grouping-with-hidden-and-resizable-columns',
|
|
159
|
+
);
|
|
160
|
+
|
|
151
161
|
// Text Wrapping
|
|
152
162
|
|
|
153
163
|
static textWrapTruncColumn = new Urlbuilder(PATH_E2E_DATATABLE_TEXT_WRAPPING, 'text-wrap-truncate-column');
|
|
@@ -233,8 +243,6 @@ export default class DataTableCO extends PageObject {
|
|
|
233
243
|
|
|
234
244
|
static expandableWithModalSlide = new Urlbuilder(PATH_E2E_DATATABLE, 'expandable-with-modal-slide');
|
|
235
245
|
|
|
236
|
-
static groupedResizebleAndHidden = new Urlbuilder(PATH_E2E_DATATABLE, 'grouping-with-hidden-and-resizable-columns');
|
|
237
|
-
|
|
238
246
|
static datatableInsideTabs = new Urlbuilder(PATH_E2E_DATATABLE, 'pui-8529-datatable-inside-tabs');
|
|
239
247
|
|
|
240
248
|
static selectMultipleNoGlobalDisabled = new Urlbuilder(PATH_E2E_DATATABLE, 'select-multiple-no-global-disabled');
|
|
@@ -150,4 +150,6 @@ export default class FiltersCO extends PageObject {
|
|
|
150
150
|
static getFreeTextSearchWrapperSlot = async () => $('[data-dimsum-slot="dsDatatableFreeTextSearchWrapper"]');
|
|
151
151
|
|
|
152
152
|
static getFreeTextSearchFilterSlot = async () => $('[data-dimsum-parent-slot="dsDatatableFreeTextSearchFilter"]');
|
|
153
|
+
|
|
154
|
+
static getFilterMenuContent = async () => $('[data-testid="data-table-filter-menu-content"]');
|
|
153
155
|
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import DSDataTableCO from '../DSDataTableCO';
|
|
2
|
+
import { FiltersCO } from '../components';
|
|
3
|
+
|
|
4
|
+
if (
|
|
5
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
6
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
7
|
+
browser.capabilities.browserName === 'Chrome') ||
|
|
8
|
+
browser.capabilities.browserName === 'chrome'
|
|
9
|
+
) {
|
|
10
|
+
describe('PUI-17923 - DataTable:: Filter Menu Content Role Dialog Test', () => {
|
|
11
|
+
before('loading page', async () => {
|
|
12
|
+
const errorOnGo = await DSDataTableCO.filteredColumnWithAllFilterTypes.go();
|
|
13
|
+
if (errorOnGo) throw errorOnGo;
|
|
14
|
+
await DSDataTableCO.waitForDataTable();
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
afterEach('close filter', async () => {
|
|
18
|
+
await $('body').click();
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
it('01: Single Select filter (id) should have role=dialog on filter menu content', async () => {
|
|
22
|
+
await FiltersCO.openFilterPopperByColumnName('id');
|
|
23
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
24
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it('02: Multi Select filter (Position) should have role=dialog on filter menu content', async () => {
|
|
28
|
+
await FiltersCO.openFilterPopperByColumnName('Position');
|
|
29
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
30
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
it('03: Currency Range filter (Salary) should have role=dialog on filter menu content', async () => {
|
|
34
|
+
await FiltersCO.openFilterPopperByColumnName('Salary');
|
|
35
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
36
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
it('04: Single Date filter should have role=dialog on filter menu content', async () => {
|
|
40
|
+
await FiltersCO.openFilterPopperByColumnName('Single date');
|
|
41
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
42
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
it('05: Date Range filter should have role=dialog on filter menu content', async () => {
|
|
46
|
+
await FiltersCO.openFilterPopperByColumnName('Date range');
|
|
47
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
48
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
it('06: Number Range filter should have role=dialog on filter menu content', async () => {
|
|
52
|
+
await FiltersCO.openFilterPopperByColumnName('Number range');
|
|
53
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
54
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
it('07: Date Switcher filter should have role=dialog on filter menu content', async () => {
|
|
58
|
+
await FiltersCO.openFilterPopperByColumnName('Date Switcher');
|
|
59
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
60
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
it('08: Free Text Search filter (First Name) should have role=dialog on filter menu content', async () => {
|
|
64
|
+
await FiltersCO.openFilterPopperByColumnName('First Name');
|
|
65
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
66
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
it('09: Free Text Search filter (Last Name) should have role=dialog on filter menu content', async () => {
|
|
70
|
+
await FiltersCO.openFilterPopperByColumnName('Last Name');
|
|
71
|
+
const filterMenuContent = await FiltersCO.getFilterMenuContent();
|
|
72
|
+
await expect(filterMenuContent).toHaveAttribute('role', 'dialog');
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
}
|
|
@@ -36,12 +36,17 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
36
36
|
const filterMenuTrigger = await FiltersCO.getHeaderCellFilterButtonByHeaderCell(headerCell, 0);
|
|
37
37
|
await expect(filterMenuTrigger).toBeFocused();
|
|
38
38
|
});
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
39
|
+
//
|
|
40
|
+
// This test is not longer needed because the role of the filter is
|
|
41
|
+
// dialog and only can be closed by clicking outside or pressing escape,
|
|
42
|
+
// so the focus will always return to the filter button
|
|
43
|
+
//
|
|
44
|
+
// it('04: focus should still con filter btn after close dropdown menu - Tab', async () => {
|
|
45
|
+
// await browser.keys(Key.Return);
|
|
46
|
+
// await browser.keys(Key.Tab);
|
|
47
|
+
// const headerCell = await HeaderCO.getHeaderCellByIndex(2);
|
|
48
|
+
// const filterMenuTrigger = await FiltersCO.getHeaderCellFilterButtonByHeaderCell(headerCell, 0);
|
|
49
|
+
// await expect(filterMenuTrigger).toBeFocused();
|
|
50
|
+
// });
|
|
46
51
|
});
|
|
47
52
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Key } from 'webdriverio';
|
|
1
2
|
import DSDataTableCO from '../DSDataTableCO';
|
|
2
3
|
import { FiltersCO, FilterBarCO } from '../components';
|
|
3
4
|
import { type } from '../../helpers';
|
|
@@ -22,40 +23,34 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
22
23
|
await expect(snapshot).toEqual(0);
|
|
23
24
|
});
|
|
24
25
|
it('03: should display the search results', async () => {
|
|
25
|
-
await browser.
|
|
26
|
-
await browser.keys('Return');
|
|
26
|
+
await browser.keys(Key.Return);
|
|
27
27
|
const pill1 = await FilterBarCO.getPillByText('Messages');
|
|
28
28
|
await expect(pill1).toBeDisplayed();
|
|
29
|
-
const snapshot = await browser.
|
|
29
|
+
const snapshot = await browser.checkSnapshot(DSDataTableCO.snapshotPath('free-text-search-results'));
|
|
30
30
|
await expect(snapshot).toEqual(0);
|
|
31
31
|
});
|
|
32
32
|
it('04: should display the search results for second free text search', async () => {
|
|
33
|
-
await browser.eyesOpen();
|
|
34
33
|
await FiltersCO.openFilterPopperByColumnName('borrower name');
|
|
35
34
|
await type('Ron');
|
|
36
|
-
await browser.keys(
|
|
35
|
+
await browser.keys(Key.Return);
|
|
37
36
|
const pill2 = await FilterBarCO.getPillByText('Borrower Name');
|
|
38
37
|
await expect(pill2).toBeDisplayed();
|
|
39
|
-
const snapshot = await browser.
|
|
40
|
-
DSDataTableCO.snapshotPath('free-text-search-results-two-filters'),
|
|
41
|
-
);
|
|
38
|
+
const snapshot = await browser.checkSnapshot(DSDataTableCO.snapshotPath('free-text-search-results-two-filters'));
|
|
42
39
|
await expect(snapshot).toEqual(0);
|
|
43
40
|
});
|
|
44
41
|
it('05: should display the last typed value in the filter', async () => {
|
|
45
|
-
await browser.eyesOpen();
|
|
46
42
|
await FiltersCO.openFilterPopperByColumnName('borrower name');
|
|
47
|
-
const snapshot = await browser.
|
|
43
|
+
const snapshot = await browser.checkSnapshot(DSDataTableCO.snapshotPath('free-text-search-retain-value'));
|
|
48
44
|
await expect(snapshot).toEqual(0);
|
|
49
45
|
});
|
|
50
46
|
it('06: should search a new value', async () => {
|
|
51
|
-
await
|
|
52
|
-
await
|
|
53
|
-
await browser.keys(
|
|
54
|
-
await browser.keys(
|
|
55
|
-
await browser.keys('Backspace');
|
|
47
|
+
// await FiltersCO.openFilterPopperByColumnName('borrower name');
|
|
48
|
+
await browser.keys(Key.Backspace);
|
|
49
|
+
await browser.keys(Key.Backspace);
|
|
50
|
+
await browser.keys(Key.Backspace);
|
|
56
51
|
await type('Harry');
|
|
57
|
-
await browser.keys(
|
|
58
|
-
const snapshot = await browser.
|
|
52
|
+
await browser.keys(Key.Return);
|
|
53
|
+
const snapshot = await browser.checkSnapshot(DSDataTableCO.snapshotPath('free-text-search-new-value'));
|
|
59
54
|
await expect(snapshot).toEqual(0);
|
|
60
55
|
});
|
|
61
56
|
});
|
|
@@ -266,7 +266,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
266
266
|
const pill2 = await FilterBarCO.getPillByText('Full');
|
|
267
267
|
await pill1.waitForDisplayed();
|
|
268
268
|
await pill2.waitForDisplayed();
|
|
269
|
-
await browser.keys(
|
|
269
|
+
await browser.keys(Key.Escape);
|
|
270
270
|
await browser.keys([Key.Shift, Key.Tab]);
|
|
271
271
|
await browser.keys([Key.Shift, Key.Tab]);
|
|
272
272
|
await browser.keys([Key.Shift, Key.Tab]);
|
|
@@ -5,7 +5,7 @@ import LeftNavCO from './LeftNavigationCO';
|
|
|
5
5
|
import { mouseOver } from '../helpers';
|
|
6
6
|
|
|
7
7
|
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
8
|
-
describe
|
|
8
|
+
describe('PUI-6120 - LeftNavigation: expand and collapse behaviour', () => {
|
|
9
9
|
before('loading page', async () => {
|
|
10
10
|
const errorOnGo = await LeftNavCO.fullFeatures.go();
|
|
11
11
|
if (errorOnGo) throw errorOnGo;
|
|
@@ -45,7 +45,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
45
45
|
});
|
|
46
46
|
});
|
|
47
47
|
|
|
48
|
-
describe
|
|
48
|
+
describe('PUI-17829 - Tabs:: carousel with horizontal scrollbar - Integrated - Visual', () => {
|
|
49
49
|
before('loading page', async () => {
|
|
50
50
|
const errorOnGo = await DSTabsCO.integratedCarousel.go();
|
|
51
51
|
if (errorOnGo) throw errorOnGo;
|
|
@@ -53,17 +53,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
53
53
|
|
|
54
54
|
it('01: should display tabs carousel in default state (first tab selected)', async () => {
|
|
55
55
|
await (await DSTabsCO.getTabsList()).waitForDisplayed();
|
|
56
|
-
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-integrated-default')
|
|
57
|
-
percyCSS: `
|
|
58
|
-
body {
|
|
59
|
-
background-color: red !important;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
* {
|
|
63
|
-
border: 2px solid lime !important;
|
|
64
|
-
}
|
|
65
|
-
`,
|
|
66
|
-
});
|
|
56
|
+
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-integrated-default'));
|
|
67
57
|
await expect(snapshot).toEqual(0);
|
|
68
58
|
});
|
|
69
59
|
|
|
@@ -75,17 +65,6 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
75
65
|
await (await DSTabsCO.getTabPanel(10)).waitForDisplayed();
|
|
76
66
|
const snapshot = await browser.percyCheckScreenshot(
|
|
77
67
|
DSTabsCO.snapshotPath('tab-carousel-integrated-scrolled-right'),
|
|
78
|
-
{
|
|
79
|
-
percyCSS: `
|
|
80
|
-
body {
|
|
81
|
-
background-color: red !important;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
* {
|
|
85
|
-
border: 2px solid lime !important;
|
|
86
|
-
}
|
|
87
|
-
`,
|
|
88
|
-
},
|
|
89
68
|
);
|
|
90
69
|
await expect(snapshot).toEqual(0);
|
|
91
70
|
});
|
|
@@ -98,38 +77,16 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
98
77
|
await (await DSTabsCO.getTabPanel(1)).waitForDisplayed();
|
|
99
78
|
const snapshot = await browser.percyCheckScreenshot(
|
|
100
79
|
DSTabsCO.snapshotPath('tab-carousel-integrated-scrolled-back'),
|
|
101
|
-
{
|
|
102
|
-
percyCSS: `
|
|
103
|
-
body {
|
|
104
|
-
background-color: red !important;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
* {
|
|
108
|
-
border: 2px solid lime !important;
|
|
109
|
-
}
|
|
110
|
-
`,
|
|
111
|
-
},
|
|
112
80
|
);
|
|
113
81
|
await expect(snapshot).toEqual(0);
|
|
114
82
|
});
|
|
115
|
-
|
|
116
83
|
it('04: should display last tab selected after scrolling to end', async () => {
|
|
117
84
|
// Scroll to last tab and select it
|
|
118
85
|
const lastTab = await DSTabsCO.getTabsByIndex(13);
|
|
119
86
|
await lastTab.scrollIntoView();
|
|
120
87
|
await lastTab.click();
|
|
121
88
|
await (await DSTabsCO.getTabPanel(14)).waitForDisplayed();
|
|
122
|
-
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-integrated-last-tab')
|
|
123
|
-
percyCSS: `
|
|
124
|
-
body {
|
|
125
|
-
background-color: red !important;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
* {
|
|
129
|
-
border: 2px solid lime !important;
|
|
130
|
-
}
|
|
131
|
-
`,
|
|
132
|
-
});
|
|
89
|
+
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-integrated-last-tab'));
|
|
133
90
|
await expect(snapshot).toEqual(0);
|
|
134
91
|
});
|
|
135
92
|
});
|
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.35",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elliemae/ds-legacy-button": "1.0.16",
|
|
@@ -41,155 +41,155 @@
|
|
|
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-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-breadcrumb": "3.60.0-next.
|
|
51
|
-
"@elliemae/ds-button-v2": "3.60.0-next.
|
|
52
|
-
"@elliemae/ds-card
|
|
53
|
-
"@elliemae/ds-card": "3.60.0-next.
|
|
54
|
-
"@elliemae/ds-card-v1-detail": "3.60.0-next.
|
|
55
|
-
"@elliemae/ds-card-v1": "3.60.0-next.
|
|
56
|
-
"@elliemae/ds-card-v2": "3.60.0-next.
|
|
57
|
-
"@elliemae/ds-card-v2-
|
|
58
|
-
"@elliemae/ds-card-v3": "3.60.0-next.
|
|
59
|
-
"@elliemae/ds-card-v2-
|
|
60
|
-
"@elliemae/ds-card-v3-poc": "3.60.0-next.
|
|
61
|
-
"@elliemae/ds-chat-bubble": "3.60.0-next.
|
|
62
|
-
"@elliemae/ds-chat
|
|
63
|
-
"@elliemae/ds-chat": "3.60.0-next.
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-
|
|
66
|
-
"@elliemae/ds-chat-
|
|
67
|
-
"@elliemae/ds-chat-
|
|
68
|
-
"@elliemae/ds-chat-
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-chat-
|
|
71
|
-
"@elliemae/ds-chat-tile": "3.60.0-next.
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-circular-progress-indicator": "3.60.0-next.
|
|
74
|
-
"@elliemae/ds-classnames": "3.60.0-next.
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-controlled-form": "3.60.0-next.
|
|
78
|
-
"@elliemae/ds-csv-converter": "3.60.0-next.
|
|
79
|
-
"@elliemae/ds-data-table
|
|
80
|
-
"@elliemae/ds-data-table-cell
|
|
81
|
-
"@elliemae/ds-data-table": "3.60.0-next.
|
|
82
|
-
"@elliemae/ds-data-table-cell": "3.60.0-next.
|
|
83
|
-
"@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.
|
|
84
|
-
"@elliemae/ds-data-table-expand-cell": "3.60.0-next.
|
|
85
|
-
"@elliemae/ds-data-table-
|
|
86
|
-
"@elliemae/ds-data-table-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-dataviz": "3.60.0-next.
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-dropzone": "3.60.0-next.
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-form-date-range-picker": "3.60.0-next.
|
|
99
|
-
"@elliemae/ds-form-
|
|
100
|
-
"@elliemae/ds-
|
|
101
|
-
"@elliemae/ds-form-
|
|
102
|
-
"@elliemae/ds-form-
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-
|
|
105
|
-
"@elliemae/ds-form-
|
|
106
|
-
"@elliemae/ds-form-
|
|
107
|
-
"@elliemae/ds-form-layout-label": "3.60.0-next.
|
|
108
|
-
"@elliemae/ds-form-
|
|
109
|
-
"@elliemae/ds-form-layout-
|
|
110
|
-
"@elliemae/ds-form-native-select": "3.60.0-next.
|
|
111
|
-
"@elliemae/ds-form-
|
|
112
|
-
"@elliemae/ds-form-select": "3.60.0-next.
|
|
113
|
-
"@elliemae/ds-form-
|
|
114
|
-
"@elliemae/ds-form-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-hooks-
|
|
119
|
-
"@elliemae/ds-hooks-fontsize-media": "3.60.0-next.
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-
|
|
122
|
-
"@elliemae/ds-hooks-is-
|
|
123
|
-
"@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.
|
|
124
|
-
"@elliemae/ds-hooks-
|
|
125
|
-
"@elliemae/ds-hooks-on-blur-out": "3.60.0-next.
|
|
126
|
-
"@elliemae/ds-
|
|
127
|
-
"@elliemae/ds-
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-layout-provider": "3.60.0-next.
|
|
133
|
-
"@elliemae/ds-left-navigation": "3.60.0-next.
|
|
134
|
-
"@elliemae/ds-
|
|
135
|
-
"@elliemae/ds-
|
|
136
|
-
"@elliemae/ds-menu-
|
|
137
|
-
"@elliemae/ds-menu-items": "3.60.0-next.
|
|
138
|
-
"@elliemae/ds-menu-items-
|
|
139
|
-
"@elliemae/ds-menu-items-
|
|
140
|
-
"@elliemae/ds-menu-items-
|
|
141
|
-
"@elliemae/ds-menu-items-
|
|
142
|
-
"@elliemae/ds-menu-items-
|
|
143
|
-
"@elliemae/ds-menu-items-
|
|
144
|
-
"@elliemae/ds-menu-items-
|
|
145
|
-
"@elliemae/ds-menu-items-submenu": "3.60.0-next.
|
|
146
|
-
"@elliemae/ds-menu-tree-item": "3.60.0-next.
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-notification-badge": "3.60.0-next.
|
|
150
|
-
"@elliemae/ds-overlay": "3.60.0-next.
|
|
151
|
-
"@elliemae/ds-page-header": "3.60.0-next.
|
|
152
|
-
"@elliemae/ds-page-header-v1": "3.60.0-next.
|
|
153
|
-
"@elliemae/ds-page-
|
|
154
|
-
"@elliemae/ds-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-props-helpers": "3.60.0-next.
|
|
161
|
-
"@elliemae/ds-
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-
|
|
165
|
-
"@elliemae/ds-scrollable-container": "3.60.0-next.
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-shared": "3.60.0-next.
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-side-panel-header": "3.60.0-next.
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-
|
|
177
|
-
"@elliemae/ds-
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-toolbar-
|
|
181
|
-
"@elliemae/ds-
|
|
182
|
-
"@elliemae/ds-
|
|
183
|
-
"@elliemae/ds-transition": "3.60.0-next.
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-truncated-expandable-text": "3.60.0-next.
|
|
187
|
-
"@elliemae/ds-truncated-tooltip-text": "3.60.0-next.
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-
|
|
191
|
-
"@elliemae/ds-
|
|
192
|
-
"@elliemae/ds-
|
|
44
|
+
"@elliemae/ds-accessibility": "3.60.0-next.35",
|
|
45
|
+
"@elliemae/ds-app-picker": "3.60.0-next.35",
|
|
46
|
+
"@elliemae/ds-accordion": "3.60.0-next.35",
|
|
47
|
+
"@elliemae/ds-backdrop": "3.60.0-next.35",
|
|
48
|
+
"@elliemae/ds-banner": "3.60.0-next.35",
|
|
49
|
+
"@elliemae/ds-basic": "3.60.0-next.35",
|
|
50
|
+
"@elliemae/ds-breadcrumb": "3.60.0-next.35",
|
|
51
|
+
"@elliemae/ds-button-v2": "3.60.0-next.35",
|
|
52
|
+
"@elliemae/ds-card": "3.60.0-next.35",
|
|
53
|
+
"@elliemae/ds-card-navigation": "3.60.0-next.35",
|
|
54
|
+
"@elliemae/ds-card-v1-detail": "3.60.0-next.35",
|
|
55
|
+
"@elliemae/ds-card-v1": "3.60.0-next.35",
|
|
56
|
+
"@elliemae/ds-card-v2": "3.60.0-next.35",
|
|
57
|
+
"@elliemae/ds-card-v2-group": "3.60.0-next.35",
|
|
58
|
+
"@elliemae/ds-card-v3": "3.60.0-next.35",
|
|
59
|
+
"@elliemae/ds-card-v2-action-addon": "3.60.0-next.35",
|
|
60
|
+
"@elliemae/ds-card-v3-poc": "3.60.0-next.35",
|
|
61
|
+
"@elliemae/ds-chat-bubble": "3.60.0-next.35",
|
|
62
|
+
"@elliemae/ds-chat": "3.60.0-next.35",
|
|
63
|
+
"@elliemae/ds-chat-card": "3.60.0-next.35",
|
|
64
|
+
"@elliemae/ds-chat-container": "3.60.0-next.35",
|
|
65
|
+
"@elliemae/ds-chat-container-header": "3.60.0-next.35",
|
|
66
|
+
"@elliemae/ds-chat-empty-state": "3.60.0-next.35",
|
|
67
|
+
"@elliemae/ds-chat-floating-button": "3.60.0-next.35",
|
|
68
|
+
"@elliemae/ds-chat-message-delimeter": "3.60.0-next.35",
|
|
69
|
+
"@elliemae/ds-chat-sidebar": "3.60.0-next.35",
|
|
70
|
+
"@elliemae/ds-chat-system-message": "3.60.0-next.35",
|
|
71
|
+
"@elliemae/ds-chat-tile": "3.60.0-next.35",
|
|
72
|
+
"@elliemae/ds-chip": "3.60.0-next.35",
|
|
73
|
+
"@elliemae/ds-circular-progress-indicator": "3.60.0-next.35",
|
|
74
|
+
"@elliemae/ds-classnames": "3.60.0-next.35",
|
|
75
|
+
"@elliemae/ds-codeeditor": "3.60.0-next.35",
|
|
76
|
+
"@elliemae/ds-comments": "3.60.0-next.35",
|
|
77
|
+
"@elliemae/ds-controlled-form": "3.60.0-next.35",
|
|
78
|
+
"@elliemae/ds-csv-converter": "3.60.0-next.35",
|
|
79
|
+
"@elliemae/ds-data-table": "3.60.0-next.35",
|
|
80
|
+
"@elliemae/ds-data-table-action-cell": "3.60.0-next.35",
|
|
81
|
+
"@elliemae/ds-data-table-cell-header": "3.60.0-next.35",
|
|
82
|
+
"@elliemae/ds-data-table-cell": "3.60.0-next.35",
|
|
83
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.35",
|
|
84
|
+
"@elliemae/ds-data-table-expand-cell": "3.60.0-next.35",
|
|
85
|
+
"@elliemae/ds-data-table-filters": "3.60.0-next.35",
|
|
86
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.35",
|
|
87
|
+
"@elliemae/ds-data-table-single-select-cell": "3.60.0-next.35",
|
|
88
|
+
"@elliemae/ds-dataviz": "3.60.0-next.35",
|
|
89
|
+
"@elliemae/ds-dataviz-pie": "3.60.0-next.35",
|
|
90
|
+
"@elliemae/ds-date-time-picker": "3.60.0-next.35",
|
|
91
|
+
"@elliemae/ds-dialog": "3.60.0-next.35",
|
|
92
|
+
"@elliemae/ds-decision-graph": "3.60.0-next.35",
|
|
93
|
+
"@elliemae/ds-drag-and-drop": "3.60.0-next.35",
|
|
94
|
+
"@elliemae/ds-dropzone": "3.60.0-next.35",
|
|
95
|
+
"@elliemae/ds-fast-list": "3.60.0-next.35",
|
|
96
|
+
"@elliemae/ds-dropdownmenu-v2": "3.60.0-next.35",
|
|
97
|
+
"@elliemae/ds-floating-context": "3.60.0-next.35",
|
|
98
|
+
"@elliemae/ds-form-date-range-picker": "3.60.0-next.35",
|
|
99
|
+
"@elliemae/ds-form-checkbox": "3.60.0-next.35",
|
|
100
|
+
"@elliemae/ds-form-combobox": "3.60.0-next.35",
|
|
101
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.35",
|
|
102
|
+
"@elliemae/ds-form-date-time-picker": "3.60.0-next.35",
|
|
103
|
+
"@elliemae/ds-form-input-text": "3.60.0-next.35",
|
|
104
|
+
"@elliemae/ds-form-layout-autocomplete": "3.60.0-next.35",
|
|
105
|
+
"@elliemae/ds-form-input-textarea": "3.60.0-next.35",
|
|
106
|
+
"@elliemae/ds-form-layout-blocks": "3.60.0-next.35",
|
|
107
|
+
"@elliemae/ds-form-layout-label": "3.60.0-next.35",
|
|
108
|
+
"@elliemae/ds-form-radio": "3.60.0-next.35",
|
|
109
|
+
"@elliemae/ds-form-layout-input-group": "3.60.0-next.35",
|
|
110
|
+
"@elliemae/ds-form-native-select": "3.60.0-next.35",
|
|
111
|
+
"@elliemae/ds-form-multi-combobox": "3.60.0-next.35",
|
|
112
|
+
"@elliemae/ds-form-select": "3.60.0-next.35",
|
|
113
|
+
"@elliemae/ds-form-single-combobox": "3.60.0-next.35",
|
|
114
|
+
"@elliemae/ds-form-toggle": "3.60.0-next.35",
|
|
115
|
+
"@elliemae/ds-global-header": "3.60.0-next.35",
|
|
116
|
+
"@elliemae/ds-hooks-focus-stack": "3.60.0-next.35",
|
|
117
|
+
"@elliemae/ds-grid": "3.60.0-next.35",
|
|
118
|
+
"@elliemae/ds-hooks-focus-trap": "3.60.0-next.35",
|
|
119
|
+
"@elliemae/ds-hooks-fontsize-media": "3.60.0-next.35",
|
|
120
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.35",
|
|
121
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.35",
|
|
122
|
+
"@elliemae/ds-hooks-is-mobile": "3.60.0-next.35",
|
|
123
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.35",
|
|
124
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.35",
|
|
125
|
+
"@elliemae/ds-hooks-on-blur-out": "3.60.0-next.35",
|
|
126
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.35",
|
|
127
|
+
"@elliemae/ds-icon": "3.60.0-next.35",
|
|
128
|
+
"@elliemae/ds-image": "3.60.0-next.35",
|
|
129
|
+
"@elliemae/ds-icons": "3.60.0-next.35",
|
|
130
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.60.0-next.35",
|
|
131
|
+
"@elliemae/ds-imagelibrarymodal": "3.60.0-next.35",
|
|
132
|
+
"@elliemae/ds-layout-provider": "3.60.0-next.35",
|
|
133
|
+
"@elliemae/ds-left-navigation": "3.60.0-next.35",
|
|
134
|
+
"@elliemae/ds-loading-indicator": "3.60.0-next.35",
|
|
135
|
+
"@elliemae/ds-menu-items": "3.60.0-next.35",
|
|
136
|
+
"@elliemae/ds-menu-button": "3.60.0-next.35",
|
|
137
|
+
"@elliemae/ds-menu-items-commons": "3.60.0-next.35",
|
|
138
|
+
"@elliemae/ds-menu-items-action": "3.60.0-next.35",
|
|
139
|
+
"@elliemae/ds-menu-items-multi": "3.60.0-next.35",
|
|
140
|
+
"@elliemae/ds-menu-items-section": "3.60.0-next.35",
|
|
141
|
+
"@elliemae/ds-menu-items-single": "3.60.0-next.35",
|
|
142
|
+
"@elliemae/ds-menu-items-separator": "3.60.0-next.35",
|
|
143
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.35",
|
|
144
|
+
"@elliemae/ds-menu-items-skeleton": "3.60.0-next.35",
|
|
145
|
+
"@elliemae/ds-menu-items-submenu": "3.60.0-next.35",
|
|
146
|
+
"@elliemae/ds-menu-tree-item": "3.60.0-next.35",
|
|
147
|
+
"@elliemae/ds-mobile": "3.60.0-next.35",
|
|
148
|
+
"@elliemae/ds-modal-slide": "3.60.0-next.35",
|
|
149
|
+
"@elliemae/ds-notification-badge": "3.60.0-next.35",
|
|
150
|
+
"@elliemae/ds-overlay": "3.60.0-next.35",
|
|
151
|
+
"@elliemae/ds-page-header-v2": "3.60.0-next.35",
|
|
152
|
+
"@elliemae/ds-page-header-v1": "3.60.0-next.35",
|
|
153
|
+
"@elliemae/ds-page-header": "3.60.0-next.35",
|
|
154
|
+
"@elliemae/ds-page-layout": "3.60.0-next.35",
|
|
155
|
+
"@elliemae/ds-pagination": "3.60.0-next.35",
|
|
156
|
+
"@elliemae/ds-pills-v2": "3.60.0-next.35",
|
|
157
|
+
"@elliemae/ds-popperjs": "3.60.0-next.35",
|
|
158
|
+
"@elliemae/ds-portal": "3.60.0-next.35",
|
|
159
|
+
"@elliemae/ds-progress-indicator": "3.60.0-next.35",
|
|
160
|
+
"@elliemae/ds-props-helpers": "3.60.0-next.35",
|
|
161
|
+
"@elliemae/ds-read-more": "3.60.0-next.35",
|
|
162
|
+
"@elliemae/ds-resizeable-container": "3.60.0-next.35",
|
|
163
|
+
"@elliemae/ds-query-builder": "3.60.0-next.35",
|
|
164
|
+
"@elliemae/ds-ribbon": "3.60.0-next.35",
|
|
165
|
+
"@elliemae/ds-scrollable-container": "3.60.0-next.35",
|
|
166
|
+
"@elliemae/ds-separator": "3.60.0-next.35",
|
|
167
|
+
"@elliemae/ds-shared": "3.60.0-next.35",
|
|
168
|
+
"@elliemae/ds-shuttle-v2": "3.60.0-next.35",
|
|
169
|
+
"@elliemae/ds-side-panel": "3.60.0-next.35",
|
|
170
|
+
"@elliemae/ds-side-panel-header": "3.60.0-next.35",
|
|
171
|
+
"@elliemae/ds-skeleton": "3.60.0-next.35",
|
|
172
|
+
"@elliemae/ds-slider-v2": "3.60.0-next.35",
|
|
173
|
+
"@elliemae/ds-square-indicator": "3.60.0-next.35",
|
|
174
|
+
"@elliemae/ds-stepper": "3.60.0-next.35",
|
|
175
|
+
"@elliemae/ds-svg": "3.60.0-next.35",
|
|
176
|
+
"@elliemae/ds-tabs": "3.60.0-next.35",
|
|
177
|
+
"@elliemae/ds-test-utils": "3.60.0-next.35",
|
|
178
|
+
"@elliemae/ds-system": "3.60.0-next.35",
|
|
179
|
+
"@elliemae/ds-toast": "3.60.0-next.35",
|
|
180
|
+
"@elliemae/ds-toolbar-v2": "3.60.0-next.35",
|
|
181
|
+
"@elliemae/ds-tooltip-v3": "3.60.0-next.35",
|
|
182
|
+
"@elliemae/ds-toolbar-v1": "3.60.0-next.35",
|
|
183
|
+
"@elliemae/ds-transition": "3.60.0-next.35",
|
|
184
|
+
"@elliemae/ds-tree-model": "3.60.0-next.35",
|
|
185
|
+
"@elliemae/ds-treeview": "3.60.0-next.35",
|
|
186
|
+
"@elliemae/ds-truncated-expandable-text": "3.60.0-next.35",
|
|
187
|
+
"@elliemae/ds-truncated-tooltip-text": "3.60.0-next.35",
|
|
188
|
+
"@elliemae/ds-typescript-helpers": "3.60.0-next.35",
|
|
189
|
+
"@elliemae/ds-typography": "3.60.0-next.35",
|
|
190
|
+
"@elliemae/ds-virtual-list": "3.60.0-next.35",
|
|
191
|
+
"@elliemae/ds-wizard": "3.60.0-next.35",
|
|
192
|
+
"@elliemae/ds-zustand-helpers": "3.60.0-next.35"
|
|
193
193
|
},
|
|
194
194
|
"publishConfig": {
|
|
195
195
|
"access": "public"
|