ps-toolkit-ui 0.0.180 → 0.0.181
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 -6
- 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 -2
- package/esm2015/lib/components/form/label/form.label.component.js +1 -6
- package/fesm2015/ps-toolkit-ui.js +1 -6
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -1667,7 +1667,7 @@
|
|
|
1667
1667
|
var ivs = _.get(d, inp.name.replace('Id', ''));
|
|
1668
1668
|
inp.setValue({ Search: ivs, Value: iv }, true);
|
|
1669
1669
|
}
|
|
1670
|
-
else if (inp.type !== exports.InputType.Label) {
|
|
1670
|
+
else if (inp.type !== exports.InputType.Label || iv != null) {
|
|
1671
1671
|
inp.setValue(iv, true);
|
|
1672
1672
|
}
|
|
1673
1673
|
if (inp.type === exports.InputType.SelectAutoCompletePlaque || inp.type === exports.InputType.SelectAutoComplete) {
|
|
@@ -4078,12 +4078,7 @@
|
|
|
4078
4078
|
FormLabelComponent.prototype.ngOnInit = function () {
|
|
4079
4079
|
var _this = this;
|
|
4080
4080
|
this.inp.setValue = function (v) {
|
|
4081
|
-
console.log(v);
|
|
4082
4081
|
_this.inp.value = v;
|
|
4083
|
-
console.log(_this.inp.value);
|
|
4084
|
-
setTimeout(function () {
|
|
4085
|
-
_this.inp.value = v;
|
|
4086
|
-
}, 5000);
|
|
4087
4082
|
};
|
|
4088
4083
|
this.inp.isValid = function () {
|
|
4089
4084
|
return true;
|