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.
- package/bundles/ps-toolkit-ui.umd.js +3 -3
- 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/table.class.js +3 -3
- package/esm2015/lib/components/form/car/search/form.car.search.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +3 -3
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
}());
|