(e: Event)
| 9 | }; |
| 10 | |
| 11 | const isHeaderSelectionCell = (e: Event) => { |
| 12 | return isSelectionCell(e) && e.composedPath().some((el: EventTarget) => el instanceof HTMLElement && el.hasAttribute("ui5-table-header-row")); |
| 13 | }; |
| 14 | |
| 15 | const findRowInPath = (composedPath: Array<EventTarget>) => { |
| 16 | return composedPath.find((el: EventTarget) => el instanceof HTMLElement && el.hasAttribute("ui5-table-row")) as TableRow; |
no test coverage detected
searching dependent graphs…