ps-toolkit-ui 1.13.92 → 1.13.95
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 +3 -4
- 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 +5 -7
- package/fesm2015/ps-toolkit-ui.js +3 -4
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2807,7 +2807,7 @@
|
|
|
2807
2807
|
if (!activeStep.form.check()) {
|
|
2808
2808
|
return;
|
|
2809
2809
|
}
|
|
2810
|
-
|
|
2810
|
+
activeStep.form.onSuccess = function () {
|
|
2811
2811
|
if (done) {
|
|
2812
2812
|
_this.steps.onDone();
|
|
2813
2813
|
}
|
|
@@ -2820,9 +2820,8 @@
|
|
|
2820
2820
|
}
|
|
2821
2821
|
_this.changeStep(next);
|
|
2822
2822
|
}
|
|
2823
|
-
}
|
|
2824
|
-
|
|
2825
|
-
});
|
|
2823
|
+
};
|
|
2824
|
+
activeStep.form.submit();
|
|
2826
2825
|
};
|
|
2827
2826
|
return StepsComponent;
|
|
2828
2827
|
}());
|