core/wizard/wizard.model.ts
Properties |
|
componentInitialState |
componentInitialState:
|
Type : Partial<T>
|
Optional |
A state that will be assigned to the actual component contained by the wizard. |
id |
id:
|
Type : string
|
The id parameter identifies the particular wizard and can be used to refer to it when hooking wizard entries. Example: "wizardId". |
onClose |
onClose:
|
Type : EventEmitter<any>
|
Optional |
The event that is emitted when the wizard is closed. |
onReset |
onReset:
|
Type : EventEmitter<any>
|
Optional |
The event that is emitted when the wizard is reset. |
onSelect |
onSelect:
|
Type : EventEmitter<WizardEntry>
|
Optional |
The event that is emitted when the wizard entry is selected. |
wizardConfig |
wizardConfig:
|
Type : WizardConfig
|
Optional |
Wizard configuration object. |