UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

16 lines (15 loc) 741 B
import { OnInit, ElementRef } from '@angular/core'; import { AbstractInputDataView } from './AbstractInputDataView'; import { NeedFocusService } from '../../../service/NeedFocusService.service'; export declare abstract class AbstractFloatingHeaderPanel extends AbstractInputDataView implements OnInit { private scrollOffset; private allowShowFloatingHeaderPanel; constructor(elementRef: ElementRef, needFocusService: NeedFocusService); ngOnInit(): void; ngOnDestroy(): void; scroll: (event: any) => void; getAllowShowFloatingHeaderPanel(): boolean; setAllowShowFloatingHeaderPanel(allowShowFloatingHeaderPanel: boolean): void; getScrollOffset(): number; setScrollOffset(scrollOffset: number): void; }