dimsum-e2e-tests 3.60.0-next.36 → 3.60.0-next.38
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 +12 -0
- package/ds-form-combobox-multi/DSComboboxMultiCO.js +4 -0
- package/ds-form-combobox-multi/menu-width/DSComboboxMulti.menu-width.visual.spec.js +35 -0
- package/ds-form-combobox-single/DSComboboxSingleCO.js +4 -0
- package/ds-form-combobox-single/menu-width/DSComboboxSingle.menu-width.visual.spec.js +37 -0
- package/ds-ribbon/DSRibbon.global-attr.axe-core.spec.js +22 -3
- package/ds-ribbon/DSRibbon.role-status.axe-core.spec.js +32 -0
- package/ds-ribbon/DSRibbon.theming.visual.spec.js +17 -0
- package/ds-ribbon/DSRibbonCO.js +65 -0
- package/ds-ribbon/slots/DSRibbon.slots.func.spec.js +63 -0
- package/package.json +150 -150
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.38 (2026-03-05)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- ds-card-v2:: added slot support [PUI-15890] (https://jira.elliemae.io/browse/PUI-15890) ([#7920](https://git.elliemae.io/platform-ui/dimsum/issues/7920)) ([c14f1e1](https://git.elliemae.io/platform-ui/dimsum/commit/c14f1e1345ead19e226bb34b360353221e5aa96f))
|
|
11
|
+
|
|
12
|
+
## 3.60.0-next.37 (2026-03-05)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- ds-data-table:: improve folder organization for filtersV2 and v1 vs v2 showcase ([#7919](https://git.elliemae.io/platform-ui/dimsum/issues/7919)) ([85e4fcb](https://git.elliemae.io/platform-ui/dimsum/commit/85e4fcbe61c1cea68baaf8205326d991f5b39476))
|
|
17
|
+
|
|
6
18
|
## 3.60.0-next.36 (2026-03-03)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
|
@@ -23,6 +23,10 @@ export default class DSComboboxMultiCO extends PageObject {
|
|
|
23
23
|
|
|
24
24
|
static floatingAfterFiltering = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'floating-after-filtering');
|
|
25
25
|
|
|
26
|
+
static menuPlacementTest = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'menu-placement-test');
|
|
27
|
+
|
|
28
|
+
static menuBiggerThanComboboxTest = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'menu-bigger-than-combobox-test');
|
|
29
|
+
|
|
26
30
|
static disabled = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'disabled-test');
|
|
27
31
|
|
|
28
32
|
static controlledMenuStateWithSectionsSlotsTest = new Urlbuilder(
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import DSComboboxMultiCO from '../DSComboboxMultiCO';
|
|
4
|
+
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-17939 - ComboboxMulti:: Menu bigger than combobox - visual', () => {
|
|
7
|
+
before('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSComboboxMultiCO.menuBiggerThanComboboxTest.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
await browser.maximizeWindow();
|
|
11
|
+
});
|
|
12
|
+
it('01: should display menu wider than combobox correctly', async () => {
|
|
13
|
+
await browser.eyesOpen();
|
|
14
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
15
|
+
DSComboboxMultiCO.snapshotPath('combobox-multi-menu-bigger-than-combobox'),
|
|
16
|
+
);
|
|
17
|
+
await expect(snapshot).toEqual(0);
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
describe('PUI-17940 - ComboboxMulti:: Menu placement - visual', () => {
|
|
22
|
+
before('loading page', async () => {
|
|
23
|
+
const errorOnGo = await DSComboboxMultiCO.menuPlacementTest.go();
|
|
24
|
+
if (errorOnGo) throw errorOnGo;
|
|
25
|
+
await browser.maximizeWindow();
|
|
26
|
+
});
|
|
27
|
+
it('01: should display menu with correct placement', async () => {
|
|
28
|
+
await browser.eyesOpen();
|
|
29
|
+
await browser.keys(Key.Tab);
|
|
30
|
+
await browser.keys(Key.Return);
|
|
31
|
+
const snapshot = await browser.eyesCheckSnapshot(DSComboboxMultiCO.snapshotPath('combobox-multi-menu-placement'));
|
|
32
|
+
await expect(snapshot).toEqual(0);
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
}
|
|
@@ -27,6 +27,10 @@ export default class DSComboboxSingleCO extends PageObject {
|
|
|
27
27
|
|
|
28
28
|
static floatingAfterFiltering = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'floating-after-filtering');
|
|
29
29
|
|
|
30
|
+
static menuPlacementTest = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'menu-placement-test');
|
|
31
|
+
|
|
32
|
+
static menuBiggerThanComboboxTest = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'menu-bigger-than-combobox-test');
|
|
33
|
+
|
|
30
34
|
static disabled = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'disabled-test');
|
|
31
35
|
|
|
32
36
|
// COMBOBOX - INPUT
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import DSComboboxSingleCO from '../DSComboboxSingleCO';
|
|
4
|
+
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-17941 - ComboboxSingle:: Menu bigger than combobox - visual', () => {
|
|
7
|
+
before('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSComboboxSingleCO.menuBiggerThanComboboxTest.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
await browser.maximizeWindow();
|
|
11
|
+
});
|
|
12
|
+
it('01: should display menu wider than combobox correctly', async () => {
|
|
13
|
+
await browser.eyesOpen();
|
|
14
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
15
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-menu-bigger-than-combobox'),
|
|
16
|
+
);
|
|
17
|
+
await expect(snapshot).toEqual(0);
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
describe('PUI-17942 - ComboboxSingle:: Menu placement - visual', () => {
|
|
22
|
+
before('loading page', async () => {
|
|
23
|
+
const errorOnGo = await DSComboboxSingleCO.menuPlacementTest.go();
|
|
24
|
+
if (errorOnGo) throw errorOnGo;
|
|
25
|
+
await browser.maximizeWindow();
|
|
26
|
+
});
|
|
27
|
+
it('01: should display menu with correct placement', async () => {
|
|
28
|
+
await browser.eyesOpen();
|
|
29
|
+
await browser.keys(Key.Tab);
|
|
30
|
+
await browser.keys(Key.Return);
|
|
31
|
+
const snapshot = await browser.eyesCheckSnapshot(
|
|
32
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-menu-placement'),
|
|
33
|
+
);
|
|
34
|
+
await expect(snapshot).toEqual(0);
|
|
35
|
+
});
|
|
36
|
+
});
|
|
37
|
+
}
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { axeCoreCheck } from '../helpers';
|
|
2
2
|
import DSRibbonCO from './DSRibbonCO';
|
|
3
3
|
|
|
4
|
-
if (
|
|
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
|
+
) {
|
|
5
10
|
describe('PUI-14423 - [Ribbon] Global attributes and axecore test', () => {
|
|
6
|
-
|
|
11
|
+
before('loading page', async () => {
|
|
7
12
|
const errorOnGo = await DSRibbonCO.globalAttributesURL.go();
|
|
8
13
|
if (errorOnGo) throw errorOnGo;
|
|
9
14
|
});
|
|
@@ -24,7 +29,21 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
24
29
|
await expect(ribbonCol1).toHaveAttribute('role', 'region');
|
|
25
30
|
await expect(ribbonCol1).toHaveAttribute('aria-label', 'Job registered 3 errors');
|
|
26
31
|
});
|
|
27
|
-
it('02: should
|
|
32
|
+
it('02: data-public and data-private attributes should be present in the DOM', async () => {
|
|
33
|
+
const ribbonWrapper = await DSRibbonCO.getRibbonWrapper();
|
|
34
|
+
const ribbonRow1 = await DSRibbonCO.getRibbonRowByIndex(0);
|
|
35
|
+
const ribbonCard1 = await DSRibbonCO.getRibbonCardByIndex(0);
|
|
36
|
+
const ribbonCol1 = await DSRibbonCO.getRibbonColByIndex(0);
|
|
37
|
+
await expect(ribbonWrapper).toHaveAttribute('data-public', 'ribbon-wrapper-public');
|
|
38
|
+
await expect(ribbonWrapper).toHaveAttribute('data-private', 'ribbon-wrapper-private');
|
|
39
|
+
await expect(ribbonRow1).toHaveAttribute('data-public', 'ribbon-row-public');
|
|
40
|
+
await expect(ribbonRow1).toHaveAttribute('data-private', 'ribbon-row-private');
|
|
41
|
+
await expect(ribbonCard1).toHaveAttribute('data-public', 'ribbon-card-public');
|
|
42
|
+
await expect(ribbonCard1).toHaveAttribute('data-private', 'ribbon-card-private');
|
|
43
|
+
await expect(ribbonCol1).toHaveAttribute('data-public', 'ribbon-col-public');
|
|
44
|
+
await expect(ribbonCol1).toHaveAttribute('data-private', 'ribbon-col-private');
|
|
45
|
+
});
|
|
46
|
+
it('03: should pass axe core without any error', async () => {
|
|
28
47
|
const result = await axeCoreCheck();
|
|
29
48
|
expect(result.length).toBe(0);
|
|
30
49
|
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { axeCoreCheck } from '../helpers';
|
|
2
|
+
import DSRibbonCO from './DSRibbonCO';
|
|
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-17851 - DSRibbon:: role status - axe-core', () => {
|
|
11
|
+
before('loading page', async () => {
|
|
12
|
+
const errorOnGo = await DSRibbonCO.roleStatusURL.go();
|
|
13
|
+
if (errorOnGo) throw errorOnGo;
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it('01: should have role="status" attribute on wrapper', async () => {
|
|
17
|
+
const wrapper = await DSRibbonCO.getRoleStatusWrapper();
|
|
18
|
+
await wrapper.waitForDisplayed();
|
|
19
|
+
await expect(wrapper).toHaveAttribute('role', 'status');
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('02: should have aria-live="polite" attribute on wrapper', async () => {
|
|
23
|
+
const wrapper = await DSRibbonCO.getRoleStatusWrapper();
|
|
24
|
+
await expect(wrapper).toHaveAttribute('aria-live', 'polite');
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it('03: should pass axe-core accessibility check', async () => {
|
|
28
|
+
const result = await axeCoreCheck();
|
|
29
|
+
expect(result.length).toBe(0);
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import DSRibbonCO from './DSRibbonCO';
|
|
2
|
+
|
|
3
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
4
|
+
describe('PUI-17953 - DSRibbon:: theming - visual', () => {
|
|
5
|
+
before('loading page', async () => {
|
|
6
|
+
const errorOnGo = await DSRibbonCO.themingURL.go();
|
|
7
|
+
if (errorOnGo) throw errorOnGo;
|
|
8
|
+
const wrapper = await DSRibbonCO.getThemingWrapper();
|
|
9
|
+
await wrapper.waitForDisplayed({ timeout: 10000 });
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('01: should render Ribbon with custom theme styles applied', async () => {
|
|
13
|
+
const snapshot = await browser.checkSnapshot(DSRibbonCO.snapshotPath('theming-custom'));
|
|
14
|
+
await expect(snapshot).toEqual(0);
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
}
|
package/ds-ribbon/DSRibbonCO.js
CHANGED
|
@@ -6,6 +6,12 @@ export default class DSRibbonCO extends PageObject {
|
|
|
6
6
|
|
|
7
7
|
static globalAttributesURL = new Urlbuilder(PATH_E2E_RIBBON, 'global-attributes-test');
|
|
8
8
|
|
|
9
|
+
static slotsURL = new Urlbuilder(PATH_E2E_RIBBON, 'slots-usage-test');
|
|
10
|
+
|
|
11
|
+
static roleStatusURL = new Urlbuilder(PATH_E2E_RIBBON, 'role-status-test');
|
|
12
|
+
|
|
13
|
+
static themingURL = new Urlbuilder(PATH_E2E_RIBBON, 'theming-test');
|
|
14
|
+
|
|
9
15
|
static async getRibbon() {
|
|
10
16
|
return $('[data-testid="button-wrapper"]');
|
|
11
17
|
}
|
|
@@ -26,6 +32,65 @@ export default class DSRibbonCO extends PageObject {
|
|
|
26
32
|
return $$('[data-testid="ribbon-col"]')[index];
|
|
27
33
|
}
|
|
28
34
|
|
|
35
|
+
// Slots selectors
|
|
36
|
+
static async getSlotsWrapper() {
|
|
37
|
+
return $('[data-testid="custom-wrapper-id"]');
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
static async getSlotsRow() {
|
|
41
|
+
return $('[data-custom-row="header-row"]');
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
static async getSlotsColByIndex(index) {
|
|
45
|
+
return $$('[data-col-index]')[index];
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
static async getSlotsCardBlock() {
|
|
49
|
+
return $('[data-card-type="stats"]');
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
static async getSlotsCardLabel() {
|
|
53
|
+
return $('[data-label-highlight="true"]');
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
static async getSlotsCardValue() {
|
|
57
|
+
return $('[data-value-highlight="true"]');
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
static async getSlotsCardIcon() {
|
|
61
|
+
return $('[data-icon-highlight="true"]');
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// Role Status selectors
|
|
65
|
+
static async getRoleStatusWrapper() {
|
|
66
|
+
return $('[data-testid="ribbon-wrapper-status"]');
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
static async getRoleStatusUpdateBtn() {
|
|
70
|
+
return $('[data-testid="update-count-btn"]');
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
static async getRoleStatusProcessedCard() {
|
|
74
|
+
return $('[data-testid="ribbon-card-processed"]');
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// Theming selectors
|
|
78
|
+
static async getThemingWrapper() {
|
|
79
|
+
return $('[data-testid="ribbon-wrapper-theming"]');
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
static async getThemingRow() {
|
|
83
|
+
return $('[data-testid="ribbon-row-theming"]');
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
static async getThemingCol() {
|
|
87
|
+
return $('[data-testid="ribbon-col-theming"]');
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
static async getThemingCard() {
|
|
91
|
+
return $('[data-testid="ribbon-card-theming"]');
|
|
92
|
+
}
|
|
93
|
+
|
|
29
94
|
// Snapshots
|
|
30
95
|
static snapshotPath(example = 'basic') {
|
|
31
96
|
return PageObject.getSnapshotPathBuilder('Ribbon', example, 'ds-modal');
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import DSRibbonCO from '../DSRibbonCO';
|
|
2
|
+
|
|
3
|
+
if (
|
|
4
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
5
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
6
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
7
|
+
browser.capabilities.browserName === 'Chrome'
|
|
8
|
+
) {
|
|
9
|
+
describe('PUI-17954 -DSRibbon:: slots - func', () => {
|
|
10
|
+
before('loading page', async () => {
|
|
11
|
+
const errorOnGo = await DSRibbonCO.slotsURL.go();
|
|
12
|
+
if (errorOnGo) throw errorOnGo;
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
const validateWrapperAndRowSlots = async () => {
|
|
16
|
+
// Wrapper slot
|
|
17
|
+
const wrapper = await DSRibbonCO.getSlotsWrapper();
|
|
18
|
+
await wrapper.waitForDisplayed();
|
|
19
|
+
await expect(wrapper).toHaveAttribute('data-testid', 'custom-wrapper-id');
|
|
20
|
+
await expect(wrapper).toHaveAttribute('data-analytics-id', 'ribbon-wrapper-analytics');
|
|
21
|
+
|
|
22
|
+
// Row slot
|
|
23
|
+
const row = await DSRibbonCO.getSlotsRow();
|
|
24
|
+
await expect(row).toHaveAttribute('data-custom-row', 'header-row');
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const validateColSlots = async () => {
|
|
28
|
+
// Col slots
|
|
29
|
+
const col1 = await DSRibbonCO.getSlotsColByIndex(0);
|
|
30
|
+
const col2 = await DSRibbonCO.getSlotsColByIndex(1);
|
|
31
|
+
const col3 = await DSRibbonCO.getSlotsColByIndex(2);
|
|
32
|
+
const col4 = await DSRibbonCO.getSlotsColByIndex(3);
|
|
33
|
+
await expect(col1).toHaveAttribute('data-col-index', '1');
|
|
34
|
+
await expect(col2).toHaveAttribute('data-col-index', '2');
|
|
35
|
+
await expect(col3).toHaveAttribute('data-col-index', '3');
|
|
36
|
+
await expect(col4).toHaveAttribute('data-col-index', '4');
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const validateCardSlots = async () => {
|
|
40
|
+
// Card block slot
|
|
41
|
+
const cardBlock = await DSRibbonCO.getSlotsCardBlock();
|
|
42
|
+
await expect(cardBlock).toHaveAttribute('data-card-type', 'stats');
|
|
43
|
+
|
|
44
|
+
// Card label slot
|
|
45
|
+
const cardLabel = await DSRibbonCO.getSlotsCardLabel();
|
|
46
|
+
await expect(cardLabel).toHaveAttribute('data-label-highlight', 'true');
|
|
47
|
+
|
|
48
|
+
// Card value slot
|
|
49
|
+
const cardValue = await DSRibbonCO.getSlotsCardValue();
|
|
50
|
+
await expect(cardValue).toHaveAttribute('data-value-highlight', 'true');
|
|
51
|
+
|
|
52
|
+
// Card icon slot
|
|
53
|
+
const cardIcon = await DSRibbonCO.getSlotsCardIcon();
|
|
54
|
+
await expect(cardIcon).toHaveAttribute('data-icon-highlight', 'true');
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
it('01: should have custom data attributes on all slots', async () => {
|
|
58
|
+
await validateWrapperAndRowSlots();
|
|
59
|
+
await validateColSlots();
|
|
60
|
+
await validateCardSlots();
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
}
|
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.38",
|
|
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-accordion": "3.60.0-next.
|
|
46
|
-
"@elliemae/ds-app-picker": "3.60.0-next.
|
|
47
|
-
"@elliemae/ds-backdrop": "3.60.0-next.
|
|
48
|
-
"@elliemae/ds-banner": "3.60.0-next.
|
|
49
|
-
"@elliemae/ds-basic": "3.60.0-next.
|
|
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": "3.60.0-next.
|
|
55
|
-
"@elliemae/ds-card-v1-detail": "3.60.0-next.
|
|
56
|
-
"@elliemae/ds-card-v2": "3.60.0-next.
|
|
57
|
-
"@elliemae/ds-card-v2-action-addon": "3.60.0-next.
|
|
58
|
-
"@elliemae/ds-card-
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-card-v3-poc": "3.60.0-next.
|
|
61
|
-
"@elliemae/ds-chat": "3.60.0-next.
|
|
62
|
-
"@elliemae/ds-
|
|
63
|
-
"@elliemae/ds-chat-
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-container": "3.60.0-next.
|
|
66
|
-
"@elliemae/ds-chat-empty-state": "3.60.0-next.
|
|
67
|
-
"@elliemae/ds-chat-message-delimeter": "3.60.0-next.
|
|
68
|
-
"@elliemae/ds-chat-floating-button": "3.60.0-next.
|
|
69
|
-
"@elliemae/ds-chat-sidebar": "3.60.0-next.
|
|
70
|
-
"@elliemae/ds-chat-
|
|
71
|
-
"@elliemae/ds-chat-
|
|
72
|
-
"@elliemae/ds-chip": "3.60.0-next.
|
|
73
|
-
"@elliemae/ds-circular-progress-indicator": "3.60.0-next.
|
|
74
|
-
"@elliemae/ds-classnames": "3.60.0-next.
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-controlled-form": "3.60.0-next.
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-csv-converter": "3.60.0-next.
|
|
80
|
-
"@elliemae/ds-data-table-cell": "3.60.0-next.
|
|
81
|
-
"@elliemae/ds-data-table-
|
|
82
|
-
"@elliemae/ds-data-table-
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-cell
|
|
85
|
-
"@elliemae/ds-data-table-filters": "3.60.0-next.
|
|
86
|
-
"@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.
|
|
87
|
-
"@elliemae/ds-data-table-single-select-cell": "3.60.0-next.
|
|
88
|
-
"@elliemae/ds-dataviz": "3.60.0-next.
|
|
89
|
-
"@elliemae/ds-dataviz-pie": "3.60.0-next.
|
|
90
|
-
"@elliemae/ds-decision-graph": "3.60.0-next.
|
|
91
|
-
"@elliemae/ds-date-time-picker": "3.60.0-next.
|
|
92
|
-
"@elliemae/ds-dialog": "3.60.0-next.
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-dropzone": "3.60.0-next.
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-floating-context": "3.60.0-next.
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-form-
|
|
100
|
-
"@elliemae/ds-form-date-
|
|
101
|
-
"@elliemae/ds-form-date-
|
|
102
|
-
"@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.
|
|
103
|
-
"@elliemae/ds-form-input-
|
|
104
|
-
"@elliemae/ds-form-
|
|
105
|
-
"@elliemae/ds-form-
|
|
106
|
-
"@elliemae/ds-form-layout-blocks": "3.60.0-next.
|
|
107
|
-
"@elliemae/ds-form-layout-input-group": "3.60.0-next.
|
|
108
|
-
"@elliemae/ds-form-layout-label": "3.60.0-next.
|
|
109
|
-
"@elliemae/ds-form-multi-combobox": "3.60.0-next.
|
|
110
|
-
"@elliemae/ds-form-native-select": "3.60.0-next.
|
|
111
|
-
"@elliemae/ds-form-
|
|
112
|
-
"@elliemae/ds-form-
|
|
113
|
-
"@elliemae/ds-form-single-combobox": "3.60.0-next.
|
|
114
|
-
"@elliemae/ds-form-toggle": "3.60.0-next.
|
|
115
|
-
"@elliemae/ds-global-header": "3.60.0-next.
|
|
116
|
-
"@elliemae/ds-grid": "3.60.0-next.
|
|
117
|
-
"@elliemae/ds-hooks-focus-stack": "3.60.0-next.
|
|
118
|
-
"@elliemae/ds-hooks-
|
|
119
|
-
"@elliemae/ds-hooks-fontsize-
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-
|
|
122
|
-
"@elliemae/ds-hooks-
|
|
123
|
-
"@elliemae/ds-hooks-
|
|
124
|
-
"@elliemae/ds-hooks-
|
|
125
|
-
"@elliemae/ds-hooks-on-blur-out": "3.60.0-next.
|
|
126
|
-
"@elliemae/ds-
|
|
127
|
-
"@elliemae/ds-
|
|
128
|
-
"@elliemae/ds-image": "3.60.0-next.
|
|
129
|
-
"@elliemae/ds-imagelibrarymodal": "3.60.0-next.
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-
|
|
133
|
-
"@elliemae/ds-
|
|
134
|
-
"@elliemae/ds-
|
|
135
|
-
"@elliemae/ds-menu-button": "3.60.0-next.
|
|
136
|
-
"@elliemae/ds-menu-items": "3.60.0-next.
|
|
137
|
-
"@elliemae/ds-menu-items-action": "3.60.0-next.
|
|
138
|
-
"@elliemae/ds-menu-items-commons": "3.60.0-next.
|
|
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-skeleton": "3.60.0-next.
|
|
145
|
-
"@elliemae/ds-menu-
|
|
146
|
-
"@elliemae/ds-menu-
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-notification-badge": "3.60.0-next.
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-
|
|
152
|
-
"@elliemae/ds-page-
|
|
153
|
-
"@elliemae/ds-page-header-
|
|
154
|
-
"@elliemae/ds-page-
|
|
155
|
-
"@elliemae/ds-pagination": "3.60.0-next.
|
|
156
|
-
"@elliemae/ds-pills-v2": "3.60.0-next.
|
|
157
|
-
"@elliemae/ds-portal": "3.60.0-next.
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-query-builder": "3.60.0-next.
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-shared": "3.60.0-next.
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-side-panel": "3.60.0-next.
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-square-indicator": "3.60.0-next.
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-system": "3.60.0-next.
|
|
177
|
-
"@elliemae/ds-tabs": "3.60.0-next.
|
|
178
|
-
"@elliemae/ds-test-utils": "3.60.0-next.
|
|
179
|
-
"@elliemae/ds-toast": "3.60.0-next.
|
|
180
|
-
"@elliemae/ds-toolbar-
|
|
181
|
-
"@elliemae/ds-toolbar-
|
|
182
|
-
"@elliemae/ds-tooltip-v3": "3.60.0-next.
|
|
183
|
-
"@elliemae/ds-transition": "3.60.0-next.
|
|
184
|
-
"@elliemae/ds-tree-model": "3.60.0-next.
|
|
185
|
-
"@elliemae/ds-treeview": "3.60.0-next.
|
|
186
|
-
"@elliemae/ds-truncated-expandable-text": "3.60.0-next.
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-typography": "3.60.0-next.
|
|
190
|
-
"@elliemae/ds-
|
|
191
|
-
"@elliemae/ds-
|
|
192
|
-
"@elliemae/ds-zustand-helpers": "3.60.0-next.
|
|
44
|
+
"@elliemae/ds-accessibility": "3.60.0-next.38",
|
|
45
|
+
"@elliemae/ds-accordion": "3.60.0-next.38",
|
|
46
|
+
"@elliemae/ds-app-picker": "3.60.0-next.38",
|
|
47
|
+
"@elliemae/ds-backdrop": "3.60.0-next.38",
|
|
48
|
+
"@elliemae/ds-banner": "3.60.0-next.38",
|
|
49
|
+
"@elliemae/ds-basic": "3.60.0-next.38",
|
|
50
|
+
"@elliemae/ds-breadcrumb": "3.60.0-next.38",
|
|
51
|
+
"@elliemae/ds-button-v2": "3.60.0-next.38",
|
|
52
|
+
"@elliemae/ds-card": "3.60.0-next.38",
|
|
53
|
+
"@elliemae/ds-card-navigation": "3.60.0-next.38",
|
|
54
|
+
"@elliemae/ds-card-v1": "3.60.0-next.38",
|
|
55
|
+
"@elliemae/ds-card-v1-detail": "3.60.0-next.38",
|
|
56
|
+
"@elliemae/ds-card-v2": "3.60.0-next.38",
|
|
57
|
+
"@elliemae/ds-card-v2-action-addon": "3.60.0-next.38",
|
|
58
|
+
"@elliemae/ds-card-v3": "3.60.0-next.38",
|
|
59
|
+
"@elliemae/ds-chat": "3.60.0-next.38",
|
|
60
|
+
"@elliemae/ds-card-v3-poc": "3.60.0-next.38",
|
|
61
|
+
"@elliemae/ds-chat-bubble": "3.60.0-next.38",
|
|
62
|
+
"@elliemae/ds-card-v2-group": "3.60.0-next.38",
|
|
63
|
+
"@elliemae/ds-chat-container": "3.60.0-next.38",
|
|
64
|
+
"@elliemae/ds-chat-card": "3.60.0-next.38",
|
|
65
|
+
"@elliemae/ds-chat-container-header": "3.60.0-next.38",
|
|
66
|
+
"@elliemae/ds-chat-empty-state": "3.60.0-next.38",
|
|
67
|
+
"@elliemae/ds-chat-message-delimeter": "3.60.0-next.38",
|
|
68
|
+
"@elliemae/ds-chat-floating-button": "3.60.0-next.38",
|
|
69
|
+
"@elliemae/ds-chat-sidebar": "3.60.0-next.38",
|
|
70
|
+
"@elliemae/ds-chat-tile": "3.60.0-next.38",
|
|
71
|
+
"@elliemae/ds-chat-system-message": "3.60.0-next.38",
|
|
72
|
+
"@elliemae/ds-chip": "3.60.0-next.38",
|
|
73
|
+
"@elliemae/ds-circular-progress-indicator": "3.60.0-next.38",
|
|
74
|
+
"@elliemae/ds-classnames": "3.60.0-next.38",
|
|
75
|
+
"@elliemae/ds-comments": "3.60.0-next.38",
|
|
76
|
+
"@elliemae/ds-controlled-form": "3.60.0-next.38",
|
|
77
|
+
"@elliemae/ds-codeeditor": "3.60.0-next.38",
|
|
78
|
+
"@elliemae/ds-data-table": "3.60.0-next.38",
|
|
79
|
+
"@elliemae/ds-csv-converter": "3.60.0-next.38",
|
|
80
|
+
"@elliemae/ds-data-table-action-cell": "3.60.0-next.38",
|
|
81
|
+
"@elliemae/ds-data-table-cell": "3.60.0-next.38",
|
|
82
|
+
"@elliemae/ds-data-table-cell-header": "3.60.0-next.38",
|
|
83
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.38",
|
|
84
|
+
"@elliemae/ds-data-table-expand-cell": "3.60.0-next.38",
|
|
85
|
+
"@elliemae/ds-data-table-filters": "3.60.0-next.38",
|
|
86
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.38",
|
|
87
|
+
"@elliemae/ds-data-table-single-select-cell": "3.60.0-next.38",
|
|
88
|
+
"@elliemae/ds-dataviz": "3.60.0-next.38",
|
|
89
|
+
"@elliemae/ds-dataviz-pie": "3.60.0-next.38",
|
|
90
|
+
"@elliemae/ds-decision-graph": "3.60.0-next.38",
|
|
91
|
+
"@elliemae/ds-date-time-picker": "3.60.0-next.38",
|
|
92
|
+
"@elliemae/ds-dialog": "3.60.0-next.38",
|
|
93
|
+
"@elliemae/ds-dropdownmenu-v2": "3.60.0-next.38",
|
|
94
|
+
"@elliemae/ds-dropzone": "3.60.0-next.38",
|
|
95
|
+
"@elliemae/ds-drag-and-drop": "3.60.0-next.38",
|
|
96
|
+
"@elliemae/ds-floating-context": "3.60.0-next.38",
|
|
97
|
+
"@elliemae/ds-fast-list": "3.60.0-next.38",
|
|
98
|
+
"@elliemae/ds-form-checkbox": "3.60.0-next.38",
|
|
99
|
+
"@elliemae/ds-form-combobox": "3.60.0-next.38",
|
|
100
|
+
"@elliemae/ds-form-date-range-picker": "3.60.0-next.38",
|
|
101
|
+
"@elliemae/ds-form-date-time-picker": "3.60.0-next.38",
|
|
102
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.38",
|
|
103
|
+
"@elliemae/ds-form-input-text": "3.60.0-next.38",
|
|
104
|
+
"@elliemae/ds-form-input-textarea": "3.60.0-next.38",
|
|
105
|
+
"@elliemae/ds-form-layout-autocomplete": "3.60.0-next.38",
|
|
106
|
+
"@elliemae/ds-form-layout-blocks": "3.60.0-next.38",
|
|
107
|
+
"@elliemae/ds-form-layout-input-group": "3.60.0-next.38",
|
|
108
|
+
"@elliemae/ds-form-layout-label": "3.60.0-next.38",
|
|
109
|
+
"@elliemae/ds-form-multi-combobox": "3.60.0-next.38",
|
|
110
|
+
"@elliemae/ds-form-native-select": "3.60.0-next.38",
|
|
111
|
+
"@elliemae/ds-form-radio": "3.60.0-next.38",
|
|
112
|
+
"@elliemae/ds-form-select": "3.60.0-next.38",
|
|
113
|
+
"@elliemae/ds-form-single-combobox": "3.60.0-next.38",
|
|
114
|
+
"@elliemae/ds-form-toggle": "3.60.0-next.38",
|
|
115
|
+
"@elliemae/ds-global-header": "3.60.0-next.38",
|
|
116
|
+
"@elliemae/ds-grid": "3.60.0-next.38",
|
|
117
|
+
"@elliemae/ds-hooks-focus-stack": "3.60.0-next.38",
|
|
118
|
+
"@elliemae/ds-hooks-focus-trap": "3.60.0-next.38",
|
|
119
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.38",
|
|
120
|
+
"@elliemae/ds-hooks-fontsize-media": "3.60.0-next.38",
|
|
121
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.38",
|
|
122
|
+
"@elliemae/ds-hooks-is-mobile": "3.60.0-next.38",
|
|
123
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.38",
|
|
124
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.38",
|
|
125
|
+
"@elliemae/ds-hooks-on-blur-out": "3.60.0-next.38",
|
|
126
|
+
"@elliemae/ds-icon": "3.60.0-next.38",
|
|
127
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.38",
|
|
128
|
+
"@elliemae/ds-image": "3.60.0-next.38",
|
|
129
|
+
"@elliemae/ds-imagelibrarymodal": "3.60.0-next.38",
|
|
130
|
+
"@elliemae/ds-icons": "3.60.0-next.38",
|
|
131
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.60.0-next.38",
|
|
132
|
+
"@elliemae/ds-layout-provider": "3.60.0-next.38",
|
|
133
|
+
"@elliemae/ds-left-navigation": "3.60.0-next.38",
|
|
134
|
+
"@elliemae/ds-loading-indicator": "3.60.0-next.38",
|
|
135
|
+
"@elliemae/ds-menu-button": "3.60.0-next.38",
|
|
136
|
+
"@elliemae/ds-menu-items": "3.60.0-next.38",
|
|
137
|
+
"@elliemae/ds-menu-items-action": "3.60.0-next.38",
|
|
138
|
+
"@elliemae/ds-menu-items-commons": "3.60.0-next.38",
|
|
139
|
+
"@elliemae/ds-menu-items-multi": "3.60.0-next.38",
|
|
140
|
+
"@elliemae/ds-menu-items-separator": "3.60.0-next.38",
|
|
141
|
+
"@elliemae/ds-menu-items-single": "3.60.0-next.38",
|
|
142
|
+
"@elliemae/ds-menu-items-section": "3.60.0-next.38",
|
|
143
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.38",
|
|
144
|
+
"@elliemae/ds-menu-items-skeleton": "3.60.0-next.38",
|
|
145
|
+
"@elliemae/ds-menu-items-submenu": "3.60.0-next.38",
|
|
146
|
+
"@elliemae/ds-menu-tree-item": "3.60.0-next.38",
|
|
147
|
+
"@elliemae/ds-mobile": "3.60.0-next.38",
|
|
148
|
+
"@elliemae/ds-modal-slide": "3.60.0-next.38",
|
|
149
|
+
"@elliemae/ds-notification-badge": "3.60.0-next.38",
|
|
150
|
+
"@elliemae/ds-overlay": "3.60.0-next.38",
|
|
151
|
+
"@elliemae/ds-page-header": "3.60.0-next.38",
|
|
152
|
+
"@elliemae/ds-page-header-v1": "3.60.0-next.38",
|
|
153
|
+
"@elliemae/ds-page-header-v2": "3.60.0-next.38",
|
|
154
|
+
"@elliemae/ds-page-layout": "3.60.0-next.38",
|
|
155
|
+
"@elliemae/ds-pagination": "3.60.0-next.38",
|
|
156
|
+
"@elliemae/ds-pills-v2": "3.60.0-next.38",
|
|
157
|
+
"@elliemae/ds-portal": "3.60.0-next.38",
|
|
158
|
+
"@elliemae/ds-props-helpers": "3.60.0-next.38",
|
|
159
|
+
"@elliemae/ds-progress-indicator": "3.60.0-next.38",
|
|
160
|
+
"@elliemae/ds-popperjs": "3.60.0-next.38",
|
|
161
|
+
"@elliemae/ds-query-builder": "3.60.0-next.38",
|
|
162
|
+
"@elliemae/ds-read-more": "3.60.0-next.38",
|
|
163
|
+
"@elliemae/ds-resizeable-container": "3.60.0-next.38",
|
|
164
|
+
"@elliemae/ds-ribbon": "3.60.0-next.38",
|
|
165
|
+
"@elliemae/ds-scrollable-container": "3.60.0-next.38",
|
|
166
|
+
"@elliemae/ds-separator": "3.60.0-next.38",
|
|
167
|
+
"@elliemae/ds-shared": "3.60.0-next.38",
|
|
168
|
+
"@elliemae/ds-shuttle-v2": "3.60.0-next.38",
|
|
169
|
+
"@elliemae/ds-side-panel": "3.60.0-next.38",
|
|
170
|
+
"@elliemae/ds-side-panel-header": "3.60.0-next.38",
|
|
171
|
+
"@elliemae/ds-slider-v2": "3.60.0-next.38",
|
|
172
|
+
"@elliemae/ds-skeleton": "3.60.0-next.38",
|
|
173
|
+
"@elliemae/ds-square-indicator": "3.60.0-next.38",
|
|
174
|
+
"@elliemae/ds-stepper": "3.60.0-next.38",
|
|
175
|
+
"@elliemae/ds-svg": "3.60.0-next.38",
|
|
176
|
+
"@elliemae/ds-system": "3.60.0-next.38",
|
|
177
|
+
"@elliemae/ds-tabs": "3.60.0-next.38",
|
|
178
|
+
"@elliemae/ds-test-utils": "3.60.0-next.38",
|
|
179
|
+
"@elliemae/ds-toast": "3.60.0-next.38",
|
|
180
|
+
"@elliemae/ds-toolbar-v1": "3.60.0-next.38",
|
|
181
|
+
"@elliemae/ds-toolbar-v2": "3.60.0-next.38",
|
|
182
|
+
"@elliemae/ds-tooltip-v3": "3.60.0-next.38",
|
|
183
|
+
"@elliemae/ds-transition": "3.60.0-next.38",
|
|
184
|
+
"@elliemae/ds-tree-model": "3.60.0-next.38",
|
|
185
|
+
"@elliemae/ds-treeview": "3.60.0-next.38",
|
|
186
|
+
"@elliemae/ds-truncated-expandable-text": "3.60.0-next.38",
|
|
187
|
+
"@elliemae/ds-truncated-tooltip-text": "3.60.0-next.38",
|
|
188
|
+
"@elliemae/ds-typescript-helpers": "3.60.0-next.38",
|
|
189
|
+
"@elliemae/ds-typography": "3.60.0-next.38",
|
|
190
|
+
"@elliemae/ds-virtual-list": "3.60.0-next.38",
|
|
191
|
+
"@elliemae/ds-wizard": "3.60.0-next.38",
|
|
192
|
+
"@elliemae/ds-zustand-helpers": "3.60.0-next.38"
|
|
193
193
|
},
|
|
194
194
|
"publishConfig": {
|
|
195
195
|
"access": "public"
|