[59329aa] | 1 | import { AfterViewInit, OnDestroy, ElementRef, NgZone, ChangeDetectorRef, AfterContentInit, QueryList, TemplateRef } from '@angular/core';
|
---|
| 2 | import * as i0 from "@angular/core";
|
---|
| 3 | import * as i1 from "@angular/common";
|
---|
| 4 | export 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 | }
|
---|
| 42 | export 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 | }
|
---|