com.phloxui
Version:
PhloxUI Ng2+ Framework
33 lines (32 loc) • 1.35 kB
TypeScript
import { OnInit, ElementRef, EventEmitter } from '@angular/core';
import { WizardModel } from '../model/WizardModel';
import { PhloxAppService } from '../../service/PhloxAppService.service';
import { IHasModel } from '../IHasModel';
import { IHasData } from '../IHasData';
import { AbstractWizardPane } from './AbstractWizardPane';
import { IChangeable } from '../IChangeable';
export declare class PaginationWizardPane 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>;
constructor(appSvc: PhloxAppService, elementRef: ElementRef);
ngOnInit(): void;
showStepContent(index: number): void;
getStepInstance(index: number): any;
}