ps-toolkit-ui 1.10.24 → 1.10.25

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.
@@ -1746,6 +1746,7 @@
1746
1746
  };
1747
1747
  FormClass.prototype.clearInputs = function () {
1748
1748
  this.inputs.filter(function (x) { return x.type !== exports.InputType.Constant; }).forEach(function (inp) {
1749
+ console.log(inp, '$$$$$$$$$');
1749
1750
  inp.clear();
1750
1751
  });
1751
1752
  };
@@ -4351,7 +4352,6 @@
4351
4352
  var submit = this.form.inputs.find(function (x) { return x.type === exports.InputType.Submit; });
4352
4353
  if (submit) {
4353
4354
  submit.onClick(submit);
4354
- // this.form.submit();
4355
4355
  return;
4356
4356
  }
4357
4357
  }
@@ -5914,6 +5914,7 @@
5914
5914
  this.inp.clear = function () {
5915
5915
  _this.inp.error = null;
5916
5916
  _this.inp.value = _this.inp.default;
5917
+ console.log(_this.inp.value, _this.inp.default, '$$$$$$$$$');
5917
5918
  };
5918
5919
  this.inp.data = function () {
5919
5920
  var v = _this.inp.value;