ps-toolkit-ui 1.5.58 → 1.5.62
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/table/pagination/table.pagination.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
|
@@ -2404,7 +2404,7 @@
|
|
|
2404
2404
|
var _this = this;
|
|
2405
2405
|
var l = [];
|
|
2406
2406
|
for (var i = s; i < f; i++) {
|
|
2407
|
-
var b = new InputClass(this.table.environment, this.table.l, i.toString(), null, exports.InputType.Button, 'h-25' + (this.table.page === i ? '
|
|
2407
|
+
var b = new InputClass(this.table.environment, this.table.l, i.toString(), null, exports.InputType.Button, 'h-25' + (this.table.page === i ? ' white' : ' extra'), i);
|
|
2408
2408
|
b.onClick = function (btn) { return _this.changePage(btn); };
|
|
2409
2409
|
l.push(b);
|
|
2410
2410
|
}
|
|
@@ -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
|
}());
|