UNPKG

@angular/material

Version:
44 lines (43 loc) 1.27 kB
/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { MatDialogRef } from './dialog-ref'; import { MatDialogContainer } from './dialog-container'; /** * Button that will close the current dialog. */ export declare class MatDialogClose implements OnChanges { dialogRef: MatDialogRef<any>; /** Screenreader label for the button. */ ariaLabel: string; /** Dialog close input. */ dialogResult: any; _matDialogClose: any; constructor(dialogRef: MatDialogRef<any>); ngOnChanges(changes: SimpleChanges): void; } /** * Title of a dialog element. Stays fixed to the top of the dialog when scrolling. */ export declare class MatDialogTitle implements OnInit { private _container; id: string; constructor(_container: MatDialogContainer); ngOnInit(): void; } /** * Scrollable content container of a dialog. */ export declare class MatDialogContent { } /** * Container for the bottom action buttons in a dialog. * Stays fixed to the bottom when scrolling. */ export declare class MatDialogActions { }