ps-toolkit-ui 1.5.67 → 1.5.70
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 -0
- 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/table/pagination/table.pagination.component.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +3 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2406,6 +2406,7 @@
|
|
|
2406
2406
|
var _this = this;
|
|
2407
2407
|
var l = [];
|
|
2408
2408
|
for (var i = s; i < f; i++) {
|
|
2409
|
+
console.log(i);
|
|
2409
2410
|
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);
|
|
2410
2411
|
b.onClick = function (btn) { return _this.changePage(btn); };
|
|
2411
2412
|
l.push(b);
|
|
@@ -2413,7 +2414,9 @@
|
|
|
2413
2414
|
return l;
|
|
2414
2415
|
};
|
|
2415
2416
|
TablePaginationComponent.prototype.changePage = function (btn) {
|
|
2417
|
+
console.log(btn.value);
|
|
2416
2418
|
this.table.page = btn.value;
|
|
2419
|
+
console.log(this.table.page);
|
|
2417
2420
|
this.table.load(btn);
|
|
2418
2421
|
};
|
|
2419
2422
|
TablePaginationComponent.prototype.ngOnInit = function () {
|