()
| 45 | } |
| 46 | |
| 47 | componentWillLoad() { |
| 48 | getElementRoot(this.el).addEventListener('focusin', this.onFocusIn); |
| 49 | getElementRoot(this.el).addEventListener('focusout', this.onFocusOut); |
| 50 | } |
| 51 | |
| 52 | private isInHighlightBounds = (ev: PointerEvent) => { |
| 53 | const { highlightEl } = this; |
nothing calls this directly
no test coverage detected