ps-toolkit-ui 1.12.80 → 1.12.81
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/ps-toolkit-ui.umd.js +1 -2
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/steps/steps.component.js +2 -3
- package/fesm2015/ps-toolkit-ui.js +1 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2641,12 +2641,11 @@
|
|
|
2641
2641
|
else {
|
|
2642
2642
|
var nextStepIndex = activeStepIndex + 1;
|
|
2643
2643
|
var next = _this.steps.items[nextStepIndex];
|
|
2644
|
-
activeStep.active = false;
|
|
2645
|
-
next.active = true;
|
|
2646
2644
|
if (currentStepIndex === activeStepIndex) {
|
|
2647
2645
|
currentStep.current = false;
|
|
2648
2646
|
next.current = true;
|
|
2649
2647
|
}
|
|
2648
|
+
_this.changeStep(next);
|
|
2650
2649
|
}
|
|
2651
2650
|
});
|
|
2652
2651
|
};
|