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.
@@ -2807,7 +2807,7 @@
2807
2807
  if (!activeStep.form.check()) {
2808
2808
  return;
2809
2809
  }
2810
- new RequestClass(this.steps.environment, this.steps.l).send(activeStep.form.url, exports.Method.Post, activeStep.form.data(), btn, function () {
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
- }, function (data) {
2824
- activeStep.form.setError(data);
2825
- });
2823
+ };
2824
+ activeStep.form.submit();
2826
2825
  };
2827
2826
  return StepsComponent;
2828
2827
  }());