(e: PointerEvent)
| 1185 | }; |
| 1186 | |
| 1187 | const onPointerCancel = (e: PointerEvent): void => { |
| 1188 | if (disposed) return; |
| 1189 | if (!hasHoverListeners() && !tapCandidate) return; |
| 1190 | clearTapCandidateIfMatches(e); |
| 1191 | setHovered(null, e); |
| 1192 | }; |
| 1193 | |
| 1194 | const onLostPointerCapture = (e: PointerEvent): void => { |
| 1195 | if (disposed) return; |
nothing calls this directly
no test coverage detected