Triggered by the table's OnDestroy hook.
()
| 335 | |
| 336 | /** Triggered by the table's OnDestroy hook. */ |
| 337 | destroy() { |
| 338 | if (this._stickyColumnsReplayTimeout) { |
| 339 | clearTimeout(this._stickyColumnsReplayTimeout); |
| 340 | } |
| 341 | |
| 342 | this._resizeObserver?.disconnect(); |
| 343 | this._destroyed = true; |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * Removes the sticky style on the element by removing the sticky cell CSS class, re-evaluating |
nothing calls this directly
no test coverage detected