* Returns the layout direction of the overlay panel.
()
| 386 | * Returns the layout direction of the overlay panel. |
| 387 | */ |
| 388 | getDirection(): Direction { |
| 389 | const direction = this._config.direction; |
| 390 | |
| 391 | if (!direction) { |
| 392 | return 'ltr'; |
| 393 | } |
| 394 | |
| 395 | return typeof direction === 'string' ? direction : direction.value; |
| 396 | } |
| 397 | |
| 398 | /** Switches to a new scroll strategy. */ |
| 399 | updateScrollStrategy(strategy: ScrollStrategy): void { |
no outgoing calls
no test coverage detected