(e: CustomEvent<ListItemClickEventDetail>)
| 869 | } |
| 870 | |
| 871 | async _onOverflowListItemClick(e: CustomEvent<ListItemClickEventDetail>) { |
| 872 | e.preventDefault(); // cancel the item selection |
| 873 | |
| 874 | this._onItemSelect(e.detail.item.id.slice(0, -3), e); // strip "-li" from end of id |
| 875 | this._closePopover(); |
| 876 | await renderFinished(); |
| 877 | |
| 878 | const selectedTopLevel = this._getRootTab(this._selectedTab); |
| 879 | selectedTopLevel?.getDomRefInStrip()!.focus(); |
| 880 | } |
| 881 | |
| 882 | /** |
| 883 | * Returns all slotted tabs and their subTabs in a flattened array. |
nothing calls this directly
no test coverage detected