Sets the LTR/RTL direction for the overlay.
(dir: Direction | Directionality)
| 364 | |
| 365 | /** Sets the LTR/RTL direction for the overlay. */ |
| 366 | setDirection(dir: Direction | Directionality): void { |
| 367 | this._config = {...this._config, direction: dir}; |
| 368 | this._updateElementDirection(); |
| 369 | } |
| 370 | |
| 371 | /** Add a CSS class or an array of classes to the overlay pane. */ |
| 372 | addPanelClass(classes: string | string[]): void { |
nothing calls this directly
no test coverage detected