Update the size properties of the overlay.
(sizeConfig: OverlaySizeConfig)
| 348 | |
| 349 | /** Update the size properties of the overlay. */ |
| 350 | updateSize(sizeConfig: OverlaySizeConfig): void { |
| 351 | this._config = {...this._config, ...sizeConfig}; |
| 352 | this._updateElementSize(); |
| 353 | } |
| 354 | |
| 355 | /** Sets the LTR/RTL direction for the overlay. */ |
| 356 | setDirection(dir: Direction | Directionality): void { |
no test coverage detected