source: trip-planner-front/node_modules/primeng/splitter/splitter.d.ts@ 59329aa

Last change on this file since 59329aa 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 { QueryList, ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
2import * as i0 from "@angular/core";
3import * as i1 from "@angular/common";
4import * as i2 from "primeng/api";
5export declare class Splitter {
6 cd: ChangeDetectorRef;
7 private el;
8 styleClass: string;
9 panelStyleClass: string;
10 style: any;
11 panelStyle: any;
12 stateStorage: string;
13 stateKey: string;
14 layout: string;
15 gutterSize: number;
16 panelSizes: number[];
17 minSizes: number[];
18 onResizeEnd: EventEmitter<any>;
19 onResizeStart: EventEmitter<any>;
20 templates: QueryList<any>;
21 containerViewChild: ElementRef;
22 nested: boolean;
23 panels: any[];
24 dragging: boolean;
25 mouseMoveListener: any;
26 mouseUpListener: any;
27 touchMoveListener: any;
28 touchEndListener: any;
29 size: any;
30 gutterElement: any;
31 startPos: any;
32 prevPanelElement: any;
33 nextPanelElement: any;
34 nextPanelSize: any;
35 prevPanelSize: any;
36 _panelSizes: any;
37 prevPanelIndex: any;
38 constructor(cd: ChangeDetectorRef, el: ElementRef);
39 ngOnInit(): void;
40 ngAfterContentInit(): void;
41 ngAfterViewInit(): void;
42 resizeStart(event: any, index: any): void;
43 onResize(event: any): void;
44 resizeEnd(event: any): void;
45 onGutterMouseDown(event: any, index: any): void;
46 onGutterTouchStart(event: any, index: any): void;
47 onGutterTouchEnd(event: any): void;
48 validateResize(newPrevPanelSize: any, newNextPanelSize: any): boolean;
49 bindMouseListeners(): void;
50 bindTouchListeners(): void;
51 unbindMouseListeners(): void;
52 unbindTouchListeners(): void;
53 clear(): void;
54 isNested(): boolean;
55 isStateful(): boolean;
56 getStorage(): Storage;
57 saveState(): void;
58 restoreState(): boolean;
59 containerClass(): {
60 'p-splitter p-component': boolean;
61 'p-splitter-horizontal': boolean;
62 'p-splitter-vertical': boolean;
63 };
64 panelContainerClass(): {
65 'p-splitter-panel': boolean;
66 'p-splitter-panel-nested': boolean;
67 };
68 gutterStyle(): {
69 width: string;
70 height?: undefined;
71 } | {
72 height: string;
73 width?: undefined;
74 };
75 horizontal(): boolean;
76 static ɵfac: i0.ɵɵFactoryDeclaration<Splitter, never>;
77 static ɵcmp: i0.ɵɵComponentDeclaration<Splitter, "p-splitter", never, { "styleClass": "styleClass"; "panelStyleClass": "panelStyleClass"; "style": "style"; "panelStyle": "panelStyle"; "stateStorage": "stateStorage"; "stateKey": "stateKey"; "layout": "layout"; "gutterSize": "gutterSize"; "panelSizes": "panelSizes"; "minSizes": "minSizes"; }, { "onResizeEnd": "onResizeEnd"; "onResizeStart": "onResizeStart"; }, ["templates"], never>;
78}
79export declare class SplitterModule {
80 static ɵfac: i0.ɵɵFactoryDeclaration<SplitterModule, never>;
81 static ɵmod: i0.ɵɵNgModuleDeclaration<SplitterModule, [typeof Splitter], [typeof i1.CommonModule], [typeof Splitter, typeof i2.SharedModule]>;
82 static ɵinj: i0.ɵɵInjectorDeclaration<SplitterModule>;
83}
Note: See TracBrowser for help on using the repository browser.