source: trip-planner-front/node_modules/primeng/scrollpanel/scrollpanel.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: 1.9 KB
Line 
1import { AfterViewInit, OnDestroy, ElementRef, NgZone, ChangeDetectorRef, AfterContentInit, QueryList, TemplateRef } from '@angular/core';
2import * as i0 from "@angular/core";
3import * as i1 from "@angular/common";
4export declare class ScrollPanel implements AfterViewInit, AfterContentInit, OnDestroy {
5 el: ElementRef;
6 zone: NgZone;
7 cd: ChangeDetectorRef;
8 style: any;
9 styleClass: string;
10 constructor(el: ElementRef, zone: NgZone, cd: ChangeDetectorRef);
11 containerViewChild: ElementRef;
12 contentViewChild: ElementRef;
13 xBarViewChild: ElementRef;
14 yBarViewChild: ElementRef;
15 templates: QueryList<any>;
16 scrollYRatio: number;
17 scrollXRatio: number;
18 timeoutFrame: any;
19 initialized: boolean;
20 lastPageY: number;
21 lastPageX: number;
22 isXBarClicked: boolean;
23 isYBarClicked: boolean;
24 contentTemplate: TemplateRef<any>;
25 ngAfterViewInit(): void;
26 ngAfterContentInit(): void;
27 calculateContainerHeight(): void;
28 moveBar(): void;
29 onYBarMouseDown(e: MouseEvent): void;
30 onXBarMouseDown(e: MouseEvent): void;
31 onDocumentMouseMove(e: MouseEvent): void;
32 onMouseMoveForXBar(e: MouseEvent): void;
33 onMouseMoveForYBar(e: MouseEvent): void;
34 scrollTop(scrollTop: number): void;
35 onDocumentMouseUp(e: Event): void;
36 requestAnimationFrame(f: Function): void;
37 ngOnDestroy(): void;
38 refresh(): void;
39 static ɵfac: i0.ɵɵFactoryDeclaration<ScrollPanel, never>;
40 static ɵcmp: i0.ɵɵComponentDeclaration<ScrollPanel, "p-scrollPanel", never, { "style": "style"; "styleClass": "styleClass"; }, {}, ["templates"], ["*"]>;
41}
42export declare class ScrollPanelModule {
43 static ɵfac: i0.ɵɵFactoryDeclaration<ScrollPanelModule, never>;
44 static ɵmod: i0.ɵɵNgModuleDeclaration<ScrollPanelModule, [typeof ScrollPanel], [typeof i1.CommonModule], [typeof ScrollPanel]>;
45 static ɵinj: i0.ɵɵInjectorDeclaration<ScrollPanelModule>;
46}
Note: See TracBrowser for help on using the repository browser.