ps-toolkit-ui 1.5.70 → 1.5.71

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.
@@ -2406,7 +2406,6 @@
2406
2406
  var _this = this;
2407
2407
  var l = [];
2408
2408
  for (var i = s; i < f; i++) {
2409
- console.log(i);
2410
2409
  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);
2411
2410
  b.onClick = function (btn) { return _this.changePage(btn); };
2412
2411
  l.push(b);
@@ -2414,9 +2413,7 @@
2414
2413
  return l;
2415
2414
  };
2416
2415
  TablePaginationComponent.prototype.changePage = function (btn) {
2417
- console.log(btn.value);
2418
2416
  this.table.page = btn.value;
2419
- console.log(this.table.page);
2420
2417
  this.table.load(btn);
2421
2418
  };
2422
2419
  TablePaginationComponent.prototype.ngOnInit = function () {