* Updates the dialog's width and height. * @param width New width of the dialog. * @param height New height of the dialog.
(width: string | number = '', height: string | number = '')
| 127 | * @param height New height of the dialog. |
| 128 | */ |
| 129 | updateSize(width: string | number = '', height: string | number = ''): this { |
| 130 | this.overlayRef.updateSize({width, height}); |
| 131 | return this; |
| 132 | } |
| 133 | |
| 134 | /** Add a CSS class or an array of classes to the overlay pane. */ |
| 135 | addPanelClass(classes: string | string[]): this { |
no outgoing calls
no test coverage detected