dimsum-e2e-tests 3.70.0-next.72 → 3.70.0-next.73
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-global-header/GlobalHeaderCO.js +27 -1
- package/ds-global-header/app-picker-element-ids/GlobalHeader.app-picker-element-ids.func.spec.js +84 -0
- package/ds-global-header/search-toggle-slots/GlobalHeader.search-toggle-slots.func.spec.js +10 -8
- package/package.json +149 -149
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.73 (2026-09-03)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- dimsum:: ds-global-header e2e for the search-toggle testid revert and app-picker element ids [PUI-18985](https://jira.elliemae.io/browse/PUI-18985) ([#8356](https://github.com/intcx/PLATFORM-UI.dimsum/issues/8356)) ([c6aa4d5](https://github.com/intcx/PLATFORM-UI.dimsum/commit/c6aa4d50b9f3b53c19924e18552b33b388cc954a))
|
|
11
|
+
|
|
6
12
|
## 3.70.0-next.72 (2026-09-02)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -153,6 +153,32 @@ export default class GlobalHeader extends PageObject {
|
|
|
153
153
|
return $('[data-testid="pui18647-gh-apppicker-trigger-component"]');
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
+
// PUI-18985 selectors
|
|
157
|
+
|
|
158
|
+
// The out-of-the-box trigger the item renders when it supplies no custom one. Anchored on the
|
|
159
|
+
// accessible name, not on the testid alone: `gh-toolbar-item` is shared by every toolbar item type.
|
|
160
|
+
static async getAppPickerDefaultTrigger() {
|
|
161
|
+
return $('[data-testid="gh-toolbar-item"][aria-label="Apps"]');
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Elements carrying a given id. Returned as a collection rather than a single element so a caller
|
|
165
|
+
// can assert BOTH that a reference resolves and that it resolves exactly once — an id present twice
|
|
166
|
+
// is a broken document, and `getElementById`/`querySelector`/every `aria-*` reference would
|
|
167
|
+
// silently take the first match and hide it.
|
|
168
|
+
static async getElementsById(id) {
|
|
169
|
+
return $$(`[id="${id}"]`);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// Every duplicated id in the page. Read across the whole document rather than probed id by id: the
|
|
173
|
+
// defect this guards against emitted one extra id as a side effect of being given one, so the
|
|
174
|
+
// assertion has to be able to see ids the test never named.
|
|
175
|
+
static async getDuplicateElementIds() {
|
|
176
|
+
return browser.execute(() => {
|
|
177
|
+
const ids = Array.from(document.querySelectorAll('[id]'), (node) => node.id);
|
|
178
|
+
return [...new Set(ids.filter((id, index) => ids.indexOf(id) !== index))];
|
|
179
|
+
});
|
|
180
|
+
}
|
|
181
|
+
|
|
156
182
|
// The popup-menu item's own root. Before PUI-18647 this element was an unstyled wrapper with no
|
|
157
183
|
// slot and no data-testid, so the item as a whole had no injection point.
|
|
158
184
|
static async getPopupMenuContainer() {
|
|
@@ -170,7 +196,7 @@ export default class GlobalHeader extends PageObject {
|
|
|
170
196
|
// The search-toggle item's root container. Item-level global attributes land HERE for this item
|
|
171
197
|
// type, not on the trigger button as with the sibling types.
|
|
172
198
|
static async getSearchToggleContainer() {
|
|
173
|
-
return $('[data-testid="ds-
|
|
199
|
+
return $('[data-testid="ds-global-header-menubar-item-searchtoggle-container"]');
|
|
174
200
|
}
|
|
175
201
|
|
|
176
202
|
static async getSearchTogglePrevButton() {
|
package/ds-global-header/app-picker-element-ids/GlobalHeader.app-picker-element-ids.func.spec.js
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import DSAppPickerCO from '../../ds-apppicker/DSAppPickerCO';
|
|
2
|
+
import GlobalHeaderCO from '../GlobalHeaderCO';
|
|
3
|
+
|
|
4
|
+
// Tests for the fix in PUI-18985. With the app picker expanded from the toolbar, axe reported
|
|
5
|
+
// `aria-dialog-name` (serious): the panel is a `role="dialog"` whose `aria-labelledby` pointed at a
|
|
6
|
+
// generated trigger id while the trigger itself carried the bare item id — a reference to no element,
|
|
7
|
+
// so the dialog had no accessible name at all.
|
|
8
|
+
//
|
|
9
|
+
// The cause was in DSAppPicker rather than the header. The item `id` rode along in the item-level
|
|
10
|
+
// global attributes and was spread onto the trigger AFTER the id DSAppPicker had supplied, which both
|
|
11
|
+
// broke the reference and emitted the same id twice. DSAppPicker now owns every id in the widget and
|
|
12
|
+
// derives them all from one value, and GlobalHeader hands the item id over through that route only.
|
|
13
|
+
//
|
|
14
|
+
// What QA has to know: the consumer's bare id moved OFF the trigger and ONTO the picker root. Suites
|
|
15
|
+
// that selected the trigger by the bare item id migrate to `getIdForAppPickerTrigger(id)`, exported by
|
|
16
|
+
// ds-app-picker. The suffix VALUES are pinned once, in that package's own unit tests, which is what
|
|
17
|
+
// keeps them renameable without breaking consumers — so this spec asserts the WIRING: that root,
|
|
18
|
+
// trigger and dialog agree, and that the reference resolves.
|
|
19
|
+
//
|
|
20
|
+
// The axe scan is deliberately not repeated here. PUI-12445 test 02 already scans this same story with
|
|
21
|
+
// the panel open, and it is the test that detected the violation.
|
|
22
|
+
//
|
|
23
|
+
// Chrome only: ids and aria-* attributes are identical in every engine. The `|| 'Chrome'` arm is
|
|
24
|
+
// mandatory (BrowserStack capitalises browserName; a lowercase-only guard registers zero tests and
|
|
25
|
+
// still exits 0).
|
|
26
|
+
if (
|
|
27
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
28
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
29
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
30
|
+
browser.capabilities.browserName === 'Chrome'
|
|
31
|
+
) {
|
|
32
|
+
describe('PUI-19156 - GlobalHeader:: app-picker element ids and dialog accessible name - Func', () => {
|
|
33
|
+
// The story's app-picker toolbar item declares `id: 'app-picker'`. Every id below is derived from
|
|
34
|
+
// it, which is the whole point: one value in, a predictable family out.
|
|
35
|
+
const ITEM_ID = 'app-picker';
|
|
36
|
+
const TRIGGER_ID = `${ITEM_ID}-dialog-trigger-btn`;
|
|
37
|
+
|
|
38
|
+
before('loading page', async () => {
|
|
39
|
+
const errorOnGo = await GlobalHeaderCO.basicTestURL.go();
|
|
40
|
+
if (errorOnGo) throw errorOnGo;
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('01: should suffix the trigger id and keep the bare item id off it', async () => {
|
|
44
|
+
const trigger = await GlobalHeaderCO.getAppPickerDefaultTrigger();
|
|
45
|
+
await trigger.waitForDisplayed();
|
|
46
|
+
|
|
47
|
+
// The breaking half for QA: the bare item id used to land here.
|
|
48
|
+
await expect(trigger).toHaveAttribute('id', TRIGGER_ID);
|
|
49
|
+
await expect((await GlobalHeaderCO.getElementsById(ITEM_ID)).length).toBe(0);
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
it('02: should land the bare id on the root and name the dialog from the trigger', async () => {
|
|
53
|
+
await (await GlobalHeaderCO.getAppPickerDefaultTrigger()).click();
|
|
54
|
+
const root = await DSAppPickerCO.getAppPickerRoot();
|
|
55
|
+
await root.waitForDisplayed();
|
|
56
|
+
|
|
57
|
+
// The consumer's own value, unchanged, on the root — and nowhere else.
|
|
58
|
+
await expect(root).toHaveAttribute('id', ITEM_ID);
|
|
59
|
+
await expect((await GlobalHeaderCO.getElementsById(ITEM_ID)).length).toBe(1);
|
|
60
|
+
|
|
61
|
+
// The assertion the defect turns on: the reference has to RESOLVE. Reading the attribute's
|
|
62
|
+
// value alone would have passed happily while it pointed at nothing.
|
|
63
|
+
const dialog = await DSAppPickerCO.getFloatingWrapper();
|
|
64
|
+
await expect(dialog).toHaveAttribute('role', 'dialog');
|
|
65
|
+
await expect(dialog).toHaveAttribute('aria-labelledby', TRIGGER_ID);
|
|
66
|
+
await expect((await GlobalHeaderCO.getElementsById(TRIGGER_ID)).length).toBe(1);
|
|
67
|
+
|
|
68
|
+
// Both section headings are derived the same way and label their own group, so the assertion
|
|
69
|
+
// covers the whole id family rather than just the one the violation named.
|
|
70
|
+
const titleIds = await DSAppPickerCO.collect(await DSAppPickerCO.getTitles(), (title) =>
|
|
71
|
+
title.getAttribute('id'),
|
|
72
|
+
);
|
|
73
|
+
await expect(titleIds).toEqual([`${ITEM_ID}-section-title`, `${ITEM_ID}-custom-section-title`]);
|
|
74
|
+
|
|
75
|
+
const groupLabels = await DSAppPickerCO.collect(await DSAppPickerCO.getGroups(), (group) =>
|
|
76
|
+
group.getAttribute('aria-labelledby'),
|
|
77
|
+
);
|
|
78
|
+
await expect(groupLabels).toEqual(titleIds);
|
|
79
|
+
|
|
80
|
+
// The other half of the fix: handing the picker an id used to emit that id twice.
|
|
81
|
+
await expect(await GlobalHeaderCO.getDuplicateElementIds()).toEqual([]);
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
}
|
|
@@ -7,11 +7,13 @@ import { type } from '../../helpers';
|
|
|
7
7
|
// - (NEW) item-level attributes now land on the item's ROOT CONTAINER, not on the trigger button as
|
|
8
8
|
// with the sibling item types. The type declared that surface on its configuration type and
|
|
9
9
|
// forwarded none of it, so data-public on a search-toggle entry appeared nowhere.
|
|
10
|
-
// - (
|
|
11
|
-
//
|
|
12
|
-
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
10
|
+
// - (NOT a rename, after all) that container's data-testid briefly became the auto-generated
|
|
11
|
+
// post-convention `ds-globalheader-...` spelling, because commit 295f110651c dropped its legacy
|
|
12
|
+
// override in constants/index.ts. This spec asserted that value and flagged the change, which is
|
|
13
|
+
// what raised PUI-19020; the override was then restored as a non-breaking-change obligation. The
|
|
14
|
+
// legacy `ds-global-header-menubar-item-searchtoggle-container` is the frozen expectation, and the
|
|
15
|
+
// element itself never changed through any of it — note the slot name below is identical either
|
|
16
|
+
// way, which is precisely why only the identifier needed defending.
|
|
15
17
|
// - (BREAKING) the two spinbutton result-navigation identifiers were INVERTED: the control that
|
|
16
18
|
// triggered NEXT was slotted as PREVIOUS and vice versa. The accessible names were always right,
|
|
17
19
|
// so testid and accessible name now agree. This is the one breaking change for QA here.
|
|
@@ -39,7 +41,7 @@ if (
|
|
|
39
41
|
await expect(container).toHaveAttribute('data-dimsum-slot', 'dsGlobalheaderMenubarItemSearchtoggleContainer');
|
|
40
42
|
|
|
41
43
|
const publicTestIds = await GlobalHeaderCO.getPublicNodeTestIds();
|
|
42
|
-
await expect(publicTestIds).toEqual(['ds-
|
|
44
|
+
await expect(publicTestIds).toEqual(['ds-global-header-menubar-item-searchtoggle-container', 'gh-toolbar-item']);
|
|
43
45
|
|
|
44
46
|
const dsTypedFlag = await GlobalHeaderCO.getDsTypedItemExistFlag();
|
|
45
47
|
await expect(dsTypedFlag).toHaveText('No');
|
|
@@ -51,7 +53,7 @@ if (
|
|
|
51
53
|
|
|
52
54
|
const publicTestIds = await GlobalHeaderCO.getPublicNodeTestIds();
|
|
53
55
|
await expect(publicTestIds).toEqual([
|
|
54
|
-
'ds-
|
|
56
|
+
'ds-global-header-menubar-item-searchtoggle-container',
|
|
55
57
|
'gh-toolbar-item',
|
|
56
58
|
'ds-globalheader-searchtoggle-expanded-content-wrapper',
|
|
57
59
|
'ds-globalheader-searchtoggle-textinput',
|
|
@@ -112,7 +114,7 @@ if (
|
|
|
112
114
|
const lastMatch = await GlobalHeaderCO.getSearchableRowByIndex(4);
|
|
113
115
|
await expect(await GlobalHeaderCO.isRowHighlighted(lastMatch)).toBe(false);
|
|
114
116
|
const publicTestIds = await GlobalHeaderCO.getPublicNodeTestIds();
|
|
115
|
-
await expect(publicTestIds).toEqual(['ds-
|
|
117
|
+
await expect(publicTestIds).toEqual(['ds-global-header-menubar-item-searchtoggle-container', 'gh-toolbar-item']);
|
|
116
118
|
});
|
|
117
119
|
});
|
|
118
120
|
}
|
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.73",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elliemae/ds-legacy-button": "1.0.16",
|
|
@@ -38,154 +38,154 @@
|
|
|
38
38
|
"@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
|
|
39
39
|
"@elliemae/ds-legacy-zipcode-search": "1.0.16",
|
|
40
40
|
"@elliemae/ds-legacy-zoom": "1.0.16",
|
|
41
|
-
"@elliemae/ds-
|
|
42
|
-
"@elliemae/ds-backdrop": "3.70.0-next.
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-basic": "3.70.0-next.
|
|
47
|
-
"@elliemae/ds-button-v2": "3.70.0-next.
|
|
48
|
-
"@elliemae/ds-breadcrumb": "3.70.0-next.
|
|
49
|
-
"@elliemae/ds-card": "3.70.0-next.
|
|
50
|
-
"@elliemae/ds-card-v1": "3.70.0-next.
|
|
51
|
-
"@elliemae/ds-card-v1-detail": "3.70.0-next.
|
|
52
|
-
"@elliemae/ds-card-
|
|
53
|
-
"@elliemae/ds-card-v2-
|
|
54
|
-
"@elliemae/ds-card-
|
|
55
|
-
"@elliemae/ds-card-
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-
|
|
59
|
-
"@elliemae/ds-chat-
|
|
60
|
-
"@elliemae/ds-chat-
|
|
61
|
-
"@elliemae/ds-chat-container
|
|
62
|
-
"@elliemae/ds-chat-
|
|
63
|
-
"@elliemae/ds-chat-
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-
|
|
66
|
-
"@elliemae/ds-chat-
|
|
67
|
-
"@elliemae/ds-chat-
|
|
68
|
-
"@elliemae/ds-
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-comments": "3.70.0-next.
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-data-table-cell-header": "3.70.0-next.
|
|
79
|
-
"@elliemae/ds-data-table-cell": "3.70.0-next.
|
|
80
|
-
"@elliemae/ds-data-table-
|
|
81
|
-
"@elliemae/ds-data-table-
|
|
82
|
-
"@elliemae/ds-data-table-
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-
|
|
85
|
-
"@elliemae/ds-
|
|
86
|
-
"@elliemae/ds-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-decision-graph": "3.70.0-next.
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-form-
|
|
97
|
-
"@elliemae/ds-form-
|
|
98
|
-
"@elliemae/ds-form-
|
|
99
|
-
"@elliemae/ds-form-
|
|
100
|
-
"@elliemae/ds-form-
|
|
101
|
-
"@elliemae/ds-form-
|
|
102
|
-
"@elliemae/ds-form-
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-
|
|
105
|
-
"@elliemae/ds-form-layout-
|
|
106
|
-
"@elliemae/ds-form-
|
|
107
|
-
"@elliemae/ds-form-radio": "3.70.0-next.
|
|
108
|
-
"@elliemae/ds-form-
|
|
109
|
-
"@elliemae/ds-form-select": "3.70.0-next.
|
|
110
|
-
"@elliemae/ds-form-
|
|
111
|
-
"@elliemae/ds-
|
|
112
|
-
"@elliemae/ds-
|
|
113
|
-
"@elliemae/ds-
|
|
114
|
-
"@elliemae/ds-hooks-focus-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-hooks-
|
|
117
|
-
"@elliemae/ds-hooks-
|
|
118
|
-
"@elliemae/ds-hooks-
|
|
119
|
-
"@elliemae/ds-hooks-
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-
|
|
122
|
-
"@elliemae/ds-
|
|
123
|
-
"@elliemae/ds-hooks-
|
|
124
|
-
"@elliemae/ds-
|
|
125
|
-
"@elliemae/ds-
|
|
126
|
-
"@elliemae/ds-
|
|
127
|
-
"@elliemae/ds-
|
|
128
|
-
"@elliemae/ds-
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-
|
|
133
|
-
"@elliemae/ds-menu-
|
|
134
|
-
"@elliemae/ds-menu-items-
|
|
135
|
-
"@elliemae/ds-menu-items
|
|
136
|
-
"@elliemae/ds-menu-items-
|
|
137
|
-
"@elliemae/ds-menu-items-separator": "3.70.0-next.
|
|
138
|
-
"@elliemae/ds-menu-items-section": "3.70.0-next.
|
|
139
|
-
"@elliemae/ds-menu-items-
|
|
140
|
-
"@elliemae/ds-menu-items-
|
|
141
|
-
"@elliemae/ds-menu-
|
|
142
|
-
"@elliemae/ds-menu-items-
|
|
143
|
-
"@elliemae/ds-
|
|
144
|
-
"@elliemae/ds-
|
|
145
|
-
"@elliemae/ds-
|
|
146
|
-
"@elliemae/ds-
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-
|
|
152
|
-
"@elliemae/ds-
|
|
153
|
-
"@elliemae/ds-
|
|
154
|
-
"@elliemae/ds-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-
|
|
162
|
-
"@elliemae/ds-separator": "3.70.0-next.
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-shuttle-v2": "3.70.0-next.
|
|
165
|
-
"@elliemae/ds-
|
|
166
|
-
"@elliemae/ds-side-panel
|
|
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-toast": "3.70.0-next.
|
|
176
|
-
"@elliemae/ds-
|
|
177
|
-
"@elliemae/ds-
|
|
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-
|
|
187
|
-
"@elliemae/ds-wizard": "3.70.0-next.
|
|
188
|
-
"@elliemae/ds-
|
|
41
|
+
"@elliemae/ds-app-picker": "3.70.0-next.73",
|
|
42
|
+
"@elliemae/ds-backdrop": "3.70.0-next.73",
|
|
43
|
+
"@elliemae/ds-accessibility": "3.70.0-next.73",
|
|
44
|
+
"@elliemae/ds-accordion": "3.70.0-next.73",
|
|
45
|
+
"@elliemae/ds-banner": "3.70.0-next.73",
|
|
46
|
+
"@elliemae/ds-basic": "3.70.0-next.73",
|
|
47
|
+
"@elliemae/ds-button-v2": "3.70.0-next.73",
|
|
48
|
+
"@elliemae/ds-breadcrumb": "3.70.0-next.73",
|
|
49
|
+
"@elliemae/ds-card": "3.70.0-next.73",
|
|
50
|
+
"@elliemae/ds-card-v1": "3.70.0-next.73",
|
|
51
|
+
"@elliemae/ds-card-v1-detail": "3.70.0-next.73",
|
|
52
|
+
"@elliemae/ds-card-navigation": "3.70.0-next.73",
|
|
53
|
+
"@elliemae/ds-card-v2-action-addon": "3.70.0-next.73",
|
|
54
|
+
"@elliemae/ds-card-v2-group": "3.70.0-next.73",
|
|
55
|
+
"@elliemae/ds-card-v2": "3.70.0-next.73",
|
|
56
|
+
"@elliemae/ds-card-v3-poc": "3.70.0-next.73",
|
|
57
|
+
"@elliemae/ds-card-v3": "3.70.0-next.73",
|
|
58
|
+
"@elliemae/ds-chat": "3.70.0-next.73",
|
|
59
|
+
"@elliemae/ds-chat-bubble": "3.70.0-next.73",
|
|
60
|
+
"@elliemae/ds-chat-card": "3.70.0-next.73",
|
|
61
|
+
"@elliemae/ds-chat-container": "3.70.0-next.73",
|
|
62
|
+
"@elliemae/ds-chat-container-header": "3.70.0-next.73",
|
|
63
|
+
"@elliemae/ds-chat-message-delimeter": "3.70.0-next.73",
|
|
64
|
+
"@elliemae/ds-chat-empty-state": "3.70.0-next.73",
|
|
65
|
+
"@elliemae/ds-chat-floating-button": "3.70.0-next.73",
|
|
66
|
+
"@elliemae/ds-chat-sidebar": "3.70.0-next.73",
|
|
67
|
+
"@elliemae/ds-chat-system-message": "3.70.0-next.73",
|
|
68
|
+
"@elliemae/ds-chat-tile": "3.70.0-next.73",
|
|
69
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.73",
|
|
70
|
+
"@elliemae/ds-chip": "3.70.0-next.73",
|
|
71
|
+
"@elliemae/ds-classnames": "3.70.0-next.73",
|
|
72
|
+
"@elliemae/ds-comments": "3.70.0-next.73",
|
|
73
|
+
"@elliemae/ds-codeeditor": "3.70.0-next.73",
|
|
74
|
+
"@elliemae/ds-controlled-form": "3.70.0-next.73",
|
|
75
|
+
"@elliemae/ds-data-table-action-cell": "3.70.0-next.73",
|
|
76
|
+
"@elliemae/ds-data-table": "3.70.0-next.73",
|
|
77
|
+
"@elliemae/ds-csv-converter": "3.70.0-next.73",
|
|
78
|
+
"@elliemae/ds-data-table-cell-header": "3.70.0-next.73",
|
|
79
|
+
"@elliemae/ds-data-table-cell": "3.70.0-next.73",
|
|
80
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.73",
|
|
81
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.73",
|
|
82
|
+
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.73",
|
|
83
|
+
"@elliemae/ds-data-table-filters": "3.70.0-next.73",
|
|
84
|
+
"@elliemae/ds-dataviz": "3.70.0-next.73",
|
|
85
|
+
"@elliemae/ds-drag-and-drop": "3.70.0-next.73",
|
|
86
|
+
"@elliemae/ds-dataviz-pie": "3.70.0-next.73",
|
|
87
|
+
"@elliemae/ds-data-table-expand-cell": "3.70.0-next.73",
|
|
88
|
+
"@elliemae/ds-date-time-picker": "3.70.0-next.73",
|
|
89
|
+
"@elliemae/ds-dialog": "3.70.0-next.73",
|
|
90
|
+
"@elliemae/ds-decision-graph": "3.70.0-next.73",
|
|
91
|
+
"@elliemae/ds-dropdownmenu-v2": "3.70.0-next.73",
|
|
92
|
+
"@elliemae/ds-fast-list": "3.70.0-next.73",
|
|
93
|
+
"@elliemae/ds-dropzone": "3.70.0-next.73",
|
|
94
|
+
"@elliemae/ds-filter-bar": "3.70.0-next.73",
|
|
95
|
+
"@elliemae/ds-floating-context": "3.70.0-next.73",
|
|
96
|
+
"@elliemae/ds-form-checkbox": "3.70.0-next.73",
|
|
97
|
+
"@elliemae/ds-form-date-range-picker": "3.70.0-next.73",
|
|
98
|
+
"@elliemae/ds-form-combobox": "3.70.0-next.73",
|
|
99
|
+
"@elliemae/ds-form-date-time-picker": "3.70.0-next.73",
|
|
100
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.73",
|
|
101
|
+
"@elliemae/ds-form-input-textarea": "3.70.0-next.73",
|
|
102
|
+
"@elliemae/ds-form-layout-autocomplete": "3.70.0-next.73",
|
|
103
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.73",
|
|
104
|
+
"@elliemae/ds-form-layout-label": "3.70.0-next.73",
|
|
105
|
+
"@elliemae/ds-form-layout-blocks": "3.70.0-next.73",
|
|
106
|
+
"@elliemae/ds-form-multi-combobox": "3.70.0-next.73",
|
|
107
|
+
"@elliemae/ds-form-radio": "3.70.0-next.73",
|
|
108
|
+
"@elliemae/ds-form-layout-input-group": "3.70.0-next.73",
|
|
109
|
+
"@elliemae/ds-form-native-select": "3.70.0-next.73",
|
|
110
|
+
"@elliemae/ds-form-select": "3.70.0-next.73",
|
|
111
|
+
"@elliemae/ds-form-single-combobox": "3.70.0-next.73",
|
|
112
|
+
"@elliemae/ds-form-toggle": "3.70.0-next.73",
|
|
113
|
+
"@elliemae/ds-grid": "3.70.0-next.73",
|
|
114
|
+
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.73",
|
|
115
|
+
"@elliemae/ds-global-header": "3.70.0-next.73",
|
|
116
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.73",
|
|
117
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.73",
|
|
118
|
+
"@elliemae/ds-hooks-focus-trap": "3.70.0-next.73",
|
|
119
|
+
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.73",
|
|
120
|
+
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.73",
|
|
121
|
+
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.73",
|
|
122
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.73",
|
|
123
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.73",
|
|
124
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.73",
|
|
125
|
+
"@elliemae/ds-icon": "3.70.0-next.73",
|
|
126
|
+
"@elliemae/ds-image": "3.70.0-next.73",
|
|
127
|
+
"@elliemae/ds-icons": "3.70.0-next.73",
|
|
128
|
+
"@elliemae/ds-left-navigation": "3.70.0-next.73",
|
|
129
|
+
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.73",
|
|
130
|
+
"@elliemae/ds-layout-provider": "3.70.0-next.73",
|
|
131
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.73",
|
|
132
|
+
"@elliemae/ds-loading-indicator": "3.70.0-next.73",
|
|
133
|
+
"@elliemae/ds-menu-button": "3.70.0-next.73",
|
|
134
|
+
"@elliemae/ds-menu-items-action": "3.70.0-next.73",
|
|
135
|
+
"@elliemae/ds-menu-items": "3.70.0-next.73",
|
|
136
|
+
"@elliemae/ds-menu-items-commons": "3.70.0-next.73",
|
|
137
|
+
"@elliemae/ds-menu-items-separator": "3.70.0-next.73",
|
|
138
|
+
"@elliemae/ds-menu-items-section": "3.70.0-next.73",
|
|
139
|
+
"@elliemae/ds-menu-items-multi": "3.70.0-next.73",
|
|
140
|
+
"@elliemae/ds-menu-items-single": "3.70.0-next.73",
|
|
141
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.73",
|
|
142
|
+
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.73",
|
|
143
|
+
"@elliemae/ds-menu-items-submenu": "3.70.0-next.73",
|
|
144
|
+
"@elliemae/ds-menu-tree-item": "3.70.0-next.73",
|
|
145
|
+
"@elliemae/ds-modal-slide": "3.70.0-next.73",
|
|
146
|
+
"@elliemae/ds-notification-badge": "3.70.0-next.73",
|
|
147
|
+
"@elliemae/ds-mobile": "3.70.0-next.73",
|
|
148
|
+
"@elliemae/ds-overlay": "3.70.0-next.73",
|
|
149
|
+
"@elliemae/ds-page-header": "3.70.0-next.73",
|
|
150
|
+
"@elliemae/ds-page-header-v2": "3.70.0-next.73",
|
|
151
|
+
"@elliemae/ds-page-header-v1": "3.70.0-next.73",
|
|
152
|
+
"@elliemae/ds-portal": "3.70.0-next.73",
|
|
153
|
+
"@elliemae/ds-pagination": "3.70.0-next.73",
|
|
154
|
+
"@elliemae/ds-page-layout": "3.70.0-next.73",
|
|
155
|
+
"@elliemae/ds-progress-indicator": "3.70.0-next.73",
|
|
156
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.73",
|
|
157
|
+
"@elliemae/ds-read-more": "3.70.0-next.73",
|
|
158
|
+
"@elliemae/ds-query-builder": "3.70.0-next.73",
|
|
159
|
+
"@elliemae/ds-resizeable-container": "3.70.0-next.73",
|
|
160
|
+
"@elliemae/ds-ribbon": "3.70.0-next.73",
|
|
161
|
+
"@elliemae/ds-shared": "3.70.0-next.73",
|
|
162
|
+
"@elliemae/ds-separator": "3.70.0-next.73",
|
|
163
|
+
"@elliemae/ds-scrollable-container": "3.70.0-next.73",
|
|
164
|
+
"@elliemae/ds-shuttle-v2": "3.70.0-next.73",
|
|
165
|
+
"@elliemae/ds-side-panel-header": "3.70.0-next.73",
|
|
166
|
+
"@elliemae/ds-side-panel": "3.70.0-next.73",
|
|
167
|
+
"@elliemae/ds-skeleton": "3.70.0-next.73",
|
|
168
|
+
"@elliemae/ds-slider-v2": "3.70.0-next.73",
|
|
169
|
+
"@elliemae/ds-square-indicator": "3.70.0-next.73",
|
|
170
|
+
"@elliemae/ds-svg": "3.70.0-next.73",
|
|
171
|
+
"@elliemae/ds-stepper": "3.70.0-next.73",
|
|
172
|
+
"@elliemae/ds-tabs": "3.70.0-next.73",
|
|
173
|
+
"@elliemae/ds-system": "3.70.0-next.73",
|
|
174
|
+
"@elliemae/ds-toolbar-v1": "3.70.0-next.73",
|
|
175
|
+
"@elliemae/ds-toast": "3.70.0-next.73",
|
|
176
|
+
"@elliemae/ds-toolbar-v2": "3.70.0-next.73",
|
|
177
|
+
"@elliemae/ds-tooltip-v3": "3.70.0-next.73",
|
|
178
|
+
"@elliemae/ds-transition": "3.70.0-next.73",
|
|
179
|
+
"@elliemae/ds-test-utils": "3.70.0-next.73",
|
|
180
|
+
"@elliemae/ds-tree-model": "3.70.0-next.73",
|
|
181
|
+
"@elliemae/ds-treeview": "3.70.0-next.73",
|
|
182
|
+
"@elliemae/ds-typography": "3.70.0-next.73",
|
|
183
|
+
"@elliemae/ds-truncated-expandable-text": "3.70.0-next.73",
|
|
184
|
+
"@elliemae/ds-virtual-list": "3.70.0-next.73",
|
|
185
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.73",
|
|
186
|
+
"@elliemae/ds-zustand-helpers": "3.70.0-next.73",
|
|
187
|
+
"@elliemae/ds-wizard": "3.70.0-next.73",
|
|
188
|
+
"@elliemae/ds-pills-v2": "3.70.0-next.73"
|
|
189
189
|
},
|
|
190
190
|
"publishConfig": {
|
|
191
191
|
"access": "public"
|