com.phloxui
Version:
PhloxUI Ng2+ Framework
29 lines (28 loc) • 1.2 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 model: WizardModel;
protected changeEvent: EventEmitter<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;
constructor(appSvc: PhloxAppService, elementRef: ElementRef);
ngOnInit(): void;
showStepContent(index: number): void;
getStepInstance(index: number): any;
}