(e: Event)
| 5 | const isInstanceOfTable = createInstanceChecker<Table>("isTable"); |
| 6 | |
| 7 | const isSelectionCell = (e: Event) => { |
| 8 | return e.composedPath().some((el: EventTarget) => (el as HTMLElement).hasAttribute?.("data-ui5-table-selection-cell")); |
| 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")); |
no test coverage detected
searching dependent graphs…