@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.
- package/esm2020/lib/components/shared/pagination/pagination.component.mjs +1 -3
- package/esm2020/lib/pipes/pagination/total-pages/is-last-page.pipe.mjs +1 -4
- package/fesm2015/wizishop-img-manager.mjs +0 -5
- package/fesm2015/wizishop-img-manager.mjs.map +1 -1
- package/fesm2020/wizishop-img-manager.mjs +0 -5
- package/fesm2020/wizishop-img-manager.mjs.map +1 -1
- package/package.json +1 -1
- package/wizishop-img-manager-15.2.40.tgz +0 -0
- package/wizishop-img-manager-15.2.38.tgz +0 -0
|
@@ -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() {
|