ng-inail-common 1.0.458 → 1.0.460
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/ng-inail-common.umd.js +2 -3
- package/bundles/ng-inail-common.umd.js.map +1 -1
- package/bundles/ng-inail-common.umd.min.js +1 -1
- package/bundles/ng-inail-common.umd.min.js.map +1 -1
- package/esm2015/lib/components/ux/inail-wizard/inail-wizard.component.js +3 -4
- package/esm5/lib/components/ux/inail-wizard/inail-wizard.component.js +3 -4
- package/fesm2015/ng-inail-common.js +3 -4
- package/fesm2015/ng-inail-common.js.map +1 -1
- package/fesm5/ng-inail-common.js +3 -4
- package/fesm5/ng-inail-common.js.map +1 -1
- package/package.json +1 -1
|
@@ -4342,7 +4342,7 @@
|
|
|
4342
4342
|
* @return {?}
|
|
4343
4343
|
*/
|
|
4344
4344
|
function (step) {
|
|
4345
|
-
if (step.index < this.currentStep || (step.index > this.currentStep && this.fullNavigation)) {
|
|
4345
|
+
if (step.index < this.currentStep || (step.index > this.currentStep && this.fullNavigation) || (this.activateVisitedStep === true && step.visited)) {
|
|
4346
4346
|
this.currentStep = step.index;
|
|
4347
4347
|
this.select.emit(step);
|
|
4348
4348
|
}
|
|
@@ -4359,8 +4359,7 @@
|
|
|
4359
4359
|
* @return {?}
|
|
4360
4360
|
*/
|
|
4361
4361
|
function (step) {
|
|
4362
|
-
|
|
4363
|
-
return (this.fullNavigation) || step.index <= this.currentStep || (this.activateVisitedStep === true && step.visited);
|
|
4362
|
+
return (step.index != this.currentStep) && (this.fullNavigation) || step.index <= this.currentStep || (this.activateVisitedStep === true && step.visited);
|
|
4364
4363
|
};
|
|
4365
4364
|
/**
|
|
4366
4365
|
* @param {?} step
|