* Updates the dialog's width and height. * @param width New width of the dialog. * @param height New height of the dialog.
(width: string = '', height: string = '')
| 220 | * @param height New height of the dialog. |
| 221 | */ |
| 222 | updateSize(width: string = '', height: string = ''): this { |
| 223 | this._ref.updateSize(width, height); |
| 224 | return this; |
| 225 | } |
| 226 | |
| 227 | /** Add a CSS class or an array of classes to the overlay pane. */ |
| 228 | addPanelClass(classes: string | string[]): this { |
no outgoing calls
no test coverage detected