sidebar.d.ts 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import { AfterViewInit, AfterViewChecked, OnDestroy, EventEmitter, ElementRef, Renderer2 } from '@angular/core';
  2. export 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. autoZIndex: boolean;
  12. baseZIndex: number;
  13. modal: boolean;
  14. dismissible: boolean;
  15. showCloseIcon: boolean;
  16. closeOnEscape: boolean;
  17. containerViewChild: ElementRef;
  18. onShow: EventEmitter<any>;
  19. onHide: EventEmitter<any>;
  20. visibleChange: EventEmitter<any>;
  21. initialized: boolean;
  22. _visible: boolean;
  23. preventVisibleChangePropagation: boolean;
  24. mask: HTMLDivElement;
  25. maskClickListener: Function;
  26. documentEscapeListener: Function;
  27. executePostDisplayActions: boolean;
  28. constructor(el: ElementRef, renderer: Renderer2);
  29. ngAfterViewInit(): void;
  30. visible: boolean;
  31. ngAfterViewChecked(): void;
  32. show(): void;
  33. hide(): void;
  34. close(event: Event): void;
  35. enableModality(): void;
  36. disableModality(): void;
  37. onAnimationStart(event: any): void;
  38. bindDocumentEscapeListener(): void;
  39. unbindDocumentEscapeListener(): void;
  40. unbindMaskClickListener(): void;
  41. unbindGlobalListeners(): void;
  42. ngOnDestroy(): void;
  43. }
  44. export declare class SidebarModule {
  45. }