[59329aa] | 1 | import { QueryList, ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
---|
| 2 | import * as i0 from "@angular/core";
|
---|
| 3 | import * as i1 from "@angular/common";
|
---|
| 4 | import * as i2 from "primeng/api";
|
---|
| 5 | export 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 | }
|
---|
| 79 | export 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 | }
|
---|