dimsum-e2e-tests 3.60.0-next.19 → 3.60.0-next.20

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.60.0-next.20 (2026-02-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-chip:: update E2E test selectors and chip XPath queries [PUI-17896](https://jira.elliemae.io/browse/PUI-17896) ([#7875](https://git.elliemae.io/platform-ui/dimsum/issues/7875)) ([f682a0a](https://git.elliemae.io/platform-ui/dimsum/commit/f682a0a99c8b01ed886f13d1f5835f10c9e8ae44))
11
+
6
12
  ## 3.60.0-next.19 (2026-02-12)
7
13
 
8
14
  ### Features
@@ -37,10 +37,10 @@ export default class DSAppPickerCO extends PageObject {
37
37
  static getTruncTextByIndex = async (index) => getElementByIndex(this.getTruncTexts, index);
38
38
 
39
39
  static getChipByLabel = async (label) =>
40
- $(`//button[@data-testid="app-picker__chip"]/div/p[contains(text(),"${label}")]//ancestor::button`);
40
+ $(`//button[@data-testid="app-picker__chip"]/div/span[contains(text(),"${label}")]//ancestor::button`);
41
41
 
42
42
  static getChipsByLabel = async (label) =>
43
- $$(`//button[@data-testid="app-picker__chip"]/div/p[contains(text(),"${label}")]//ancestor::button`);
43
+ $$(`//button[@data-testid="app-picker__chip"]/div/span[contains(text(),"${label}")]//ancestor::button`);
44
44
 
45
45
  static getChipByLabelAndIndex = async (label, index) => {
46
46
  const chips = await DSAppPickerCO.getChipsByLabel(label);
@@ -33,7 +33,24 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
33
33
  });
34
34
  });
35
35
 
