| import { OnChanges, OnInit, SimpleChanges, ElementRef } from '@angular/core'; |
| import { CovalentSideSheet } from './side-sheet'; |
| import { CovalentSideSheetRef } from './side-sheet-ref'; |
| /** |
| * Button that will close the current dialog. |
| */ |
| export declare class CovalentSideSheetClose implements OnInit, OnChanges { |
| dialogRef: CovalentSideSheetRef<any>; |
| private _elementRef; |
| private _dialog; |
| /** Screenreader label for the button. */ |
| ariaLabel: string; |
| /** Default to "button" to prevents accidental form submits. */ |
| type: 'submit' | 'button' | 'reset'; |
| /** Dialog close input. */ |
| dialogResult: any; |
| _CovalentSideSheetClose: any; |
| constructor(dialogRef: CovalentSideSheetRef<any>, _elementRef: ElementRef<HTMLElement>, _dialog: CovalentSideSheet); |
| ngOnInit(): void; |
| ngOnChanges(changes: SimpleChanges): void; |
| _onButtonClick(event: MouseEvent): void; |
| } |
| /** |
| * Title of a side sheet element. Stays fixed to the top of the side sheet when scrolling. |
| */ |
| export declare class CovalentSideSheetTitle implements OnInit { |
| private _dialogRef; |
| private _elementRef; |
| private _dialog; |
| /** Unique id for the dialog title. If none is supplied, it will be auto-generated. */ |
| id: string; |
| constructor(_dialogRef: CovalentSideSheetRef<any>, _elementRef: ElementRef<HTMLElement>, _dialog: CovalentSideSheet); |
| ngOnInit(): void; |
| } |
| /** |
| * Scrollable content container of a dialog. |
| */ |
| export declare class CovalentSideSheetContent { |
| } |
| /** |
| * Container for the bottom action buttons in a dialog. |
| * Stays fixed to the bottom when scrolling. |
| */ |
| export declare class CovalentSideSheetActions { |
| } |
| /** |
| * Container for the wrapper part of the dialog |
| */ |
| export declare class CovalentSideSheetWrapper { |
| } |