ps-toolkit-ui 1.9.62 → 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.
- package/bundles/ps-toolkit-ui.umd.js +4 -1
- 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/components/form/table/form.table.component.js +5 -2
- package/fesm2015/ps-toolkit-ui.js +4 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -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) {
|
|
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));
|