UNPKG

1.45 kBTypeScriptView Raw
1import { AfterViewInit, AfterViewChecked, OnDestroy, EventEmitter, ElementRef, Renderer2 } from '@angular/core';
2export declare class Sidebar implements AfterViewInit, AfterViewChecked, OnDestroy {
3 el: ElementRef;
4 renderer: Renderer2;
5 position: string;
6 fullScreen: boolean;
7 appendTo: string;
8 blockScroll: boolean;
9 style: any;
10 styleClass: string;
11 ariaCloseLabel: string;
12 autoZIndex: boolean;
13 baseZIndex: number;
14 modal: boolean;
15 dismissible: boolean;
16 showCloseIcon: boolean;
17 closeOnEscape: boolean;
18 containerViewChild: ElementRef;
19 onShow: EventEmitter<any>;
20 onHide: EventEmitter<any>;
21 visibleChange: EventEmitter<any>;
22 initialized: boolean;
23 _visible: boolean;
24 preventVisibleChangePropagation: boolean;
25 mask: HTMLDivElement;
26 maskClickListener: Function;
27 documentEscapeListener: Function;
28 executePostDisplayActions: boolean;
29 constructor(el: ElementRef, renderer: Renderer2);
30 ngAfterViewInit(): void;
31 visible: boolean;
32 ngAfterViewChecked(): void;
33 show(): void;
34 hide(): void;
35 close(event: Event): void;
36 enableModality(): void;
37 disableModality(): void;
38 onAnimationStart(event: any): void;
39 bindDocumentEscapeListener(): void;
40 unbindDocumentEscapeListener(): void;
41 unbindMaskClickListener(): void;
42 unbindGlobalListeners(): void;
43 ngOnDestroy(): void;
44}
45export declare class SidebarModule {
46}