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.
- package/bundles/ps-toolkit-ui.umd.js +2 -1
- 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/classes/form.class.js +2 -1
- package/esm2015/lib/components/form/index/form.component.js +1 -2
- package/esm2015/lib/components/form/textarea/form.textarea.component.js +2 -1
- package/fesm2015/ps-toolkit-ui.js +2 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -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;
|