Add a CSS class or an array of classes to the overlay pane.
(classes: string | string[])
| 226 | |
| 227 | /** Add a CSS class or an array of classes to the overlay pane. */ |
| 228 | addPanelClass(classes: string | string[]): this { |
| 229 | this._ref.addPanelClass(classes); |
| 230 | return this; |
| 231 | } |
| 232 | |
| 233 | /** Remove a CSS class or an array of classes from the overlay pane. */ |
| 234 | removePanelClass(classes: string | string[]): this { |
no outgoing calls
no test coverage detected