Remove a CSS class or an array of classes from the overlay pane.
(classes: string | string[])
| 367 | |
| 368 | /** Remove a CSS class or an array of classes from the overlay pane. */ |
| 369 | removePanelClass(classes: string | string[]): void { |
| 370 | if (this._pane) { |
| 371 | this._toggleClasses(this._pane, classes, false); |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Returns the layout direction of the overlay panel. |
no test coverage detected