source: trip-planner-front/node_modules/primeng/sidebar/sidebar.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 3.0 KB
Line 
1import { AfterViewInit, OnDestroy, EventEmitter, ElementRef, Renderer2, QueryList, AfterContentInit, TemplateRef, ChangeDetectorRef } from '@angular/core';
2import { PrimeNGConfig } from 'primeng/api';
3import * as i0 from "@angular/core";
4import * as i1 from "@angular/common";
5import * as i2 from "primeng/ripple";
6export declare class Sidebar implements AfterViewInit, AfterContentInit, OnDestroy {
7 el: ElementRef;
8 renderer: Renderer2;
9 cd: ChangeDetectorRef;
10 config: PrimeNGConfig;
11 appendTo: any;
12 blockScroll: boolean;
13 style: any;
14 styleClass: string;
15 ariaCloseLabel: string;
16 autoZIndex: boolean;
17 baseZIndex: number;
18 modal: boolean;
19 dismissible: boolean;
20 showCloseIcon: boolean;
21 closeOnEscape: boolean;
22 transitionOptions: string;
23 templates: QueryList<any>;
24 onShow: EventEmitter<any>;
25 onHide: EventEmitter<any>;
26 visibleChange: EventEmitter<any>;
27 initialized: boolean;
28 _visible: boolean;
29 _position: string;
30 _fullScreen: boolean;
31 container: HTMLDivElement;
32 transformOptions: any;
33 mask: HTMLDivElement;
34 maskClickListener: Function;
35 documentEscapeListener: Function;
36 animationEndListener: any;
37 contentTemplate: TemplateRef<any>;
38 constructor(el: ElementRef, renderer: Renderer2, cd: ChangeDetectorRef, config: PrimeNGConfig);
39 ngAfterViewInit(): void;
40 ngAfterContentInit(): void;
41 get visible(): boolean;
42 set visible(val: boolean);
43 get position(): string;
44 set position(value: string);
45 get fullScreen(): boolean;
46 set fullScreen(value: boolean);
47 show(): void;
48 hide(): void;
49 close(event: Event): void;
50 enableModality(): void;
51 disableModality(): void;
52 destroyModal(): void;
53 onAnimationStart(event: any): void;
54 onAnimationEnd(event: any): void;
55 appendContainer(): void;
56 bindDocumentEscapeListener(): void;
57 unbindDocumentEscapeListener(): void;
58 unbindMaskClickListener(): void;
59 unbindGlobalListeners(): void;
60 unbindAnimationEndListener(): void;
61 ngOnDestroy(): void;
62 static ɵfac: i0.ɵɵFactoryDeclaration<Sidebar, never>;
63 static ɵcmp: i0.ɵɵComponentDeclaration<Sidebar, "p-sidebar", never, { "appendTo": "appendTo"; "blockScroll": "blockScroll"; "style": "style"; "styleClass": "styleClass"; "ariaCloseLabel": "ariaCloseLabel"; "autoZIndex": "autoZIndex"; "baseZIndex": "baseZIndex"; "modal": "modal"; "dismissible": "dismissible"; "showCloseIcon": "showCloseIcon"; "closeOnEscape": "closeOnEscape"; "transitionOptions": "transitionOptions"; "visible": "visible"; "position": "position"; "fullScreen": "fullScreen"; }, { "onShow": "onShow"; "onHide": "onHide"; "visibleChange": "visibleChange"; }, ["templates"], ["*"]>;
64}
65export declare class SidebarModule {
66 static ɵfac: i0.ɵɵFactoryDeclaration<SidebarModule, never>;
67 static ɵmod: i0.ɵɵNgModuleDeclaration<SidebarModule, [typeof Sidebar], [typeof i1.CommonModule, typeof i2.RippleModule], [typeof Sidebar]>;
68 static ɵinj: i0.ɵɵInjectorDeclaration<SidebarModule>;
69}
Note: See TracBrowser for help on using the repository browser.