()
| 522 | } |
| 523 | |
| 524 | onEnterDOM() { |
| 525 | this.growingIntersectionObserver = this.getIntersectionObserver(); |
| 526 | |
| 527 | ResizeHandler.register(this.getDomRef()!, this._handleResize); |
| 528 | |
| 529 | this._itemNavigation.setCurrentItem(this.rows.length ? this.rows[0] : this._columnHeader); |
| 530 | } |
| 531 | |
| 532 | onExitDOM() { |
| 533 | ResizeHandler.deregister(this.getDomRef()!, this._handleResize); |
nothing calls this directly
no test coverage detected