(e: PointerEvent)
| 1178 | }; |
| 1179 | |
| 1180 | const onPointerLeave = (e: PointerEvent): void => { |
| 1181 | if (disposed) return; |
| 1182 | if (!hasHoverListeners() && !tapCandidate) return; |
| 1183 | clearTapCandidateIfMatches(e); |
| 1184 | setHovered(null, e); |
| 1185 | }; |
| 1186 | |
| 1187 | const onPointerCancel = (e: PointerEvent): void => { |
| 1188 | if (disposed) return; |
nothing calls this directly
no test coverage detected