dimsum-e2e-tests 3.70.0-next.50 → 3.70.0-next.51

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 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.51 (2026-07-27)
7
+
8
+ ### Features
9
+
10
+ - ds-button-v2:: add e2e test for aria-disabled attribute absence [PUI-17909](https://jira.elliemae.io/browse/PUI-17909) ([#8222](https://git.elliemae.io/platform-ui/dimsum/issues/8222)) ([0c972a5](https://git.elliemae.io/platform-ui/dimsum/commit/0c972a5a26a92c6e69979000649521fab87bdb9d))
11
+
6
12
  ## 3.70.0-next.50 (2026-07-24)
7
13
 
8
14
  **Note:** Version bump only for package dimsum-e2e-tests
@@ -0,0 +1,33 @@
1
+ import DSButtonV3CO from './DSButtonV3CO';
2
+
3
+ // Tests for the fix introduced in PUI-17909:
4
+ // aria-disabled is no longer emitted as "false" on interactive buttons. A default (enabled) button
5
+ // carries no aria-disabled at all, and a native `disabled` button conveys its state via the native
6
+ // `disabled` attribute, so aria-disabled is intentionally absent there too (it was dropped from the
7
+ // emission condition, which is now applyAriaDisabled || readOnly).
8
+ // Both states already exist in the ShowcaseTest story (index 0 = enabled, index 3 = disabled).
9
+ // Pure DOM-attribute assertions produce identical results in every browser, so this runs Chrome-only.
10
+ if (
11
+ (!browser.capabilities['ice:options'].isPhone &&
12
+ !browser.capabilities['ice:options'].isTablet &&
13
+ browser.capabilities.browserName === 'chrome') ||
14
+ browser.capabilities.browserName === 'Chrome'
15
+ ) {
16
+ describe('PUI-18796 - DSButtonV3:: aria-disabled absent on enabled and disabled buttons - Func', () => {
17
+ before('loading page', async () => {
18
+ const errorOnGo = await DSButtonV3CO.showcaseURL.go();
19
+ if (errorOnGo) throw errorOnGo;
20
+ });
21
+
22
+ it('01: should not emit aria-disabled on enabled or native-disabled buttons', async () => {
23
+ // Enabled (default): aria-disabled must be entirely absent — the core PUI-17909 fix.
24
+ const enabled = await DSButtonV3CO.getButtonByIndex(0);
25
+ await expect(enabled).not.toHaveAttribute('aria-disabled');
26
+
27
+ // Native disabled: relies on the native `disabled` attribute, aria-disabled stays absent.
28
+ const disabled = await DSButtonV3CO.getButtonByIndex(3);
29
+ await expect(disabled).toHaveAttribute('disabled');
30
+ await expect(disabled).not.toHaveAttribute('aria-disabled');
31
+ });
32
+ });
33
+ }
@@ -23,6 +23,8 @@ export default class DSControlledCheckboxCO extends PageObject {
23
23
 
24
24
  static applyAriaDisabled = new Urlbuilder(PATH_E2E_CHECKBOX, 'apply-aria-disabled-test');
25
25
 
26
+ static themeFontURL = new Urlbuilder(PATH_E2E_CHECKBOX, 'theme-font-family-test');
27
+
26
28
  static async getCheckbox() {
27
29
  return $('[data-testid="ds-checkbox"]');
28
30
  }
@@ -66,4 +68,12 @@ export default class DSControlledCheckboxCO extends PageObject {
66
68
  static snapshotPath(example = 'basic') {
67
69
  return PageObject.getSnapshotPathBuilder('DSControlledCheckbox', example, 'ds-controlled-checkbox');
68
70
  }
71
+
72
+ static async getThemedCheckboxLabel() {
73
+ return $('[data-testid="theme-font-sentinel"] [data-testid="ds-checkbox-label-typography"]');
74
+ }
75
+
76
+ static async getFallbackCheckboxLabel() {
77
+ return $('[data-testid="theme-font-fallback"] [data-testid="ds-checkbox-label-typography"]');
78
+ }
69
79
  }
@@ -0,0 +1,30 @@
1
+ import DSControlledCheckboxCO from '../DSControlledCheckboxCO';
2
+
3
+ // Tests the theme-driven font-family mechanism shipped under PUI-18210
4
+ // (the checkbox label renders through DSTypography, which reads theme.fonts.default,
5
+ // falling back to proxima-nova). Theme-agnostic: uses a sentinel font, never the
6
+ // dsConsumer POC theme values, so it survives any future theme change.
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-18799 - DSControlledCheckbox:: theme font-family wiring - Func', () => {
14
+ before('loading page', async () => {
15
+ const errorOnGo = await DSControlledCheckboxCO.themeFontURL.go();
16
+ if (errorOnGo) throw errorOnGo;
17
+ });
18
+
19
+ it('01: should read label font-family from theme with proxima-nova fallback', async () => {
20
+ const themed = await DSControlledCheckboxCO.getThemedCheckboxLabel();
21
+ await themed.waitForDisplayed();
22
+ const themedFont = (await themed.getCSSProperty('font-family')).value.toLowerCase();
23
+ await expect(themedFont).toContain('sentinelfont');
24
+
25
+ const fallback = await DSControlledCheckboxCO.getFallbackCheckboxLabel();
26
+ const fallbackFont = (await fallback.getCSSProperty('font-family')).value.toLowerCase();
27
+ await expect(fallbackFont).toContain('proxima-nova');
28
+ });
29
+ });
30
+ }
@@ -16,6 +16,8 @@ export default class DSControlledRadioCO extends PageObject {
16
16
 
17
17
  static wrapLabel = new Urlbuilder(PATH_E2E_RADIO, 'wrap-label');
18
18
 
19
+ static themeFontURL = new Urlbuilder(PATH_E2E_RADIO, 'theme-font-family-test');
20
+
19
21
  static async getRadio() {
20
22
  return $('[data-testid="ds-radio"]');
21
23
  }
@@ -43,4 +45,12 @@ export default class DSControlledRadioCO extends PageObject {
43
45
  static snapshotPath(example = 'basic') {
44
46
  return PageObject.getSnapshotPathBuilder('DSControlledRadio', example, 'ds-controlled-radio');
45
47
  }
48
+
49
+ static async getThemedRadioLabel() {
50
+ return $('[data-testid="theme-font-sentinel"] [data-testid="ds-radio-label-typography"]');
51
+ }
52
+
53
+ static async getFallbackRadioLabel() {
54
+ return $('[data-testid="theme-font-fallback"] [data-testid="ds-radio-label-typography"]');
55
+ }
46
56
  }
@@ -0,0 +1,30 @@
1
+ import DSControlledRadioCO from '../DSControlledRadioCO';
2
+
3
+ // Tests the theme-driven font-family mechanism shipped under PUI-18210
4
+ // (the radio label renders through DSTypography, which reads theme.fonts.default,
5
+ // falling back to proxima-nova). Theme-agnostic: uses a sentinel font, never the
6
+ // dsConsumer POC theme values, so it survives any future theme change.
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-18800 - DSControlledRadio:: theme font-family wiring - Func', () => {
14
+ before('loading page', async () => {
15
+ const errorOnGo = await DSControlledRadioCO.themeFontURL.go();
16
+ if (errorOnGo) throw errorOnGo;
17
+ });
18
+
19
+ it('01: should read label font-family from theme with proxima-nova fallback', async () => {
20
+ const themed = await DSControlledRadioCO.getThemedRadioLabel();
21
+ await themed.waitForDisplayed();
22
+ const themedFont = (await themed.getCSSProperty('font-family')).value.toLowerCase();
23
+ await expect(themedFont).toContain('sentinelfont');
24
+
25
+ const fallback = await DSControlledRadioCO.getFallbackRadioLabel();
26
+ const fallbackFont = (await fallback.getCSSProperty('font-family')).value.toLowerCase();
27
+ await expect(fallbackFont).toContain('proxima-nova');
28
+ });
29
+ });
30
+ }
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.50",
4
+ "version": "3.70.0-next.51",
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.50",
42
- "@elliemae/ds-accordion": "3.70.0-next.50",
43
- "@elliemae/ds-backdrop": "3.70.0-next.50",
44
- "@elliemae/ds-app-picker": "3.70.0-next.50",
45
- "@elliemae/ds-banner": "3.70.0-next.50",
46
- "@elliemae/ds-basic": "3.70.0-next.50",
47
- "@elliemae/ds-breadcrumb": "3.70.0-next.50",
48
- "@elliemae/ds-button-v2": "3.70.0-next.50",
49
- "@elliemae/ds-card": "3.70.0-next.50",
50
- "@elliemae/ds-card-navigation": "3.70.0-next.50",
51
- "@elliemae/ds-card-v1": "3.70.0-next.50",
52
- "@elliemae/ds-card-v1-detail": "3.70.0-next.50",
53
- "@elliemae/ds-card-v2": "3.70.0-next.50",
54
- "@elliemae/ds-card-v2-action-addon": "3.70.0-next.50",
55
- "@elliemae/ds-card-v2-group": "3.70.0-next.50",
56
- "@elliemae/ds-card-v3": "3.70.0-next.50",
57
- "@elliemae/ds-card-v3-poc": "3.70.0-next.50",
58
- "@elliemae/ds-chat": "3.70.0-next.50",
59
- "@elliemae/ds-chat-bubble": "3.70.0-next.50",
60
- "@elliemae/ds-chat-card": "3.70.0-next.50",
61
- "@elliemae/ds-chat-container": "3.70.0-next.50",
62
- "@elliemae/ds-chat-container-header": "3.70.0-next.50",
63
- "@elliemae/ds-chat-empty-state": "3.70.0-next.50",
64
- "@elliemae/ds-chat-floating-button": "3.70.0-next.50",
65
- "@elliemae/ds-chat-message-delimeter": "3.70.0-next.50",
66
- "@elliemae/ds-chat-system-message": "3.70.0-next.50",
67
- "@elliemae/ds-chat-tile": "3.70.0-next.50",
68
- "@elliemae/ds-chat-sidebar": "3.70.0-next.50",
69
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.50",
70
- "@elliemae/ds-classnames": "3.70.0-next.50",
71
- "@elliemae/ds-chip": "3.70.0-next.50",
72
- "@elliemae/ds-codeeditor": "3.70.0-next.50",
73
- "@elliemae/ds-comments": "3.70.0-next.50",
74
- "@elliemae/ds-controlled-form": "3.70.0-next.50",
75
- "@elliemae/ds-csv-converter": "3.70.0-next.50",
76
- "@elliemae/ds-data-table-action-cell": "3.70.0-next.50",
77
- "@elliemae/ds-data-table-cell": "3.70.0-next.50",
78
- "@elliemae/ds-data-table": "3.70.0-next.50",
79
- "@elliemae/ds-data-table-cell-header": "3.70.0-next.50",
80
- "@elliemae/ds-data-table-expand-cell": "3.70.0-next.50",
81
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.50",
82
- "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.50",
83
- "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.50",
84
- "@elliemae/ds-dataviz-pie": "3.70.0-next.50",
85
- "@elliemae/ds-data-table-filters": "3.70.0-next.50",
86
- "@elliemae/ds-dataviz": "3.70.0-next.50",
87
- "@elliemae/ds-decision-graph": "3.70.0-next.50",
88
- "@elliemae/ds-date-time-picker": "3.70.0-next.50",
89
- "@elliemae/ds-dialog": "3.70.0-next.50",
90
- "@elliemae/ds-drag-and-drop": "3.70.0-next.50",
91
- "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.50",
92
- "@elliemae/ds-dropzone": "3.70.0-next.50",
93
- "@elliemae/ds-fast-list": "3.70.0-next.50",
94
- "@elliemae/ds-filter-bar": "3.70.0-next.50",
95
- "@elliemae/ds-form-combobox": "3.70.0-next.50",
96
- "@elliemae/ds-form-checkbox": "3.70.0-next.50",
97
- "@elliemae/ds-floating-context": "3.70.0-next.50",
98
- "@elliemae/ds-form-date-range-picker": "3.70.0-next.50",
99
- "@elliemae/ds-form-date-time-picker": "3.70.0-next.50",
100
- "@elliemae/ds-form-input-text": "3.70.0-next.50",
101
- "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.50",
102
- "@elliemae/ds-form-input-textarea": "3.70.0-next.50",
103
- "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.50",
104
- "@elliemae/ds-form-layout-input-group": "3.70.0-next.50",
105
- "@elliemae/ds-form-layout-blocks": "3.70.0-next.50",
106
- "@elliemae/ds-form-multi-combobox": "3.70.0-next.50",
107
- "@elliemae/ds-form-native-select": "3.70.0-next.50",
108
- "@elliemae/ds-form-layout-label": "3.70.0-next.50",
109
- "@elliemae/ds-form-radio": "3.70.0-next.50",
110
- "@elliemae/ds-form-select": "3.70.0-next.50",
111
- "@elliemae/ds-form-single-combobox": "3.70.0-next.50",
112
- "@elliemae/ds-form-toggle": "3.70.0-next.50",
113
- "@elliemae/ds-global-header": "3.70.0-next.50",
114
- "@elliemae/ds-grid": "3.70.0-next.50",
115
- "@elliemae/ds-hooks-focus-stack": "3.70.0-next.50",
116
- "@elliemae/ds-hooks-focus-trap": "3.70.0-next.50",
117
- "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.50",
118
- "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.50",
119
- "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.50",
120
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.50",
121
- "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.50",
122
- "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.50",
123
- "@elliemae/ds-hooks-is-mobile": "3.70.0-next.50",
124
- "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.50",
125
- "@elliemae/ds-image": "3.70.0-next.50",
126
- "@elliemae/ds-icon": "3.70.0-next.50",
127
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.50",
128
- "@elliemae/ds-layout-provider": "3.70.0-next.50",
129
- "@elliemae/ds-left-navigation": "3.70.0-next.50",
130
- "@elliemae/ds-menu-items": "3.70.0-next.50",
131
- "@elliemae/ds-imagelibrarymodal": "3.70.0-next.50",
132
- "@elliemae/ds-icons": "3.70.0-next.50",
133
- "@elliemae/ds-loading-indicator": "3.70.0-next.50",
134
- "@elliemae/ds-menu-button": "3.70.0-next.50",
135
- "@elliemae/ds-menu-items-action": "3.70.0-next.50",
136
- "@elliemae/ds-menu-items-commons": "3.70.0-next.50",
137
- "@elliemae/ds-menu-items-multi": "3.70.0-next.50",
138
- "@elliemae/ds-menu-items-section": "3.70.0-next.50",
139
- "@elliemae/ds-menu-items-single": "3.70.0-next.50",
140
- "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.50",
141
- "@elliemae/ds-menu-items-separator": "3.70.0-next.50",
142
- "@elliemae/ds-menu-items-skeleton": "3.70.0-next.50",
143
- "@elliemae/ds-menu-items-submenu": "3.70.0-next.50",
144
- "@elliemae/ds-mobile": "3.70.0-next.50",
145
- "@elliemae/ds-menu-tree-item": "3.70.0-next.50",
146
- "@elliemae/ds-notification-badge": "3.70.0-next.50",
147
- "@elliemae/ds-overlay": "3.70.0-next.50",
148
- "@elliemae/ds-modal-slide": "3.70.0-next.50",
149
- "@elliemae/ds-page-header": "3.70.0-next.50",
150
- "@elliemae/ds-page-header-v1": "3.70.0-next.50",
151
- "@elliemae/ds-page-header-v2": "3.70.0-next.50",
152
- "@elliemae/ds-pagination": "3.70.0-next.50",
153
- "@elliemae/ds-page-layout": "3.70.0-next.50",
154
- "@elliemae/ds-pills-v2": "3.70.0-next.50",
155
- "@elliemae/ds-portal": "3.70.0-next.50",
156
- "@elliemae/ds-progress-indicator": "3.70.0-next.50",
157
- "@elliemae/ds-query-builder": "3.70.0-next.50",
158
- "@elliemae/ds-read-more": "3.70.0-next.50",
159
- "@elliemae/ds-resizeable-container": "3.70.0-next.50",
160
- "@elliemae/ds-ribbon": "3.70.0-next.50",
161
- "@elliemae/ds-props-helpers": "3.70.0-next.50",
162
- "@elliemae/ds-separator": "3.70.0-next.50",
163
- "@elliemae/ds-scrollable-container": "3.70.0-next.50",
164
- "@elliemae/ds-shared": "3.70.0-next.50",
165
- "@elliemae/ds-shuttle-v2": "3.70.0-next.50",
166
- "@elliemae/ds-skeleton": "3.70.0-next.50",
167
- "@elliemae/ds-side-panel": "3.70.0-next.50",
168
- "@elliemae/ds-side-panel-header": "3.70.0-next.50",
169
- "@elliemae/ds-slider-v2": "3.70.0-next.50",
170
- "@elliemae/ds-square-indicator": "3.70.0-next.50",
171
- "@elliemae/ds-stepper": "3.70.0-next.50",
172
- "@elliemae/ds-svg": "3.70.0-next.50",
173
- "@elliemae/ds-system": "3.70.0-next.50",
174
- "@elliemae/ds-tabs": "3.70.0-next.50",
175
- "@elliemae/ds-test-utils": "3.70.0-next.50",
176
- "@elliemae/ds-toast": "3.70.0-next.50",
177
- "@elliemae/ds-toolbar-v2": "3.70.0-next.50",
178
- "@elliemae/ds-toolbar-v1": "3.70.0-next.50",
179
- "@elliemae/ds-tooltip-v3": "3.70.0-next.50",
180
- "@elliemae/ds-transition": "3.70.0-next.50",
181
- "@elliemae/ds-tree-model": "3.70.0-next.50",
182
- "@elliemae/ds-treeview": "3.70.0-next.50",
183
- "@elliemae/ds-typescript-helpers": "3.70.0-next.50",
184
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.50",
185
- "@elliemae/ds-typography": "3.70.0-next.50",
186
- "@elliemae/ds-virtual-list": "3.70.0-next.50",
187
- "@elliemae/ds-wizard": "3.70.0-next.50",
188
- "@elliemae/ds-zustand-helpers": "3.70.0-next.50"
41
+ "@elliemae/ds-accessibility": "3.70.0-next.51",
42
+ "@elliemae/ds-accordion": "3.70.0-next.51",
43
+ "@elliemae/ds-app-picker": "3.70.0-next.51",
44
+ "@elliemae/ds-backdrop": "3.70.0-next.51",
45
+ "@elliemae/ds-banner": "3.70.0-next.51",
46
+ "@elliemae/ds-basic": "3.70.0-next.51",
47
+ "@elliemae/ds-breadcrumb": "3.70.0-next.51",
48
+ "@elliemae/ds-button-v2": "3.70.0-next.51",
49
+ "@elliemae/ds-card": "3.70.0-next.51",
50
+ "@elliemae/ds-card-navigation": "3.70.0-next.51",
51
+ "@elliemae/ds-card-v1": "3.70.0-next.51",
52
+ "@elliemae/ds-card-v1-detail": "3.70.0-next.51",
53
+ "@elliemae/ds-card-v2": "3.70.0-next.51",
54
+ "@elliemae/ds-card-v2-action-addon": "3.70.0-next.51",
55
+ "@elliemae/ds-card-v2-group": "3.70.0-next.51",
56
+ "@elliemae/ds-card-v3-poc": "3.70.0-next.51",
57
+ "@elliemae/ds-card-v3": "3.70.0-next.51",
58
+ "@elliemae/ds-chat": "3.70.0-next.51",
59
+ "@elliemae/ds-chat-bubble": "3.70.0-next.51",
60
+ "@elliemae/ds-chat-card": "3.70.0-next.51",
61
+ "@elliemae/ds-chat-container": "3.70.0-next.51",
62
+ "@elliemae/ds-chat-container-header": "3.70.0-next.51",
63
+ "@elliemae/ds-chat-empty-state": "3.70.0-next.51",
64
+ "@elliemae/ds-chat-floating-button": "3.70.0-next.51",
65
+ "@elliemae/ds-chat-message-delimeter": "3.70.0-next.51",
66
+ "@elliemae/ds-chat-sidebar": "3.70.0-next.51",
67
+ "@elliemae/ds-chat-system-message": "3.70.0-next.51",
68
+ "@elliemae/ds-chat-tile": "3.70.0-next.51",
69
+ "@elliemae/ds-chip": "3.70.0-next.51",
70
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.51",
71
+ "@elliemae/ds-classnames": "3.70.0-next.51",
72
+ "@elliemae/ds-codeeditor": "3.70.0-next.51",
73
+ "@elliemae/ds-comments": "3.70.0-next.51",
74
+ "@elliemae/ds-controlled-form": "3.70.0-next.51",
75
+ "@elliemae/ds-csv-converter": "3.70.0-next.51",
76
+ "@elliemae/ds-data-table": "3.70.0-next.51",
77
+ "@elliemae/ds-data-table-action-cell": "3.70.0-next.51",
78
+ "@elliemae/ds-data-table-cell": "3.70.0-next.51",
79
+ "@elliemae/ds-data-table-cell-header": "3.70.0-next.51",
80
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.51",
81
+ "@elliemae/ds-data-table-expand-cell": "3.70.0-next.51",
82
+ "@elliemae/ds-data-table-filters": "3.70.0-next.51",
83
+ "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.51",
84
+ "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.51",
85
+ "@elliemae/ds-dataviz": "3.70.0-next.51",
86
+ "@elliemae/ds-dataviz-pie": "3.70.0-next.51",
87
+ "@elliemae/ds-date-time-picker": "3.70.0-next.51",
88
+ "@elliemae/ds-decision-graph": "3.70.0-next.51",
89
+ "@elliemae/ds-dialog": "3.70.0-next.51",
90
+ "@elliemae/ds-drag-and-drop": "3.70.0-next.51",
91
+ "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.51",
92
+ "@elliemae/ds-dropzone": "3.70.0-next.51",
93
+ "@elliemae/ds-fast-list": "3.70.0-next.51",
94
+ "@elliemae/ds-filter-bar": "3.70.0-next.51",
95
+ "@elliemae/ds-floating-context": "3.70.0-next.51",
96
+ "@elliemae/ds-form-checkbox": "3.70.0-next.51",
97
+ "@elliemae/ds-form-combobox": "3.70.0-next.51",
98
+ "@elliemae/ds-form-date-range-picker": "3.70.0-next.51",
99
+ "@elliemae/ds-form-date-time-picker": "3.70.0-next.51",
100
+ "@elliemae/ds-form-input-text": "3.70.0-next.51",
101
+ "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.51",
102
+ "@elliemae/ds-form-input-textarea": "3.70.0-next.51",
103
+ "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.51",
104
+ "@elliemae/ds-form-layout-blocks": "3.70.0-next.51",
105
+ "@elliemae/ds-form-layout-input-group": "3.70.0-next.51",
106
+ "@elliemae/ds-form-layout-label": "3.70.0-next.51",
107
+ "@elliemae/ds-form-multi-combobox": "3.70.0-next.51",
108
+ "@elliemae/ds-form-native-select": "3.70.0-next.51",
109
+ "@elliemae/ds-form-radio": "3.70.0-next.51",
110
+ "@elliemae/ds-form-select": "3.70.0-next.51",
111
+ "@elliemae/ds-form-single-combobox": "3.70.0-next.51",
112
+ "@elliemae/ds-form-toggle": "3.70.0-next.51",
113
+ "@elliemae/ds-global-header": "3.70.0-next.51",
114
+ "@elliemae/ds-grid": "3.70.0-next.51",
115
+ "@elliemae/ds-hooks-focus-stack": "3.70.0-next.51",
116
+ "@elliemae/ds-hooks-focus-trap": "3.70.0-next.51",
117
+ "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.51",
118
+ "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.51",
119
+ "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.51",
120
+ "@elliemae/ds-hooks-is-mobile": "3.70.0-next.51",
121
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.51",
122
+ "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.51",
123
+ "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.51",
124
+ "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.51",
125
+ "@elliemae/ds-icon": "3.70.0-next.51",
126
+ "@elliemae/ds-imagelibrarymodal": "3.70.0-next.51",
127
+ "@elliemae/ds-image": "3.70.0-next.51",
128
+ "@elliemae/ds-icons": "3.70.0-next.51",
129
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.51",
130
+ "@elliemae/ds-layout-provider": "3.70.0-next.51",
131
+ "@elliemae/ds-left-navigation": "3.70.0-next.51",
132
+ "@elliemae/ds-loading-indicator": "3.70.0-next.51",
133
+ "@elliemae/ds-menu-button": "3.70.0-next.51",
134
+ "@elliemae/ds-menu-items": "3.70.0-next.51",
135
+ "@elliemae/ds-menu-items-action": "3.70.0-next.51",
136
+ "@elliemae/ds-menu-items-commons": "3.70.0-next.51",
137
+ "@elliemae/ds-menu-items-multi": "3.70.0-next.51",
138
+ "@elliemae/ds-menu-items-section": "3.70.0-next.51",
139
+ "@elliemae/ds-menu-items-separator": "3.70.0-next.51",
140
+ "@elliemae/ds-menu-items-single": "3.70.0-next.51",
141
+ "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.51",
142
+ "@elliemae/ds-menu-items-skeleton": "3.70.0-next.51",
143
+ "@elliemae/ds-menu-items-submenu": "3.70.0-next.51",
144
+ "@elliemae/ds-menu-tree-item": "3.70.0-next.51",
145
+ "@elliemae/ds-mobile": "3.70.0-next.51",
146
+ "@elliemae/ds-modal-slide": "3.70.0-next.51",
147
+ "@elliemae/ds-notification-badge": "3.70.0-next.51",
148
+ "@elliemae/ds-overlay": "3.70.0-next.51",
149
+ "@elliemae/ds-page-header": "3.70.0-next.51",
150
+ "@elliemae/ds-page-header-v1": "3.70.0-next.51",
151
+ "@elliemae/ds-page-header-v2": "3.70.0-next.51",
152
+ "@elliemae/ds-pagination": "3.70.0-next.51",
153
+ "@elliemae/ds-page-layout": "3.70.0-next.51",
154
+ "@elliemae/ds-pills-v2": "3.70.0-next.51",
155
+ "@elliemae/ds-portal": "3.70.0-next.51",
156
+ "@elliemae/ds-progress-indicator": "3.70.0-next.51",
157
+ "@elliemae/ds-props-helpers": "3.70.0-next.51",
158
+ "@elliemae/ds-query-builder": "3.70.0-next.51",
159
+ "@elliemae/ds-resizeable-container": "3.70.0-next.51",
160
+ "@elliemae/ds-read-more": "3.70.0-next.51",
161
+ "@elliemae/ds-ribbon": "3.70.0-next.51",
162
+ "@elliemae/ds-scrollable-container": "3.70.0-next.51",
163
+ "@elliemae/ds-separator": "3.70.0-next.51",
164
+ "@elliemae/ds-shared": "3.70.0-next.51",
165
+ "@elliemae/ds-shuttle-v2": "3.70.0-next.51",
166
+ "@elliemae/ds-side-panel": "3.70.0-next.51",
167
+ "@elliemae/ds-side-panel-header": "3.70.0-next.51",
168
+ "@elliemae/ds-slider-v2": "3.70.0-next.51",
169
+ "@elliemae/ds-skeleton": "3.70.0-next.51",
170
+ "@elliemae/ds-square-indicator": "3.70.0-next.51",
171
+ "@elliemae/ds-stepper": "3.70.0-next.51",
172
+ "@elliemae/ds-svg": "3.70.0-next.51",
173
+ "@elliemae/ds-system": "3.70.0-next.51",
174
+ "@elliemae/ds-tabs": "3.70.0-next.51",
175
+ "@elliemae/ds-test-utils": "3.70.0-next.51",
176
+ "@elliemae/ds-toast": "3.70.0-next.51",
177
+ "@elliemae/ds-toolbar-v1": "3.70.0-next.51",
178
+ "@elliemae/ds-toolbar-v2": "3.70.0-next.51",
179
+ "@elliemae/ds-tooltip-v3": "3.70.0-next.51",
180
+ "@elliemae/ds-transition": "3.70.0-next.51",
181
+ "@elliemae/ds-tree-model": "3.70.0-next.51",
182
+ "@elliemae/ds-treeview": "3.70.0-next.51",
183
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.51",
184
+ "@elliemae/ds-typescript-helpers": "3.70.0-next.51",
185
+ "@elliemae/ds-typography": "3.70.0-next.51",
186
+ "@elliemae/ds-virtual-list": "3.70.0-next.51",
187
+ "@elliemae/ds-wizard": "3.70.0-next.51",
188
+ "@elliemae/ds-zustand-helpers": "3.70.0-next.51"
189
189
  },
190
190
  "publishConfig": {
191
191
  "access": "public"