(columnSize: ColumnSizeAction)
| 256 | } |
| 257 | |
| 258 | private _cleanUpAfterResize(columnSize: ColumnSizeAction): void { |
| 259 | this.elementRef.nativeElement!.classList.remove(OVERLAY_ACTIVE_CLASS); |
| 260 | |
| 261 | if (this.overlayRef?.hasAttached()) { |
| 262 | this._updateOverlayHandleHeight(); |
| 263 | this.overlayRef.updatePosition(); |
| 264 | |
| 265 | if (columnSize.columnId === this.columnDef.name) { |
| 266 | this.inlineHandle!.focus(); |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | private _createHandlePortal(): ComponentPortal<HandleComponent> { |
| 272 | const injector = Injector.create({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…