ps-toolkit-ui 1.9.61 → 1.9.63

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.
@@ -1886,7 +1886,7 @@
1886
1886
  this.inputs.forEach(function (inp) {
1887
1887
  var iv = _.get(d, inp.name);
1888
1888
  if (inp.type === exports.InputType.Vehicle) {
1889
- var ivt = _.get(d, 'Type');
1889
+ var ivt = _.get(d, inp.name + 'Type');
1890
1890
  inp.setValue({ Value: iv, Type: ivt }, true);
1891
1891
  }
1892
1892
  else if (inp.type === exports.InputType.VehicleSearch) {
@@ -5788,7 +5788,10 @@
5788
5788
  this.inp.table.permissions = p;
5789
5789
  this.inp.table.showExtraButtons = false;
5790
5790
  this.inp.table.loading = false;
5791
- this.inp.table.cols.forEach(function (x) { return x.sort = false; });
5791
+ this.inp.table.cols.forEach(function (x) {
5792
+ x.sort = false;
5793
+ x.withSearch = false;
5794
+ });
5792
5795
  if (this.inp.table.form) {
5793
5796
  this.inp.table.form.onTop = true;
5794
5797
  this.inp.table.form.inputs.push(new InputClass(this.inp.environment, this.inp.l, 'Id', null, exports.InputType.Hidden, '', null, false));