dimsum-e2e-tests 3.70.0-next.40 → 3.70.0-next.41
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-data-table-async/DSDataTableCO.js +4 -0
- package/ds-data-table-async/textwrapping/DSDataTable.header-wrap-alignment.axe-core.func.spec.js +23 -0
- package/ds-data-table-async/textwrapping/DSDataTable.header-wrap-alignment.visual.spec.js +106 -0
- package/ds-data-table-async/textwrapping/DSDataTable.text-wrap-toolbar.visual.spec.js +27 -0
- package/package.json +150 -151
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.41 (2026-07-02)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- dimsum:: add component-vpat skill for WCAG 2.5 conformance reports [PUI-14236](https://jira.elliemae.io/browse/PUI-14236) ([#8146](https://git.elliemae.io/platform-ui/dimsum/issues/8146)) ([dfe5ca6](https://git.elliemae.io/platform-ui/dimsum/commit/dfe5ca657cd3895c8c98262286cd4cca2238d41e))
|
|
11
|
+
|
|
6
12
|
## 3.70.0-next.40 (2026-06-29)
|
|
7
13
|
|
|
8
14
|
### Features
|
|
@@ -199,6 +199,10 @@ export default class DataTableCO extends PageObject {
|
|
|
199
199
|
|
|
200
200
|
static textWrapTruncColumn = new Urlbuilder(PATH_E2E_DATATABLE_TEXT_WRAPPING, 'text-wrap-truncate-column');
|
|
201
201
|
|
|
202
|
+
static headerWrapAlignment = new Urlbuilder(PATH_E2E_DATATABLE_TEXT_WRAPPING, 'header-wrap-alignment-test');
|
|
203
|
+
|
|
204
|
+
static textWrapGlobalWithToolbar = new Urlbuilder(PATH_E2E_DATATABLE_TEXT_WRAPPING, 'text-wrap-global');
|
|
205
|
+
|
|
202
206
|
// Toolbar
|
|
203
207
|
|
|
204
208
|
static toolbarIntegration = new Urlbuilder(PATH_E2E_DATATABLE_TOOLBAR, 'toolbar-integration');
|
package/ds-data-table-async/textwrapping/DSDataTable.header-wrap-alignment.axe-core.func.spec.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import DSDataTableCO from '../DSDataTableCO';
|
|
2
|
+
import { axeCoreCheck } from '../../helpers';
|
|
3
|
+
|
|
4
|
+
// Accessibility coverage for the PUI-17819 header wrap/alignment showcase.
|
|
5
|
+
if (
|
|
6
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
7
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
8
|
+
browser.capabilities.browserName === 'Chrome') ||
|
|
9
|
+
browser.capabilities.browserName === 'chrome'
|
|
10
|
+
) {
|
|
11
|
+
describe('PUI-18681 - DSDataTable:: header text wrap rules and alignment - axe-core', () => {
|
|
12
|
+
before('loading page', async () => {
|
|
13
|
+
const errorOnGo = await DSDataTableCO.headerWrapAlignment.go();
|
|
14
|
+
if (errorOnGo) throw errorOnGo;
|
|
15
|
+
await DSDataTableCO.waitForDataTable();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it('01: should have no accessibility violations', async () => {
|
|
19
|
+
const result = await axeCoreCheck();
|
|
20
|
+
await expect(result.length).toBe(0);
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { Key } from 'webdriverio';
|
|
2
|
+
import DSDataTableCO from '../DSDataTableCO';
|
|
3
|
+
import { HeaderCO, RowCO } from '../components';
|
|
4
|
+
|
|
5
|
+
// Column indices in the HeaderWrapAlignment story:
|
|
6
|
+
// 0=id, 1=name, 2=wrap ('wrap'), 3=wrapAll ('wrap-all'), 4=truncate ('truncate')
|
|
7
|
+
const WRAP_ALL_COL = 3;
|
|
8
|
+
// Filter buttons render only on searchable columns (wrap, wrapAll, truncate) → wrapAll is index 1
|
|
9
|
+
const WRAP_ALL_FILTER = 1;
|
|
10
|
+
|
|
11
|
+
// Header control focus order (Enter on the focused header → then Tab):
|
|
12
|
+
// 1. DnD handle 2. search/filter button 3. sort caret 4. resize handle
|
|
13
|
+
// Tests for PUI-17819 (header wrap rules + alignment fix). Unblocks PUI-17814 (name/search-icon overlap).
|
|
14
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
15
|
+
describe('PUI-18680 - DSDataTable:: header text wrap rules and alignment - visual', () => {
|
|
16
|
+
before('loading page', async () => {
|
|
17
|
+
const errorOnGo = await DSDataTableCO.headerWrapAlignment.go();
|
|
18
|
+
if (errorOnGo) throw errorOnGo;
|
|
19
|
+
await DSDataTableCO.waitForDataTable();
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('01: should render wrap / wrap-all / truncate headers top-aligned', async () => {
|
|
23
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
24
|
+
await expect(snapshot).toEqual(0);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it('02: should keep header title top-aligned with revealed icons on hover', async () => {
|
|
28
|
+
const wrapAllHeader = await HeaderCO.getHeaderCellByIndex(WRAP_ALL_COL);
|
|
29
|
+
await wrapAllHeader.moveTo();
|
|
30
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
31
|
+
await expect(snapshot).toEqual(0);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
it('03: should keep wrapped header aligned after clicking the column to sort it', async () => {
|
|
35
|
+
// sort by clicking the column header itself (not the sort caret) — the realistic interaction.
|
|
36
|
+
// The click also focuses the header, which sets up the focus walk in the next steps.
|
|
37
|
+
const wrapAllHeader = await HeaderCO.getHeaderCellByIndex(WRAP_ALL_COL);
|
|
38
|
+
await wrapAllHeader.click();
|
|
39
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
40
|
+
await expect(snapshot).toEqual(0);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('04: should focus the drag-and-drop handle first when entering the header', async () => {
|
|
44
|
+
// Enter activates the header tab stops and focuses the first control (the DnD handle)
|
|
45
|
+
await browser.keys(Key.Return);
|
|
46
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
47
|
+
await expect(snapshot).toEqual(0);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
it('05: should move focus to the search/filter button on Tab', async () => {
|
|
51
|
+
await browser.keys(Key.Tab);
|
|
52
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
53
|
+
await expect(snapshot).toEqual(0);
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
it('06: should move focus to the sort caret on Tab', async () => {
|
|
57
|
+
await browser.keys(Key.Tab);
|
|
58
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
59
|
+
await expect(snapshot).toEqual(0);
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
it('07: should move focus to the resize handle on Tab', async () => {
|
|
63
|
+
await browser.keys(Key.Tab);
|
|
64
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
65
|
+
await expect(snapshot).toEqual(0);
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
it('08: should keep wrapped header aligned while the filter/search is open', async () => {
|
|
69
|
+
const filterBtn = await HeaderCO.getFilterBtnByIndex(WRAP_ALL_FILTER);
|
|
70
|
+
await filterBtn.click();
|
|
71
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
72
|
+
await expect(snapshot).toEqual(0);
|
|
73
|
+
await browser.keys(Key.Escape);
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
it('09: should keep wrapped header aligned while the DnD handle is engaged', async () => {
|
|
77
|
+
const wrapAllHeader = await HeaderCO.getHeaderCellByIndex(WRAP_ALL_COL);
|
|
78
|
+
const dragHandle = await HeaderCO.getHeaderCellDragHandler(wrapAllHeader);
|
|
79
|
+
await dragHandle.click();
|
|
80
|
+
// keyboard pick-up renders a deterministic drag overlay (dnd-kit)
|
|
81
|
+
await browser.keys(Key.Space);
|
|
82
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
83
|
+
await expect(snapshot).toEqual(0);
|
|
84
|
+
await browser.keys(Key.Escape);
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
it('10: should keep wrapped headers intact with a row toolbar menu open', async () => {
|
|
88
|
+
const toolbarTrigger = await RowCO.getRowToolbarTriggerByIndex(0);
|
|
89
|
+
await toolbarTrigger.click();
|
|
90
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
91
|
+
await expect(snapshot).toEqual(0);
|
|
92
|
+
await browser.keys(Key.Escape);
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
it('11: should keep wrapped header aligned while a column is resized narrower', async () => {
|
|
96
|
+
// PUI-12696 (open): resizing a column below its min makes the resize handler overlap the
|
|
97
|
+
// header title. This captures current behavior; update the baseline when PUI-12696 lands.
|
|
98
|
+
// Kept last: the extra-tall header it produces would otherwise obscure the row toolbar
|
|
99
|
+
// trigger and break the coordinate-based click in the toolbar step.
|
|
100
|
+
const resizeHandler = await HeaderCO.getResizeHandler(WRAP_ALL_COL);
|
|
101
|
+
await resizeHandler.dragAndDrop({ x: -150, y: 0 });
|
|
102
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
103
|
+
await expect(snapshot).toEqual(0);
|
|
104
|
+
});
|
|
105
|
+
});
|
|
106
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import DSDataTableCO from '../DSDataTableCO';
|
|
2
|
+
import { RowCO } from '../components';
|
|
3
|
+
|
|
4
|
+
// Global textWrap='wrap' together with a row-actions (toolbar) column — mirrors the
|
|
5
|
+
// Components/DataTable/Features/Text Wrapping > Text Wrap Global showcase.
|
|
6
|
+
// Tests for PUI-17819 (header wrap rules + alignment fix).
|
|
7
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
8
|
+
describe('PUI-18682 - DSDataTable:: text wrap with row toolbar column - visual', () => {
|
|
9
|
+
before('loading page', async () => {
|
|
10
|
+
const errorOnGo = await DSDataTableCO.textWrapGlobalWithToolbar.go();
|
|
11
|
+
if (errorOnGo) throw errorOnGo;
|
|
12
|
+
await DSDataTableCO.waitForDataTable();
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
it('01: should wrap all columns with the row toolbar column present', async () => {
|
|
16
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
17
|
+
await expect(snapshot).toEqual(0);
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it('02: should keep cells wrapped while a row toolbar menu is open', async () => {
|
|
21
|
+
const toolbarTrigger = await RowCO.getRowToolbarTriggerByIndex(0);
|
|
22
|
+
await toolbarTrigger.click();
|
|
23
|
+
const snapshot = await browser.percyCheckScreenshot();
|
|
24
|
+
await expect(snapshot).toEqual(0);
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
}
|
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.41",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elliemae/ds-legacy-button": "1.0.16",
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"@elliemae/ds-legacy-button-v1": "1.0.16",
|
|
10
10
|
"@elliemae/ds-legacy-card-array": "1.0.16",
|
|
11
11
|
"@elliemae/ds-legacy-common": "1.0.16",
|
|
12
|
-
"@elliemae/ds-legacy-datagrids": "1.0.16",
|
|
13
12
|
"@elliemae/ds-legacy-date-picker": "1.0.16",
|
|
14
13
|
"@elliemae/ds-legacy-date-range-picker": "1.0.16",
|
|
15
14
|
"@elliemae/ds-legacy-date-range-selector": "1.0.16",
|
|
@@ -39,155 +38,155 @@
|
|
|
39
38
|
"@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
|
|
40
39
|
"@elliemae/ds-legacy-zipcode-search": "1.0.16",
|
|
41
40
|
"@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-banner": "3.70.0-next.
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-basic": "3.70.0-next.
|
|
49
|
-
"@elliemae/ds-breadcrumb": "3.70.0-next.
|
|
50
|
-
"@elliemae/ds-button-v2": "3.70.0-next.
|
|
51
|
-
"@elliemae/ds-card
|
|
52
|
-
"@elliemae/ds-card-v1
|
|
53
|
-
"@elliemae/ds-card-v1": "3.70.0-next.
|
|
54
|
-
"@elliemae/ds-card": "3.70.0-next.
|
|
55
|
-
"@elliemae/ds-card-v2": "3.70.0-next.
|
|
56
|
-
"@elliemae/ds-card-v2
|
|
57
|
-
"@elliemae/ds-card-v2-
|
|
58
|
-
"@elliemae/ds-card-v3
|
|
59
|
-
"@elliemae/ds-card-v3": "3.70.0-next.
|
|
60
|
-
"@elliemae/ds-chat
|
|
61
|
-
"@elliemae/ds-chat-
|
|
62
|
-
"@elliemae/ds-chat": "3.70.0-next.
|
|
63
|
-
"@elliemae/ds-chat-container": "3.70.0-next.
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-
|
|
66
|
-
"@elliemae/ds-chat-floating-button": "3.70.0-next.
|
|
67
|
-
"@elliemae/ds-chat-message-delimeter": "3.70.0-next.
|
|
68
|
-
"@elliemae/ds-chat-
|
|
69
|
-
"@elliemae/ds-chat-
|
|
70
|
-
"@elliemae/ds-
|
|
71
|
-
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-data-table-
|
|
80
|
-
"@elliemae/ds-data-table-cell": "3.70.0-next.
|
|
81
|
-
"@elliemae/ds-data-table-cell-header": "3.70.0-next.
|
|
82
|
-
"@elliemae/ds-data-table-
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-
|
|
85
|
-
"@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.
|
|
86
|
-
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.
|
|
87
|
-
"@elliemae/ds-dataviz": "3.70.0-next.
|
|
88
|
-
"@elliemae/ds-dataviz
|
|
89
|
-
"@elliemae/ds-date-time-picker": "3.70.0-next.
|
|
90
|
-
"@elliemae/ds-dialog": "3.70.0-next.
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-form-checkbox": "3.70.0-next.
|
|
99
|
-
"@elliemae/ds-form-
|
|
100
|
-
"@elliemae/ds-form-date-range-picker": "3.70.0-next.
|
|
101
|
-
"@elliemae/ds-form-
|
|
102
|
-
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-input-textarea": "3.70.0-next.
|
|
105
|
-
"@elliemae/ds-form-layout-blocks": "3.70.0-next.
|
|
106
|
-
"@elliemae/ds-form-layout-
|
|
107
|
-
"@elliemae/ds-form-layout-
|
|
108
|
-
"@elliemae/ds-form-
|
|
109
|
-
"@elliemae/ds-form-
|
|
110
|
-
"@elliemae/ds-form-native-select": "3.70.0-next.
|
|
111
|
-
"@elliemae/ds-form-
|
|
112
|
-
"@elliemae/ds-form-
|
|
113
|
-
"@elliemae/ds-form-
|
|
114
|
-
"@elliemae/ds-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-grid": "3.70.0-next.
|
|
117
|
-
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.
|
|
118
|
-
"@elliemae/ds-hooks-
|
|
119
|
-
"@elliemae/ds-hooks-
|
|
120
|
-
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.
|
|
121
|
-
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.
|
|
122
|
-
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.
|
|
123
|
-
"@elliemae/ds-hooks-
|
|
124
|
-
"@elliemae/ds-hooks-
|
|
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-
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-icons": "3.70.0-next.
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-
|
|
133
|
-
"@elliemae/ds-
|
|
134
|
-
"@elliemae/ds-menu-button": "3.70.0-next.
|
|
135
|
-
"@elliemae/ds-menu-items": "3.70.0-next.
|
|
136
|
-
"@elliemae/ds-
|
|
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-single": "3.70.0-next.
|
|
142
|
-
"@elliemae/ds-menu-items-
|
|
143
|
-
"@elliemae/ds-menu-items-
|
|
144
|
-
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.
|
|
145
|
-
"@elliemae/ds-menu-
|
|
146
|
-
"@elliemae/ds-menu-
|
|
147
|
-
"@elliemae/ds-mobile": "3.70.0-next.
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-page-header
|
|
152
|
-
"@elliemae/ds-
|
|
153
|
-
"@elliemae/ds-page-header-v2": "3.70.0-next.
|
|
154
|
-
"@elliemae/ds-page-layout": "3.70.0-next.
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-
|
|
162
|
-
"@elliemae/ds-resizeable-container": "3.70.0-next.
|
|
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-slider-v2": "3.70.0-next.
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-system": "3.70.0-next.
|
|
176
|
-
"@elliemae/ds-tabs": "3.70.0-next.
|
|
177
|
-
"@elliemae/ds-test-utils": "3.70.0-next.
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-toolbar-
|
|
180
|
-
"@elliemae/ds-tooltip-v3": "3.70.0-next.
|
|
181
|
-
"@elliemae/ds-
|
|
182
|
-
"@elliemae/ds-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-treeview": "3.70.0-next.
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-
|
|
189
|
-
"@elliemae/ds-zustand-helpers": "3.70.0-next.
|
|
190
|
-
"@elliemae/ds-wizard": "3.70.0-next.
|
|
41
|
+
"@elliemae/ds-accessibility": "3.70.0-next.41",
|
|
42
|
+
"@elliemae/ds-accordion": "3.70.0-next.41",
|
|
43
|
+
"@elliemae/ds-app-picker": "3.70.0-next.41",
|
|
44
|
+
"@elliemae/ds-banner": "3.70.0-next.41",
|
|
45
|
+
"@elliemae/ds-backdrop": "3.70.0-next.41",
|
|
46
|
+
"@elliemae/ds-accordion-native": "3.70.0-next.41",
|
|
47
|
+
"@elliemae/ds-basic": "3.70.0-next.41",
|
|
48
|
+
"@elliemae/ds-breadcrumb": "3.70.0-next.41",
|
|
49
|
+
"@elliemae/ds-button-v2": "3.70.0-next.41",
|
|
50
|
+
"@elliemae/ds-card": "3.70.0-next.41",
|
|
51
|
+
"@elliemae/ds-card-v1": "3.70.0-next.41",
|
|
52
|
+
"@elliemae/ds-card-v1-detail": "3.70.0-next.41",
|
|
53
|
+
"@elliemae/ds-card-navigation": "3.70.0-next.41",
|
|
54
|
+
"@elliemae/ds-card-v2-action-addon": "3.70.0-next.41",
|
|
55
|
+
"@elliemae/ds-card-v2": "3.70.0-next.41",
|
|
56
|
+
"@elliemae/ds-card-v2-group": "3.70.0-next.41",
|
|
57
|
+
"@elliemae/ds-card-v3": "3.70.0-next.41",
|
|
58
|
+
"@elliemae/ds-card-v3-poc": "3.70.0-next.41",
|
|
59
|
+
"@elliemae/ds-chat": "3.70.0-next.41",
|
|
60
|
+
"@elliemae/ds-chat-bubble": "3.70.0-next.41",
|
|
61
|
+
"@elliemae/ds-chat-card": "3.70.0-next.41",
|
|
62
|
+
"@elliemae/ds-chat-container": "3.70.0-next.41",
|
|
63
|
+
"@elliemae/ds-chat-container-header": "3.70.0-next.41",
|
|
64
|
+
"@elliemae/ds-chat-empty-state": "3.70.0-next.41",
|
|
65
|
+
"@elliemae/ds-chat-floating-button": "3.70.0-next.41",
|
|
66
|
+
"@elliemae/ds-chat-message-delimeter": "3.70.0-next.41",
|
|
67
|
+
"@elliemae/ds-chat-system-message": "3.70.0-next.41",
|
|
68
|
+
"@elliemae/ds-chat-sidebar": "3.70.0-next.41",
|
|
69
|
+
"@elliemae/ds-chat-tile": "3.70.0-next.41",
|
|
70
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.41",
|
|
71
|
+
"@elliemae/ds-chip": "3.70.0-next.41",
|
|
72
|
+
"@elliemae/ds-classnames": "3.70.0-next.41",
|
|
73
|
+
"@elliemae/ds-codeeditor": "3.70.0-next.41",
|
|
74
|
+
"@elliemae/ds-comments": "3.70.0-next.41",
|
|
75
|
+
"@elliemae/ds-controlled-form": "3.70.0-next.41",
|
|
76
|
+
"@elliemae/ds-csv-converter": "3.70.0-next.41",
|
|
77
|
+
"@elliemae/ds-data-table": "3.70.0-next.41",
|
|
78
|
+
"@elliemae/ds-data-table-cell": "3.70.0-next.41",
|
|
79
|
+
"@elliemae/ds-data-table-action-cell": "3.70.0-next.41",
|
|
80
|
+
"@elliemae/ds-data-table-cell-header": "3.70.0-next.41",
|
|
81
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.41",
|
|
82
|
+
"@elliemae/ds-data-table-expand-cell": "3.70.0-next.41",
|
|
83
|
+
"@elliemae/ds-data-table-filters": "3.70.0-next.41",
|
|
84
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.41",
|
|
85
|
+
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.41",
|
|
86
|
+
"@elliemae/ds-dataviz-pie": "3.70.0-next.41",
|
|
87
|
+
"@elliemae/ds-dataviz": "3.70.0-next.41",
|
|
88
|
+
"@elliemae/ds-date-time-picker": "3.70.0-next.41",
|
|
89
|
+
"@elliemae/ds-dialog": "3.70.0-next.41",
|
|
90
|
+
"@elliemae/ds-decision-graph": "3.70.0-next.41",
|
|
91
|
+
"@elliemae/ds-dropzone": "3.70.0-next.41",
|
|
92
|
+
"@elliemae/ds-drag-and-drop": "3.70.0-next.41",
|
|
93
|
+
"@elliemae/ds-fast-list": "3.70.0-next.41",
|
|
94
|
+
"@elliemae/ds-floating-context": "3.70.0-next.41",
|
|
95
|
+
"@elliemae/ds-dropdownmenu-v2": "3.70.0-next.41",
|
|
96
|
+
"@elliemae/ds-filter-bar": "3.70.0-next.41",
|
|
97
|
+
"@elliemae/ds-form-checkbox": "3.70.0-next.41",
|
|
98
|
+
"@elliemae/ds-form-date-time-picker": "3.70.0-next.41",
|
|
99
|
+
"@elliemae/ds-form-date-range-picker": "3.70.0-next.41",
|
|
100
|
+
"@elliemae/ds-form-combobox": "3.70.0-next.41",
|
|
101
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.41",
|
|
102
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.41",
|
|
103
|
+
"@elliemae/ds-form-input-textarea": "3.70.0-next.41",
|
|
104
|
+
"@elliemae/ds-form-layout-blocks": "3.70.0-next.41",
|
|
105
|
+
"@elliemae/ds-form-layout-input-group": "3.70.0-next.41",
|
|
106
|
+
"@elliemae/ds-form-layout-autocomplete": "3.70.0-next.41",
|
|
107
|
+
"@elliemae/ds-form-multi-combobox": "3.70.0-next.41",
|
|
108
|
+
"@elliemae/ds-form-layout-label": "3.70.0-next.41",
|
|
109
|
+
"@elliemae/ds-form-native-select": "3.70.0-next.41",
|
|
110
|
+
"@elliemae/ds-form-select": "3.70.0-next.41",
|
|
111
|
+
"@elliemae/ds-form-single-combobox": "3.70.0-next.41",
|
|
112
|
+
"@elliemae/ds-form-radio": "3.70.0-next.41",
|
|
113
|
+
"@elliemae/ds-global-header": "3.70.0-next.41",
|
|
114
|
+
"@elliemae/ds-form-toggle": "3.70.0-next.41",
|
|
115
|
+
"@elliemae/ds-grid": "3.70.0-next.41",
|
|
116
|
+
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.41",
|
|
117
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.41",
|
|
118
|
+
"@elliemae/ds-hooks-focus-trap": "3.70.0-next.41",
|
|
119
|
+
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.41",
|
|
120
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.41",
|
|
121
|
+
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.41",
|
|
122
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.41",
|
|
123
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.41",
|
|
124
|
+
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.41",
|
|
125
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.41",
|
|
126
|
+
"@elliemae/ds-icon": "3.70.0-next.41",
|
|
127
|
+
"@elliemae/ds-image": "3.70.0-next.41",
|
|
128
|
+
"@elliemae/ds-icons": "3.70.0-next.41",
|
|
129
|
+
"@elliemae/ds-layout-provider": "3.70.0-next.41",
|
|
130
|
+
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.41",
|
|
131
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.41",
|
|
132
|
+
"@elliemae/ds-loading-indicator": "3.70.0-next.41",
|
|
133
|
+
"@elliemae/ds-menu-button": "3.70.0-next.41",
|
|
134
|
+
"@elliemae/ds-menu-items": "3.70.0-next.41",
|
|
135
|
+
"@elliemae/ds-left-navigation": "3.70.0-next.41",
|
|
136
|
+
"@elliemae/ds-menu-items-action": "3.70.0-next.41",
|
|
137
|
+
"@elliemae/ds-menu-items-commons": "3.70.0-next.41",
|
|
138
|
+
"@elliemae/ds-menu-items-multi": "3.70.0-next.41",
|
|
139
|
+
"@elliemae/ds-menu-items-section": "3.70.0-next.41",
|
|
140
|
+
"@elliemae/ds-menu-items-single": "3.70.0-next.41",
|
|
141
|
+
"@elliemae/ds-menu-items-separator": "3.70.0-next.41",
|
|
142
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.41",
|
|
143
|
+
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.41",
|
|
144
|
+
"@elliemae/ds-menu-tree-item": "3.70.0-next.41",
|
|
145
|
+
"@elliemae/ds-menu-items-submenu": "3.70.0-next.41",
|
|
146
|
+
"@elliemae/ds-mobile": "3.70.0-next.41",
|
|
147
|
+
"@elliemae/ds-notification-badge": "3.70.0-next.41",
|
|
148
|
+
"@elliemae/ds-modal-slide": "3.70.0-next.41",
|
|
149
|
+
"@elliemae/ds-overlay": "3.70.0-next.41",
|
|
150
|
+
"@elliemae/ds-page-header": "3.70.0-next.41",
|
|
151
|
+
"@elliemae/ds-page-header-v1": "3.70.0-next.41",
|
|
152
|
+
"@elliemae/ds-page-header-v2": "3.70.0-next.41",
|
|
153
|
+
"@elliemae/ds-page-layout": "3.70.0-next.41",
|
|
154
|
+
"@elliemae/ds-pills-v2": "3.70.0-next.41",
|
|
155
|
+
"@elliemae/ds-portal": "3.70.0-next.41",
|
|
156
|
+
"@elliemae/ds-pagination": "3.70.0-next.41",
|
|
157
|
+
"@elliemae/ds-progress-indicator": "3.70.0-next.41",
|
|
158
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.41",
|
|
159
|
+
"@elliemae/ds-query-builder": "3.70.0-next.41",
|
|
160
|
+
"@elliemae/ds-read-more": "3.70.0-next.41",
|
|
161
|
+
"@elliemae/ds-resizeable-container": "3.70.0-next.41",
|
|
162
|
+
"@elliemae/ds-ribbon": "3.70.0-next.41",
|
|
163
|
+
"@elliemae/ds-scrollable-container": "3.70.0-next.41",
|
|
164
|
+
"@elliemae/ds-separator": "3.70.0-next.41",
|
|
165
|
+
"@elliemae/ds-shared": "3.70.0-next.41",
|
|
166
|
+
"@elliemae/ds-shuttle-v2": "3.70.0-next.41",
|
|
167
|
+
"@elliemae/ds-side-panel": "3.70.0-next.41",
|
|
168
|
+
"@elliemae/ds-side-panel-header": "3.70.0-next.41",
|
|
169
|
+
"@elliemae/ds-skeleton": "3.70.0-next.41",
|
|
170
|
+
"@elliemae/ds-slider-v2": "3.70.0-next.41",
|
|
171
|
+
"@elliemae/ds-square-indicator": "3.70.0-next.41",
|
|
172
|
+
"@elliemae/ds-stepper": "3.70.0-next.41",
|
|
173
|
+
"@elliemae/ds-svg": "3.70.0-next.41",
|
|
174
|
+
"@elliemae/ds-system": "3.70.0-next.41",
|
|
175
|
+
"@elliemae/ds-tabs": "3.70.0-next.41",
|
|
176
|
+
"@elliemae/ds-test-utils": "3.70.0-next.41",
|
|
177
|
+
"@elliemae/ds-toolbar-v1": "3.70.0-next.41",
|
|
178
|
+
"@elliemae/ds-toolbar-v2": "3.70.0-next.41",
|
|
179
|
+
"@elliemae/ds-tooltip-v3": "3.70.0-next.41",
|
|
180
|
+
"@elliemae/ds-toast": "3.70.0-next.41",
|
|
181
|
+
"@elliemae/ds-transition": "3.70.0-next.41",
|
|
182
|
+
"@elliemae/ds-tree-model": "3.70.0-next.41",
|
|
183
|
+
"@elliemae/ds-treeview": "3.70.0-next.41",
|
|
184
|
+
"@elliemae/ds-truncated-expandable-text": "3.70.0-next.41",
|
|
185
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.41",
|
|
186
|
+
"@elliemae/ds-typography": "3.70.0-next.41",
|
|
187
|
+
"@elliemae/ds-virtual-list": "3.70.0-next.41",
|
|
188
|
+
"@elliemae/ds-zustand-helpers": "3.70.0-next.41",
|
|
189
|
+
"@elliemae/ds-wizard": "3.70.0-next.41"
|
|
191
190
|
},
|
|
192
191
|
"publishConfig": {
|
|
193
192
|
"access": "public"
|