dimsum-e2e-tests 3.70.0-next.31 → 3.70.0-next.32
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 +6 -0
- package/ds-form-combobox-multi/DSComboboxMultiCO.js +2 -0
- package/ds-form-combobox-multi/disabled/DSComboboxMulti.disabled.visual.spec.js +22 -0
- package/ds-form-combobox-multi/grouped/DSComboboxMulti.grouped.visual.spec.js +42 -0
- package/ds-form-combobox-multi/skeleton/DSComboboxMulti.skeleton.visual.spec.js +25 -0
- package/ds-form-combobox-single/DSComboboxSingleCO.js +2 -0
- package/ds-form-combobox-single/disabled/DSComboboxSingle.disabled.visual.spec.js +22 -0
- package/ds-form-combobox-single/grouped/DSComboboxSingle.grouped.visual.spec.js +45 -0
- package/ds-form-combobox-single/skeleton/DSComboboxSingle.skeleton.visual.spec.js +25 -0
- package/ds-tooltip-v3/DSTooltipV3CO.js +15 -0
- package/ds-tooltip-v3/dialog/DSTooltipV3.dialog.func.spec.js +45 -0
- package/ds-tooltip-v3/dialog/DSTooltipV3.dialog.visual.spec.js +29 -0
- package/package.json +150 -150
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 3.70.0-next.32 (2026-06-16)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- dimsum:: portal layout improvements [PUI-18441](https://jira.elliemae.io/browse/PUI-18441) ([#8110](https://git.elliemae.io/platform-ui/dimsum/issues/8110)) ([43e1a36](https://git.elliemae.io/platform-ui/dimsum/commit/43e1a36fa6c9582b2dcd4f6f5f0e64a645584132))
|
|
11
|
+
|
|
6
12
|
## 3.70.0-next.31 (2026-06-12)
|
|
7
13
|
|
|
8
14
|
### Features
|
|
@@ -33,6 +33,8 @@ export default class DSComboboxMultiCO extends PageObject {
|
|
|
33
33
|
|
|
34
34
|
static disabled = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'disabled-test');
|
|
35
35
|
|
|
36
|
+
static grouped = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'grouped-test');
|
|
37
|
+
|
|
36
38
|
static inlineTest = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'inline-test');
|
|
37
39
|
|
|
38
40
|
static controlledMenuStateWithSectionsSlotsTest = new Urlbuilder(
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import DSComboboxMultiCO from '../DSComboboxMultiCO';
|
|
2
|
+
|
|
3
|
+
// Tests for the fixes in PUI-15502 (disabled input hint/value + pill font color =
|
|
4
|
+
// neutral-600) and PUI-15578 (dropdown chevron fill = neutral-400 in disabled state).
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-18573 - ComboboxMulti:: Disabled -Visual', () => {
|
|
7
|
+
before('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSComboboxMultiCO.disabled.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('01: should display disabled combobox with dimmed pill text and chevron', async () => {
|
|
13
|
+
const combobox = await DSComboboxMultiCO.getCombobox();
|
|
14
|
+
await combobox.waitForDisplayed();
|
|
15
|
+
|
|
16
|
+
const snapshot = await browser.percyCheckScreenshot(
|
|
17
|
+
DSComboboxMultiCO.snapshotPath('combobox-multi-disabled-input'),
|
|
18
|
+
);
|
|
19
|
+
await expect(snapshot).toEqual(0);
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import DSComboboxMultiCO from '../DSComboboxMultiCO';
|
|
2
|
+
|
|
3
|
+
// Tests for the fixes introduced in PUI-15487 (group/section label styled per the
|
|
4
|
+
// b3-strong spec — bold, neutral color, 32px row) and PUI-15473 (menu item idle
|
|
5
|
+
// label color resolves to neutral-700; disabled options fall through to the muted
|
|
6
|
+
// disabledOption color). The open grouped menu surfaces all of these at once.
|
|
7
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
8
|
+
describe('PUI-18571 - ComboboxMulti:: Grouped -Visual', () => {
|
|
9
|
+
before('loading page', async () => {
|
|
10
|
+
const errorOnGo = await DSComboboxMultiCO.grouped.go();
|
|
11
|
+
if (errorOnGo) throw errorOnGo;
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
it('01: should display grouped menu with section labels, idle and disabled option text', async () => {
|
|
15
|
+
const menuList = await DSComboboxMultiCO.getMenuList();
|
|
16
|
+
await menuList.waitForDisplayed();
|
|
17
|
+
|
|
18
|
+
const sectionLabel = await DSComboboxMultiCO.getComboboxSectionLabelByIndex(0);
|
|
19
|
+
await sectionLabel.waitForDisplayed();
|
|
20
|
+
|
|
21
|
+
const snapshot = await browser.percyCheckScreenshot(
|
|
22
|
+
DSComboboxMultiCO.snapshotPath('combobox-multi-grouped-menu'),
|
|
23
|
+
);
|
|
24
|
+
await expect(snapshot).toEqual(0);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it('02: should display grouped menu with a selected option checked', async () => {
|
|
28
|
+
const option = await DSComboboxMultiCO.getOptionByIndex(0);
|
|
29
|
+
await option.click();
|
|
30
|
+
|
|
31
|
+
// multi select keeps the menu open — the selected option renders its checked
|
|
32
|
+
// styling in place.
|
|
33
|
+
const menuList = await DSComboboxMultiCO.getMenuList();
|
|
34
|
+
await menuList.waitForDisplayed();
|
|
35
|
+
|
|
36
|
+
const snapshot = await browser.percyCheckScreenshot(
|
|
37
|
+
DSComboboxMultiCO.snapshotPath('combobox-multi-grouped-menu-selected'),
|
|
38
|
+
);
|
|
39
|
+
await expect(snapshot).toEqual(0);
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import DSComboboxMultiCO from '../DSComboboxMultiCO';
|
|
2
|
+
|
|
3
|
+
// Tests for the fix introduced in PUI-15485 (skeleton menu items render with the
|
|
4
|
+
// correct region fill — neutral-080 — and a 1px corner radius per the menu spec).
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-18572 - ComboboxMulti:: Skeleton -Visual', () => {
|
|
7
|
+
before('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSComboboxMultiCO.skeletonTest.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('01: should display skeleton menu items with region fill and corner radius', async () => {
|
|
13
|
+
const dropdownMenuBtn = await DSComboboxMultiCO.getDropDownMenuBtn();
|
|
14
|
+
await dropdownMenuBtn.click();
|
|
15
|
+
|
|
16
|
+
const skeletonMenuItem = await DSComboboxMultiCO.getComboboxSkeletonMenuItem();
|
|
17
|
+
await skeletonMenuItem.waitForDisplayed();
|
|
18
|
+
|
|
19
|
+
const snapshot = await browser.percyCheckScreenshot(
|
|
20
|
+
DSComboboxMultiCO.snapshotPath('combobox-multi-skeleton-menu'),
|
|
21
|
+
);
|
|
22
|
+
await expect(snapshot).toEqual(0);
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
}
|
|
@@ -37,6 +37,8 @@ export default class DSComboboxSingleCO extends PageObject {
|
|
|
37
37
|
|
|
38
38
|
static disabled = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'disabled-test');
|
|
39
39
|
|
|
40
|
+
static grouped = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'grouped-test');
|
|
41
|
+
|
|
40
42
|
static inlineTest = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'inline-test');
|
|
41
43
|
|
|
42
44
|
// COMBOBOX - INPUT
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import DSComboboxSingleCO from '../DSComboboxSingleCO';
|
|
2
|
+
|
|
3
|
+
// Tests for the fixes in PUI-15502 (disabled input hint/value font color = neutral-600)
|
|
4
|
+
// and PUI-15578 (dropdown chevron fill = neutral-400 in the disabled state).
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-18570 - ComboboxSingle:: Disabled -Visual', () => {
|
|
7
|
+
before('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSComboboxSingleCO.disabled.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('01: should display disabled combobox with dimmed value text and chevron', async () => {
|
|
13
|
+
const combobox = await DSComboboxSingleCO.getCombobox();
|
|
14
|
+
await combobox.waitForDisplayed();
|
|
15
|
+
|
|
16
|
+
const snapshot = await browser.percyCheckScreenshot(
|
|
17
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-disabled-input'),
|
|
18
|
+
);
|
|
19
|
+
await expect(snapshot).toEqual(0);
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import DSComboboxSingleCO from '../DSComboboxSingleCO';
|
|
2
|
+
|
|
3
|
+
// Tests for the fixes introduced in PUI-15487 (group/section label styled per the
|
|
4
|
+
// b3-strong spec — bold, neutral color, 32px row) and PUI-15473 (single menu item
|
|
5
|
+
// idle label color set to neutral-700; disabled options fall through to the muted
|
|
6
|
+
// disabledOption color). The open grouped menu surfaces all of these at once.
|
|
7
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
8
|
+
describe('PUI-18568 - ComboboxSingle:: Grouped -Visual', () => {
|
|
9
|
+
before('loading page', async () => {
|
|
10
|
+
const errorOnGo = await DSComboboxSingleCO.grouped.go();
|
|
11
|
+
if (errorOnGo) throw errorOnGo;
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
it('01: should display grouped menu with section labels, idle and disabled option text', async () => {
|
|
15
|
+
const menuList = await DSComboboxSingleCO.getMenuList();
|
|
16
|
+
await menuList.waitForDisplayed();
|
|
17
|
+
|
|
18
|
+
const sectionLabel = await DSComboboxSingleCO.getComboboxSectionLabelByIndex(0);
|
|
19
|
+
await sectionLabel.waitForDisplayed();
|
|
20
|
+
|
|
21
|
+
const snapshot = await browser.percyCheckScreenshot(
|
|
22
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-grouped-menu'),
|
|
23
|
+
);
|
|
24
|
+
await expect(snapshot).toEqual(0);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it('02: should display grouped menu with a selected option highlighted', async () => {
|
|
28
|
+
const option = await DSComboboxSingleCO.getOptionByIndex(0);
|
|
29
|
+
await option.click();
|
|
30
|
+
|
|
31
|
+
// single select closes the controlled menu on selection — reopen to capture
|
|
32
|
+
// the selected option styling inside the open listbox.
|
|
33
|
+
const dropdownMenuBtn = await DSComboboxSingleCO.getDropDownMenuBtn();
|
|
34
|
+
await dropdownMenuBtn.click();
|
|
35
|
+
|
|
36
|
+
const menuList = await DSComboboxSingleCO.getMenuList();
|
|
37
|
+
await menuList.waitForDisplayed();
|
|
38
|
+
|
|
39
|
+
const snapshot = await browser.percyCheckScreenshot(
|
|
40
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-grouped-menu-selected'),
|
|
41
|
+
);
|
|
42
|
+
await expect(snapshot).toEqual(0);
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import DSComboboxSingleCO from '../DSComboboxSingleCO';
|
|
2
|
+
|
|
3
|
+
// Tests for the fix introduced in PUI-15485 (skeleton menu items render with the
|
|
4
|
+
// correct region fill — neutral-080 — and a 1px corner radius per the menu spec).
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-18569 - ComboboxSingle:: Skeleton -Visual', () => {
|
|
7
|
+
before('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSComboboxSingleCO.skeletonTest.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('01: should display skeleton menu items with region fill and corner radius', async () => {
|
|
13
|
+
const dropdownMenuBtn = await DSComboboxSingleCO.getDropDownMenuBtn();
|
|
14
|
+
await dropdownMenuBtn.click();
|
|
15
|
+
|
|
16
|
+
const skeletonMenuItem = await DSComboboxSingleCO.getComboboxSkeletonMenuItem();
|
|
17
|
+
await skeletonMenuItem.waitForDisplayed();
|
|
18
|
+
|
|
19
|
+
const snapshot = await browser.percyCheckScreenshot(
|
|
20
|
+
DSComboboxSingleCO.snapshotPath('combobox-single-skeleton-menu'),
|
|
21
|
+
);
|
|
22
|
+
await expect(snapshot).toEqual(0);
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
}
|
|
@@ -12,6 +12,8 @@ export default class DSTooltipV3CO extends PageObject {
|
|
|
12
12
|
|
|
13
13
|
static slotsURL = new Urlbuilder(PATH_E2E_TOOLTIP_V3, 'slots-test');
|
|
14
14
|
|
|
15
|
+
static inADialogTestUrl = new Urlbuilder(PATH_E2E_TOOLTIP_V3, 'in-a-dialog-test');
|
|
16
|
+
|
|
15
17
|
// Snapshots
|
|
16
18
|
static snapshotPath(example = 'basic') {
|
|
17
19
|
return PageObject.getSnapshotPathBuilder('TooltipV3', example);
|
|
@@ -30,6 +32,19 @@ export default class DSTooltipV3CO extends PageObject {
|
|
|
30
32
|
return $$('[data-testid="ds-tooltip-v3-tooltip-text-wrapper"] [data-testid="ds-typography-element"]')[index];
|
|
31
33
|
}
|
|
32
34
|
|
|
35
|
+
// "tooltip in a dialog" selectors (PUI-18012 dismissal mechanism)
|
|
36
|
+
static async getOpenDialogButton() {
|
|
37
|
+
return $('[data-testid="open-dialog-button"]');
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
static async getDialogContainer() {
|
|
41
|
+
return $('[data-testid="ds-dialog-container"]');
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
static async getInADialogTriggerButton() {
|
|
45
|
+
return $('button[aria-describedby="in-a-dialog-tooltip"]');
|
|
46
|
+
}
|
|
47
|
+
|
|
33
48
|
// slot selectors
|
|
34
49
|
static async getRootSlot() {
|
|
35
50
|
return $('[data-dimsum-slot="dsTooltipv3Root"]');
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Key } from 'webdriverio';
|
|
2
|
+
import { mouseOver } from '../../helpers';
|
|
3
|
+
import DSTooltipV3CO from '../DSTooltipV3CO';
|
|
4
|
+
|
|
5
|
+
// Tests for the fix introduced in PUI-18012 (a tooltip inside a dialog must be dismissible with ESC
|
|
6
|
+
// without closing the dialog — WCAG 2.2 SC 1.4.13 Content on Hover or Focus, Dismissible).
|
|
7
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
8
|
+
describe('PUI-18592 - TooltipV3:: dismissal and behavior of a tooltip inside a dialog -Func', () => {
|
|
9
|
+
before('loading page', async () => {
|
|
10
|
+
const errorOnGo = await DSTooltipV3CO.inADialogTestUrl.go();
|
|
11
|
+
if (errorOnGo) throw errorOnGo;
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
it('01: should open the dialog and show the tooltip with its text on hover', async () => {
|
|
15
|
+
const openButton = await DSTooltipV3CO.getOpenDialogButton();
|
|
16
|
+
await openButton.click();
|
|
17
|
+
|
|
18
|
+
const dialog = await DSTooltipV3CO.getDialogContainer();
|
|
19
|
+
await expect(dialog).toBeDisplayed();
|
|
20
|
+
|
|
21
|
+
const trigger = await DSTooltipV3CO.getInADialogTriggerButton();
|
|
22
|
+
await mouseOver(trigger);
|
|
23
|
+
|
|
24
|
+
const tooltip = await DSTooltipV3CO.getTooltip();
|
|
25
|
+
await expect(tooltip).toBeDisplayed();
|
|
26
|
+
await expect(tooltip).toHaveText(expect.stringContaining('Tooltip text 3'));
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it('02: should dismiss only the tooltip on ESC, keeping the dialog open', async () => {
|
|
30
|
+
const tooltip = await DSTooltipV3CO.getTooltip();
|
|
31
|
+
await browser.keys(Key.Escape);
|
|
32
|
+
|
|
33
|
+
await expect(tooltip).not.toBeDisplayed();
|
|
34
|
+
const dialog = await DSTooltipV3CO.getDialogContainer();
|
|
35
|
+
await expect(dialog).toBeDisplayed();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('03: should close the dialog on a subsequent ESC once the tooltip is dismissed', async () => {
|
|
39
|
+
await browser.keys(Key.Escape);
|
|
40
|
+
|
|
41
|
+
const dialog = await DSTooltipV3CO.getDialogContainer();
|
|
42
|
+
await expect(dialog).not.toBeDisplayed();
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { mouseOver } from '../../helpers';
|
|
2
|
+
import DSTooltipV3CO from '../DSTooltipV3CO';
|
|
3
|
+
|
|
4
|
+
// Visual coverage for PUI-18012: how a tooltip looks when displayed inside a dialog.
|
|
5
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
6
|
+
describe('PUI-18593 - TooltipV3:: tooltip displayed inside a dialog -Visual', () => {
|
|
7
|
+
before('loading page', async () => {
|
|
8
|
+
const errorOnGo = await DSTooltipV3CO.inADialogTestUrl.go();
|
|
9
|
+
if (errorOnGo) throw errorOnGo;
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('01: should display the tooltip inside the open dialog', async () => {
|
|
13
|
+
const openButton = await DSTooltipV3CO.getOpenDialogButton();
|
|
14
|
+
await openButton.click();
|
|
15
|
+
|
|
16
|
+
const dialog = await DSTooltipV3CO.getDialogContainer();
|
|
17
|
+
await expect(dialog).toBeDisplayed();
|
|
18
|
+
|
|
19
|
+
const trigger = await DSTooltipV3CO.getInADialogTriggerButton();
|
|
20
|
+
await mouseOver(trigger);
|
|
21
|
+
|
|
22
|
+
const tooltip = await DSTooltipV3CO.getTooltip();
|
|
23
|
+
await expect(tooltip).toBeDisplayed();
|
|
24
|
+
|
|
25
|
+
const snapshot = await browser.percyCheckScreenshot(DSTooltipV3CO.snapshotPath('tooltip-in-dialog'));
|
|
26
|
+
await expect(snapshot).toEqual(0);
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "dimsum-e2e-tests",
|
|
4
|
-
"version": "3.70.0-next.
|
|
4
|
+
"version": "3.70.0-next.32",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elliemae/ds-legacy-button": "1.0.16",
|
|
@@ -39,155 +39,155 @@
|
|
|
39
39
|
"@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
|
|
40
40
|
"@elliemae/ds-legacy-zipcode-search": "1.0.16",
|
|
41
41
|
"@elliemae/ds-legacy-zoom": "1.0.16",
|
|
42
|
-
"@elliemae/ds-accessibility": "3.70.0-next.
|
|
43
|
-
"@elliemae/ds-accordion": "3.70.0-next.
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-backdrop": "3.70.0-next.
|
|
47
|
-
"@elliemae/ds-banner": "3.70.0-next.
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-button-v2": "3.70.0-next.
|
|
51
|
-
"@elliemae/ds-card": "3.70.0-next.
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-card-v1": "3.70.0-next.
|
|
54
|
-
"@elliemae/ds-card-
|
|
55
|
-
"@elliemae/ds-card-v2": "3.70.0-next.
|
|
56
|
-
"@elliemae/ds-card-
|
|
57
|
-
"@elliemae/ds-card-v2-group": "3.70.0-next.
|
|
58
|
-
"@elliemae/ds-card-v3": "3.70.0-next.
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-chat": "3.70.0-next.
|
|
61
|
-
"@elliemae/ds-
|
|
62
|
-
"@elliemae/ds-chat-card": "3.70.0-next.
|
|
63
|
-
"@elliemae/ds-chat-container
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-
|
|
66
|
-
"@elliemae/ds-chat-empty-state": "3.70.0-next.
|
|
67
|
-
"@elliemae/ds-chat-
|
|
68
|
-
"@elliemae/ds-chat-
|
|
69
|
-
"@elliemae/ds-chat-system-message": "3.70.0-next.
|
|
70
|
-
"@elliemae/ds-chat-tile": "3.70.0-next.
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-controlled-form": "3.70.0-next.
|
|
77
|
-
"@elliemae/ds-csv-converter": "3.70.0-next.
|
|
78
|
-
"@elliemae/ds-data-table": "3.70.0-next.
|
|
79
|
-
"@elliemae/ds-data-table
|
|
80
|
-
"@elliemae/ds-data-table-cell": "3.70.0-next.
|
|
81
|
-
"@elliemae/ds-data-table-cell-header": "3.70.0-next.
|
|
82
|
-
"@elliemae/ds-data-table-expand-cell": "3.70.0-next.
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-
|
|
85
|
-
"@elliemae/ds-
|
|
86
|
-
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.
|
|
87
|
-
"@elliemae/ds-dataviz-pie": "3.70.0-next.
|
|
88
|
-
"@elliemae/ds-
|
|
89
|
-
"@elliemae/ds-decision-graph": "3.70.0-next.
|
|
90
|
-
"@elliemae/ds-dialog": "3.70.0-next.
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-dropzone": "3.70.0-next.
|
|
95
|
-
"@elliemae/ds-fast-list": "3.70.0-next.
|
|
96
|
-
"@elliemae/ds-floating-context": "3.70.0-next.
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-form-
|
|
100
|
-
"@elliemae/ds-form-
|
|
101
|
-
"@elliemae/ds-form-date-time-picker": "3.70.0-next.
|
|
102
|
-
"@elliemae/ds-form-
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-input-textarea": "3.70.0-next.
|
|
105
|
-
"@elliemae/ds-form-layout-autocomplete": "3.70.0-next.
|
|
106
|
-
"@elliemae/ds-form-layout-
|
|
107
|
-
"@elliemae/ds-form-layout-
|
|
108
|
-
"@elliemae/ds-form-layout-label": "3.70.0-next.
|
|
109
|
-
"@elliemae/ds-form-
|
|
110
|
-
"@elliemae/ds-form-
|
|
111
|
-
"@elliemae/ds-form-
|
|
112
|
-
"@elliemae/ds-form-select": "3.70.0-next.
|
|
113
|
-
"@elliemae/ds-form-
|
|
114
|
-
"@elliemae/ds-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.
|
|
118
|
-
"@elliemae/ds-hooks-
|
|
119
|
-
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.
|
|
122
|
-
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.
|
|
123
|
-
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.
|
|
124
|
-
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.
|
|
125
|
-
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.
|
|
126
|
-
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.
|
|
127
|
-
"@elliemae/ds-icon": "3.70.0-next.
|
|
128
|
-
"@elliemae/ds-image": "3.70.0-next.
|
|
129
|
-
"@elliemae/ds-icons": "3.70.0-next.
|
|
130
|
-
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.
|
|
131
|
-
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.
|
|
132
|
-
"@elliemae/ds-layout-provider": "3.70.0-next.
|
|
133
|
-
"@elliemae/ds-left-navigation": "3.70.0-next.
|
|
134
|
-
"@elliemae/ds-loading-indicator": "3.70.0-next.
|
|
135
|
-
"@elliemae/ds-menu-button": "3.70.0-next.
|
|
136
|
-
"@elliemae/ds-menu-items": "3.70.0-next.
|
|
137
|
-
"@elliemae/ds-menu-items-action": "3.70.0-next.
|
|
138
|
-
"@elliemae/ds-menu-items-commons": "3.70.0-next.
|
|
139
|
-
"@elliemae/ds-menu-items-multi": "3.70.0-next.
|
|
140
|
-
"@elliemae/ds-menu-items-section": "3.70.0-next.
|
|
141
|
-
"@elliemae/ds-menu-items-separator": "3.70.0-next.
|
|
142
|
-
"@elliemae/ds-menu-items-single": "3.70.0-next.
|
|
143
|
-
"@elliemae/ds-menu-items-single
|
|
144
|
-
"@elliemae/ds-menu-
|
|
145
|
-
"@elliemae/ds-menu-
|
|
146
|
-
"@elliemae/ds-menu-items-submenu": "3.70.0-next.
|
|
147
|
-
"@elliemae/ds-mobile": "3.70.0-next.
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-notification-badge": "3.70.0-next.
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-page-header-v1": "3.70.0-next.
|
|
152
|
-
"@elliemae/ds-page-header
|
|
153
|
-
"@elliemae/ds-
|
|
154
|
-
"@elliemae/ds-page-layout": "3.70.0-next.
|
|
155
|
-
"@elliemae/ds-pagination": "3.70.0-next.
|
|
156
|
-
"@elliemae/ds-pills-v2": "3.70.0-next.
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-resizeable-container": "3.70.0-next.
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-scrollable-container": "3.70.0-next.
|
|
164
|
-
"@elliemae/ds-
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-shared": "3.70.0-next.
|
|
167
|
-
"@elliemae/ds-shuttle-v2": "3.70.0-next.
|
|
168
|
-
"@elliemae/ds-side-panel
|
|
169
|
-
"@elliemae/ds-side-panel": "3.70.0-next.
|
|
170
|
-
"@elliemae/ds-skeleton": "3.70.0-next.
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-tabs": "3.70.0-next.
|
|
177
|
-
"@elliemae/ds-test-utils": "3.70.0-next.
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-
|
|
182
|
-
"@elliemae/ds-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-typescript-helpers": "3.70.0-next.
|
|
187
|
-
"@elliemae/ds-typography": "3.70.0-next.
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-wizard": "3.70.0-next.
|
|
190
|
-
"@elliemae/ds-
|
|
42
|
+
"@elliemae/ds-accessibility": "3.70.0-next.32",
|
|
43
|
+
"@elliemae/ds-accordion": "3.70.0-next.32",
|
|
44
|
+
"@elliemae/ds-app-picker": "3.70.0-next.32",
|
|
45
|
+
"@elliemae/ds-accordion-native": "3.70.0-next.32",
|
|
46
|
+
"@elliemae/ds-backdrop": "3.70.0-next.32",
|
|
47
|
+
"@elliemae/ds-banner": "3.70.0-next.32",
|
|
48
|
+
"@elliemae/ds-breadcrumb": "3.70.0-next.32",
|
|
49
|
+
"@elliemae/ds-card": "3.70.0-next.32",
|
|
50
|
+
"@elliemae/ds-button-v2": "3.70.0-next.32",
|
|
51
|
+
"@elliemae/ds-card-navigation": "3.70.0-next.32",
|
|
52
|
+
"@elliemae/ds-basic": "3.70.0-next.32",
|
|
53
|
+
"@elliemae/ds-card-v1": "3.70.0-next.32",
|
|
54
|
+
"@elliemae/ds-card-v2": "3.70.0-next.32",
|
|
55
|
+
"@elliemae/ds-card-v2-action-addon": "3.70.0-next.32",
|
|
56
|
+
"@elliemae/ds-card-v1-detail": "3.70.0-next.32",
|
|
57
|
+
"@elliemae/ds-card-v2-group": "3.70.0-next.32",
|
|
58
|
+
"@elliemae/ds-card-v3": "3.70.0-next.32",
|
|
59
|
+
"@elliemae/ds-chat": "3.70.0-next.32",
|
|
60
|
+
"@elliemae/ds-chat-bubble": "3.70.0-next.32",
|
|
61
|
+
"@elliemae/ds-card-v3-poc": "3.70.0-next.32",
|
|
62
|
+
"@elliemae/ds-chat-card": "3.70.0-next.32",
|
|
63
|
+
"@elliemae/ds-chat-container": "3.70.0-next.32",
|
|
64
|
+
"@elliemae/ds-chat-container-header": "3.70.0-next.32",
|
|
65
|
+
"@elliemae/ds-chat-floating-button": "3.70.0-next.32",
|
|
66
|
+
"@elliemae/ds-chat-empty-state": "3.70.0-next.32",
|
|
67
|
+
"@elliemae/ds-chat-sidebar": "3.70.0-next.32",
|
|
68
|
+
"@elliemae/ds-chat-message-delimeter": "3.70.0-next.32",
|
|
69
|
+
"@elliemae/ds-chat-system-message": "3.70.0-next.32",
|
|
70
|
+
"@elliemae/ds-chat-tile": "3.70.0-next.32",
|
|
71
|
+
"@elliemae/ds-chip": "3.70.0-next.32",
|
|
72
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.32",
|
|
73
|
+
"@elliemae/ds-classnames": "3.70.0-next.32",
|
|
74
|
+
"@elliemae/ds-codeeditor": "3.70.0-next.32",
|
|
75
|
+
"@elliemae/ds-comments": "3.70.0-next.32",
|
|
76
|
+
"@elliemae/ds-controlled-form": "3.70.0-next.32",
|
|
77
|
+
"@elliemae/ds-csv-converter": "3.70.0-next.32",
|
|
78
|
+
"@elliemae/ds-data-table-action-cell": "3.70.0-next.32",
|
|
79
|
+
"@elliemae/ds-data-table": "3.70.0-next.32",
|
|
80
|
+
"@elliemae/ds-data-table-cell": "3.70.0-next.32",
|
|
81
|
+
"@elliemae/ds-data-table-cell-header": "3.70.0-next.32",
|
|
82
|
+
"@elliemae/ds-data-table-expand-cell": "3.70.0-next.32",
|
|
83
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.32",
|
|
84
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.32",
|
|
85
|
+
"@elliemae/ds-dataviz": "3.70.0-next.32",
|
|
86
|
+
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.32",
|
|
87
|
+
"@elliemae/ds-dataviz-pie": "3.70.0-next.32",
|
|
88
|
+
"@elliemae/ds-date-time-picker": "3.70.0-next.32",
|
|
89
|
+
"@elliemae/ds-decision-graph": "3.70.0-next.32",
|
|
90
|
+
"@elliemae/ds-dialog": "3.70.0-next.32",
|
|
91
|
+
"@elliemae/ds-drag-and-drop": "3.70.0-next.32",
|
|
92
|
+
"@elliemae/ds-dropdownmenu-v2": "3.70.0-next.32",
|
|
93
|
+
"@elliemae/ds-data-table-filters": "3.70.0-next.32",
|
|
94
|
+
"@elliemae/ds-dropzone": "3.70.0-next.32",
|
|
95
|
+
"@elliemae/ds-fast-list": "3.70.0-next.32",
|
|
96
|
+
"@elliemae/ds-floating-context": "3.70.0-next.32",
|
|
97
|
+
"@elliemae/ds-filter-bar": "3.70.0-next.32",
|
|
98
|
+
"@elliemae/ds-form-combobox": "3.70.0-next.32",
|
|
99
|
+
"@elliemae/ds-form-date-range-picker": "3.70.0-next.32",
|
|
100
|
+
"@elliemae/ds-form-checkbox": "3.70.0-next.32",
|
|
101
|
+
"@elliemae/ds-form-date-time-picker": "3.70.0-next.32",
|
|
102
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.32",
|
|
103
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.32",
|
|
104
|
+
"@elliemae/ds-form-input-textarea": "3.70.0-next.32",
|
|
105
|
+
"@elliemae/ds-form-layout-autocomplete": "3.70.0-next.32",
|
|
106
|
+
"@elliemae/ds-form-layout-input-group": "3.70.0-next.32",
|
|
107
|
+
"@elliemae/ds-form-layout-blocks": "3.70.0-next.32",
|
|
108
|
+
"@elliemae/ds-form-layout-label": "3.70.0-next.32",
|
|
109
|
+
"@elliemae/ds-form-multi-combobox": "3.70.0-next.32",
|
|
110
|
+
"@elliemae/ds-form-radio": "3.70.0-next.32",
|
|
111
|
+
"@elliemae/ds-form-native-select": "3.70.0-next.32",
|
|
112
|
+
"@elliemae/ds-form-select": "3.70.0-next.32",
|
|
113
|
+
"@elliemae/ds-form-toggle": "3.70.0-next.32",
|
|
114
|
+
"@elliemae/ds-global-header": "3.70.0-next.32",
|
|
115
|
+
"@elliemae/ds-grid": "3.70.0-next.32",
|
|
116
|
+
"@elliemae/ds-form-single-combobox": "3.70.0-next.32",
|
|
117
|
+
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.32",
|
|
118
|
+
"@elliemae/ds-hooks-focus-trap": "3.70.0-next.32",
|
|
119
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.32",
|
|
120
|
+
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.32",
|
|
121
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.32",
|
|
122
|
+
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.32",
|
|
123
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.32",
|
|
124
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.32",
|
|
125
|
+
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.32",
|
|
126
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.32",
|
|
127
|
+
"@elliemae/ds-icon": "3.70.0-next.32",
|
|
128
|
+
"@elliemae/ds-image": "3.70.0-next.32",
|
|
129
|
+
"@elliemae/ds-icons": "3.70.0-next.32",
|
|
130
|
+
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.32",
|
|
131
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.32",
|
|
132
|
+
"@elliemae/ds-layout-provider": "3.70.0-next.32",
|
|
133
|
+
"@elliemae/ds-left-navigation": "3.70.0-next.32",
|
|
134
|
+
"@elliemae/ds-loading-indicator": "3.70.0-next.32",
|
|
135
|
+
"@elliemae/ds-menu-button": "3.70.0-next.32",
|
|
136
|
+
"@elliemae/ds-menu-items": "3.70.0-next.32",
|
|
137
|
+
"@elliemae/ds-menu-items-action": "3.70.0-next.32",
|
|
138
|
+
"@elliemae/ds-menu-items-commons": "3.70.0-next.32",
|
|
139
|
+
"@elliemae/ds-menu-items-multi": "3.70.0-next.32",
|
|
140
|
+
"@elliemae/ds-menu-items-section": "3.70.0-next.32",
|
|
141
|
+
"@elliemae/ds-menu-items-separator": "3.70.0-next.32",
|
|
142
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.32",
|
|
143
|
+
"@elliemae/ds-menu-items-single": "3.70.0-next.32",
|
|
144
|
+
"@elliemae/ds-menu-tree-item": "3.70.0-next.32",
|
|
145
|
+
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.32",
|
|
146
|
+
"@elliemae/ds-menu-items-submenu": "3.70.0-next.32",
|
|
147
|
+
"@elliemae/ds-mobile": "3.70.0-next.32",
|
|
148
|
+
"@elliemae/ds-overlay": "3.70.0-next.32",
|
|
149
|
+
"@elliemae/ds-notification-badge": "3.70.0-next.32",
|
|
150
|
+
"@elliemae/ds-modal-slide": "3.70.0-next.32",
|
|
151
|
+
"@elliemae/ds-page-header-v1": "3.70.0-next.32",
|
|
152
|
+
"@elliemae/ds-page-header": "3.70.0-next.32",
|
|
153
|
+
"@elliemae/ds-page-header-v2": "3.70.0-next.32",
|
|
154
|
+
"@elliemae/ds-page-layout": "3.70.0-next.32",
|
|
155
|
+
"@elliemae/ds-pagination": "3.70.0-next.32",
|
|
156
|
+
"@elliemae/ds-pills-v2": "3.70.0-next.32",
|
|
157
|
+
"@elliemae/ds-progress-indicator": "3.70.0-next.32",
|
|
158
|
+
"@elliemae/ds-portal": "3.70.0-next.32",
|
|
159
|
+
"@elliemae/ds-query-builder": "3.70.0-next.32",
|
|
160
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.32",
|
|
161
|
+
"@elliemae/ds-resizeable-container": "3.70.0-next.32",
|
|
162
|
+
"@elliemae/ds-ribbon": "3.70.0-next.32",
|
|
163
|
+
"@elliemae/ds-scrollable-container": "3.70.0-next.32",
|
|
164
|
+
"@elliemae/ds-read-more": "3.70.0-next.32",
|
|
165
|
+
"@elliemae/ds-separator": "3.70.0-next.32",
|
|
166
|
+
"@elliemae/ds-shared": "3.70.0-next.32",
|
|
167
|
+
"@elliemae/ds-shuttle-v2": "3.70.0-next.32",
|
|
168
|
+
"@elliemae/ds-side-panel": "3.70.0-next.32",
|
|
169
|
+
"@elliemae/ds-side-panel-header": "3.70.0-next.32",
|
|
170
|
+
"@elliemae/ds-skeleton": "3.70.0-next.32",
|
|
171
|
+
"@elliemae/ds-square-indicator": "3.70.0-next.32",
|
|
172
|
+
"@elliemae/ds-stepper": "3.70.0-next.32",
|
|
173
|
+
"@elliemae/ds-svg": "3.70.0-next.32",
|
|
174
|
+
"@elliemae/ds-system": "3.70.0-next.32",
|
|
175
|
+
"@elliemae/ds-slider-v2": "3.70.0-next.32",
|
|
176
|
+
"@elliemae/ds-tabs": "3.70.0-next.32",
|
|
177
|
+
"@elliemae/ds-test-utils": "3.70.0-next.32",
|
|
178
|
+
"@elliemae/ds-toolbar-v1": "3.70.0-next.32",
|
|
179
|
+
"@elliemae/ds-toast": "3.70.0-next.32",
|
|
180
|
+
"@elliemae/ds-toolbar-v2": "3.70.0-next.32",
|
|
181
|
+
"@elliemae/ds-tooltip-v3": "3.70.0-next.32",
|
|
182
|
+
"@elliemae/ds-transition": "3.70.0-next.32",
|
|
183
|
+
"@elliemae/ds-tree-model": "3.70.0-next.32",
|
|
184
|
+
"@elliemae/ds-treeview": "3.70.0-next.32",
|
|
185
|
+
"@elliemae/ds-truncated-expandable-text": "3.70.0-next.32",
|
|
186
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.32",
|
|
187
|
+
"@elliemae/ds-typography": "3.70.0-next.32",
|
|
188
|
+
"@elliemae/ds-virtual-list": "3.70.0-next.32",
|
|
189
|
+
"@elliemae/ds-wizard": "3.70.0-next.32",
|
|
190
|
+
"@elliemae/ds-zustand-helpers": "3.70.0-next.32"
|
|
191
191
|
},
|
|
192
192
|
"publishConfig": {
|
|
193
193
|
"access": "public"
|