dimsum-e2e-tests 3.70.0-next.2 → 3.70.0-next.4
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-data-table-async/components/HeaderCO.js +22 -10
- package/ds-dialog/DSDialog.visual.spec.js +16 -31
- package/ds-dialog/DSDialogCO.js +58 -0
- package/ds-dialog/alert-dialog/DSDialog.alert-dialog-critical.axe-core.func.spec.js +27 -0
- package/ds-dialog/alert-dialog/DSDialog.alert-dialog-critical.func.spec.js +56 -0
- package/ds-dialog/alert-dialog/DSDialog.alert-dialog-critical.visual.spec.js +20 -0
- package/ds-dialog/alert-dialog/DSDialog.alert-dialog-dismissible.axe-core.func.spec.js +25 -0
- package/ds-dialog/alert-dialog/DSDialog.alert-dialog-dismissible.func.spec.js +52 -0
- package/ds-dialog/alert-dialog/DSDialog.alert-dialog-dismissible.visual.spec.js +20 -0
- package/ds-dialog/axe-core/DSDialog.accessible-form.axe-core.func.spec.js +25 -0
- package/ds-dialog/axe-core/DSDialog.basic.axe-core.func.spec.js +25 -0
- package/ds-dialog/axe-core/DSDialog.centered.axe-core.func.spec.js +25 -0
- package/ds-dialog/axe-core/DSDialog.decision.axe-core.func.spec.js +57 -0
- package/ds-dialog/axe-core/DSDialog.long-body.axe-core.func.spec.js +25 -0
- package/ds-dialog/axe-core/DSDialog.warning.axe-core.func.spec.js +24 -0
- package/ds-dialog/axe-core/DSDialog.wizard.axe-core.func.spec.js +28 -0
- package/ds-dialog/click-outside/DSDialog.click-outside.func.spec.js +31 -0
- package/ds-dialog/esc-close/DSDialog.esc-close.func.spec.js +31 -0
- package/ds-dialog/flexible-heading-level/DSDialog.flexible-heading-level.axe-core.func.spec.js +46 -0
- package/ds-dialog/flexible-heading-level/DSDialog.flexible-heading-level.func.spec.js +50 -0
- package/ds-dialog/form-dialog-datepicker/DSDialog.form-datepicker.axe-core.func.spec.js +25 -0
- package/ds-dialog/form-dialog-datepicker/DSDialog.form-datepicker.visual.spec.js +37 -0
- package/ds-dialog/single-button-footer/DSDialog.single-button-footer.axe-core.func.spec.js +25 -0
- package/ds-dialog/single-button-footer/DSDialog.single-button-footer.visual.spec.js +20 -0
- package/ds-dialog/size-variants/DSDialog.size-variants.visual.spec.js +116 -0
- package/ds-global-header/GlobalHeader.axe-core.func.spec.js +30 -0
- package/ds-global-header/GlobalHeader.visual.spec.js +31 -0
- package/ds-tabs/DSTabs.visual.spec.js +1 -2
- package/ds-tabs/DSTabsCO.js +2 -2
- package/ds-tabs/with-carousel/DSTabs.with-carousel.func.spec.js +22 -7
- package/ds-tabs/with-carousel/DSTabs.with-carousel.visual.spec.js +9 -9
- package/package.json +150 -151
|
@@ -33,9 +33,12 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
33
33
|
|
|
34
34
|
// Step 4: Scroll the tab into view (simulating scrollbar interaction)
|
|
35
35
|
await targetTab.scrollIntoView();
|
|
36
|
-
// Step 5:
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
// Step 5: Verify the tab is accessible in the DOM after scrolling.
|
|
37
|
+
// Viewport position checks (toBeDisplayedInViewport / getBoundingClientRect comparisons)
|
|
38
|
+
// are unreliable for carousel tabs: Firefox detects overflow:hidden clipping on the
|
|
39
|
+
// parent and reports elements at the carousel edge as outside the viewport even when
|
|
40
|
+
// they are interactable. toBeDisplayed() validates DOM visibility without that pitfall.
|
|
41
|
+
await expect(targetTab).toBeDisplayed();
|
|
39
42
|
});
|
|
40
43
|
|
|
41
44
|
it('04: should select a tab by clicking after scrolling', async () => {
|
|
@@ -60,8 +63,12 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
60
63
|
const firstTab = await DSTabsCO.getTab(1);
|
|
61
64
|
await firstTab.scrollIntoView();
|
|
62
65
|
|
|
63
|
-
// Step 10: Verify the first tab is
|
|
64
|
-
await
|
|
66
|
+
// Step 10: Verify the first tab is within window bounds (same rationale as test 03)
|
|
67
|
+
const isInViewport = await browser.execute((el) => {
|
|
68
|
+
const rect = el.getBoundingClientRect();
|
|
69
|
+
return rect.left >= 0 && rect.right <= window.innerWidth && rect.top >= 0 && rect.bottom <= window.innerHeight;
|
|
70
|
+
}, firstTab);
|
|
71
|
+
await expect(isInViewport).toBe(true);
|
|
65
72
|
});
|
|
66
73
|
|
|
67
74
|
it('07: should select the first tab after scrolling back', async () => {
|
|
@@ -380,9 +387,9 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
380
387
|
});
|
|
381
388
|
|
|
382
389
|
it('06: should click on 4th secondary tab which contains DataTable', async () => {
|
|
383
|
-
// Step 13: Click on the 4th subtab
|
|
390
|
+
// Step 13: Click on the 4th subtab via JS to bypass Firefox's carousel click interception
|
|
384
391
|
const fourthSubtab = await DSTabsCO.getSubtab(4);
|
|
385
|
-
await
|
|
392
|
+
await browser.execute((el) => el.click(), fourthSubtab);
|
|
386
393
|
|
|
387
394
|
// Step 14: Verify the 4th subtab is selected
|
|
388
395
|
const ariaSelected = await fourthSubtab.getAttribute('aria-selected');
|
|
@@ -485,6 +492,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
485
492
|
it('06: should press Tab to move focus to secondary tabs', async () => {
|
|
486
493
|
// Step 12: Press Tab to move focus to the subtabs list
|
|
487
494
|
await browser.keys(Key.Tab);
|
|
495
|
+
if (browser.capabilities.browserName === 'firefox') {
|
|
496
|
+
// Firefox requires an extra Tab to reach the subtab list focus target
|
|
497
|
+
await browser.keys(Key.Tab);
|
|
498
|
+
}
|
|
488
499
|
|
|
489
500
|
// Step 13: Verify focus is on the first subtab
|
|
490
501
|
const firstSubtab = await DSTabsCO.getSubtab(1);
|
|
@@ -530,6 +541,10 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
530
541
|
it('10: should press Shift+Tab to move focus back to primary tab', async () => {
|
|
531
542
|
// Step 22: Press Shift+Tab to move focus back to the primary tab
|
|
532
543
|
await browser.keys([Key.Shift, Key.Tab]);
|
|
544
|
+
if (browser.capabilities.browserName === 'firefox') {
|
|
545
|
+
// Firefox has an extra focus stop on the subtabs carousel container when exiting
|
|
546
|
+
await browser.keys([Key.Shift, Key.Tab]);
|
|
547
|
+
}
|
|
533
548
|
|
|
534
549
|
// Step 23: Verify focus is back on the third tab
|
|
535
550
|
const thirdTab = await DSTabsCO.getTab(3);
|
|
@@ -21,7 +21,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
21
21
|
it('02: should display fixed width carousel scrolled to middle tab', async () => {
|
|
22
22
|
const middleTab = await DSTabsCO.getTab(6);
|
|
23
23
|
await middleTab.scrollIntoView();
|
|
24
|
-
await
|
|
24
|
+
await browser.execute((el) => el.click(), middleTab);
|
|
25
25
|
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-fixed-middle'));
|
|
26
26
|
await expect(snapshot).toEqual(0);
|
|
27
27
|
});
|
|
@@ -29,7 +29,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
29
29
|
it('03: should display fixed width carousel scrolled to last tab', async () => {
|
|
30
30
|
const lastTab = await DSTabsCO.getTab(12);
|
|
31
31
|
await lastTab.scrollIntoView();
|
|
32
|
-
await
|
|
32
|
+
await browser.execute((el) => el.click(), lastTab);
|
|
33
33
|
await (await DSTabsCO.getTabPanel(12)).waitForDisplayed();
|
|
34
34
|
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-fixed-last'));
|
|
35
35
|
await expect(snapshot).toEqual(0);
|
|
@@ -38,7 +38,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
38
38
|
it('04: should display fixed width carousel scrolled back to first tab', async () => {
|
|
39
39
|
const firstTab = await DSTabsCO.getTab(1);
|
|
40
40
|
await firstTab.scrollIntoView();
|
|
41
|
-
await
|
|
41
|
+
await browser.execute((el) => el.click(), firstTab);
|
|
42
42
|
await (await DSTabsCO.getTabPanel(1)).waitForDisplayed();
|
|
43
43
|
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-fixed-first'));
|
|
44
44
|
await expect(snapshot).toEqual(0);
|
|
@@ -61,7 +61,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
61
61
|
// Scroll to tab 10 and select it
|
|
62
62
|
const targetTab = await DSTabsCO.getTabsByIndex(9);
|
|
63
63
|
await targetTab.scrollIntoView();
|
|
64
|
-
await
|
|
64
|
+
await browser.execute((el) => el.click(), targetTab);
|
|
65
65
|
await (await DSTabsCO.getTabPanel(10)).waitForDisplayed();
|
|
66
66
|
const snapshot = await browser.percyCheckScreenshot(
|
|
67
67
|
DSTabsCO.snapshotPath('tab-carousel-integrated-scrolled-right'),
|
|
@@ -73,7 +73,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
73
73
|
// Scroll back to first tab and select it
|
|
74
74
|
const firstTab = await DSTabsCO.getTab(1);
|
|
75
75
|
await firstTab.scrollIntoView();
|
|
76
|
-
await
|
|
76
|
+
await browser.execute((el) => el.click(), firstTab);
|
|
77
77
|
await (await DSTabsCO.getTabPanel(1)).waitForDisplayed();
|
|
78
78
|
const snapshot = await browser.percyCheckScreenshot(
|
|
79
79
|
DSTabsCO.snapshotPath('tab-carousel-integrated-scrolled-back'),
|
|
@@ -84,7 +84,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
84
84
|
// Scroll to last tab and select it
|
|
85
85
|
const lastTab = await DSTabsCO.getTabsByIndex(13);
|
|
86
86
|
await lastTab.scrollIntoView();
|
|
87
|
-
await
|
|
87
|
+
await browser.execute((el) => el.click(), lastTab);
|
|
88
88
|
await (await DSTabsCO.getTabPanel(14)).waitForDisplayed();
|
|
89
89
|
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-integrated-last-tab'));
|
|
90
90
|
await expect(snapshot).toEqual(0);
|
|
@@ -111,7 +111,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
111
111
|
// Scroll to middle subtab and select it (index 7 for middle of 15 subtabs)
|
|
112
112
|
const middleSubtab = await DSTabsCO.getSubTabsByIndex(7);
|
|
113
113
|
await middleSubtab.scrollIntoView();
|
|
114
|
-
await
|
|
114
|
+
await browser.execute((el) => el.click(), middleSubtab);
|
|
115
115
|
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-nested-middle'));
|
|
116
116
|
await expect(snapshot).toEqual(0);
|
|
117
117
|
});
|
|
@@ -120,7 +120,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
120
120
|
// Scroll to last subtab and select it (index 14 for 15 subtabs)
|
|
121
121
|
const lastSubtab = await DSTabsCO.getSubTabsByIndex(14);
|
|
122
122
|
await lastSubtab.scrollIntoView();
|
|
123
|
-
await
|
|
123
|
+
await browser.execute((el) => el.click(), lastSubtab);
|
|
124
124
|
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-nested-last'));
|
|
125
125
|
await expect(snapshot).toEqual(0);
|
|
126
126
|
});
|
|
@@ -129,7 +129,7 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
129
129
|
// Scroll back to first subtab and select it
|
|
130
130
|
const firstSubtab = await DSTabsCO.getSubtab(1);
|
|
131
131
|
await firstSubtab.scrollIntoView();
|
|
132
|
-
await
|
|
132
|
+
await browser.execute((el) => el.click(), firstSubtab);
|
|
133
133
|
const snapshot = await browser.percyCheckScreenshot(DSTabsCO.snapshotPath('tab-carousel-nested-first'));
|
|
134
134
|
await expect(snapshot).toEqual(0);
|
|
135
135
|
});
|
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.4",
|
|
5
5
|
"description": "End-to-end tests for dimsum library",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elliemae/ds-legacy-button": "1.0.16",
|
|
@@ -41,156 +41,155 @@
|
|
|
41
41
|
"@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
|
|
42
42
|
"@elliemae/ds-legacy-zipcode-search": "1.0.16",
|
|
43
43
|
"@elliemae/ds-legacy-zoom": "1.0.16",
|
|
44
|
-
"@elliemae/ds-accessibility": "3.70.0-next.
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-basic": "3.70.0-next.
|
|
50
|
-
"@elliemae/ds-breadcrumb": "3.70.0-next.
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-card-v1": "3.70.0-next.
|
|
53
|
-
"@elliemae/ds-card": "3.70.0-next.
|
|
54
|
-
"@elliemae/ds-card-v1-detail": "3.70.0-next.
|
|
55
|
-
"@elliemae/ds-card-
|
|
56
|
-
"@elliemae/ds-card-v2": "3.70.0-next.
|
|
57
|
-
"@elliemae/ds-card-v2-
|
|
58
|
-
"@elliemae/ds-card-v3": "3.70.0-next.
|
|
59
|
-
"@elliemae/ds-card-
|
|
60
|
-
"@elliemae/ds-
|
|
61
|
-
"@elliemae/ds-
|
|
62
|
-
"@elliemae/ds-chat-bubble": "3.70.0-next.
|
|
63
|
-
"@elliemae/ds-chat-card": "3.70.0-next.
|
|
64
|
-
"@elliemae/ds-chat-container
|
|
65
|
-
"@elliemae/ds-chat-container": "3.70.0-next.
|
|
66
|
-
"@elliemae/ds-chat-empty-state": "3.70.0-next.
|
|
67
|
-
"@elliemae/ds-chat-
|
|
68
|
-
"@elliemae/ds-chat-
|
|
69
|
-
"@elliemae/ds-chat-
|
|
70
|
-
"@elliemae/ds-chat-system-message": "3.70.0-next.
|
|
71
|
-
"@elliemae/ds-chat-
|
|
72
|
-
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-
|
|
80
|
-
"@elliemae/ds-
|
|
81
|
-
"@elliemae/ds-data-table-cell
|
|
82
|
-
"@elliemae/ds-data-table-
|
|
83
|
-
"@elliemae/ds-data-table-
|
|
84
|
-
"@elliemae/ds-data-table-
|
|
85
|
-
"@elliemae/ds-data-table-
|
|
86
|
-
"@elliemae/ds-
|
|
87
|
-
"@elliemae/ds-date-time-picker": "3.70.0-next.
|
|
88
|
-
"@elliemae/ds-data-table-
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-
|
|
100
|
-
"@elliemae/ds-form-date-
|
|
101
|
-
"@elliemae/ds-form-
|
|
102
|
-
"@elliemae/ds-form-
|
|
103
|
-
"@elliemae/ds-form-combobox": "3.70.0-next.
|
|
104
|
-
"@elliemae/ds-form-
|
|
105
|
-
"@elliemae/ds-form-
|
|
106
|
-
"@elliemae/ds-form-layout-
|
|
107
|
-
"@elliemae/ds-form-
|
|
108
|
-
"@elliemae/ds-form-layout-
|
|
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-select": "3.70.0-next.
|
|
114
|
-
"@elliemae/ds-form-
|
|
115
|
-
"@elliemae/ds-
|
|
116
|
-
"@elliemae/ds-
|
|
117
|
-
"@elliemae/ds-grid": "3.70.0-next.
|
|
118
|
-
"@elliemae/ds-hooks-
|
|
119
|
-
"@elliemae/ds-hooks-focus-
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.
|
|
122
|
-
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.
|
|
123
|
-
"@elliemae/ds-hooks-is-
|
|
124
|
-
"@elliemae/ds-hooks-
|
|
125
|
-
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.
|
|
126
|
-
"@elliemae/ds-hooks-
|
|
127
|
-
"@elliemae/ds-hooks-on-
|
|
128
|
-
"@elliemae/ds-icon": "3.70.0-next.
|
|
129
|
-
"@elliemae/ds-
|
|
130
|
-
"@elliemae/ds-
|
|
131
|
-
"@elliemae/ds-
|
|
132
|
-
"@elliemae/ds-
|
|
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": "3.70.0-next.
|
|
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-
|
|
143
|
-
"@elliemae/ds-menu-items-
|
|
144
|
-
"@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.
|
|
145
|
-
"@elliemae/ds-menu-
|
|
146
|
-
"@elliemae/ds-menu-items-
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-
|
|
149
|
-
"@elliemae/ds-
|
|
150
|
-
"@elliemae/ds-
|
|
151
|
-
"@elliemae/ds-
|
|
152
|
-
"@elliemae/ds-page-header": "3.70.0-next.
|
|
153
|
-
"@elliemae/ds-page-header-v2": "3.70.0-next.
|
|
154
|
-
"@elliemae/ds-
|
|
155
|
-
"@elliemae/ds-
|
|
156
|
-
"@elliemae/ds-
|
|
157
|
-
"@elliemae/ds-
|
|
158
|
-
"@elliemae/ds-
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-props-helpers": "3.70.0-next.
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-query-builder": "3.70.0-next.
|
|
164
|
-
"@elliemae/ds-
|
|
165
|
-
"@elliemae/ds-scrollable-container": "3.70.0-next.
|
|
166
|
-
"@elliemae/ds-separator": "3.70.0-next.
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-side-panel
|
|
171
|
-
"@elliemae/ds-side-panel": "3.70.0-next.
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-square-indicator": "3.70.0-next.
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-
|
|
177
|
-
"@elliemae/ds-
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-toolbar-v1": "3.70.0-next.
|
|
182
|
-
"@elliemae/ds-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-typescript-helpers": "3.70.0-next.
|
|
189
|
-
"@elliemae/ds-
|
|
190
|
-
"@elliemae/ds-
|
|
191
|
-
"@elliemae/ds-virtual-list": "3.70.0-next.
|
|
192
|
-
"@elliemae/ds-zustand-helpers": "3.70.0-next.
|
|
193
|
-
"@elliemae/ds-wizard": "3.70.0-next.2"
|
|
44
|
+
"@elliemae/ds-accessibility": "3.70.0-next.4",
|
|
45
|
+
"@elliemae/ds-backdrop": "3.70.0-next.4",
|
|
46
|
+
"@elliemae/ds-app-picker": "3.70.0-next.4",
|
|
47
|
+
"@elliemae/ds-button-v2": "3.70.0-next.4",
|
|
48
|
+
"@elliemae/ds-accordion": "3.70.0-next.4",
|
|
49
|
+
"@elliemae/ds-basic": "3.70.0-next.4",
|
|
50
|
+
"@elliemae/ds-breadcrumb": "3.70.0-next.4",
|
|
51
|
+
"@elliemae/ds-card": "3.70.0-next.4",
|
|
52
|
+
"@elliemae/ds-card-v1": "3.70.0-next.4",
|
|
53
|
+
"@elliemae/ds-card-navigation": "3.70.0-next.4",
|
|
54
|
+
"@elliemae/ds-card-v1-detail": "3.70.0-next.4",
|
|
55
|
+
"@elliemae/ds-card-v2-group": "3.70.0-next.4",
|
|
56
|
+
"@elliemae/ds-card-v2": "3.70.0-next.4",
|
|
57
|
+
"@elliemae/ds-card-v2-action-addon": "3.70.0-next.4",
|
|
58
|
+
"@elliemae/ds-card-v3": "3.70.0-next.4",
|
|
59
|
+
"@elliemae/ds-card-v3-poc": "3.70.0-next.4",
|
|
60
|
+
"@elliemae/ds-chat": "3.70.0-next.4",
|
|
61
|
+
"@elliemae/ds-banner": "3.70.0-next.4",
|
|
62
|
+
"@elliemae/ds-chat-bubble": "3.70.0-next.4",
|
|
63
|
+
"@elliemae/ds-chat-card": "3.70.0-next.4",
|
|
64
|
+
"@elliemae/ds-chat-container": "3.70.0-next.4",
|
|
65
|
+
"@elliemae/ds-chat-container-header": "3.70.0-next.4",
|
|
66
|
+
"@elliemae/ds-chat-empty-state": "3.70.0-next.4",
|
|
67
|
+
"@elliemae/ds-chat-floating-button": "3.70.0-next.4",
|
|
68
|
+
"@elliemae/ds-chat-message-delimeter": "3.70.0-next.4",
|
|
69
|
+
"@elliemae/ds-chat-tile": "3.70.0-next.4",
|
|
70
|
+
"@elliemae/ds-chat-system-message": "3.70.0-next.4",
|
|
71
|
+
"@elliemae/ds-chat-sidebar": "3.70.0-next.4",
|
|
72
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.4",
|
|
73
|
+
"@elliemae/ds-chip": "3.70.0-next.4",
|
|
74
|
+
"@elliemae/ds-comments": "3.70.0-next.4",
|
|
75
|
+
"@elliemae/ds-csv-converter": "3.70.0-next.4",
|
|
76
|
+
"@elliemae/ds-classnames": "3.70.0-next.4",
|
|
77
|
+
"@elliemae/ds-data-table": "3.70.0-next.4",
|
|
78
|
+
"@elliemae/ds-controlled-form": "3.70.0-next.4",
|
|
79
|
+
"@elliemae/ds-data-table-action-cell": "3.70.0-next.4",
|
|
80
|
+
"@elliemae/ds-codeeditor": "3.70.0-next.4",
|
|
81
|
+
"@elliemae/ds-data-table-cell": "3.70.0-next.4",
|
|
82
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.4",
|
|
83
|
+
"@elliemae/ds-data-table-filters": "3.70.0-next.4",
|
|
84
|
+
"@elliemae/ds-data-table-expand-cell": "3.70.0-next.4",
|
|
85
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.4",
|
|
86
|
+
"@elliemae/ds-dataviz-pie": "3.70.0-next.4",
|
|
87
|
+
"@elliemae/ds-date-time-picker": "3.70.0-next.4",
|
|
88
|
+
"@elliemae/ds-data-table-cell-header": "3.70.0-next.4",
|
|
89
|
+
"@elliemae/ds-decision-graph": "3.70.0-next.4",
|
|
90
|
+
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.4",
|
|
91
|
+
"@elliemae/ds-dialog": "3.70.0-next.4",
|
|
92
|
+
"@elliemae/ds-dataviz": "3.70.0-next.4",
|
|
93
|
+
"@elliemae/ds-dropdownmenu-v2": "3.70.0-next.4",
|
|
94
|
+
"@elliemae/ds-filter-bar": "3.70.0-next.4",
|
|
95
|
+
"@elliemae/ds-drag-and-drop": "3.70.0-next.4",
|
|
96
|
+
"@elliemae/ds-floating-context": "3.70.0-next.4",
|
|
97
|
+
"@elliemae/ds-dropzone": "3.70.0-next.4",
|
|
98
|
+
"@elliemae/ds-fast-list": "3.70.0-next.4",
|
|
99
|
+
"@elliemae/ds-form-checkbox": "3.70.0-next.4",
|
|
100
|
+
"@elliemae/ds-form-date-range-picker": "3.70.0-next.4",
|
|
101
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.4",
|
|
102
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.4",
|
|
103
|
+
"@elliemae/ds-form-combobox": "3.70.0-next.4",
|
|
104
|
+
"@elliemae/ds-form-date-time-picker": "3.70.0-next.4",
|
|
105
|
+
"@elliemae/ds-form-layout-blocks": "3.70.0-next.4",
|
|
106
|
+
"@elliemae/ds-form-layout-input-group": "3.70.0-next.4",
|
|
107
|
+
"@elliemae/ds-form-input-textarea": "3.70.0-next.4",
|
|
108
|
+
"@elliemae/ds-form-layout-autocomplete": "3.70.0-next.4",
|
|
109
|
+
"@elliemae/ds-form-layout-label": "3.70.0-next.4",
|
|
110
|
+
"@elliemae/ds-form-multi-combobox": "3.70.0-next.4",
|
|
111
|
+
"@elliemae/ds-form-radio": "3.70.0-next.4",
|
|
112
|
+
"@elliemae/ds-form-toggle": "3.70.0-next.4",
|
|
113
|
+
"@elliemae/ds-form-select": "3.70.0-next.4",
|
|
114
|
+
"@elliemae/ds-form-native-select": "3.70.0-next.4",
|
|
115
|
+
"@elliemae/ds-global-header": "3.70.0-next.4",
|
|
116
|
+
"@elliemae/ds-form-single-combobox": "3.70.0-next.4",
|
|
117
|
+
"@elliemae/ds-grid": "3.70.0-next.4",
|
|
118
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.4",
|
|
119
|
+
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.4",
|
|
120
|
+
"@elliemae/ds-hooks-focus-trap": "3.70.0-next.4",
|
|
121
|
+
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.4",
|
|
122
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.4",
|
|
123
|
+
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.4",
|
|
124
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.4",
|
|
125
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.4",
|
|
126
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.4",
|
|
127
|
+
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.4",
|
|
128
|
+
"@elliemae/ds-icon": "3.70.0-next.4",
|
|
129
|
+
"@elliemae/ds-image": "3.70.0-next.4",
|
|
130
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.4",
|
|
131
|
+
"@elliemae/ds-icons": "3.70.0-next.4",
|
|
132
|
+
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.4",
|
|
133
|
+
"@elliemae/ds-layout-provider": "3.70.0-next.4",
|
|
134
|
+
"@elliemae/ds-left-navigation": "3.70.0-next.4",
|
|
135
|
+
"@elliemae/ds-loading-indicator": "3.70.0-next.4",
|
|
136
|
+
"@elliemae/ds-menu-button": "3.70.0-next.4",
|
|
137
|
+
"@elliemae/ds-menu-items": "3.70.0-next.4",
|
|
138
|
+
"@elliemae/ds-menu-items-commons": "3.70.0-next.4",
|
|
139
|
+
"@elliemae/ds-menu-items-action": "3.70.0-next.4",
|
|
140
|
+
"@elliemae/ds-menu-items-multi": "3.70.0-next.4",
|
|
141
|
+
"@elliemae/ds-menu-items-separator": "3.70.0-next.4",
|
|
142
|
+
"@elliemae/ds-menu-items-single": "3.70.0-next.4",
|
|
143
|
+
"@elliemae/ds-menu-items-submenu": "3.70.0-next.4",
|
|
144
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.4",
|
|
145
|
+
"@elliemae/ds-menu-tree-item": "3.70.0-next.4",
|
|
146
|
+
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.4",
|
|
147
|
+
"@elliemae/ds-modal-slide": "3.70.0-next.4",
|
|
148
|
+
"@elliemae/ds-menu-items-section": "3.70.0-next.4",
|
|
149
|
+
"@elliemae/ds-mobile": "3.70.0-next.4",
|
|
150
|
+
"@elliemae/ds-page-header": "3.70.0-next.4",
|
|
151
|
+
"@elliemae/ds-notification-badge": "3.70.0-next.4",
|
|
152
|
+
"@elliemae/ds-page-header-v1": "3.70.0-next.4",
|
|
153
|
+
"@elliemae/ds-page-header-v2": "3.70.0-next.4",
|
|
154
|
+
"@elliemae/ds-overlay": "3.70.0-next.4",
|
|
155
|
+
"@elliemae/ds-pills-v2": "3.70.0-next.4",
|
|
156
|
+
"@elliemae/ds-page-layout": "3.70.0-next.4",
|
|
157
|
+
"@elliemae/ds-popperjs": "3.70.0-next.4",
|
|
158
|
+
"@elliemae/ds-portal": "3.70.0-next.4",
|
|
159
|
+
"@elliemae/ds-progress-indicator": "3.70.0-next.4",
|
|
160
|
+
"@elliemae/ds-pagination": "3.70.0-next.4",
|
|
161
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.4",
|
|
162
|
+
"@elliemae/ds-read-more": "3.70.0-next.4",
|
|
163
|
+
"@elliemae/ds-query-builder": "3.70.0-next.4",
|
|
164
|
+
"@elliemae/ds-resizeable-container": "3.70.0-next.4",
|
|
165
|
+
"@elliemae/ds-scrollable-container": "3.70.0-next.4",
|
|
166
|
+
"@elliemae/ds-separator": "3.70.0-next.4",
|
|
167
|
+
"@elliemae/ds-ribbon": "3.70.0-next.4",
|
|
168
|
+
"@elliemae/ds-shuttle-v2": "3.70.0-next.4",
|
|
169
|
+
"@elliemae/ds-shared": "3.70.0-next.4",
|
|
170
|
+
"@elliemae/ds-side-panel": "3.70.0-next.4",
|
|
171
|
+
"@elliemae/ds-side-panel-header": "3.70.0-next.4",
|
|
172
|
+
"@elliemae/ds-stepper": "3.70.0-next.4",
|
|
173
|
+
"@elliemae/ds-square-indicator": "3.70.0-next.4",
|
|
174
|
+
"@elliemae/ds-skeleton": "3.70.0-next.4",
|
|
175
|
+
"@elliemae/ds-svg": "3.70.0-next.4",
|
|
176
|
+
"@elliemae/ds-system": "3.70.0-next.4",
|
|
177
|
+
"@elliemae/ds-tabs": "3.70.0-next.4",
|
|
178
|
+
"@elliemae/ds-test-utils": "3.70.0-next.4",
|
|
179
|
+
"@elliemae/ds-toast": "3.70.0-next.4",
|
|
180
|
+
"@elliemae/ds-slider-v2": "3.70.0-next.4",
|
|
181
|
+
"@elliemae/ds-toolbar-v1": "3.70.0-next.4",
|
|
182
|
+
"@elliemae/ds-tooltip-v3": "3.70.0-next.4",
|
|
183
|
+
"@elliemae/ds-transition": "3.70.0-next.4",
|
|
184
|
+
"@elliemae/ds-treeview": "3.70.0-next.4",
|
|
185
|
+
"@elliemae/ds-truncated-expandable-text": "3.70.0-next.4",
|
|
186
|
+
"@elliemae/ds-toolbar-v2": "3.70.0-next.4",
|
|
187
|
+
"@elliemae/ds-tree-model": "3.70.0-next.4",
|
|
188
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.4",
|
|
189
|
+
"@elliemae/ds-typography": "3.70.0-next.4",
|
|
190
|
+
"@elliemae/ds-wizard": "3.70.0-next.4",
|
|
191
|
+
"@elliemae/ds-virtual-list": "3.70.0-next.4",
|
|
192
|
+
"@elliemae/ds-zustand-helpers": "3.70.0-next.4"
|
|
194
193
|
},
|
|
195
194
|
"publishConfig": {
|
|
196
195
|
"access": "public"
|