dimsum-e2e-tests 3.70.0-next.61 → 3.70.0-next.62
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-controlled-form/ds-controlled-checkbox/DSControlledCheckboxCO.js +40 -1
- package/ds-controlled-form/ds-controlled-checkbox/slots/DSControlledCheckbox.slots.func.spec.js +78 -0
- package/ds-controlled-form/ds-controlled-radio/DSControlledRadioCO.js +40 -1
- package/ds-controlled-form/ds-controlled-radio/slots/DSControlledRadio.slots.func.spec.js +78 -0
- package/ds-form-combobox-multi/DSComboboxMultiCO.js +16 -0
- package/ds-form-combobox-multi/theme-font/DSComboboxMulti.theme-font.func.spec.js +38 -0
- package/ds-form-combobox-single/DSComboboxSingleCO.js +12 -0
- package/ds-form-combobox-single/theme-font/DSComboboxSingle.theme-font.func.spec.js +34 -0
- package/package.json +149 -149
- package/paths.js +2 -0
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.62 (2026-08-19)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- dimsum:: wire playwright test into the test script for ds-form-checkbox, ds-form-layout-autocomplete and ds-app-picker ([#8316](https://git.elliemae.io/platform-ui/dimsum/issues/8316)) ([c301b8c](https://git.elliemae.io/platform-ui/dimsum/commit/c301b8cb3c488d8a4a0da6d8514844b9eeef0119))
|
|
11
|
+
|
|
6
12
|
## 3.70.0-next.61 (2026-08-18)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable import/no-relative-packages */
|
|
2
|
-
import { PATH_E2E_CHECKBOX } from '../../paths';
|
|
2
|
+
import { PATH_E2E_CHECKBOX, PATH_E2E_CHECKBOX_SLOTS } from '../../paths';
|
|
3
3
|
import { PageObject, Urlbuilder, getElementByIndex } from '../../helpers';
|
|
4
4
|
|
|
5
5
|
export default class DSControlledCheckboxCO extends PageObject {
|
|
@@ -25,6 +25,8 @@ export default class DSControlledCheckboxCO extends PageObject {
|
|
|
25
25
|
|
|
26
26
|
static themeFontURL = new Urlbuilder(PATH_E2E_CHECKBOX, 'theme-font-family-test');
|
|
27
27
|
|
|
28
|
+
static slotsTest = new Urlbuilder(PATH_E2E_CHECKBOX_SLOTS, 'slots-test');
|
|
29
|
+
|
|
28
30
|
static async getCheckbox() {
|
|
29
31
|
return $('[data-testid="ds-checkbox"]');
|
|
30
32
|
}
|
|
@@ -80,4 +82,41 @@ export default class DSControlledCheckboxCO extends PageObject {
|
|
|
80
82
|
static async getFallbackCheckboxLabel() {
|
|
81
83
|
return $('[data-testid="theme-font-fallback"] [data-testid="ds-checkbox-label-typography"]');
|
|
82
84
|
}
|
|
85
|
+
|
|
86
|
+
// Slots rendered through styled(DSTypography) expose the owner slot on
|
|
87
|
+
// `data-dimsum-parent-slot` (the element's own `data-dimsum-slot` is the typography root),
|
|
88
|
+
// while plain-tag slots expose it on `data-dimsum-slot`.
|
|
89
|
+
static async getSlotsRoot() {
|
|
90
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-slot="dsCheckboxRoot"]');
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
static async getSlotsInputWrapper() {
|
|
94
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-slot="dsCheckboxInputWrapper"]');
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
static async getSlotsInput() {
|
|
98
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-slot="dsCheckboxInput"]');
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
static async getSlotsLabel() {
|
|
102
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-slot="dsCheckboxLabel"]');
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
static async getSlotsLabelTypography() {
|
|
106
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-parent-slot="dsCheckboxLabelTypography"]');
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
static async getSlotsTruncatedLabel() {
|
|
110
|
+
return $('[data-testid="slots-truncated"] [data-dimsum-parent-slot="dsCheckboxTruncatedLabel"]');
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// The truncation tooltip renders through a portal, outside the story wrapper, so both tooltip
|
|
114
|
+
// slots are queried document-wide instead of scoped to the instance.
|
|
115
|
+
static async getSlotsTooltipContainer() {
|
|
116
|
+
return $('[data-dimsum-slot="dsCheckboxTooltipContainer"]');
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
static async getSlotsTooltipText() {
|
|
120
|
+
return $('[data-dimsum-parent-slot="dsCheckboxTooltipText"]');
|
|
121
|
+
}
|
|
83
122
|
}
|
package/ds-controlled-form/ds-controlled-checkbox/slots/DSControlledCheckbox.slots.func.spec.js
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import DSControlledCheckboxCO from '../DSControlledCheckboxCO';
|
|
2
|
+
|
|
3
|
+
// Slot surface added when the DSControlledCheckbox label moved to DSTypography under PUI-18774:
|
|
4
|
+
// label-typography, truncated-label, tooltip-container and tooltip-text. The tooltip pair only
|
|
5
|
+
// exists while the label is truncated AND hovered, which is why this lives in E2E rather than in
|
|
6
|
+
// the package's jest slot tests.
|
|
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-18976 - DSControlledCheckbox:: label typography and tooltip slots - Func', () => {
|
|
14
|
+
before('loading page', async () => {
|
|
15
|
+
const errorOnGo = await DSControlledCheckboxCO.slotsTest.go();
|
|
16
|
+
if (errorOnGo) throw errorOnGo;
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
it('01: should have custom aria-* for each rendered label slot', async () => {
|
|
20
|
+
const root = await DSControlledCheckboxCO.getSlotsRoot();
|
|
21
|
+
const inputWrapper = await DSControlledCheckboxCO.getSlotsInputWrapper();
|
|
22
|
+
const input = await DSControlledCheckboxCO.getSlotsInput();
|
|
23
|
+
const label = await DSControlledCheckboxCO.getSlotsLabel();
|
|
24
|
+
const labelTypography = await DSControlledCheckboxCO.getSlotsLabelTypography();
|
|
25
|
+
const truncatedLabel = await DSControlledCheckboxCO.getSlotsTruncatedLabel();
|
|
26
|
+
await expect(root).toHaveAttribute('aria-label', 'root aria');
|
|
27
|
+
await expect(inputWrapper).toHaveAttribute('aria-label', 'inputwrapper aria');
|
|
28
|
+
await expect(input).toHaveAttribute('aria-label', 'input aria');
|
|
29
|
+
await expect(label).toHaveAttribute('aria-label', 'label aria');
|
|
30
|
+
await expect(labelTypography).toHaveAttribute('aria-label', 'labeltypography aria');
|
|
31
|
+
await expect(truncatedLabel).toHaveAttribute('aria-label', 'truncatedlabel aria');
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
it('02: should have custom data-* for each rendered label slot', async () => {
|
|
35
|
+
const root = await DSControlledCheckboxCO.getSlotsRoot();
|
|
36
|
+
const inputWrapper = await DSControlledCheckboxCO.getSlotsInputWrapper();
|
|
37
|
+
const input = await DSControlledCheckboxCO.getSlotsInput();
|
|
38
|
+
const label = await DSControlledCheckboxCO.getSlotsLabel();
|
|
39
|
+
const labelTypography = await DSControlledCheckboxCO.getSlotsLabelTypography();
|
|
40
|
+
const truncatedLabel = await DSControlledCheckboxCO.getSlotsTruncatedLabel();
|
|
41
|
+
await expect(root).toHaveAttribute('data-testid', 'root data');
|
|
42
|
+
await expect(inputWrapper).toHaveAttribute('data-testid', 'inputwrapper data');
|
|
43
|
+
await expect(input).toHaveAttribute('data-testid', 'input data');
|
|
44
|
+
await expect(label).toHaveAttribute('data-testid', 'label data');
|
|
45
|
+
await expect(labelTypography).toHaveAttribute('data-testid', 'labeltypography data');
|
|
46
|
+
await expect(truncatedLabel).toHaveAttribute('data-testid', 'truncatedlabel data');
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('03: should have custom lang for each rendered label slot', async () => {
|
|
50
|
+
const root = await DSControlledCheckboxCO.getSlotsRoot();
|
|
51
|
+
const inputWrapper = await DSControlledCheckboxCO.getSlotsInputWrapper();
|
|
52
|
+
const input = await DSControlledCheckboxCO.getSlotsInput();
|
|
53
|
+
const label = await DSControlledCheckboxCO.getSlotsLabel();
|
|
54
|
+
const labelTypography = await DSControlledCheckboxCO.getSlotsLabelTypography();
|
|
55
|
+
const truncatedLabel = await DSControlledCheckboxCO.getSlotsTruncatedLabel();
|
|
56
|
+
await expect(root).toHaveAttribute('lang', 'ja');
|
|
57
|
+
await expect(inputWrapper).toHaveAttribute('lang', 'it');
|
|
58
|
+
await expect(input).toHaveAttribute('lang', 'de');
|
|
59
|
+
await expect(label).toHaveAttribute('lang', 'fr');
|
|
60
|
+
await expect(labelTypography).toHaveAttribute('lang', 'es');
|
|
61
|
+
await expect(truncatedLabel).toHaveAttribute('lang', 'pt');
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
it('04: should have custom aria-*, data-* and lang for the tooltip slots on hover', async () => {
|
|
65
|
+
const truncatedLabel = await DSControlledCheckboxCO.getSlotsTruncatedLabel();
|
|
66
|
+
await truncatedLabel.moveTo();
|
|
67
|
+
const tooltipContainer = await DSControlledCheckboxCO.getSlotsTooltipContainer();
|
|
68
|
+
await tooltipContainer.waitForDisplayed();
|
|
69
|
+
const tooltipText = await DSControlledCheckboxCO.getSlotsTooltipText();
|
|
70
|
+
await expect(tooltipContainer).toHaveAttribute('aria-label', 'tooltipcontainer aria');
|
|
71
|
+
await expect(tooltipContainer).toHaveAttribute('data-testid', 'tooltipcontainer data');
|
|
72
|
+
await expect(tooltipContainer).toHaveAttribute('lang', 'zh');
|
|
73
|
+
await expect(tooltipText).toHaveAttribute('aria-label', 'tooltiptext aria');
|
|
74
|
+
await expect(tooltipText).toHaveAttribute('data-testid', 'tooltiptext data');
|
|
75
|
+
await expect(tooltipText).toHaveAttribute('lang', 'ru');
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PATH_E2E_RADIO } from '../../paths';
|
|
1
|
+
import { PATH_E2E_RADIO, PATH_E2E_RADIO_SLOTS } from '../../paths';
|
|
2
2
|
import { PageObject, Urlbuilder, getElementByIndex } from '../../helpers';
|
|
3
3
|
|
|
4
4
|
export default class DSControlledRadioCO extends PageObject {
|
|
@@ -18,6 +18,8 @@ export default class DSControlledRadioCO extends PageObject {
|
|
|
18
18
|
|
|
19
19
|
static themeFontURL = new Urlbuilder(PATH_E2E_RADIO, 'theme-font-family-test');
|
|
20
20
|
|
|
21
|
+
static slotsTest = new Urlbuilder(PATH_E2E_RADIO_SLOTS, 'slots-test');
|
|
22
|
+
|
|
21
23
|
static async getRadio() {
|
|
22
24
|
return $('[data-testid="ds-radio"]');
|
|
23
25
|
}
|
|
@@ -53,4 +55,41 @@ export default class DSControlledRadioCO extends PageObject {
|
|
|
53
55
|
static async getFallbackRadioLabel() {
|
|
54
56
|
return $('[data-testid="theme-font-fallback"] [data-testid="ds-radio-label-typography"]');
|
|
55
57
|
}
|
|
58
|
+
|
|
59
|
+
// Slots rendered through styled(DSTypography) expose the owner slot on
|
|
60
|
+
// `data-dimsum-parent-slot` (the element's own `data-dimsum-slot` is the typography root),
|
|
61
|
+
// while plain-tag slots expose it on `data-dimsum-slot`.
|
|
62
|
+
static async getSlotsRoot() {
|
|
63
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-slot="dsRadioRoot"]');
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
static async getSlotsInputWrapper() {
|
|
67
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-slot="dsRadioInputWrapper"]');
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
static async getSlotsInput() {
|
|
71
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-slot="dsRadioInput"]');
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
static async getSlotsLabel() {
|
|
75
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-slot="dsRadioLabel"]');
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
static async getSlotsLabelTypography() {
|
|
79
|
+
return $('[data-testid="slots-wrapped"] [data-dimsum-parent-slot="dsRadioLabelTypography"]');
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
static async getSlotsTruncatedLabel() {
|
|
83
|
+
return $('[data-testid="slots-truncated"] [data-dimsum-parent-slot="dsRadioTruncatedLabel"]');
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// The truncation tooltip renders through a portal, outside the story wrapper, so both tooltip
|
|
87
|
+
// slots are queried document-wide instead of scoped to the instance.
|
|
88
|
+
static async getSlotsTooltipContainer() {
|
|
89
|
+
return $('[data-dimsum-slot="dsRadioTooltipContainer"]');
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
static async getSlotsTooltipText() {
|
|
93
|
+
return $('[data-dimsum-parent-slot="dsRadioTooltipText"]');
|
|
94
|
+
}
|
|
56
95
|
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import DSControlledRadioCO from '../DSControlledRadioCO';
|
|
2
|
+
|
|
3
|
+
// Slot surface added when the DSControlledRadio label moved to DSTypography under PUI-18774:
|
|
4
|
+
// label-typography, truncated-label, tooltip-container and tooltip-text. The tooltip pair only
|
|
5
|
+
// exists while the label is truncated AND hovered, which is why this lives in E2E rather than in
|
|
6
|
+
// the package's jest slot tests.
|
|
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-18975 - DSControlledRadio:: label typography and tooltip slots - Func', () => {
|
|
14
|
+
before('loading page', async () => {
|
|
15
|
+
const errorOnGo = await DSControlledRadioCO.slotsTest.go();
|
|
16
|
+
if (errorOnGo) throw errorOnGo;
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
it('01: should have custom aria-* for each rendered label slot', async () => {
|
|
20
|
+
const root = await DSControlledRadioCO.getSlotsRoot();
|
|
21
|
+
const inputWrapper = await DSControlledRadioCO.getSlotsInputWrapper();
|
|
22
|
+
const input = await DSControlledRadioCO.getSlotsInput();
|
|
23
|
+
const label = await DSControlledRadioCO.getSlotsLabel();
|
|
24
|
+
const labelTypography = await DSControlledRadioCO.getSlotsLabelTypography();
|
|
25
|
+
const truncatedLabel = await DSControlledRadioCO.getSlotsTruncatedLabel();
|
|
26
|
+
await expect(root).toHaveAttribute('aria-label', 'root aria');
|
|
27
|
+
await expect(inputWrapper).toHaveAttribute('aria-label', 'inputwrapper aria');
|
|
28
|
+
await expect(input).toHaveAttribute('aria-label', 'input aria');
|
|
29
|
+
await expect(label).toHaveAttribute('aria-label', 'label aria');
|
|
30
|
+
await expect(labelTypography).toHaveAttribute('aria-label', 'labeltypography aria');
|
|
31
|
+
await expect(truncatedLabel).toHaveAttribute('aria-label', 'truncatedlabel aria');
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
it('02: should have custom data-* for each rendered label slot', async () => {
|
|
35
|
+
const root = await DSControlledRadioCO.getSlotsRoot();
|
|
36
|
+
const inputWrapper = await DSControlledRadioCO.getSlotsInputWrapper();
|
|
37
|
+
const input = await DSControlledRadioCO.getSlotsInput();
|
|
38
|
+
const label = await DSControlledRadioCO.getSlotsLabel();
|
|
39
|
+
const labelTypography = await DSControlledRadioCO.getSlotsLabelTypography();
|
|
40
|
+
const truncatedLabel = await DSControlledRadioCO.getSlotsTruncatedLabel();
|
|
41
|
+
await expect(root).toHaveAttribute('data-testid', 'root data');
|
|
42
|
+
await expect(inputWrapper).toHaveAttribute('data-testid', 'inputwrapper data');
|
|
43
|
+
await expect(input).toHaveAttribute('data-testid', 'input data');
|
|
44
|
+
await expect(label).toHaveAttribute('data-testid', 'label data');
|
|
45
|
+
await expect(labelTypography).toHaveAttribute('data-testid', 'labeltypography data');
|
|
46
|
+
await expect(truncatedLabel).toHaveAttribute('data-testid', 'truncatedlabel data');
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('03: should have custom lang for each rendered label slot', async () => {
|
|
50
|
+
const root = await DSControlledRadioCO.getSlotsRoot();
|
|
51
|
+
const inputWrapper = await DSControlledRadioCO.getSlotsInputWrapper();
|
|
52
|
+
const input = await DSControlledRadioCO.getSlotsInput();
|
|
53
|
+
const label = await DSControlledRadioCO.getSlotsLabel();
|
|
54
|
+
const labelTypography = await DSControlledRadioCO.getSlotsLabelTypography();
|
|
55
|
+
const truncatedLabel = await DSControlledRadioCO.getSlotsTruncatedLabel();
|
|
56
|
+
await expect(root).toHaveAttribute('lang', 'ja');
|
|
57
|
+
await expect(inputWrapper).toHaveAttribute('lang', 'it');
|
|
58
|
+
await expect(input).toHaveAttribute('lang', 'de');
|
|
59
|
+
await expect(label).toHaveAttribute('lang', 'fr');
|
|
60
|
+
await expect(labelTypography).toHaveAttribute('lang', 'es');
|
|
61
|
+
await expect(truncatedLabel).toHaveAttribute('lang', 'pt');
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
it('04: should have custom aria-*, data-* and lang for the tooltip slots on hover', async () => {
|
|
65
|
+
const truncatedLabel = await DSControlledRadioCO.getSlotsTruncatedLabel();
|
|
66
|
+
await truncatedLabel.moveTo();
|
|
67
|
+
const tooltipContainer = await DSControlledRadioCO.getSlotsTooltipContainer();
|
|
68
|
+
await tooltipContainer.waitForDisplayed();
|
|
69
|
+
const tooltipText = await DSControlledRadioCO.getSlotsTooltipText();
|
|
70
|
+
await expect(tooltipContainer).toHaveAttribute('aria-label', 'tooltipcontainer aria');
|
|
71
|
+
await expect(tooltipContainer).toHaveAttribute('data-testid', 'tooltipcontainer data');
|
|
72
|
+
await expect(tooltipContainer).toHaveAttribute('lang', 'zh');
|
|
73
|
+
await expect(tooltipText).toHaveAttribute('aria-label', 'tooltiptext aria');
|
|
74
|
+
await expect(tooltipText).toHaveAttribute('data-testid', 'tooltiptext data');
|
|
75
|
+
await expect(tooltipText).toHaveAttribute('lang', 'ru');
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
}
|
|
@@ -39,6 +39,8 @@ export default class DSComboboxMultiCO extends PageObject {
|
|
|
39
39
|
|
|
40
40
|
static withTooltip = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'with-tooltip-test');
|
|
41
41
|
|
|
42
|
+
static themeFontURL = new Urlbuilder(PATH_E2E_COMBOBOX_MULTI, 'theme-font-family-test');
|
|
43
|
+
|
|
42
44
|
static controlledMenuStateWithSectionsSlotsTest = new Urlbuilder(
|
|
43
45
|
PATH_E2E_COMBOBOX_MULTI_SLOTS,
|
|
44
46
|
'controlled-menu-state-with-section-slots-test',
|
|
@@ -294,4 +296,18 @@ export default class DSComboboxMultiCO extends PageObject {
|
|
|
294
296
|
static snapshotPath(example = 'basic') {
|
|
295
297
|
return PageObject.getSnapshotPathBuilder('DSComboboxMulti', example, 'ds-combobox-multi');
|
|
296
298
|
}
|
|
299
|
+
|
|
300
|
+
// The selection wrapper and the selected pills' labels both render through
|
|
301
|
+
// styled(DSTypography), so the owner slot lands on `data-dimsum-parent-slot`.
|
|
302
|
+
static async getThemedSelection() {
|
|
303
|
+
return $('[data-testid="theme-font-sentinel"] [data-dimsum-parent-slot="dsComboboxSelection"]');
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
static async getFallbackSelection() {
|
|
307
|
+
return $('[data-testid="theme-font-fallback"] [data-dimsum-parent-slot="dsComboboxSelection"]');
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
static async getThemedPillLabel() {
|
|
311
|
+
return $('[data-testid="theme-font-sentinel"] [data-dimsum-parent-slot="dsPillLabel"]');
|
|
312
|
+
}
|
|
297
313
|
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import DSComboboxMultiCO from '../DSComboboxMultiCO';
|
|
2
|
+
|
|
3
|
+
// Tests the theme-driven font-family mechanism covered by the combobox theming spike PUI-18214
|
|
4
|
+
// (the selection wrapper and the selected pills' labels render through DSTypography, which reads
|
|
5
|
+
// theme.fonts.default, falling back to proxima-nova). Theme-agnostic: uses a sentinel font,
|
|
6
|
+
// never the dsConsumer POC theme values, so it survives any future theme change.
|
|
7
|
+
// Out of scope on purpose: the native <input> that holds typed text mirrors b2 as raw CSS and
|
|
8
|
+
// declares no font-family, so it does NOT follow theme.fonts.default (measured under the sentinel
|
|
9
|
+
// theme it still computes proxima-nova, i.e. the inherited page font, while the selection text
|
|
10
|
+
// switches). Asserting it here would lock in that gap; it is reported separately instead.
|
|
11
|
+
if (
|
|
12
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
13
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
14
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
15
|
+
browser.capabilities.browserName === 'Chrome'
|
|
16
|
+
) {
|
|
17
|
+
describe('PUI-18974 - ComboboxMulti:: theme font-family wiring - Func', () => {
|
|
18
|
+
before('loading page', async () => {
|
|
19
|
+
const errorOnGo = await DSComboboxMultiCO.themeFontURL.go();
|
|
20
|
+
if (errorOnGo) throw errorOnGo;
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
it('01: should read selection and pill font-family from theme with proxima-nova fallback', async () => {
|
|
24
|
+
const themed = await DSComboboxMultiCO.getThemedSelection();
|
|
25
|
+
await themed.waitForDisplayed();
|
|
26
|
+
const themedFont = (await themed.getCSSProperty('font-family')).value.toLowerCase();
|
|
27
|
+
await expect(themedFont).toContain('sentinelfont');
|
|
28
|
+
|
|
29
|
+
const themedPill = await DSComboboxMultiCO.getThemedPillLabel();
|
|
30
|
+
const themedPillFont = (await themedPill.getCSSProperty('font-family')).value.toLowerCase();
|
|
31
|
+
await expect(themedPillFont).toContain('sentinelfont');
|
|
32
|
+
|
|
33
|
+
const fallback = await DSComboboxMultiCO.getFallbackSelection();
|
|
34
|
+
const fallbackFont = (await fallback.getCSSProperty('font-family')).value.toLowerCase();
|
|
35
|
+
await expect(fallbackFont).toContain('proxima-nova');
|
|
36
|
+
});
|
|
37
|
+
});
|
|
38
|
+
}
|
|
@@ -45,6 +45,8 @@ export default class DSComboboxSingleCO extends PageObject {
|
|
|
45
45
|
|
|
46
46
|
static withTooltip = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'with-tooltip-test');
|
|
47
47
|
|
|
48
|
+
static themeFontURL = new Urlbuilder(PATH_E2E_COMBOBOX_SINGLE, 'theme-font-family-test');
|
|
49
|
+
|
|
48
50
|
// COMBOBOX - INPUT
|
|
49
51
|
static async getCombobox() {
|
|
50
52
|
return $('[data-testid="combobox-container"]');
|
|
@@ -275,4 +277,14 @@ export default class DSComboboxSingleCO extends PageObject {
|
|
|
275
277
|
static snapshotPath(example = 'basic') {
|
|
276
278
|
return PageObject.getSnapshotPathBuilder('DSComboboxV3', example, 'ds-combobox');
|
|
277
279
|
}
|
|
280
|
+
|
|
281
|
+
// The selection text renders through styled(DSTypography), so the owner slot lands on
|
|
282
|
+
// `data-dimsum-parent-slot` (the element's own `data-dimsum-slot` is the typography root).
|
|
283
|
+
static async getThemedSelection() {
|
|
284
|
+
return $('[data-testid="theme-font-sentinel"] [data-dimsum-parent-slot="dsComboboxSelection"]');
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
static async getFallbackSelection() {
|
|
288
|
+
return $('[data-testid="theme-font-fallback"] [data-dimsum-parent-slot="dsComboboxSelection"]');
|
|
289
|
+
}
|
|
278
290
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import DSComboboxSingleCO from '../DSComboboxSingleCO';
|
|
2
|
+
|
|
3
|
+
// Tests the theme-driven font-family mechanism covered by the combobox theming spike PUI-18214
|
|
4
|
+
// (the selection text renders through DSTypography, which reads theme.fonts.default, falling
|
|
5
|
+
// back to proxima-nova). Theme-agnostic: uses a sentinel font, never the dsConsumer POC theme
|
|
6
|
+
// values, so it survives any future theme change.
|
|
7
|
+
// Out of scope on purpose: the native <input> that holds typed text mirrors b2 as raw CSS and
|
|
8
|
+
// declares no font-family, so it does NOT follow theme.fonts.default (measured under the sentinel
|
|
9
|
+
// theme it still computes proxima-nova, i.e. the inherited page font, while the selection text
|
|
10
|
+
// switches). Asserting it here would lock in that gap; it is reported separately instead.
|
|
11
|
+
if (
|
|
12
|
+
(!browser.capabilities['ice:options'].isPhone &&
|
|
13
|
+
!browser.capabilities['ice:options'].isTablet &&
|
|
14
|
+
browser.capabilities.browserName === 'chrome') ||
|
|
15
|
+
browser.capabilities.browserName === 'Chrome'
|
|
16
|
+
) {
|
|
17
|
+
describe('PUI-18973 - ComboboxSingle:: theme font-family wiring - Func', () => {
|
|
18
|
+
before('loading page', async () => {
|
|
19
|
+
const errorOnGo = await DSComboboxSingleCO.themeFontURL.go();
|
|
20
|
+
if (errorOnGo) throw errorOnGo;
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
it('01: should read selection font-family from theme with proxima-nova fallback', async () => {
|
|
24
|
+
const themed = await DSComboboxSingleCO.getThemedSelection();
|
|
25
|
+
await themed.waitForDisplayed();
|
|
26
|
+
const themedFont = (await themed.getCSSProperty('font-family')).value.toLowerCase();
|
|
27
|
+
await expect(themedFont).toContain('sentinelfont');
|
|
28
|
+
|
|
29
|
+
const fallback = await DSComboboxSingleCO.getFallbackSelection();
|
|
30
|
+
const fallbackFont = (await fallback.getCSSProperty('font-family')).value.toLowerCase();
|
|
31
|
+
await expect(fallbackFont).toContain('proxima-nova');
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
}
|
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.62",
|
|
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-accessibility": "3.70.0-next.
|
|
42
|
-
"@elliemae/ds-
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-button-v2": "3.70.0-next.
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-card-v1": "3.70.0-next.
|
|
51
|
-
"@elliemae/ds-card": "3.70.0-next.
|
|
52
|
-
"@elliemae/ds-card-v1-detail": "3.70.0-next.
|
|
53
|
-
"@elliemae/ds-card-v2": "3.70.0-next.
|
|
54
|
-
"@elliemae/ds-card-v2-
|
|
55
|
-
"@elliemae/ds-card-v2
|
|
56
|
-
"@elliemae/ds-card-v3
|
|
57
|
-
"@elliemae/ds-chat": "3.70.0-next.
|
|
58
|
-
"@elliemae/ds-chat-bubble": "3.70.0-next.
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-card
|
|
61
|
-
"@elliemae/ds-chat-container
|
|
62
|
-
"@elliemae/ds-chat-container": "3.70.0-next.
|
|
63
|
-
"@elliemae/ds-chat-floating-button": "3.70.0-next.
|
|
64
|
-
"@elliemae/ds-chat-
|
|
65
|
-
"@elliemae/ds-chat-
|
|
66
|
-
"@elliemae/ds-chat-
|
|
67
|
-
"@elliemae/ds-chat-system-message": "3.70.0-next.
|
|
68
|
-
"@elliemae/ds-chip": "3.70.0-next.
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-
|
|
71
|
-
"@elliemae/ds-classnames": "3.70.0-next.
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-csv-converter": "3.70.0-next.
|
|
76
|
-
"@elliemae/ds-data-table
|
|
77
|
-
"@elliemae/ds-data-table-action-cell": "3.70.0-next.
|
|
78
|
-
"@elliemae/ds-data-table-
|
|
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-dataviz
|
|
86
|
-
"@elliemae/ds-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-
|
|
89
|
-
"@elliemae/ds-
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-
|
|
93
|
-
"@elliemae/ds-
|
|
94
|
-
"@elliemae/ds-
|
|
95
|
-
"@elliemae/ds-form-checkbox": "3.70.0-next.
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-form-
|
|
98
|
-
"@elliemae/ds-form-
|
|
99
|
-
"@elliemae/ds-form-input-
|
|
100
|
-
"@elliemae/ds-form-
|
|
101
|
-
"@elliemae/ds-form-date-range-picker": "3.70.0-next.
|
|
102
|
-
"@elliemae/ds-
|
|
103
|
-
"@elliemae/ds-form-
|
|
104
|
-
"@elliemae/ds-form-
|
|
105
|
-
"@elliemae/ds-form-
|
|
106
|
-
"@elliemae/ds-form-
|
|
107
|
-
"@elliemae/ds-form-
|
|
108
|
-
"@elliemae/ds-form-
|
|
109
|
-
"@elliemae/ds-form-
|
|
110
|
-
"@elliemae/ds-form-toggle": "3.70.0-next.
|
|
111
|
-
"@elliemae/ds-form-
|
|
112
|
-
"@elliemae/ds-global-header": "3.70.0-next.
|
|
113
|
-
"@elliemae/ds-
|
|
114
|
-
"@elliemae/ds-
|
|
115
|
-
"@elliemae/ds-hooks-focus-
|
|
116
|
-
"@elliemae/ds-hooks-
|
|
117
|
-
"@elliemae/ds-hooks-
|
|
118
|
-
"@elliemae/ds-
|
|
119
|
-
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.
|
|
120
|
-
"@elliemae/ds-hooks-
|
|
121
|
-
"@elliemae/ds-
|
|
122
|
-
"@elliemae/ds-hooks-
|
|
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-
|
|
134
|
-
"@elliemae/ds-menu-
|
|
135
|
-
"@elliemae/ds-menu-items": "3.70.0-next.
|
|
136
|
-
"@elliemae/ds-menu-items-
|
|
137
|
-
"@elliemae/ds-menu-items-
|
|
138
|
-
"@elliemae/ds-menu-items-
|
|
139
|
-
"@elliemae/ds-menu-items-
|
|
140
|
-
"@elliemae/ds-
|
|
141
|
-
"@elliemae/ds-
|
|
142
|
-
"@elliemae/ds-
|
|
143
|
-
"@elliemae/ds-
|
|
144
|
-
"@elliemae/ds-
|
|
145
|
-
"@elliemae/ds-
|
|
146
|
-
"@elliemae/ds-
|
|
147
|
-
"@elliemae/ds-
|
|
148
|
-
"@elliemae/ds-page-header-
|
|
149
|
-
"@elliemae/ds-page-header": "3.70.0-next.
|
|
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-props-helpers": "3.70.0-next.
|
|
159
|
-
"@elliemae/ds-
|
|
160
|
-
"@elliemae/ds-
|
|
161
|
-
"@elliemae/ds-
|
|
162
|
-
"@elliemae/ds-
|
|
163
|
-
"@elliemae/ds-
|
|
164
|
-
"@elliemae/ds-
|
|
165
|
-
"@elliemae/ds-shuttle-v2": "3.70.0-next.
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-
|
|
172
|
-
"@elliemae/ds-svg": "3.70.0-next.
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-toast": "3.70.0-next.
|
|
177
|
-
"@elliemae/ds-
|
|
178
|
-
"@elliemae/ds-toolbar-v2": "3.70.0-next.
|
|
179
|
-
"@elliemae/ds-tooltip-v3": "3.70.0-next.
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-
|
|
182
|
-
"@elliemae/ds-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-virtual-list": "3.70.0-next.
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-
|
|
41
|
+
"@elliemae/ds-accessibility": "3.70.0-next.62",
|
|
42
|
+
"@elliemae/ds-accordion": "3.70.0-next.62",
|
|
43
|
+
"@elliemae/ds-banner": "3.70.0-next.62",
|
|
44
|
+
"@elliemae/ds-backdrop": "3.70.0-next.62",
|
|
45
|
+
"@elliemae/ds-basic": "3.70.0-next.62",
|
|
46
|
+
"@elliemae/ds-app-picker": "3.70.0-next.62",
|
|
47
|
+
"@elliemae/ds-card": "3.70.0-next.62",
|
|
48
|
+
"@elliemae/ds-button-v2": "3.70.0-next.62",
|
|
49
|
+
"@elliemae/ds-breadcrumb": "3.70.0-next.62",
|
|
50
|
+
"@elliemae/ds-card-v1": "3.70.0-next.62",
|
|
51
|
+
"@elliemae/ds-card-navigation": "3.70.0-next.62",
|
|
52
|
+
"@elliemae/ds-card-v1-detail": "3.70.0-next.62",
|
|
53
|
+
"@elliemae/ds-card-v2-action-addon": "3.70.0-next.62",
|
|
54
|
+
"@elliemae/ds-card-v2-group": "3.70.0-next.62",
|
|
55
|
+
"@elliemae/ds-card-v2": "3.70.0-next.62",
|
|
56
|
+
"@elliemae/ds-card-v3": "3.70.0-next.62",
|
|
57
|
+
"@elliemae/ds-chat": "3.70.0-next.62",
|
|
58
|
+
"@elliemae/ds-chat-bubble": "3.70.0-next.62",
|
|
59
|
+
"@elliemae/ds-card-v3-poc": "3.70.0-next.62",
|
|
60
|
+
"@elliemae/ds-chat-card": "3.70.0-next.62",
|
|
61
|
+
"@elliemae/ds-chat-container": "3.70.0-next.62",
|
|
62
|
+
"@elliemae/ds-chat-container-header": "3.70.0-next.62",
|
|
63
|
+
"@elliemae/ds-chat-floating-button": "3.70.0-next.62",
|
|
64
|
+
"@elliemae/ds-chat-empty-state": "3.70.0-next.62",
|
|
65
|
+
"@elliemae/ds-chat-sidebar": "3.70.0-next.62",
|
|
66
|
+
"@elliemae/ds-chat-message-delimeter": "3.70.0-next.62",
|
|
67
|
+
"@elliemae/ds-chat-system-message": "3.70.0-next.62",
|
|
68
|
+
"@elliemae/ds-chip": "3.70.0-next.62",
|
|
69
|
+
"@elliemae/ds-chat-tile": "3.70.0-next.62",
|
|
70
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.62",
|
|
71
|
+
"@elliemae/ds-classnames": "3.70.0-next.62",
|
|
72
|
+
"@elliemae/ds-codeeditor": "3.70.0-next.62",
|
|
73
|
+
"@elliemae/ds-comments": "3.70.0-next.62",
|
|
74
|
+
"@elliemae/ds-controlled-form": "3.70.0-next.62",
|
|
75
|
+
"@elliemae/ds-csv-converter": "3.70.0-next.62",
|
|
76
|
+
"@elliemae/ds-data-table": "3.70.0-next.62",
|
|
77
|
+
"@elliemae/ds-data-table-action-cell": "3.70.0-next.62",
|
|
78
|
+
"@elliemae/ds-data-table-cell": "3.70.0-next.62",
|
|
79
|
+
"@elliemae/ds-data-table-cell-header": "3.70.0-next.62",
|
|
80
|
+
"@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.62",
|
|
81
|
+
"@elliemae/ds-data-table-filters": "3.70.0-next.62",
|
|
82
|
+
"@elliemae/ds-data-table-expand-cell": "3.70.0-next.62",
|
|
83
|
+
"@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.62",
|
|
84
|
+
"@elliemae/ds-data-table-single-select-cell": "3.70.0-next.62",
|
|
85
|
+
"@elliemae/ds-dataviz": "3.70.0-next.62",
|
|
86
|
+
"@elliemae/ds-dataviz-pie": "3.70.0-next.62",
|
|
87
|
+
"@elliemae/ds-decision-graph": "3.70.0-next.62",
|
|
88
|
+
"@elliemae/ds-dropdownmenu-v2": "3.70.0-next.62",
|
|
89
|
+
"@elliemae/ds-date-time-picker": "3.70.0-next.62",
|
|
90
|
+
"@elliemae/ds-dropzone": "3.70.0-next.62",
|
|
91
|
+
"@elliemae/ds-drag-and-drop": "3.70.0-next.62",
|
|
92
|
+
"@elliemae/ds-filter-bar": "3.70.0-next.62",
|
|
93
|
+
"@elliemae/ds-dialog": "3.70.0-next.62",
|
|
94
|
+
"@elliemae/ds-fast-list": "3.70.0-next.62",
|
|
95
|
+
"@elliemae/ds-form-checkbox": "3.70.0-next.62",
|
|
96
|
+
"@elliemae/ds-floating-context": "3.70.0-next.62",
|
|
97
|
+
"@elliemae/ds-form-date-time-picker": "3.70.0-next.62",
|
|
98
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.62",
|
|
99
|
+
"@elliemae/ds-form-input-textarea": "3.70.0-next.62",
|
|
100
|
+
"@elliemae/ds-form-layout-autocomplete": "3.70.0-next.62",
|
|
101
|
+
"@elliemae/ds-form-date-range-picker": "3.70.0-next.62",
|
|
102
|
+
"@elliemae/ds-form-layout-label": "3.70.0-next.62",
|
|
103
|
+
"@elliemae/ds-form-multi-combobox": "3.70.0-next.62",
|
|
104
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.62",
|
|
105
|
+
"@elliemae/ds-form-native-select": "3.70.0-next.62",
|
|
106
|
+
"@elliemae/ds-form-radio": "3.70.0-next.62",
|
|
107
|
+
"@elliemae/ds-form-select": "3.70.0-next.62",
|
|
108
|
+
"@elliemae/ds-form-layout-blocks": "3.70.0-next.62",
|
|
109
|
+
"@elliemae/ds-form-single-combobox": "3.70.0-next.62",
|
|
110
|
+
"@elliemae/ds-form-toggle": "3.70.0-next.62",
|
|
111
|
+
"@elliemae/ds-form-combobox": "3.70.0-next.62",
|
|
112
|
+
"@elliemae/ds-global-header": "3.70.0-next.62",
|
|
113
|
+
"@elliemae/ds-hooks-focus-stack": "3.70.0-next.62",
|
|
114
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.62",
|
|
115
|
+
"@elliemae/ds-hooks-focus-trap": "3.70.0-next.62",
|
|
116
|
+
"@elliemae/ds-hooks-fontsize-media": "3.70.0-next.62",
|
|
117
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.62",
|
|
118
|
+
"@elliemae/ds-grid": "3.70.0-next.62",
|
|
119
|
+
"@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.62",
|
|
120
|
+
"@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.62",
|
|
121
|
+
"@elliemae/ds-icon": "3.70.0-next.62",
|
|
122
|
+
"@elliemae/ds-hooks-is-mobile": "3.70.0-next.62",
|
|
123
|
+
"@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.62",
|
|
124
|
+
"@elliemae/ds-image": "3.70.0-next.62",
|
|
125
|
+
"@elliemae/ds-layout-provider": "3.70.0-next.62",
|
|
126
|
+
"@elliemae/ds-left-navigation": "3.70.0-next.62",
|
|
127
|
+
"@elliemae/ds-icons": "3.70.0-next.62",
|
|
128
|
+
"@elliemae/ds-loading-indicator": "3.70.0-next.62",
|
|
129
|
+
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.62",
|
|
130
|
+
"@elliemae/ds-menu-items-action": "3.70.0-next.62",
|
|
131
|
+
"@elliemae/ds-menu-items": "3.70.0-next.62",
|
|
132
|
+
"@elliemae/ds-imagelibrarymodal": "3.70.0-next.62",
|
|
133
|
+
"@elliemae/ds-form-layout-input-group": "3.70.0-next.62",
|
|
134
|
+
"@elliemae/ds-menu-button": "3.70.0-next.62",
|
|
135
|
+
"@elliemae/ds-menu-items-commons": "3.70.0-next.62",
|
|
136
|
+
"@elliemae/ds-menu-items-section": "3.70.0-next.62",
|
|
137
|
+
"@elliemae/ds-menu-items-multi": "3.70.0-next.62",
|
|
138
|
+
"@elliemae/ds-menu-items-separator": "3.70.0-next.62",
|
|
139
|
+
"@elliemae/ds-menu-items-single": "3.70.0-next.62",
|
|
140
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.62",
|
|
141
|
+
"@elliemae/ds-modal-slide": "3.70.0-next.62",
|
|
142
|
+
"@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.62",
|
|
143
|
+
"@elliemae/ds-menu-tree-item": "3.70.0-next.62",
|
|
144
|
+
"@elliemae/ds-menu-items-submenu": "3.70.0-next.62",
|
|
145
|
+
"@elliemae/ds-mobile": "3.70.0-next.62",
|
|
146
|
+
"@elliemae/ds-notification-badge": "3.70.0-next.62",
|
|
147
|
+
"@elliemae/ds-overlay": "3.70.0-next.62",
|
|
148
|
+
"@elliemae/ds-page-header-v1": "3.70.0-next.62",
|
|
149
|
+
"@elliemae/ds-page-header-v2": "3.70.0-next.62",
|
|
150
|
+
"@elliemae/ds-page-layout": "3.70.0-next.62",
|
|
151
|
+
"@elliemae/ds-page-header": "3.70.0-next.62",
|
|
152
|
+
"@elliemae/ds-portal": "3.70.0-next.62",
|
|
153
|
+
"@elliemae/ds-progress-indicator": "3.70.0-next.62",
|
|
154
|
+
"@elliemae/ds-pagination": "3.70.0-next.62",
|
|
155
|
+
"@elliemae/ds-query-builder": "3.70.0-next.62",
|
|
156
|
+
"@elliemae/ds-read-more": "3.70.0-next.62",
|
|
157
|
+
"@elliemae/ds-pills-v2": "3.70.0-next.62",
|
|
158
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.62",
|
|
159
|
+
"@elliemae/ds-ribbon": "3.70.0-next.62",
|
|
160
|
+
"@elliemae/ds-resizeable-container": "3.70.0-next.62",
|
|
161
|
+
"@elliemae/ds-shared": "3.70.0-next.62",
|
|
162
|
+
"@elliemae/ds-scrollable-container": "3.70.0-next.62",
|
|
163
|
+
"@elliemae/ds-separator": "3.70.0-next.62",
|
|
164
|
+
"@elliemae/ds-side-panel": "3.70.0-next.62",
|
|
165
|
+
"@elliemae/ds-shuttle-v2": "3.70.0-next.62",
|
|
166
|
+
"@elliemae/ds-side-panel-header": "3.70.0-next.62",
|
|
167
|
+
"@elliemae/ds-menu-items-skeleton": "3.70.0-next.62",
|
|
168
|
+
"@elliemae/ds-square-indicator": "3.70.0-next.62",
|
|
169
|
+
"@elliemae/ds-slider-v2": "3.70.0-next.62",
|
|
170
|
+
"@elliemae/ds-skeleton": "3.70.0-next.62",
|
|
171
|
+
"@elliemae/ds-stepper": "3.70.0-next.62",
|
|
172
|
+
"@elliemae/ds-svg": "3.70.0-next.62",
|
|
173
|
+
"@elliemae/ds-tabs": "3.70.0-next.62",
|
|
174
|
+
"@elliemae/ds-test-utils": "3.70.0-next.62",
|
|
175
|
+
"@elliemae/ds-toolbar-v1": "3.70.0-next.62",
|
|
176
|
+
"@elliemae/ds-toast": "3.70.0-next.62",
|
|
177
|
+
"@elliemae/ds-system": "3.70.0-next.62",
|
|
178
|
+
"@elliemae/ds-toolbar-v2": "3.70.0-next.62",
|
|
179
|
+
"@elliemae/ds-tooltip-v3": "3.70.0-next.62",
|
|
180
|
+
"@elliemae/ds-transition": "3.70.0-next.62",
|
|
181
|
+
"@elliemae/ds-tree-model": "3.70.0-next.62",
|
|
182
|
+
"@elliemae/ds-treeview": "3.70.0-next.62",
|
|
183
|
+
"@elliemae/ds-typography": "3.70.0-next.62",
|
|
184
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.62",
|
|
185
|
+
"@elliemae/ds-wizard": "3.70.0-next.62",
|
|
186
|
+
"@elliemae/ds-virtual-list": "3.70.0-next.62",
|
|
187
|
+
"@elliemae/ds-zustand-helpers": "3.70.0-next.62",
|
|
188
|
+
"@elliemae/ds-truncated-expandable-text": "3.70.0-next.62"
|
|
189
189
|
},
|
|
190
190
|
"publishConfig": {
|
|
191
191
|
"access": "public"
|
package/paths.js
CHANGED
|
@@ -347,6 +347,7 @@ export const PATH_E2E_SQUARE_INDICATOR = `${PATH_E2E}/SquareIndicator`;
|
|
|
347
347
|
export const PATH_E2E_CONTROLLEDLARGEINPUT = `${PATH_E2E}/ControlledLargeInputText`;
|
|
348
348
|
export const PATH_E2E_CONTROLLEDINPUT = `${PATH_E2E}/ControlledInputText`;
|
|
349
349
|
export const PATH_E2E_CHECKBOX = `${PATH_E2E}/Checkbox`;
|
|
350
|
+
export const PATH_E2E_CHECKBOX_SLOTS = `${PATH_E2E_CHECKBOX}/Slots`;
|
|
350
351
|
export const PATH_E2E_BUTTON_V2 = `${PATH_E2E}/ButtonV2`;
|
|
351
352
|
export const PATH_E2E_BUTTON_V3 = `${PATH_E2E}/ButtonV3`;
|
|
352
353
|
export const PATH_E2E_DDMENU_V2 = `${PATH_E2E}/DropDownMenuV2`;
|
|
@@ -370,6 +371,7 @@ export const PATH_E2E_DATAVIZ_SCROLL = `${PATH_E2E_DATAVIZ}/Scroll`;
|
|
|
370
371
|
export const PATH_E2E_DATAVIZ_SINGLESTACKED = `${PATH_E2E_DATAVIZ}/Single Stacked Bar`;
|
|
371
372
|
export const PATH_E2E_AUTOCOMPLETE = `${PATH_E2E}/Autocomplete`;
|
|
372
373
|
export const PATH_E2E_RADIO = `${PATH_E2E}/Radio`;
|
|
374
|
+
export const PATH_E2E_RADIO_SLOTS = `${PATH_E2E_RADIO}/Slots`;
|
|
373
375
|
export const PATH_E2E_RADIO_GROUP = `${PATH_E2E}/RadioGroup`;
|
|
374
376
|
export const PATH_E2E_SVG = `${PATH_E2E}/Svg`;
|
|
375
377
|
export const PATH_E2E_IMAGE = `${PATH_E2E}/Image`;
|