UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

40 lines (39 loc) 1.66 kB
import { OnInit, ElementRef, EventEmitter } from '@angular/core'; import { DomSanitizer, SafeStyle } from '@angular/platform-browser'; import { PhloxAppService } from '../../service/PhloxAppService.service'; import { IHasModel } from '../IHasModel'; import { AbstractWizardPane } from './AbstractWizardPane'; import { IChangeable } from '../IChangeable'; import { IHasData } from '../../component/IHasData'; import { WizardModel } from '../model/WizardModel'; export declare class ScrollPaginationWizardPane extends AbstractWizardPane implements OnInit, IHasModel, IChangeable { static readonly TYPE_NAME: string; protected help: any; protected dataParent: IHasData; protected ignoreParentData: boolean; protected data: any; protected ignoreParentDisabled: boolean; protected delegateHistory: boolean; protected onDisabled: Function; protected onEnabled: Function; protected loadingEnabled: boolean; protected i18nKey: string; protected bypass: boolean; protected options: any; protected disabled: boolean; protected field: string; protected model: WizardModel; protected loadEvent: EventEmitter<any>; protected changeEvent: EventEmitter<any>; protected beforeChangeEvent: EventEmitter<any>; private delayMouseWheelTimer; private sanitizer; private safeStyle; constructor(appSvc: PhloxAppService, sanitizer: DomSanitizer, elementRef: ElementRef); ngOnInit(): void; onmousewheel(event: any): void; setSafeStyleIndexY(mouseWheel: string): void; getSafeStyle(): SafeStyle; showStepContent(index: number): void; getStepInstance(index: number): any; }