| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import { AfterViewInit, AfterViewChecked, OnDestroy, EventEmitter, ElementRef, Renderer2 } from '@angular/core';
- export declare class Sidebar implements AfterViewInit, AfterViewChecked, OnDestroy {
- el: ElementRef;
- renderer: Renderer2;
- position: string;
- fullScreen: boolean;
- appendTo: string;
- blockScroll: boolean;
- style: any;
- styleClass: string;
- autoZIndex: boolean;
- baseZIndex: number;
- modal: boolean;
- dismissible: boolean;
- showCloseIcon: boolean;
- closeOnEscape: boolean;
- containerViewChild: ElementRef;
- onShow: EventEmitter<any>;
- onHide: EventEmitter<any>;
- visibleChange: EventEmitter<any>;
- initialized: boolean;
- _visible: boolean;
- preventVisibleChangePropagation: boolean;
- mask: HTMLDivElement;
- maskClickListener: Function;
- documentEscapeListener: Function;
- executePostDisplayActions: boolean;
- constructor(el: ElementRef, renderer: Renderer2);
- ngAfterViewInit(): void;
- visible: boolean;
- ngAfterViewChecked(): void;
- show(): void;
- hide(): void;
- close(event: Event): void;
- enableModality(): void;
- disableModality(): void;
- onAnimationStart(event: any): void;
- bindDocumentEscapeListener(): void;
- unbindDocumentEscapeListener(): void;
- unbindMaskClickListener(): void;
- unbindGlobalListeners(): void;
- ngOnDestroy(): void;
- }
- export declare class SidebarModule {
- }
|