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.
@@ -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;