UNPKG

angular2-wizard-angular-material

Version:

This is an Angular2 Form Wizard component. Just like any form wizard. You can define steps and control how each step works. You can enable/disable navigation button based on validity of the current step. Currently, the component only support basic functio

21 lines (20 loc) 764 B
import { EventEmitter, QueryList, AfterContentInit } from '@angular/core'; import { WizardStepComponent } from './wizard-step.component'; export declare class WizardComponent implements AfterContentInit { wizardSteps: QueryList<WizardStepComponent>; private _steps; private _isCompleted; onStepChanged: EventEmitter<WizardStepComponent>; constructor(); ngAfterContentInit(): void; readonly steps: Array<WizardStepComponent>; readonly isCompleted: boolean; activeStep: WizardStepComponent; readonly activeStepIndex: number; readonly hasNextStep: boolean; readonly hasPrevStep: boolean; goToStep(step: WizardStepComponent): void; next(): void; previous(): void; complete(): void; }