Sets the LTR/RTL direction for the overlay.
(dir: Direction | Directionality)
| 354 | |
| 355 | /** Sets the LTR/RTL direction for the overlay. */ |
| 356 | setDirection(dir: Direction | Directionality): void { |
| 357 | this._config = {...this._config, direction: dir}; |
| 358 | this._updateElementDirection(); |
| 359 | } |
| 360 | |
| 361 | /** Add a CSS class or an array of classes to the overlay pane. */ |
| 362 | addPanelClass(classes: string | string[]): void { |
nothing calls this directly
no test coverage detected