dimsum-e2e-tests 3.70.0-next.10 → 3.70.0-next.12
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/aria-busy-loading/DSComboboxMulti.aria-busy-loading.func.spec.js +57 -0
- package/ds-form-combobox-single/DSComboboxSingleCO.js +4 -0
- package/ds-form-combobox-single/aria-busy-loading/DSComboboxSingle.aria-busy-loading.func.spec.js +54 -0
- package/ds-modal-slide/custom-header/ModalSlide.customHeader.focusRing.visual.spec.js +2 -1
- package/ds-modal-slide/slots/ModalSlide.slots.func.spec.js +18 -0
- package/ds-progress-indicator/DSProgressIndicator.axe-core.func.spec.js +2 -0
- package/ds-progress-indicator/DSProgressIndicatorCO.js +1 -1
- package/package.json +149 -149
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.70.0-next.12 (2026-05-15)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- ds-chat-floating-button:: dimsum compliance and slots support [PUI-17908](https://jira.elliemae.io/browse/PUI-17908) ([#8032](https://git.elliemae.io/platform-ui/dimsum/issues/8032)) ([9bc4ae8](https://git.elliemae.io/platform-ui/dimsum/commit/9bc4ae814b9276d369688d4ab4e0150b3e7cc09a))
|
|
11
|
+
|
|
12
|
+
## 3.70.0-next.11 (2026-05-14)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- ds-combobox-multi:: combobox aria busy e2e [PUI-18445](https://jira.elliemae.io/browse/PUI-18445) ([#8027](https://git.elliemae.io/platform-ui/dimsum/issues/8027)) ([cdbff4e](https://git.elliemae.io/platform-ui/dimsum/commit/cdbff4eb2a09af6de888dc8a13af5027836bd0a4))
|
|
17
|
+
|
|
6
18
|
## 3.70.0-next.10 (2026-05-14)
|
|
7
19
|
|
|
8
20
|
### Features
|
|
@@ -6,6 +6,10 @@ export default class DSComboboxMultiCO extends PageObject {
|
|
|
6
6
|
// STORIES
|
|
7
7
|
static basicTest = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'basic-test');
|
|
8
8
|
|
|
9
|
+
static loadingTest = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'loading-test');
|
|
10
|
+
|
|
11
|
+
static skeletonTest = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'skeleton-test');
|
|
12
|
+
|
|
9
13
|
static applyAriaDisabled = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'apply-aria-disabled-test');
|
|
10
14
|
|
|
11
15
|
static readOnly = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'read-only-test');
|
package/ds-form-combobox-multi/aria-busy-loading/DSComboboxMulti.aria-busy-loading.func.spec.js
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import DSComboboxMultiCO from '../DSComboboxMultiCO';
|
|
2
|
+
|
|
3
|
+
// Tests for the fix introduced in PUI-18034
|
|
4
|
+
// (carries aria-busy + aria-label on the listbox during loading/skeleton so
|
|
5
|
+
// screen readers announce the in-progress state via the input's aria-controls
|
|
6
|
+
// linkage; replaces the prior racing assertive live region).
|
|
7
|
+
// aria-multiselectable is preserved on the busy listbox.
|
|
8
|
+
if (
|
|
9
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
10
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
11
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
12
|
+
browser.capabilities.browserName === 'Chrome'
|
|
13
|
+
) {
|
|
14
|
+
describe('PUI-18447 - ComboboxMulti:: busy listbox while isLoading - Func', () => {
|
|
15
|
+
before('loading page', async () => {
|
|
16
|
+
const errorOnGo = await DSComboboxMultiCO.loadingTest.go();
|
|
17
|
+
if (errorOnGo) throw errorOnGo;
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it('01: listbox is aria-busy + aria-multiselectable and aria-controls linked', async () => {
|
|
21
|
+
const dropdownMenuBtn = await DSComboboxMultiCO.getDropDownMenuBtn();
|
|
22
|
+
await dropdownMenuBtn.click();
|
|
23
|
+
|
|
24
|
+
const listbox = await DSComboboxMultiCO.getComboListbox();
|
|
25
|
+
await listbox.waitForExist();
|
|
26
|
+
|
|
27
|
+
await expect(listbox).toHaveAttribute('role', 'listbox');
|
|
28
|
+
await expect(listbox).toHaveAttribute('aria-busy', 'true');
|
|
29
|
+
await expect(listbox).toHaveAttribute('aria-label', 'Loading options please wait');
|
|
30
|
+
await expect(listbox).toHaveAttribute('aria-multiselectable', 'true');
|
|
31
|
+
|
|
32
|
+
const listboxId = await listbox.getAttribute('id');
|
|
33
|
+
const input = await DSComboboxMultiCO.getComboboxInput();
|
|
34
|
+
await expect(input).toHaveAttribute('aria-controls', listboxId);
|
|
35
|
+
});
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
describe('PUI-18448 - ComboboxMulti:: busy listbox while isSkeleton - Func', () => {
|
|
39
|
+
before('loading page', async () => {
|
|
40
|
+
const errorOnGo = await DSComboboxMultiCO.skeletonTest.go();
|
|
41
|
+
if (errorOnGo) throw errorOnGo;
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
it('01: listbox is aria-busy + aria-multiselectable with aria-label', async () => {
|
|
45
|
+
const dropdownMenuBtn = await DSComboboxMultiCO.getDropDownMenuBtn();
|
|
46
|
+
await dropdownMenuBtn.click();
|
|
47
|
+
|
|
48
|
+
const listbox = await DSComboboxMultiCO.getComboListbox();
|
|
49
|
+
await listbox.waitForExist();
|
|
50
|
+
|
|
51
|
+
await expect(listbox).toHaveAttribute('role', 'listbox');
|
|
52
|
+
await expect(listbox).toHaveAttribute('aria-busy', 'true');
|
|
53
|
+
await expect(listbox).toHaveAttribute('aria-label', 'Loading options please wait');
|
|
54
|
+
await expect(listbox).toHaveAttribute('aria-multiselectable', 'true');
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
}
|
|
@@ -4,6 +4,10 @@ import { PageObject, Urlbuilder } from '../helpers';
|
|
|
4
4
|
|
|
5
5
|
export default class DSComboboxSingleCO extends PageObject {
|
|
6
6
|
// STORIES
|
|
7
|
+
static loadingTest = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'loading-test');
|
|
8
|
+
|
|
9
|
+
static skeletonTest = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'skeleton-test');
|
|
10
|
+
|
|
7
11
|
static applyAriaDisabled = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'apply-aria-disabled-test');
|
|
8
12
|
|
|
9
13
|
static readOnly = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'read-only-test');
|
package/ds-form-combobox-single/aria-busy-loading/DSComboboxSingle.aria-busy-loading.func.spec.js
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import DSComboboxSingleCO from '../DSComboboxSingleCO';
|
|
2
|
+
|
|
3
|
+
// Tests for the fix introduced in PUI-18034
|
|
4
|
+
// (carries aria-busy + aria-label on the listbox during loading/skeleton so
|
|
5
|
+
// screen readers announce the in-progress state via the input's aria-controls
|
|
6
|
+
// linkage; replaces the prior racing assertive live region).
|
|
7
|
+
if (
|
|
8
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
9
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
10
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
11
|
+
browser.capabilities.browserName === 'Chrome'
|
|
12
|
+
) {
|
|
13
|
+
describe('PUI-18445 - ComboboxSingle:: busy listbox while isLoading - Func', () => {
|
|
14
|
+
before('loading page', async () => {
|
|
15
|
+
const errorOnGo = await DSComboboxSingleCO.loadingTest.go();
|
|
16
|
+
if (errorOnGo) throw errorOnGo;
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
it('01: listbox is aria-busy with aria-label and input aria-controls links to it', async () => {
|
|
20
|
+
const dropdownMenuBtn = await DSComboboxSingleCO.getDropDownMenuBtn();
|
|
21
|
+
await dropdownMenuBtn.click();
|
|
22
|
+
|
|
23
|
+
const listbox = await DSComboboxSingleCO.getComboListbox();
|
|
24
|
+
await listbox.waitForExist();
|
|
25
|
+
|
|
26
|
+
await expect(listbox).toHaveAttribute('role', 'listbox');
|
|
27
|
+
await expect(listbox).toHaveAttribute('aria-busy', 'true');
|
|
28
|
+
await expect(listbox).toHaveAttribute('aria-label', 'Loading options please wait');
|
|
29
|
+
|
|
30
|
+
const listboxId = await listbox.getAttribute('id');
|
|
31
|
+
const input = await DSComboboxSingleCO.getComboboxInput();
|
|
32
|
+
await expect(input).toHaveAttribute('aria-controls', listboxId);
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
describe('PUI-18446 - ComboboxSingle:: busy listbox while isSkeleton - Func', () => {
|
|
37
|
+
before('loading page', async () => {
|
|
38
|
+
const errorOnGo = await DSComboboxSingleCO.skeletonTest.go();
|
|
39
|
+
if (errorOnGo) throw errorOnGo;
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
it('01: listbox is aria-busy with aria-label', async () => {
|
|
43
|
+
const dropdownMenuBtn = await DSComboboxSingleCO.getDropDownMenuBtn();
|
|
44
|
+
await dropdownMenuBtn.click();
|
|
45
|
+
|
|
46
|
+
const listbox = await DSComboboxSingleCO.getComboListbox();
|
|
47
|
+
await listbox.waitForExist();
|
|
48
|
+
|
|
49
|
+
await expect(listbox).toHaveAttribute('role', 'listbox');
|
|
50
|
+
await expect(listbox).toHaveAttribute('aria-busy', 'true');
|
|
51
|
+
await expect(listbox).toHaveAttribute('aria-label', 'Loading options please wait');
|
|
52
|
+
});
|
|
53
|
+
});
|
|
54
|
+
}
|
|
@@ -10,7 +10,8 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
10
10
|
});
|
|
11
11
|
|
|
12
12
|
it('01: should show consistent focus ring on modal body (5th tab stop)', async () => {
|
|
13
|
-
await ModalSlideCO.
|
|
13
|
+
const trigger = await ModalSlideCO.getOpenModalSlideBtn();
|
|
14
|
+
await trigger.click();
|
|
14
15
|
// Tab through CustomHeader: backarrow(1) -> breadcrumb items(2,3,4) -> body(5)
|
|
15
16
|
await browser.keys(Key.Tab);
|
|
16
17
|
await browser.keys(Key.Tab);
|
|
@@ -52,5 +52,23 @@ if (
|
|
|
52
52
|
await expect(overlay).toHaveAttribute('data-testid', 'overlay data');
|
|
53
53
|
await expect(root).toHaveAttribute('data-testid', 'root data');
|
|
54
54
|
});
|
|
55
|
+
it('03: each ModalSlide slot to have custom lang attribute', async () => {
|
|
56
|
+
const actualContent = await ModalSlideCO.getSlotActualContent();
|
|
57
|
+
const content = await ModalSlideCO.getSlotContent();
|
|
58
|
+
const contentWrapper = await ModalSlideCO.getSlotContentWrapper();
|
|
59
|
+
const footerSeparator = await ModalSlideCO.getSlotFooterSeparator();
|
|
60
|
+
const gridContent = await ModalSlideCO.getSlotGridContent();
|
|
61
|
+
const headerSeparator = await ModalSlideCO.getSlotHeaderSeparator();
|
|
62
|
+
const overlay = await ModalSlideCO.getSlotOverlay();
|
|
63
|
+
const root = await ModalSlideCO.getSlotRoot();
|
|
64
|
+
await expect(actualContent).toHaveAttribute('lang', 'en');
|
|
65
|
+
await expect(content).toHaveAttribute('lang', 'es');
|
|
66
|
+
await expect(contentWrapper).toHaveAttribute('lang', 'fr');
|
|
67
|
+
await expect(footerSeparator).toHaveAttribute('lang', 'de');
|
|
68
|
+
await expect(gridContent).toHaveAttribute('lang', 'it');
|
|
69
|
+
await expect(headerSeparator).toHaveAttribute('lang', 'pt');
|
|
70
|
+
await expect(overlay).toHaveAttribute('lang', 'ja');
|
|
71
|
+
await expect(root).toHaveAttribute('lang', 'zh');
|
|
72
|
+
});
|
|
55
73
|
});
|
|
56
74
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable wdio/no-pause */
|
|
1
2
|
import DSProgressIndicatorCO from './DSProgressIndicatorCO';
|
|
2
3
|
import { axeCoreCheck } from '../helpers';
|
|
3
4
|
|
|
@@ -14,6 +15,7 @@ if (
|
|
|
14
15
|
});
|
|
15
16
|
it('01: should display basic progress indicator and pass axe-core', async () => {
|
|
16
17
|
await (await DSProgressIndicatorCO.getUploadLabel()).waitForDisplayed();
|
|
18
|
+
await browser.pause(500);
|
|
17
19
|
const result = await axeCoreCheck();
|
|
18
20
|
expect(result.length).toBe(0);
|
|
19
21
|
});
|
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.12",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elliemae/ds-legacy-button": "1.0.16",
|
|
@@ -41,154 +41,154 @@
|
|
|
41
41
|
"@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
|
|
42
42
|
"@elliemae/ds-legacy-zipcode-search": "1.0.16",
|
|
43
43
|
"@elliemae/ds-legacy-zoom": "1.0.16",
|
|
44
|
-
"@elliemae/ds-accessibility": "3.70.0-next.
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-banner": "3.70.0-next.
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-breadcrumb": "3.70.0-next.
|
|
50
|
-
"@elliemae/ds-
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-card-
|
|
54
|
-
"@elliemae/ds-card-
|
|
55
|
-
"@elliemae/ds-card-v1": "3.70.0-next.
|
|
56
|
-
"@elliemae/ds-card-v2-
|
|
57
|
-
"@elliemae/ds-card-
|
|
58
|
-
"@elliemae/ds-card-v2": "3.70.0-next.
|
|
59
|
-
"@elliemae/ds-card-v3-poc": "3.70.0-next.
|
|
60
|
-
"@elliemae/ds-card-
|
|
61
|
-
"@elliemae/ds-chat": "3.70.0-next.
|
|
62
|
-
"@elliemae/ds-chat-bubble": "3.70.0-next.
|
|
63
|
-
"@elliemae/ds-chat-card": "3.70.0-next.
|
|
64
|
-
"@elliemae/ds-chat-container": "3.70.0-next.
|
|
65
|
-
"@elliemae/ds-chat-container-header": "3.70.0-next.
|
|
66
|
-
"@elliemae/ds-chat-empty-state": "3.70.0-next.
|
|
67
|
-
"@elliemae/ds-chat-floating-button": "3.70.0-next.
|
|
68
|
-
"@elliemae/ds-chat-
|
|
69
|
-
"@elliemae/ds-chat-system-message": "3.70.0-next.
|
|
70
|
-
"@elliemae/ds-chat-
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-chip": "3.70.0-next.
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-codeeditor": "3.70.0-next.
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-controlled-form": "3.70.0-next.
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-
|
|
80
|
-
"@elliemae/ds-data-table": "3.70.0-next.
|
|
81
|
-
"@elliemae/ds-data-table-cell": "3.70.0-next.
|
|
82
|
-
"@elliemae/ds-data-table-
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-
|
|
85
|
-
"@elliemae/ds-data-table-cell
|
|
86
|
-
"@elliemae/ds-data-table-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-dataviz
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-drag-and-drop": "3.70.0-next.
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-fast-list": "3.70.0-next.
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-form-checkbox": "3.70.0-next.
|
|
100
|
-
"@elliemae/ds-form-
|
|
101
|
-
"@elliemae/ds-form-
|
|
102
|
-
"@elliemae/ds-form-
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-input-text": "3.70.0-next.
|
|
105
|
-
"@elliemae/ds-form-input-textarea": "3.70.0-next.
|
|
106
|
-
"@elliemae/ds-form-layout-
|
|
107
|
-
"@elliemae/ds-form-layout-
|
|
108
|
-
"@elliemae/ds-form-layout-input-group": "3.70.0-next.
|
|
109
|
-
"@elliemae/ds-form-layout-label": "3.70.0-next.
|
|
110
|
-
"@elliemae/ds-form-
|
|
111
|
-
"@elliemae/ds-form-
|
|
112
|
-
"@elliemae/ds-form-
|
|
113
|
-
"@elliemae/ds-form-
|
|
114
|
-
"@elliemae/ds-form-single-combobox": "3.70.0-next.
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.
|
|
119
|
-
"@elliemae/ds-hooks-focus-trap": "3.70.0-next.
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-fontsize-
|
|
122
|
-
"@elliemae/ds-hooks-
|
|
123
|
-
"@elliemae/ds-hooks-
|
|
124
|
-
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.
|
|
125
|
-
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.
|
|
126
|
-
"@elliemae/ds-hooks-
|
|
127
|
-
"@elliemae/ds-
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-image": "3.70.0-next.
|
|
130
|
-
"@elliemae/ds-icons": "3.70.0-next.
|
|
131
|
-
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.
|
|
132
|
-
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.
|
|
133
|
-
"@elliemae/ds-layout-provider": "3.70.0-next.
|
|
134
|
-
"@elliemae/ds-left-navigation": "3.70.0-next.
|
|
135
|
-
"@elliemae/ds-loading-indicator": "3.70.0-next.
|
|
136
|
-
"@elliemae/ds-menu-button": "3.70.0-next.
|
|
137
|
-
"@elliemae/ds-menu-items
|
|
138
|
-
"@elliemae/ds-menu-items-
|
|
139
|
-
"@elliemae/ds-menu-items-
|
|
140
|
-
"@elliemae/ds-menu-items-multi": "3.70.0-next.
|
|
141
|
-
"@elliemae/ds-menu-items-
|
|
142
|
-
"@elliemae/ds-menu-items-single": "3.70.0-next.
|
|
143
|
-
"@elliemae/ds-menu-items": "3.70.0-next.
|
|
144
|
-
"@elliemae/ds-menu-items-
|
|
145
|
-
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.
|
|
146
|
-
"@elliemae/ds-menu-
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-page-header
|
|
152
|
-
"@elliemae/ds-
|
|
153
|
-
"@elliemae/ds-page-header": "3.70.0-next.
|
|
154
|
-
"@elliemae/ds-page-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-props-helpers": "3.70.0-next.
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-query-builder": "3.70.0-next.
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-system": "3.70.0-next.
|
|
177
|
-
"@elliemae/ds-
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-toolbar-
|
|
182
|
-
"@elliemae/ds-tooltip-v3": "3.70.0-next.
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-
|
|
191
|
-
"@elliemae/ds-zustand-helpers": "3.70.0-next.
|
|
44
|
+
"@elliemae/ds-accessibility": "3.70.0-next.12",
|
|
45
|
+
"@elliemae/ds-accordion": "3.70.0-next.12",
|
|
46
|
+
"@elliemae/ds-basic": "3.70.0-next.12",
|
|
47
|
+
"@elliemae/ds-banner": "3.70.0-next.12",
|
|
48
|
+
"@elliemae/ds-backdrop": "3.70.0-next.12",
|
|
49
|
+
"@elliemae/ds-breadcrumb": "3.70.0-next.12",
|
|
50
|
+
"@elliemae/ds-app-picker": "3.70.0-next.12",
|
|
51
|
+
"@elliemae/ds-button-v2": "3.70.0-next.12",
|
|
52
|
+
"@elliemae/ds-card": "3.70.0-next.12",
|
|
53
|
+
"@elliemae/ds-card-navigation": "3.70.0-next.12",
|
|
54
|
+
"@elliemae/ds-card-v1-detail": "3.70.0-next.12",
|
|
55
|
+
"@elliemae/ds-card-v1": "3.70.0-next.12",
|
|
56
|
+
"@elliemae/ds-card-v2-action-addon": "3.70.0-next.12",
|
|
57
|
+
"@elliemae/ds-card-v2": "3.70.0-next.12",
|
|
58
|
+
"@elliemae/ds-card-v2-group": "3.70.0-next.12",
|
|
59
|
+
"@elliemae/ds-card-v3-poc": "3.70.0-next.12",
|
|
60
|
+
"@elliemae/ds-card-v3": "3.70.0-next.12",
|
|
61
|
+
"@elliemae/ds-chat": "3.70.0-next.12",
|
|
62
|
+
"@elliemae/ds-chat-bubble": "3.70.0-next.12",
|
|
63
|
+
"@elliemae/ds-chat-card": "3.70.0-next.12",
|
|
64
|
+
"@elliemae/ds-chat-container": "3.70.0-next.12",
|
|
65
|
+
"@elliemae/ds-chat-container-header": "3.70.0-next.12",
|
|
66
|
+
"@elliemae/ds-chat-empty-state": "3.70.0-next.12",
|
|
67
|
+
"@elliemae/ds-chat-floating-button": "3.70.0-next.12",
|
|
68
|
+
"@elliemae/ds-chat-sidebar": "3.70.0-next.12",
|
|
69
|
+
"@elliemae/ds-chat-system-message": "3.70.0-next.12",
|
|
70
|
+
"@elliemae/ds-chat-tile": "3.70.0-next.12",
|
|
71
|
+
"@elliemae/ds-chat-message-delimeter": "3.70.0-next.12",
|
|
72
|
+
"@elliemae/ds-chip": "3.70.0-next.12",
|
|
73
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.12",
|
|
74
|
+
"@elliemae/ds-classnames": "3.70.0-next.12",
|
|
75
|
+
"@elliemae/ds-codeeditor": "3.70.0-next.12",
|
|
76
|
+
"@elliemae/ds-comments": "3.70.0-next.12",
|
|
77
|
+
"@elliemae/ds-controlled-form": "3.70.0-next.12",
|
|
78
|
+
"@elliemae/ds-data-table": "3.70.0-next.12",
|
|
79
|
+
"@elliemae/ds-csv-converter": "3.70.0-next.12",
|
|
80
|
+
"@elliemae/ds-data-table-cell": "3.70.0-next.12",
|
|
81
|
+
"@elliemae/ds-data-table-action-cell": "3.70.0-next.12",
|
|
82
|
+
"@elliemae/ds-data-table-cell-header": "3.70.0-next.12",
|
|
83
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.12",
|
|
84
|
+
"@elliemae/ds-data-table-expand-cell": "3.70.0-next.12",
|
|
85
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.12",
|
|
86
|
+
"@elliemae/ds-data-table-filters": "3.70.0-next.12",
|
|
87
|
+
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.12",
|
|
88
|
+
"@elliemae/ds-dataviz": "3.70.0-next.12",
|
|
89
|
+
"@elliemae/ds-dataviz-pie": "3.70.0-next.12",
|
|
90
|
+
"@elliemae/ds-date-time-picker": "3.70.0-next.12",
|
|
91
|
+
"@elliemae/ds-decision-graph": "3.70.0-next.12",
|
|
92
|
+
"@elliemae/ds-dialog": "3.70.0-next.12",
|
|
93
|
+
"@elliemae/ds-drag-and-drop": "3.70.0-next.12",
|
|
94
|
+
"@elliemae/ds-dropdownmenu-v2": "3.70.0-next.12",
|
|
95
|
+
"@elliemae/ds-dropzone": "3.70.0-next.12",
|
|
96
|
+
"@elliemae/ds-fast-list": "3.70.0-next.12",
|
|
97
|
+
"@elliemae/ds-filter-bar": "3.70.0-next.12",
|
|
98
|
+
"@elliemae/ds-floating-context": "3.70.0-next.12",
|
|
99
|
+
"@elliemae/ds-form-checkbox": "3.70.0-next.12",
|
|
100
|
+
"@elliemae/ds-form-combobox": "3.70.0-next.12",
|
|
101
|
+
"@elliemae/ds-form-date-range-picker": "3.70.0-next.12",
|
|
102
|
+
"@elliemae/ds-form-date-time-picker": "3.70.0-next.12",
|
|
103
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.12",
|
|
104
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.12",
|
|
105
|
+
"@elliemae/ds-form-input-textarea": "3.70.0-next.12",
|
|
106
|
+
"@elliemae/ds-form-layout-autocomplete": "3.70.0-next.12",
|
|
107
|
+
"@elliemae/ds-form-layout-blocks": "3.70.0-next.12",
|
|
108
|
+
"@elliemae/ds-form-layout-input-group": "3.70.0-next.12",
|
|
109
|
+
"@elliemae/ds-form-layout-label": "3.70.0-next.12",
|
|
110
|
+
"@elliemae/ds-form-multi-combobox": "3.70.0-next.12",
|
|
111
|
+
"@elliemae/ds-form-radio": "3.70.0-next.12",
|
|
112
|
+
"@elliemae/ds-form-select": "3.70.0-next.12",
|
|
113
|
+
"@elliemae/ds-form-native-select": "3.70.0-next.12",
|
|
114
|
+
"@elliemae/ds-form-single-combobox": "3.70.0-next.12",
|
|
115
|
+
"@elliemae/ds-form-toggle": "3.70.0-next.12",
|
|
116
|
+
"@elliemae/ds-global-header": "3.70.0-next.12",
|
|
117
|
+
"@elliemae/ds-grid": "3.70.0-next.12",
|
|
118
|
+
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.12",
|
|
119
|
+
"@elliemae/ds-hooks-focus-trap": "3.70.0-next.12",
|
|
120
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.12",
|
|
121
|
+
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.12",
|
|
122
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.12",
|
|
123
|
+
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.12",
|
|
124
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.12",
|
|
125
|
+
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.12",
|
|
126
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.12",
|
|
127
|
+
"@elliemae/ds-icon": "3.70.0-next.12",
|
|
128
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.12",
|
|
129
|
+
"@elliemae/ds-image": "3.70.0-next.12",
|
|
130
|
+
"@elliemae/ds-icons": "3.70.0-next.12",
|
|
131
|
+
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.12",
|
|
132
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.12",
|
|
133
|
+
"@elliemae/ds-layout-provider": "3.70.0-next.12",
|
|
134
|
+
"@elliemae/ds-left-navigation": "3.70.0-next.12",
|
|
135
|
+
"@elliemae/ds-loading-indicator": "3.70.0-next.12",
|
|
136
|
+
"@elliemae/ds-menu-button": "3.70.0-next.12",
|
|
137
|
+
"@elliemae/ds-menu-items": "3.70.0-next.12",
|
|
138
|
+
"@elliemae/ds-menu-items-action": "3.70.0-next.12",
|
|
139
|
+
"@elliemae/ds-menu-items-commons": "3.70.0-next.12",
|
|
140
|
+
"@elliemae/ds-menu-items-multi": "3.70.0-next.12",
|
|
141
|
+
"@elliemae/ds-menu-items-section": "3.70.0-next.12",
|
|
142
|
+
"@elliemae/ds-menu-items-single": "3.70.0-next.12",
|
|
143
|
+
"@elliemae/ds-menu-items-separator": "3.70.0-next.12",
|
|
144
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.12",
|
|
145
|
+
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.12",
|
|
146
|
+
"@elliemae/ds-menu-items-submenu": "3.70.0-next.12",
|
|
147
|
+
"@elliemae/ds-menu-tree-item": "3.70.0-next.12",
|
|
148
|
+
"@elliemae/ds-mobile": "3.70.0-next.12",
|
|
149
|
+
"@elliemae/ds-modal-slide": "3.70.0-next.12",
|
|
150
|
+
"@elliemae/ds-notification-badge": "3.70.0-next.12",
|
|
151
|
+
"@elliemae/ds-page-header": "3.70.0-next.12",
|
|
152
|
+
"@elliemae/ds-overlay": "3.70.0-next.12",
|
|
153
|
+
"@elliemae/ds-page-header-v1": "3.70.0-next.12",
|
|
154
|
+
"@elliemae/ds-page-header-v2": "3.70.0-next.12",
|
|
155
|
+
"@elliemae/ds-pagination": "3.70.0-next.12",
|
|
156
|
+
"@elliemae/ds-page-layout": "3.70.0-next.12",
|
|
157
|
+
"@elliemae/ds-pills-v2": "3.70.0-next.12",
|
|
158
|
+
"@elliemae/ds-portal": "3.70.0-next.12",
|
|
159
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.12",
|
|
160
|
+
"@elliemae/ds-progress-indicator": "3.70.0-next.12",
|
|
161
|
+
"@elliemae/ds-query-builder": "3.70.0-next.12",
|
|
162
|
+
"@elliemae/ds-read-more": "3.70.0-next.12",
|
|
163
|
+
"@elliemae/ds-resizeable-container": "3.70.0-next.12",
|
|
164
|
+
"@elliemae/ds-ribbon": "3.70.0-next.12",
|
|
165
|
+
"@elliemae/ds-scrollable-container": "3.70.0-next.12",
|
|
166
|
+
"@elliemae/ds-separator": "3.70.0-next.12",
|
|
167
|
+
"@elliemae/ds-shared": "3.70.0-next.12",
|
|
168
|
+
"@elliemae/ds-shuttle-v2": "3.70.0-next.12",
|
|
169
|
+
"@elliemae/ds-side-panel": "3.70.0-next.12",
|
|
170
|
+
"@elliemae/ds-skeleton": "3.70.0-next.12",
|
|
171
|
+
"@elliemae/ds-side-panel-header": "3.70.0-next.12",
|
|
172
|
+
"@elliemae/ds-slider-v2": "3.70.0-next.12",
|
|
173
|
+
"@elliemae/ds-square-indicator": "3.70.0-next.12",
|
|
174
|
+
"@elliemae/ds-stepper": "3.70.0-next.12",
|
|
175
|
+
"@elliemae/ds-svg": "3.70.0-next.12",
|
|
176
|
+
"@elliemae/ds-system": "3.70.0-next.12",
|
|
177
|
+
"@elliemae/ds-tabs": "3.70.0-next.12",
|
|
178
|
+
"@elliemae/ds-test-utils": "3.70.0-next.12",
|
|
179
|
+
"@elliemae/ds-toast": "3.70.0-next.12",
|
|
180
|
+
"@elliemae/ds-toolbar-v1": "3.70.0-next.12",
|
|
181
|
+
"@elliemae/ds-toolbar-v2": "3.70.0-next.12",
|
|
182
|
+
"@elliemae/ds-tooltip-v3": "3.70.0-next.12",
|
|
183
|
+
"@elliemae/ds-transition": "3.70.0-next.12",
|
|
184
|
+
"@elliemae/ds-treeview": "3.70.0-next.12",
|
|
185
|
+
"@elliemae/ds-tree-model": "3.70.0-next.12",
|
|
186
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.12",
|
|
187
|
+
"@elliemae/ds-typography": "3.70.0-next.12",
|
|
188
|
+
"@elliemae/ds-truncated-expandable-text": "3.70.0-next.12",
|
|
189
|
+
"@elliemae/ds-wizard": "3.70.0-next.12",
|
|
190
|
+
"@elliemae/ds-virtual-list": "3.70.0-next.12",
|
|
191
|
+
"@elliemae/ds-zustand-helpers": "3.70.0-next.12"
|
|
192
192
|
},
|
|
193
193
|
"publishConfig": {
|
|
194
194
|
"access": "public"
|