ps-toolkit-ui 0.0.150 → 0.0.154
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 -4
- 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 -4
- package/fesm2015/ps-toolkit-ui.js +1 -4
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -1665,7 +1665,7 @@
|
|
|
1665
1665
|
var ivs = _.get(d, inp.name.replace('Id', ''));
|
|
1666
1666
|
inp.setValue({ Search: ivs, Value: iv }, true);
|
|
1667
1667
|
}
|
|
1668
|
-
else {
|
|
1668
|
+
else if (inp.type !== exports.InputType.Label) {
|
|
1669
1669
|
inp.setValue(iv, true);
|
|
1670
1670
|
}
|
|
1671
1671
|
if (inp.type === exports.InputType.SelectAutoCompletePlaque || inp.type === exports.InputType.SelectAutoComplete) {
|
|
@@ -4024,9 +4024,6 @@
|
|
|
4024
4024
|
}
|
|
4025
4025
|
FormLabelComponent.prototype.ngOnInit = function () {
|
|
4026
4026
|
var _this = this;
|
|
4027
|
-
console.log(this.inp, 'this.inp');
|
|
4028
|
-
console.log(this.inp.value, 'this.inp.value');
|
|
4029
|
-
console.log(this.inp.default, 'this.inp.default');
|
|
4030
4027
|
this.inp.setValue = function (v) {
|
|
4031
4028
|
_this.inp.value = v;
|
|
4032
4029
|
};
|