madoar

Results 265 comments of madoar

`WizardStep.canExit` and `WizardStep.canEnter` are not completely synchronous. Both inputs allow for the signature `(direction: MovingDirection) => Promise`. So basically the method itself is synchronous but the the evaluation of the...

@earshinov do you think it makes sense to add an additional check to the `isNavigable` method, which checks whether the wizard is completed? If the wizard is completed `isNavigable` should...

I'm not sure we can move the navigation responsibility to only one class: - `WizardStep` is the place where `canExit` and `canEnter` are specified, because these are the only components...

I think the easiest solution is to define two wizards and (one with all three steps and the second one with only step 1 and 3) and then choose the...

@theCrius it is nice to hear that you like `angular-archwizard` :) About your issue: `angular-archwizard` checks the to be performed navigation before executing it. This check entails that the wizard...

> It may be worth to add this information (awOptionalStep) somewhere in the documentation? `[awOptionalStep]` is already documented in the README file, see [here](https://github.com/madoar/angular-archwizard#awoptionalstep). Do you think this should be...

Do you have a short example project showcasing the issue? This would help me tremendously finding the reason for the issue :)

Not really, it was not an issue as of now :) When thinking about adding a condition to `awSelectedStep` I have multiple open questions we would need to answer first:...

It is also important to note that the default step input is not validated at the moment. This means that you can basically define an arbitrary step as the default...