@wizishop/img-manager 15.2.38 → 15.2.40

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.
@@ -2090,9 +2090,6 @@ class PagniationIsLastPage {
2090
2090
  * @param itemsPerPage
2091
2091
  */
2092
2092
  transform(currentPage, totalItems, itemsPerPage) {
2093
- console.log('currentPage', currentPage);
2094
- console.log('totalItems', totalItems);
2095
- console.log('itemsPerPage', itemsPerPage);
2096
2093
  if (!(currentPage >= 0 && totalItems >= 0 && itemsPerPage >= 0)) {
2097
2094
  throw new Error('currentPage or totalItems or itemsPerPage is/are missing in PagniationIsLastPage pipe.');
2098
2095
  }
@@ -2264,11 +2261,9 @@ class PaginationComponent {
2264
2261
  this.pageChange = new EventEmitter();
2265
2262
  }
2266
2263
  set pagination(pagination) {
2267
- console.log('pagination', pagination);
2268
2264
  this._pagination = pagination;
2269
2265
  }
2270
2266
  get pagination() {
2271
- console.log('get pagination');
2272
2267
  return this._pagination;
2273
2268
  }
2274
2269
  decrementPage() {