@wizishop/img-manager 15.2.36 → 15.2.38
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 +3 -1
- package/esm2020/lib/pipes/pagination/total-pages/is-last-page.pipe.mjs +4 -1
- package/fesm2015/wizishop-img-manager.mjs +5 -1
- package/fesm2015/wizishop-img-manager.mjs.map +1 -1
- package/fesm2020/wizishop-img-manager.mjs +5 -1
- package/fesm2020/wizishop-img-manager.mjs.map +1 -1
- package/package.json +1 -1
- package/wizishop-img-manager-15.2.38.tgz +0 -0
- package/wizishop-img-manager-15.2.36.tgz +0 -0
|
@@ -2090,6 +2090,9 @@ 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);
|
|
2093
2096
|
if (!(currentPage >= 0 && totalItems >= 0 && itemsPerPage >= 0)) {
|
|
2094
2097
|
throw new Error('currentPage or totalItems or itemsPerPage is/are missing in PagniationIsLastPage pipe.');
|
|
2095
2098
|
}
|
|
@@ -2261,9 +2264,11 @@ class PaginationComponent {
|
|
|
2261
2264
|
this.pageChange = new EventEmitter();
|
|
2262
2265
|
}
|
|
2263
2266
|
set pagination(pagination) {
|
|
2267
|
+
console.log('pagination', pagination);
|
|
2264
2268
|
this._pagination = pagination;
|
|
2265
2269
|
}
|
|
2266
2270
|
get pagination() {
|
|
2271
|
+
console.log('get pagination');
|
|
2267
2272
|
return this._pagination;
|
|
2268
2273
|
}
|
|
2269
2274
|
decrementPage() {
|
|
@@ -4127,4 +4132,3 @@ class ImgManagerConfigDto {
|
|
|
4127
4132
|
|
|
4128
4133
|
export { ApiService, CanvaButtonApi, CanvaService, ImageNotFoundService, ImgApiDto, ImgManagerConfigDto, ImgManagerService, ImgSelectionService, RenamePictureService, WzImgManagerComponent, WzImgManagerModule };
|
|
4129
4134
|
//# sourceMappingURL=wizishop-img-manager.mjs.map
|
|
4130
|
-
//# sourceMappingURL=wizishop-img-manager.mjs.map
|