36
- describe('PUI-8928 - Chip, Styles -visual', () => {
36
+ describe('PUI-17879 - Chip, Basic & Labels -Visual', () => {
37
+ before('loading page', async () => {
38
+ const errorOnGo = await DSChipCO.basicURL.go();
39
+ if (errorOnGo) throw errorOnGo;
40
+ });
41
+ it('01: should show basic chips by default', async () => {
42
+ await (await DSChipCO.getChipByIndex(1)).waitForDisplayed();
43
+ const snapshot = await browser.percyCheckScreenshot(DSChipCO.snapshotPath('dschips-basic-default'));
44
+ await expect(snapshot).toEqual(0);
45
+ });
46
+ it('02: truncated chip should show text on hover', async () => {
47
+ await mouseOver(await DSChipCO.getChipByIndex(3));
48
+ const snapshot = await browser.percyCheckScreenshot(DSChipCO.snapshotPath('dschips-basic-untruncated'));
49
+ await expect(snapshot).toEqual(0);
50
+ });
51
+ });
52
+
53
+ describe('PUI-17879 - Chip, Styles -visual', () => {
37
54
  before('loading page', async () => {
38
55
  const errorOnGo = await DSChipCO.shapeURL.go();
39
56
  if (errorOnGo) throw errorOnGo;
@@ -1,10 +1,7 @@
1
1
  /* eslint-disable max-lines */
2
2
  import DSComboboxMultiCO from '../DSComboboxMultiCO';
3
3
 
4
- if (
5
- (!browser.capabilities['ice:options'].isPhone &&
6
- !browser.capabilities['ice:options'].isTablet
7
- ) {
4
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
8
5
  describe('PUI-17269 - ComboboxMulti:: Slots - Controlled Menu and Sections -Visual', () => {
9
6
  before('loading page', async () => {
10
7
  const errorOnGo = await DSComboboxMultiCO.controlledMenuStateWithSectionsSlotsTest.go();
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable import/no-relative-packages */
2
- import { PATH_GLOBAL_HEADER_EXAMPLES, PATH_E2E_GLOBAL_HEADER } from '../paths';
2
+ import { PATH_E2E_GLOBAL_HEADER } from '../paths';
3
3
  import { PageObject, Urlbuilder } from '../helpers';
4
4
 
5
5
  export default class GlobalHeader extends PageObject {
@@ -17,7 +17,7 @@ export default class GlobalHeader extends PageObject {
17
17
 
18
18
  static backgroundURL = new Urlbuilder(PATH_E2E_GLOBAL_HEADER, 'background');
19
19
 
20
- static customNavigation = new Urlbuilder(PATH_GLOBAL_HEADER_EXAMPLES, 'custom-breadcrumb');
20
+ static customNavigation = new Urlbuilder(PATH_E2E_GLOBAL_HEADER, 'custom-breadcrumb-test');
21
21
 
22
22
  static sanitizeCss = new Urlbuilder(PATH_E2E_GLOBAL_HEADER, 'sanitize-css');
23
23
 
@@ -87,7 +87,7 @@ export default class GlobalHeader extends PageObject {
87
87
  // Slots
88
88
 
89
89
  static async getGHBreadcrumbChevronlotByIndex(index = 0) {
90
- return $$('[data-dimsum-slot="dsIconSvg"]')[index];
90
+ return $$('[data-dimsum-slot="dsIconRoot"]')[index];
91
91
  }
92
92
 
93
93
  static async getGHBreadcrumbContainerSlotByIndex(index = 0) {
@@ -8,79 +8,79 @@ if (
8
8
  browser.capabilities.browserName === 'Chrome'
9
9
  ) {
10
10
  describe('PUI-15665 - GlobalHeader: Slots Test -Func', () => {
11
- before(async () => {
11
+ beforeEach(async () => {
12
12
  const errorOnGo = await GlobalHeader.slotsTest.go();
13
13
  if (errorOnGo) throw errorOnGo;
14
14
  });
15
15
  it('01: should display basic GlobalHeadercwith customized slots (aria-*)', async () => {
16
- await (await GlobalHeader.getGHToolbarItem(2)).click();
17
- // const chevron = await GlobalHeader.getGHBreadcrumbChevronlotByIndex();
16
+ await (await GlobalHeader.getGHMenubarItemButtonSlotByIndex(1)).click();
17
+ const chevron = await GlobalHeader.getGHBreadcrumbChevronlotByIndex();
18
18
  const container = await GlobalHeader.getGHBreadcrumbContainerSlotByIndex();
19
- // const breadcrumbItem = await GlobalHeader.getGHBreadcrumbItemSlotByIndex();
20
- // const breadcrumbItemLink = await GlobalHeader.getGHBreadcrumbItemLinkSlotByIndex();
21
- // const breadcrumbItemLinkLabel = await GlobalHeader.getGHBreadcrumbItemLinkLabelSlotByIndex();
19
+ const breadcrumbItem = await GlobalHeader.getGHBreadcrumbItemSlotByIndex();
20
+ const breadcrumbItemLink = await GlobalHeader.getGHBreadcrumbItemLinkSlotByIndex();
21
+ const breadcrumbItemLinkLabel = await GlobalHeader.getGHBreadcrumbItemLinkLabelSlotByIndex();
22
22
  const breadcrumbList = await GlobalHeader.getGHBreadcrumbListSlotByIndex();
23
23
  const breadcrumbPipe = await GlobalHeader.getGHBreadcrumbPipeSlotByIndex();
24
24
  const root = await GlobalHeader.getGHRootSlotByIndex();
25
25
  const logoContainer = await GlobalHeader.getGHLogoContainerSlotByIndex();
26
26
  const menubarItem = await GlobalHeader.getGHMenubarItemSlotByIndex();
27
- // const menubarItemButton = await GlobalHeader.getGHMenubarItemButtonSlotByIndex();
27
+ const menubarItemButton = await GlobalHeader.getGHMenubarItemButtonSlotByIndex();
28
28
  const menubarList = await GlobalHeader.getGHMenubarListSlotByIndex();
29
- // const menubarItemPopupItem = await GlobalHeader.getGHMenubarItemPopupmenuItemSlotByIndex();
30
- // const menubarItemPopupItemButton = await GlobalHeader.getGHMenubarItemPopupmenuItemButtonSlotByIndex();
31
- // const popupList = await GlobalHeader.getGHMenubarItemPopupmenuListSlotByIndex();
32
- // const popupSeparator = await GlobalHeader.getGHMenubarItemPopupmenuSeparatorSlotByIndex();
33
- // await expect(chevron).toHaveAttribute('aria-label', 'im breadcrumb chev aria');
29
+ const menubarItemPopupItem = await GlobalHeader.getGHMenubarItemPopupmenuItemSlotByIndex();
30
+ const menubarItemPopupItemButton = await GlobalHeader.getGHMenubarItemPopupmenuItemButtonSlotByIndex();
31
+ const popupList = await GlobalHeader.getGHMenubarItemPopupmenuListSlotByIndex();
32
+ const popupSeparator = await GlobalHeader.getGHMenubarItemPopupmenuSeparatorSlotByIndex();
33
+ await expect(chevron).toHaveAttribute('aria-label', 'im breadcrumb chev aria');
34
34
  await expect(container).toHaveAttribute('aria-label', 'im breadcrumb container aria');
35
- // await expect(breadcrumbItem).toHaveAttribute('aria-label', 'im breadcrumb item aria');
36
- // await expect(breadcrumbItemLink).toHaveAttribute('aria-label', 'im breadcrumb item link aria');
37
- // await expect(breadcrumbItemLinkLabel).toHaveAttribute('aria-label', 'im breadcrumb item linklabel aria');
35
+ await expect(breadcrumbItem).toHaveAttribute('aria-label', 'im breadcrumb item aria');
36
+ await expect(breadcrumbItemLink).toHaveAttribute('aria-label', 'im breadcrumb item link aria');
37
+ await expect(breadcrumbItemLinkLabel).toHaveAttribute('aria-label', 'im breadcrumb item linklabel aria');
38
38
  await expect(breadcrumbList).toHaveAttribute('aria-label', 'im breadcrumb list aria');
39
39
  await expect(breadcrumbPipe).toHaveAttribute('aria-label', 'im breadcrumb pipe aria');
40
40
  await expect(root).toHaveAttribute('aria-label', 'im breadcrumb root aria');
41
41
  await expect(logoContainer).toHaveAttribute('aria-label', 'im logo container aria');
42
42
  await expect(menubarItem).toHaveAttribute('aria-label', 'im menubar item aria');
43
- // await expect(menubarItemButton).toHaveAttribute('aria-label', 'im menubar item button aria');
43
+ await expect(menubarItemButton).toHaveAttribute('aria-label', 'im menubar item button aria');
44
44
  await expect(menubarList).toHaveAttribute('aria-label', 'im menubar list aria');
45
- // await expect(menubarItemPopupItem).toHaveAttribute('aria-label', 'im popup menu item aria');
46
- // await expect(menubarItemPopupItemButton).toHaveAttribute('aria-label', 'im popup item button aria');
47
- // await expect(popupList).toHaveAttribute('aria-label', 'im popup menulist aria');
48
- // await expect(popupSeparator).toHaveAttribute('aria-label', 'im popup separator aria');
45
+ await expect(menubarItemPopupItem).toHaveAttribute('aria-label', 'im popup menu item aria');
46
+ await expect(menubarItemPopupItemButton).toHaveAttribute('aria-label', 'im popup item button aria');
47
+ await expect(popupList).toHaveAttribute('aria-label', 'im popup menulist aria');
48
+ await expect(popupSeparator).toHaveAttribute('aria-label', 'im popup separator aria');
49
49
  });
50
50
  it('02: should display basic GlobalHeadercwith customized slots (data-*)', async () => {
51
- await (await GlobalHeader.getGHToolbarItem(2)).click();
52
- // const chevron = await GlobalHeader.getGHBreadcrumbChevronlotByIndex();
51
+ await (await GlobalHeader.getGHMenubarItemButtonSlotByIndex(1)).click();
52
+ const chevron = await GlobalHeader.getGHBreadcrumbChevronlotByIndex();
53
53
  const container = await GlobalHeader.getGHBreadcrumbContainerSlotByIndex();
54
- // const breadcrumbItem = await GlobalHeader.getGHBreadcrumbItemSlotByIndex();
55
- // const breadcrumbItemLink = await GlobalHeader.getGHBreadcrumbItemLinkSlotByIndex();
56
- // const breadcrumbItemLinkLabel = await GlobalHeader.getGHBreadcrumbItemLinkLabelSlotByIndex();
54
+ const breadcrumbItem = await GlobalHeader.getGHBreadcrumbItemSlotByIndex();
55
+ const breadcrumbItemLink = await GlobalHeader.getGHBreadcrumbItemLinkSlotByIndex();
56
+ const breadcrumbItemLinkLabel = await GlobalHeader.getGHBreadcrumbItemLinkLabelSlotByIndex();
57
57
  const breadcrumbList = await GlobalHeader.getGHBreadcrumbListSlotByIndex();
58
58
  const breadcrumbPipe = await GlobalHeader.getGHBreadcrumbPipeSlotByIndex();
59
59
  const root = await GlobalHeader.getGHRootSlotByIndex();
60
60
  const logoContainer = await GlobalHeader.getGHLogoContainerSlotByIndex();
61
61
  const menubarItem = await GlobalHeader.getGHMenubarItemSlotByIndex();
62
- // const menubarItemButton = await GlobalHeader.getGHMenubarItemButtonSlotByIndex();
62
+ const menubarItemButton = await GlobalHeader.getGHMenubarItemButtonSlotByIndex();
63
63
  const menubarList = await GlobalHeader.getGHMenubarListSlotByIndex();
64
- // const menubarItemPopupItem = await GlobalHeader.getGHMenubarItemPopupmenuItemSlotByIndex();
65
- // const menubarItemPopupItemButton = await GlobalHeader.getGHMenubarItemPopupmenuItemButtonSlotByIndex();
66
- // const popupList = await GlobalHeader.getGHMenubarItemPopupmenuListSlotByIndex();
67
- // const popupSeparator = await GlobalHeader.getGHMenubarItemPopupmenuSeparatorSlotByIndex();
68
- // await expect(chevron).toHaveAttribute('data-testid', 'im breadcrumb chev data');
64
+ const menubarItemPopupItem = await GlobalHeader.getGHMenubarItemPopupmenuItemSlotByIndex();
65
+ const menubarItemPopupItemButton = await GlobalHeader.getGHMenubarItemPopupmenuItemButtonSlotByIndex();
66
+ const popupList = await GlobalHeader.getGHMenubarItemPopupmenuListSlotByIndex();
67
+ const popupSeparator = await GlobalHeader.getGHMenubarItemPopupmenuSeparatorSlotByIndex();
68
+ await expect(chevron).toHaveAttribute('data-testid', 'im breadcrumb chev data');
69
69
  await expect(container).toHaveAttribute('data-testid', 'im breadcrumb container data');
70
- // await expect(breadcrumbItem).toHaveAttribute('data-testid', 'im breadcrumb item data');
71
- // await expect(breadcrumbItemLink).toHaveAttribute('data-testid', 'im breadcrumb item link data');
72
- // await expect(breadcrumbItemLinkLabel).toHaveAttribute('data-testid', 'im breadcrumb item linklabel data');
70
+ await expect(breadcrumbItem).toHaveAttribute('data-testid', 'im breadcrumb item data');
71
+ await expect(breadcrumbItemLink).toHaveAttribute('data-testid', 'im breadcrumb item link data');
72
+ await expect(breadcrumbItemLinkLabel).toHaveAttribute('data-testid', 'im breadcrumb item linklabel data');
73
73
  await expect(breadcrumbList).toHaveAttribute('data-testid', 'im breadcrumb list data');
74
74
  await expect(breadcrumbPipe).toHaveAttribute('data-testid', 'im breadcrumb pipe data');
75
75
  await expect(root).toHaveAttribute('data-testid', 'im breadcrumb root data');
76
76
  await expect(logoContainer).toHaveAttribute('data-testid', 'im logo container data');
77
77
  await expect(menubarItem).toHaveAttribute('data-testid', 'im menubar item data');
78
- // await expect(menubarItemButton).toHaveAttribute('data-testid', 'im menubar item button data');
78
+ await expect(menubarItemButton).toHaveAttribute('data-testid', 'im menubar item button data');
79
79
  await expect(menubarList).toHaveAttribute('data-testid', 'im menubar list data');
80
- // await expect(menubarItemPopupItem).toHaveAttribute('data-testid', 'im popup menu item data');
81
- // await expect(menubarItemPopupItemButton).toHaveAttribute('data-testid', 'im popup item button data');
82
- // await expect(popupList).toHaveAttribute('data-testid', 'im popup menulist data');
83
- // await expect(popupSeparator).toHaveAttribute('data-testid', 'im popup separator data');
80
+ await expect(menubarItemPopupItem).toHaveAttribute('data-testid', 'im popup menu item data');
81
+ await expect(menubarItemPopupItemButton).toHaveAttribute('data-testid', 'im popup item button data');
82
+ await expect(popupList).toHaveAttribute('data-testid', 'im popup menulist data');
83
+ await expect(popupSeparator).toHaveAttribute('data-testid', 'im popup separator data');
84
84
  });
85
85
  });
86
86
  }
@@ -0,0 +1,24 @@
1
+ import DSTabButtonCO from './DSTabButtonCO';
2
+ /* this is the syntax for only enabling test for desktop only
3
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
4
+ describe('PUI-XXXX - TabButton:: example test - data-testid exists', () => {
5
+ before('loading page', async () => {
6
+ // your code goes here
7
+ });
8
+ it('01: wrapper should be displayed', async () => {
9
+ // your code goes here
10
+ });
11
+
12
+ });
13
+ }
14
+ */
15
+ describe('PUI-XXXX - TabButton:: example test - data-testid exists', () => {
16
+ before('loading page', async () => {
17
+ const errorOnGo = await DSTabButtonCO.basic.go();
18
+ if (errorOnGo) throw errorOnGo;
19
+ });
20
+ it('01: wrapper should be displayed', async () => {
21
+ const wrapper = await DSTabButtonCO.getWrapper();
22
+ await expect(wrapper).toBeDisplayedInViewport();
23
+ });
24
+ });
@@ -0,0 +1,16 @@
1
+ import { TAB_BUTTON_DATA_TESTID } from '@elliemae/ds-tab-button';
2
+ import { PageObject, Urlbuilder } from '../helpers';
3
+
4
+ export default class DSTabButton extends PageObject {
5
+ static basic = new Urlbuilder('ds-tab-button', 'basic');
6
+
7
+ // Selectors
8
+ static async getWrapper() {
9
+ return $(`[data-testid="${TAB_BUTTON_DATA_TESTID.ROOT}"]`);
10
+ }
11
+
12
+ // Snapshots
13
+ static snapshotPath(example = 'basic') {
14
+ return PageObject.getSnapshotPathBuilder('DSTabButton', example, 'ds-tab-button');
15
+ }
16
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "dimsum-e2e-tests",
4
- "version": "3.60.0-next.19",
4
+ "version": "3.60.0-next.20",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
7
  "@elliemae/ds-legacy-button": "1.0.16",
@@ -41,155 +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.60.0-next.19",
45
- "@elliemae/ds-accordion": "3.60.0-next.19",
46
- "@elliemae/ds-app-picker": "3.60.0-next.19",
47
- "@elliemae/ds-backdrop": "3.60.0-next.19",
48
- "@elliemae/ds-banner": "3.60.0-next.19",
49
- "@elliemae/ds-basic": "3.60.0-next.19",
50
- "@elliemae/ds-breadcrumb": "3.60.0-next.19",
51
- "@elliemae/ds-button-v2": "3.60.0-next.19",
52
- "@elliemae/ds-card": "3.60.0-next.19",
53
- "@elliemae/ds-card-navigation": "3.60.0-next.19",
54
- "@elliemae/ds-card-v1": "3.60.0-next.19",
55
- "@elliemae/ds-card-v1-detail": "3.60.0-next.19",
56
- "@elliemae/ds-card-v2": "3.60.0-next.19",
57
- "@elliemae/ds-card-v2-action-addon": "3.60.0-next.19",
58
- "@elliemae/ds-card-v2-group": "3.60.0-next.19",
59
- "@elliemae/ds-card-v3": "3.60.0-next.19",
60
- "@elliemae/ds-card-v3-poc": "3.60.0-next.19",
61
- "@elliemae/ds-chat": "3.60.0-next.19",
62
- "@elliemae/ds-chat-card": "3.60.0-next.19",
63
- "@elliemae/ds-chat-container": "3.60.0-next.19",
64
- "@elliemae/ds-chat-bubble": "3.60.0-next.19",
65
- "@elliemae/ds-chat-container-header": "3.60.0-next.19",
66
- "@elliemae/ds-chat-empty-state": "3.60.0-next.19",
67
- "@elliemae/ds-chat-floating-button": "3.60.0-next.19",
68
- "@elliemae/ds-chat-sidebar": "3.60.0-next.19",
69
- "@elliemae/ds-chat-message-delimeter": "3.60.0-next.19",
70
- "@elliemae/ds-chat-system-message": "3.60.0-next.19",
71
- "@elliemae/ds-chat-tile": "3.60.0-next.19",
72
- "@elliemae/ds-chip": "3.60.0-next.19",
73
- "@elliemae/ds-classnames": "3.60.0-next.19",
74
- "@elliemae/ds-codeeditor": "3.60.0-next.19",
75
- "@elliemae/ds-circular-progress-indicator": "3.60.0-next.19",
76
- "@elliemae/ds-comments": "3.60.0-next.19",
77
- "@elliemae/ds-controlled-form": "3.60.0-next.19",
78
- "@elliemae/ds-csv-converter": "3.60.0-next.19",
79
- "@elliemae/ds-data-table": "3.60.0-next.19",
80
- "@elliemae/ds-data-table-action-cell": "3.60.0-next.19",
81
- "@elliemae/ds-data-table-cell": "3.60.0-next.19",
82
- "@elliemae/ds-data-table-cell-header": "3.60.0-next.19",
83
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.19",
84
- "@elliemae/ds-data-table-filters": "3.60.0-next.19",
85
- "@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.19",
86
- "@elliemae/ds-data-table-expand-cell": "3.60.0-next.19",
87
- "@elliemae/ds-data-table-single-select-cell": "3.60.0-next.19",
88
- "@elliemae/ds-dataviz": "3.60.0-next.19",
89
- "@elliemae/ds-dataviz-pie": "3.60.0-next.19",
90
- "@elliemae/ds-date-time-picker": "3.60.0-next.19",
91
- "@elliemae/ds-decision-graph": "3.60.0-next.19",
92
- "@elliemae/ds-dialog": "3.60.0-next.19",
93
- "@elliemae/ds-drag-and-drop": "3.60.0-next.19",
94
- "@elliemae/ds-dropdownmenu-v2": "3.60.0-next.19",
95
- "@elliemae/ds-dropzone": "3.60.0-next.19",
96
- "@elliemae/ds-fast-list": "3.60.0-next.19",
97
- "@elliemae/ds-floating-context": "3.60.0-next.19",
98
- "@elliemae/ds-form-checkbox": "3.60.0-next.19",
99
- "@elliemae/ds-form-combobox": "3.60.0-next.19",
100
- "@elliemae/ds-form-date-time-picker": "3.60.0-next.19",
101
- "@elliemae/ds-form-date-range-picker": "3.60.0-next.19",
102
- "@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.19",
103
- "@elliemae/ds-form-layout-autocomplete": "3.60.0-next.19",
104
- "@elliemae/ds-form-input-textarea": "3.60.0-next.19",
105
- "@elliemae/ds-form-input-text": "3.60.0-next.19",
106
- "@elliemae/ds-form-layout-blocks": "3.60.0-next.19",
107
- "@elliemae/ds-form-layout-label": "3.60.0-next.19",
108
- "@elliemae/ds-form-layout-input-group": "3.60.0-next.19",
109
- "@elliemae/ds-form-native-select": "3.60.0-next.19",
110
- "@elliemae/ds-form-multi-combobox": "3.60.0-next.19",
111
- "@elliemae/ds-form-radio": "3.60.0-next.19",
112
- "@elliemae/ds-form-select": "3.60.0-next.19",
113
- "@elliemae/ds-form-single-combobox": "3.60.0-next.19",
114
- "@elliemae/ds-form-toggle": "3.60.0-next.19",
115
- "@elliemae/ds-global-header": "3.60.0-next.19",
116
- "@elliemae/ds-grid": "3.60.0-next.19",
117
- "@elliemae/ds-hooks-focus-stack": "3.60.0-next.19",
118
- "@elliemae/ds-hooks-focus-trap": "3.60.0-next.19",
119
- "@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.19",
120
- "@elliemae/ds-hooks-fontsize-media": "3.60.0-next.19",
121
- "@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.19",
122
- "@elliemae/ds-hooks-is-mobile": "3.60.0-next.19",
123
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.19",
124
- "@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.19",
125
- "@elliemae/ds-hooks-on-blur-out": "3.60.0-next.19",
126
- "@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.19",
127
- "@elliemae/ds-icon": "3.60.0-next.19",
128
- "@elliemae/ds-image": "3.60.0-next.19",
129
- "@elliemae/ds-icons": "3.60.0-next.19",
130
- "@elliemae/ds-imagelibrarymodal": "3.60.0-next.19",
131
- "@elliemae/ds-indeterminate-progress-indicator": "3.60.0-next.19",
132
- "@elliemae/ds-left-navigation": "3.60.0-next.19",
133
- "@elliemae/ds-menu-button": "3.60.0-next.19",
134
- "@elliemae/ds-layout-provider": "3.60.0-next.19",
135
- "@elliemae/ds-loading-indicator": "3.60.0-next.19",
136
- "@elliemae/ds-menu-items": "3.60.0-next.19",
137
- "@elliemae/ds-menu-items-action": "3.60.0-next.19",
138
- "@elliemae/ds-menu-items-commons": "3.60.0-next.19",
139
- "@elliemae/ds-menu-items-multi": "3.60.0-next.19",
140
- "@elliemae/ds-menu-items-section": "3.60.0-next.19",
141
- "@elliemae/ds-menu-items-separator": "3.60.0-next.19",
142
- "@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.19",
143
- "@elliemae/ds-menu-items-skeleton": "3.60.0-next.19",
144
- "@elliemae/ds-menu-items-single": "3.60.0-next.19",
145
- "@elliemae/ds-menu-tree-item": "3.60.0-next.19",
146
- "@elliemae/ds-menu-items-submenu": "3.60.0-next.19",
147
- "@elliemae/ds-mobile": "3.60.0-next.19",
148
- "@elliemae/ds-modal-slide": "3.60.0-next.19",
149
- "@elliemae/ds-overlay": "3.60.0-next.19",
150
- "@elliemae/ds-page-header": "3.60.0-next.19",
151
- "@elliemae/ds-notification-badge": "3.60.0-next.19",
152
- "@elliemae/ds-page-header-v1": "3.60.0-next.19",
153
- "@elliemae/ds-page-header-v2": "3.60.0-next.19",
154
- "@elliemae/ds-page-layout": "3.60.0-next.19",
155
- "@elliemae/ds-pagination": "3.60.0-next.19",
156
- "@elliemae/ds-pills-v2": "3.60.0-next.19",
157
- "@elliemae/ds-popperjs": "3.60.0-next.19",
158
- "@elliemae/ds-portal": "3.60.0-next.19",
159
- "@elliemae/ds-progress-indicator": "3.60.0-next.19",
160
- "@elliemae/ds-query-builder": "3.60.0-next.19",
161
- "@elliemae/ds-read-more": "3.60.0-next.19",
162
- "@elliemae/ds-ribbon": "3.60.0-next.19",
163
- "@elliemae/ds-resizeable-container": "3.60.0-next.19",
164
- "@elliemae/ds-scrollable-container": "3.60.0-next.19",
165
- "@elliemae/ds-separator": "3.60.0-next.19",
166
- "@elliemae/ds-props-helpers": "3.60.0-next.19",
167
- "@elliemae/ds-shared": "3.60.0-next.19",
168
- "@elliemae/ds-side-panel": "3.60.0-next.19",
169
- "@elliemae/ds-shuttle-v2": "3.60.0-next.19",
170
- "@elliemae/ds-skeleton": "3.60.0-next.19",
171
- "@elliemae/ds-side-panel-header": "3.60.0-next.19",
172
- "@elliemae/ds-slider-v2": "3.60.0-next.19",
173
- "@elliemae/ds-square-indicator": "3.60.0-next.19",
174
- "@elliemae/ds-stepper": "3.60.0-next.19",
175
- "@elliemae/ds-svg": "3.60.0-next.19",
176
- "@elliemae/ds-system": "3.60.0-next.19",
177
- "@elliemae/ds-tabs": "3.60.0-next.19",
178
- "@elliemae/ds-test-utils": "3.60.0-next.19",
179
- "@elliemae/ds-toast": "3.60.0-next.19",
180
- "@elliemae/ds-toolbar-v1": "3.60.0-next.19",
181
- "@elliemae/ds-toolbar-v2": "3.60.0-next.19",
182
- "@elliemae/ds-tooltip-v3": "3.60.0-next.19",
183
- "@elliemae/ds-transition": "3.60.0-next.19",
184
- "@elliemae/ds-tree-model": "3.60.0-next.19",
185
- "@elliemae/ds-treeview": "3.60.0-next.19",
186
- "@elliemae/ds-truncated-expandable-text": "3.60.0-next.19",
187
- "@elliemae/ds-truncated-tooltip-text": "3.60.0-next.19",
188
- "@elliemae/ds-typescript-helpers": "3.60.0-next.19",
189
- "@elliemae/ds-typography": "3.60.0-next.19",
190
- "@elliemae/ds-virtual-list": "3.60.0-next.19",
191
- "@elliemae/ds-wizard": "3.60.0-next.19",
192
- "@elliemae/ds-zustand-helpers": "3.60.0-next.19"
44
+ "@elliemae/ds-accessibility": "3.60.0-next.20",
45
+ "@elliemae/ds-accordion": "3.60.0-next.20",
46
+ "@elliemae/ds-app-picker": "3.60.0-next.20",
47
+ "@elliemae/ds-backdrop": "3.60.0-next.20",
48
+ "@elliemae/ds-banner": "3.60.0-next.20",
49
+ "@elliemae/ds-basic": "3.60.0-next.20",
50
+ "@elliemae/ds-breadcrumb": "3.60.0-next.20",
51
+ "@elliemae/ds-button-v2": "3.60.0-next.20",
52
+ "@elliemae/ds-card": "3.60.0-next.20",
53
+ "@elliemae/ds-card-v1": "3.60.0-next.20",
54
+ "@elliemae/ds-card-navigation": "3.60.0-next.20",
55
+ "@elliemae/ds-card-v1-detail": "3.60.0-next.20",
56
+ "@elliemae/ds-card-v2": "3.60.0-next.20",
57
+ "@elliemae/ds-card-v2-action-addon": "3.60.0-next.20",
58
+ "@elliemae/ds-card-v2-group": "3.60.0-next.20",
59
+ "@elliemae/ds-card-v3": "3.60.0-next.20",
60
+ "@elliemae/ds-card-v3-poc": "3.60.0-next.20",
61
+ "@elliemae/ds-chat": "3.60.0-next.20",
62
+ "@elliemae/ds-chat-bubble": "3.60.0-next.20",
63
+ "@elliemae/ds-chat-card": "3.60.0-next.20",
64
+ "@elliemae/ds-chat-container": "3.60.0-next.20",
65
+ "@elliemae/ds-chat-container-header": "3.60.0-next.20",
66
+ "@elliemae/ds-chat-empty-state": "3.60.0-next.20",
67
+ "@elliemae/ds-chat-floating-button": "3.60.0-next.20",
68
+ "@elliemae/ds-chat-message-delimeter": "3.60.0-next.20",
69
+ "@elliemae/ds-chat-sidebar": "3.60.0-next.20",
70
+ "@elliemae/ds-chat-system-message": "3.60.0-next.20",
71
+ "@elliemae/ds-chat-tile": "3.60.0-next.20",
72
+ "@elliemae/ds-chip": "3.60.0-next.20",
73
+ "@elliemae/ds-circular-progress-indicator": "3.60.0-next.20",
74
+ "@elliemae/ds-classnames": "3.60.0-next.20",
75
+ "@elliemae/ds-codeeditor": "3.60.0-next.20",
76
+ "@elliemae/ds-comments": "3.60.0-next.20",
77
+ "@elliemae/ds-controlled-form": "3.60.0-next.20",
78
+ "@elliemae/ds-csv-converter": "3.60.0-next.20",
79
+ "@elliemae/ds-data-table": "3.60.0-next.20",
80
+ "@elliemae/ds-data-table-cell": "3.60.0-next.20",
81
+ "@elliemae/ds-data-table-action-cell": "3.60.0-next.20",
82
+ "@elliemae/ds-data-table-cell-header": "3.60.0-next.20",
83
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.60.0-next.20",
84
+ "@elliemae/ds-data-table-expand-cell": "3.60.0-next.20",
85
+ "@elliemae/ds-data-table-filters": "3.60.0-next.20",
86
+ "@elliemae/ds-data-table-multi-select-cell": "3.60.0-next.20",
87
+ "@elliemae/ds-data-table-single-select-cell": "3.60.0-next.20",
88
+ "@elliemae/ds-dataviz-pie": "3.60.0-next.20",
89
+ "@elliemae/ds-dataviz": "3.60.0-next.20",
90
+ "@elliemae/ds-date-time-picker": "3.60.0-next.20",
91
+ "@elliemae/ds-decision-graph": "3.60.0-next.20",
92
+ "@elliemae/ds-dialog": "3.60.0-next.20",
93
+ "@elliemae/ds-dropdownmenu-v2": "3.60.0-next.20",
94
+ "@elliemae/ds-drag-and-drop": "3.60.0-next.20",
95
+ "@elliemae/ds-dropzone": "3.60.0-next.20",
96
+ "@elliemae/ds-fast-list": "3.60.0-next.20",
97
+ "@elliemae/ds-floating-context": "3.60.0-next.20",
98
+ "@elliemae/ds-form-date-range-picker": "3.60.0-next.20",
99
+ "@elliemae/ds-form-checkbox": "3.60.0-next.20",
100
+ "@elliemae/ds-form-date-time-picker": "3.60.0-next.20",
101
+ "@elliemae/ds-form-combobox": "3.60.0-next.20",
102
+ "@elliemae/ds-form-helpers-mask-hooks": "3.60.0-next.20",
103
+ "@elliemae/ds-form-input-text": "3.60.0-next.20",
104
+ "@elliemae/ds-form-input-textarea": "3.60.0-next.20",
105
+ "@elliemae/ds-form-layout-autocomplete": "3.60.0-next.20",
106
+ "@elliemae/ds-form-layout-blocks": "3.60.0-next.20",
107
+ "@elliemae/ds-form-layout-input-group": "3.60.0-next.20",
108
+ "@elliemae/ds-form-layout-label": "3.60.0-next.20",
109
+ "@elliemae/ds-form-multi-combobox": "3.60.0-next.20",
110
+ "@elliemae/ds-form-native-select": "3.60.0-next.20",
111
+ "@elliemae/ds-form-radio": "3.60.0-next.20",
112
+ "@elliemae/ds-form-single-combobox": "3.60.0-next.20",
113
+ "@elliemae/ds-form-select": "3.60.0-next.20",
114
+ "@elliemae/ds-global-header": "3.60.0-next.20",
115
+ "@elliemae/ds-form-toggle": "3.60.0-next.20",
116
+ "@elliemae/ds-grid": "3.60.0-next.20",
117
+ "@elliemae/ds-hooks-focus-stack": "3.60.0-next.20",
118
+ "@elliemae/ds-hooks-focus-trap": "3.60.0-next.20",
119
+ "@elliemae/ds-hooks-fontsize-detector": "3.60.0-next.20",
120
+ "@elliemae/ds-hooks-fontsize-media": "3.60.0-next.20",
121
+ "@elliemae/ds-hooks-headless-tooltip": "3.60.0-next.20",
122
+ "@elliemae/ds-hooks-is-mobile": "3.60.0-next.20",
123
+ "@elliemae/ds-hooks-keyboard-navigation": "3.60.0-next.20",
124
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.60.0-next.20",
125
+ "@elliemae/ds-hooks-on-first-focus-in": "3.60.0-next.20",
126
+ "@elliemae/ds-hooks-on-blur-out": "3.60.0-next.20",
127
+ "@elliemae/ds-icon": "3.60.0-next.20",
128
+ "@elliemae/ds-icons": "3.60.0-next.20",
129
+ "@elliemae/ds-image": "3.60.0-next.20",
130
+ "@elliemae/ds-imagelibrarymodal": "3.60.0-next.20",
131
+ "@elliemae/ds-indeterminate-progress-indicator": "3.60.0-next.20",
132
+ "@elliemae/ds-layout-provider": "3.60.0-next.20",
133
+ "@elliemae/ds-left-navigation": "3.60.0-next.20",
134
+ "@elliemae/ds-loading-indicator": "3.60.0-next.20",
135
+ "@elliemae/ds-menu-button": "3.60.0-next.20",
136
+ "@elliemae/ds-menu-items-action": "3.60.0-next.20",
137
+ "@elliemae/ds-menu-items-multi": "3.60.0-next.20",
138
+ "@elliemae/ds-menu-items-commons": "3.60.0-next.20",
139
+ "@elliemae/ds-menu-items": "3.60.0-next.20",
140
+ "@elliemae/ds-menu-items-section": "3.60.0-next.20",
141
+ "@elliemae/ds-menu-items-separator": "3.60.0-next.20",
142
+ "@elliemae/ds-menu-items-single": "3.60.0-next.20",
143
+ "@elliemae/ds-menu-items-single-with-submenu": "3.60.0-next.20",
144
+ "@elliemae/ds-menu-items-skeleton": "3.60.0-next.20",
145
+ "@elliemae/ds-menu-items-submenu": "3.60.0-next.20",
146
+ "@elliemae/ds-menu-tree-item": "3.60.0-next.20",
147
+ "@elliemae/ds-mobile": "3.60.0-next.20",
148
+ "@elliemae/ds-modal-slide": "3.60.0-next.20",
149
+ "@elliemae/ds-notification-badge": "3.60.0-next.20",
150
+ "@elliemae/ds-overlay": "3.60.0-next.20",
151
+ "@elliemae/ds-page-header": "3.60.0-next.20",
152
+ "@elliemae/ds-page-header-v1": "3.60.0-next.20",
153
+ "@elliemae/ds-page-header-v2": "3.60.0-next.20",
154
+ "@elliemae/ds-page-layout": "3.60.0-next.20",
155
+ "@elliemae/ds-pagination": "3.60.0-next.20",
156
+ "@elliemae/ds-pills-v2": "3.60.0-next.20",
157
+ "@elliemae/ds-popperjs": "3.60.0-next.20",
158
+ "@elliemae/ds-progress-indicator": "3.60.0-next.20",
159
+ "@elliemae/ds-props-helpers": "3.60.0-next.20",
160
+ "@elliemae/ds-portal": "3.60.0-next.20",
161
+ "@elliemae/ds-query-builder": "3.60.0-next.20",
162
+ "@elliemae/ds-ribbon": "3.60.0-next.20",
163
+ "@elliemae/ds-read-more": "3.60.0-next.20",
164
+ "@elliemae/ds-scrollable-container": "3.60.0-next.20",
165
+ "@elliemae/ds-resizeable-container": "3.60.0-next.20",
166
+ "@elliemae/ds-separator": "3.60.0-next.20",
167
+ "@elliemae/ds-shuttle-v2": "3.60.0-next.20",
168
+ "@elliemae/ds-shared": "3.60.0-next.20",
169
+ "@elliemae/ds-side-panel": "3.60.0-next.20",
170
+ "@elliemae/ds-side-panel-header": "3.60.0-next.20",
171
+ "@elliemae/ds-skeleton": "3.60.0-next.20",
172
+ "@elliemae/ds-slider-v2": "3.60.0-next.20",
173
+ "@elliemae/ds-square-indicator": "3.60.0-next.20",
174
+ "@elliemae/ds-stepper": "3.60.0-next.20",
175
+ "@elliemae/ds-svg": "3.60.0-next.20",
176
+ "@elliemae/ds-system": "3.60.0-next.20",
177
+ "@elliemae/ds-tabs": "3.60.0-next.20",
178
+ "@elliemae/ds-test-utils": "3.60.0-next.20",
179
+ "@elliemae/ds-toast": "3.60.0-next.20",
180
+ "@elliemae/ds-tooltip-v3": "3.60.0-next.20",
181
+ "@elliemae/ds-toolbar-v2": "3.60.0-next.20",
182
+ "@elliemae/ds-toolbar-v1": "3.60.0-next.20",
183
+ "@elliemae/ds-transition": "3.60.0-next.20",
184
+ "@elliemae/ds-treeview": "3.60.0-next.20",
185
+ "@elliemae/ds-tree-model": "3.60.0-next.20",
186
+ "@elliemae/ds-truncated-expandable-text": "3.60.0-next.20",
187
+ "@elliemae/ds-truncated-tooltip-text": "3.60.0-next.20",
188
+ "@elliemae/ds-typescript-helpers": "3.60.0-next.20",
189
+ "@elliemae/ds-typography": "3.60.0-next.20",
190
+ "@elliemae/ds-virtual-list": "3.60.0-next.20",
191
+ "@elliemae/ds-wizard": "3.60.0-next.20",
192
+ "@elliemae/ds-zustand-helpers": "3.60.0-next.20"
193
193
  },
194
194
  "publishConfig": {
195
195
  "access": "public"