UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

39 lines (38 loc) 1.59 kB
import { OnInit, ElementRef, EventEmitter } from '@angular/core'; import { DomSanitizer } 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 ScrollWizardPane 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 model: WizardModel; protected field: string; protected loadEvent: EventEmitter<any>; protected changeEvent: EventEmitter<any>; protected beforeChangeEvent: EventEmitter<any>; private delayScrollTimer; private delayScrollClickTimer; private sanitizer; private className; constructor(appSvc: PhloxAppService, sanitizer: DomSanitizer, elementRef: ElementRef); ngOnInit(): void; onScroll(event: any): void; getClassName(index: number): string; showStepContent(index: number): void; }