feat(breadcrumbs): ionCollapsedClick event payload now contains references to collapsed breadcrumb elements (#23611)

resolves #23552
This commit is contained in:
Liam DeBeasi
2021-07-13 11:21:36 -04:00
committed by GitHub
parent 8f2c4f73db
commit 9ce57d2efb
10 changed files with 170 additions and 134 deletions

View File

@ -1,3 +1,4 @@
export interface BreadcrumbCollapsedClickEventDetail {
ionShadowTarget?: HTMLElement;
collapsedBreadcrumbs?: HTMLIonBreadcrumbElement[];
}