ps-toolkit-ui 1.5.60 → 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 +2 -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/table.class.js +3 -3
- package/esm2015/lib/components/table/row/table.row.component.js +1 -3
- package/fesm2015/ps-toolkit-ui.js +2 -4
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2884,8 +2884,6 @@
|
|
|
2884
2884
|
return '<a target="_blank" class="ltr" href="' + cv + '">' + cv + '</a>';
|
|
2885
2885
|
}
|
|
2886
2886
|
else if (col.type === exports.TableCollType.Image) {
|
|
2887
|
-
col.withSearch = false;
|
|
2888
|
-
col.sort = false;
|
|
2889
2887
|
return '<img style="height: ' + this.table.height + 'px" alt="" src="' + this.service.environment.url + cv + '"/>';
|
|
2890
2888
|
}
|
|
2891
2889
|
else if (col.type === exports.TableCollType.FileSize) {
|
|
@@ -7745,8 +7743,8 @@
|
|
|
7745
7743
|
this.name = name;
|
|
7746
7744
|
this.class = cls;
|
|
7747
7745
|
this.type = type;
|
|
7748
|
-
this.withSearch = withSearch;
|
|
7749
|
-
this.sort = sort;
|
|
7746
|
+
this.withSearch = type === exports.TableCollType.Image ? false : withSearch;
|
|
7747
|
+
this.sort = type === exports.TableCollType.Image ? false : sort;
|
|
7750
7748
|
}
|
|
7751
7749
|
return TableCollClass;
|
|
7752
7750
|
}());
|