ps-toolkit-ui 1.5.57 → 1.5.61

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.
@@ -6646,7 +6646,7 @@
6646
6646
  this.fingerprint.placeholder = this.inp.l('LoadingText', 'Waiting');
6647
6647
  this.inp.setValue = function (v) {
6648
6648
  if (v != null) {
6649
- if (v.Search && v.Search.split('_').length === 2 && v.split('_').every(function (x) { return /^[0-9]+$/.test(x); })) {
6649
+ if (v.Search && v.Search.split('_').length === 2 && v.Search.split('_').every(function (x) { return /^[0-9]+$/.test(x); })) {
6650
6650
  _this.type = 'Motor';
6651
6651
  setTimeout(function () {
6652
6652
  _this.motor.setValue(v.Value, false);
@@ -7743,8 +7743,8 @@
7743
7743
  this.name = name;
7744
7744
  this.class = cls;
7745
7745
  this.type = type;
7746
- this.withSearch = withSearch;
7747
- this.sort = sort;
7746
+ this.withSearch = type === exports.TableCollType.Image ? false : withSearch;
7747
+ this.sort = type === exports.TableCollType.Image ? false : sort;
7748
7748
  }
7749
7749
  return TableCollClass;
7750
7750
  }());