ps-toolkit-ui 1.12.69 → 1.12.71
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 -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 +1 -2
- package/esm2015/lib/components/form/radio/form.radio.component.js +2 -1
- package/fesm2015/ps-toolkit-ui.js +1 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1949,7 +1949,6 @@
|
|
|
1949
1949
|
inp.setValue({ Search: ivs, Value: iv, Type: ivt }, true);
|
|
1950
1950
|
}
|
|
1951
1951
|
else if (inp.type !== exports.InputType.Label || iv != null) {
|
|
1952
|
-
console.log(inp.name, inp.type, iv);
|
|
1953
1952
|
inp.setValue(iv, true);
|
|
1954
1953
|
}
|
|
1955
1954
|
if (inp.type === exports.InputType.SelectAutoCompletePlaque || inp.type === exports.InputType.SelectAutoComplete) {
|
|
@@ -5409,6 +5408,7 @@
|
|
|
5409
5408
|
this.inp.load();
|
|
5410
5409
|
this.inp.setValue = function (v, isEdit) {
|
|
5411
5410
|
_this.inp.value = v !== null ? v.toString() : _this.inp.default;
|
|
5411
|
+
console.log(_this.inp.name, _this.inp.default, _this.inp.value, v);
|
|
5412
5412
|
if (_this.inp.value == null && _this.inp.options.length > 0) {
|
|
5413
5413
|
_this.inp.value = _this.inp.options.find(function (x) { return true; }).value;
|
|
5414
5414
|
}
|