@wizishop/img-manager 0.2.74 → 0.2.78
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/assets/i18n/en.json +1 -1
- package/bundles/wizishop-img-manager.umd.js +151 -25
- package/bundles/wizishop-img-manager.umd.js.map +1 -1
- package/bundles/wizishop-img-manager.umd.min.js +1 -1
- package/bundles/wizishop-img-manager.umd.min.js.map +1 -1
- package/esm2015/lib/components/images-view/images-view.component.js +10 -4
- package/esm2015/lib/components/img-editor/img-editor.component.js +6 -2
- package/esm2015/lib/components/shared/pagination/page-selector/page-selector.component.js +55 -0
- package/esm2015/lib/components/shared/pagination/pagination.component.js +4 -4
- package/esm2015/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.js +51 -0
- package/esm2015/lib/services/img-manager.service.js +2 -2
- package/esm2015/lib/wz-img-manager.module.js +7 -3
- package/esm2015/wizishop-img-manager.js +18 -16
- package/esm5/lib/components/images-view/images-view.component.js +10 -4
- package/esm5/lib/components/img-editor/img-editor.component.js +6 -2
- package/esm5/lib/components/shared/pagination/page-selector/page-selector.component.js +64 -0
- package/esm5/lib/components/shared/pagination/pagination.component.js +4 -4
- package/esm5/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.js +54 -0
- package/esm5/lib/services/img-manager.service.js +2 -2
- package/esm5/lib/wz-img-manager.module.js +7 -3
- package/esm5/wizishop-img-manager.js +18 -16
- package/fesm2015/wizishop-img-manager.js +123 -11
- package/fesm2015/wizishop-img-manager.js.map +1 -1
- package/fesm5/wizishop-img-manager.js +135 -11
- package/fesm5/wizishop-img-manager.js.map +1 -1
- package/lib/components/images-view/images-view.component.d.ts +1 -0
- package/lib/components/shared/pagination/page-selector/page-selector.component.d.ts +20 -0
- package/lib/components/shared/pagination/pagination.component.d.ts +1 -1
- package/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.d.ts +10 -0
- package/package.json +1 -1
- package/wizishop-img-manager-0.2.78.tgz +0 -0
- package/wizishop-img-manager.d.ts +17 -15
- package/wizishop-img-manager.metadata.json +1 -1
- package/wz-img-manager.scss +2558 -2487
- package/wizishop-img-manager-0.2.74.tgz +0 -0
|
@@ -213,7 +213,7 @@ var ImgManagerService = /** @class */ (function () {
|
|
|
213
213
|
return this.http.get(this.imgManagerRoute + "/images", this.getOptionsHeaders(params));
|
|
214
214
|
};
|
|
215
215
|
ImgManagerService.prototype.getShopTotalImgList = function (params) {
|
|
216
|
-
return this.http.get(this.imgManagerRoute + "/total/
|
|
216
|
+
return this.http.get(this.imgManagerRoute + "/total/image", this.getOptionsHeaders(params));
|
|
217
217
|
};
|
|
218
218
|
ImgManagerService.prototype.getShopImg = function (idFile) {
|
|
219
219
|
return this.http.get(this.imgManagerRoute + "/images/" + idFile, this.getOptionsHeaders());
|
|
@@ -1781,6 +1781,10 @@ var ImgEditorComponent = /** @class */ (function () {
|
|
|
1781
1781
|
return;
|
|
1782
1782
|
}
|
|
1783
1783
|
this.isLoading = true;
|
|
1784
|
+
if (!this.isImgModified && !this.isNameModified) {
|
|
1785
|
+
this.isLoading = false;
|
|
1786
|
+
this.onEditClosed();
|
|
1787
|
+
}
|
|
1784
1788
|
var obsReplaceImg = this.imgManagerService.replaceImg(this.currentCroppedImage, this.imgToEdit.id_file);
|
|
1785
1789
|
var obsChangeImgName = this.imgManagerService.changeImgName(this.imgToEdit.display_name, this.imgToEdit.id_file);
|
|
1786
1790
|
if (this.isImgModified && this.isNameModified) {
|
|
@@ -1856,7 +1860,7 @@ var ImgEditorComponent = /** @class */ (function () {
|
|
|
1856
1860
|
ImgEditorComponent = __decorate([
|
|
1857
1861
|
Component({
|
|
1858
1862
|
selector: 'img-editor',
|
|
1859
|
-
template: "<div class=\"img-editor\" [@easeInOut]=\"'in'\">\n\n <ng-scrollbar\n #scrollable\n [visibility]=\"'native'\"\n class=\"img-editor__scroll\"\n [ngClass]=\"{\n 'img-editor__scroll--full': stateDisplayed === 'full',\n 'img-editor__scroll--smallDisplay': stateDisplayed === 'small',\n 'img-editor__scroll--window': stateDisplayed === 'window'\n }\"\n >\n <div class=\"columns\">\n <!-- Left section -->\n <div class=\"column is-one-third img-editor__infoSection\">\n\n <info-section\n [imgToEdit]=\"imgToEdit\"\n [(isNameModified)]=\"isNameModified\"\n >\n </info-section>\n\n <!-- Button Action Section -->\n\n <div class=\"img-editor__infoSection__actions\">\n <div>\n <button\n class=\"button img-editor__infoSection__actions__cancel\"\n (click)=\"onCancel()\"\n [disabled]=\"isLoading\"\n >\n {{ 'ImgManager.ImgLib.cancel' | translate }}\n </button>\n <div\n class=\"button danger button img-editor__infoSection__actions__save\"\n [ngClass]=\"{'img-editor__infoSection__actions__save--disable': isLoading}\"\n (click)=\"onSave()\"\n >\n {{ 'ImgManager.ImgEditor.saveBtn' | translate }}\n <span btnLoadingAnim *ngIf=\"isLoading\" class=\"btnLoadingAnnimation\"></span>\n </div>\n\n </div>\n </div>\n </div>\n\n\n <!-- Right section -->\n <div class=\"column img-editor__container\">\n <cropper\n [imgToEdit]=\"imgToEdit\"\n [(isImgModified)]=\"isImgModified\"\n (currentCroppedImageChange)=\"onImgCropped($event)\"\n (editClosed)=\"onEditClosed($event)\">\n </cropper>\n </div>\n </div>\n </ng-scrollbar>\n</div>\n",
|
|
1863
|
+
template: "<div class=\"img-editor\" [@easeInOut]=\"'in'\">\n\n <ng-scrollbar\n #scrollable\n [visibility]=\"'native'\"\n class=\"img-editor__scroll\"\n [ngClass]=\"{\n 'img-editor__scroll--full': stateDisplayed === 'full',\n 'img-editor__scroll--smallDisplay': stateDisplayed === 'small',\n 'img-editor__scroll--window': stateDisplayed === 'window'\n }\"\n >\n <div class=\"columns\">\n <!-- Left section -->\n <div class=\"column is-one-third img-editor__infoSection\">\n\n <info-section\n [imgToEdit]=\"imgToEdit\"\n [(isNameModified)]=\"isNameModified\"\n >\n </info-section>\n\n <!-- Button Action Section -->\n\n <div class=\"img-editor__infoSection__actions\">\n <div>\n <button\n class=\"button img-editor__infoSection__actions__cancel\"\n (click)=\"onCancel()\"\n [disabled]=\"isLoading || (!isImgModified && !isNameModified)\"\n >\n {{ 'ImgManager.ImgLib.cancel' | translate }}\n </button>\n <div\n class=\"button danger button img-editor__infoSection__actions__save\"\n [ngClass]=\"{'img-editor__infoSection__actions__save--disable': isLoading}\"\n (click)=\"onSave()\"\n >\n {{ 'ImgManager.ImgEditor.saveBtn' | translate }}\n <span btnLoadingAnim *ngIf=\"isLoading\" class=\"btnLoadingAnnimation\"></span>\n </div>\n\n </div>\n </div>\n </div>\n\n\n <!-- Right section -->\n <div class=\"column img-editor__container\">\n <cropper\n [imgToEdit]=\"imgToEdit\"\n [(isImgModified)]=\"isImgModified\"\n (currentCroppedImageChange)=\"onImgCropped($event)\"\n (editClosed)=\"onEditClosed($event)\">\n </cropper>\n </div>\n </div>\n </ng-scrollbar>\n</div>\n",
|
|
1860
1864
|
animations: [
|
|
1861
1865
|
easeInOut
|
|
1862
1866
|
]
|
|
@@ -2980,8 +2984,8 @@ var ImagesViewComponent = /** @class */ (function () {
|
|
|
2980
2984
|
var _this = this;
|
|
2981
2985
|
this.isLoading = true;
|
|
2982
2986
|
this.displayPexelsResults = false;
|
|
2983
|
-
this.isTotalRetieved = false;
|
|
2984
2987
|
this.setParams();
|
|
2988
|
+
this.refreshTotalImgList();
|
|
2985
2989
|
this.imgManager.getShopImgList(this.params).pipe(take(1)).subscribe(function (data) {
|
|
2986
2990
|
_this.initVariables(true);
|
|
2987
2991
|
var nbImgDisplayed = data.data.length;
|
|
@@ -2999,7 +3003,6 @@ var ImagesViewComponent = /** @class */ (function () {
|
|
|
2999
3003
|
if (data.totalRecords === 0) {
|
|
3000
3004
|
_this.displayPexelsLib();
|
|
3001
3005
|
}
|
|
3002
|
-
_this.refreshTotalImgList();
|
|
3003
3006
|
}, function (error) {
|
|
3004
3007
|
_this.alertService.openAlert(_this.errorGetAllImg);
|
|
3005
3008
|
_this.initVariables(false);
|
|
@@ -3007,12 +3010,19 @@ var ImagesViewComponent = /** @class */ (function () {
|
|
|
3007
3010
|
};
|
|
3008
3011
|
ImagesViewComponent.prototype.refreshTotalImgList = function () {
|
|
3009
3012
|
var _this = this;
|
|
3013
|
+
var searchValue = this.tableFilters.searchValue;
|
|
3014
|
+
if (this.isTotalRetieved && searchValue === this.previousSearchValue) {
|
|
3015
|
+
// Keep current total result
|
|
3016
|
+
return;
|
|
3017
|
+
}
|
|
3018
|
+
this.isTotalRetieved = false;
|
|
3010
3019
|
this.imgManager.getShopTotalImgList(this.params).pipe(take(1)).subscribe(function (data) {
|
|
3020
|
+
_this.previousSearchValue = searchValue;
|
|
3011
3021
|
_this.isTotalRetieved = true;
|
|
3012
3022
|
_this.length = data.totalRecords;
|
|
3013
3023
|
_this.tableFilters.totalItems = data.totalRecords;
|
|
3014
3024
|
}, function (error) {
|
|
3015
|
-
|
|
3025
|
+
//this.alertService.openAlert(this.errorGetTotalImg);
|
|
3016
3026
|
_this.initVariables(false);
|
|
3017
3027
|
});
|
|
3018
3028
|
};
|
|
@@ -3484,8 +3494,8 @@ var PaginationComponent = /** @class */ (function () {
|
|
|
3484
3494
|
this.pagination.currentPage++;
|
|
3485
3495
|
this.pageChange.emit(this.pagination);
|
|
3486
3496
|
};
|
|
3487
|
-
PaginationComponent.prototype.onGotoPageChange = function (
|
|
3488
|
-
this.pagination.currentPage = parseInt(
|
|
3497
|
+
PaginationComponent.prototype.onGotoPageChange = function (pageNumber) {
|
|
3498
|
+
this.pagination.currentPage = parseInt(pageNumber);
|
|
3489
3499
|
this.pageChange.emit(this.pagination);
|
|
3490
3500
|
};
|
|
3491
3501
|
__decorate([
|
|
@@ -3500,7 +3510,7 @@ var PaginationComponent = /** @class */ (function () {
|
|
|
3500
3510
|
PaginationComponent = __decorate([
|
|
3501
3511
|
Component({
|
|
3502
3512
|
selector: 'wz-pagination',
|
|
3503
|
-
template: "<div class=\"wz-pagination\" *ngIf=\"pagination && pagination.itemsPerPage\">\n <div class=\"wz-pagination__wrapper\">\n <div class=\"wz-pagination__wrapper__page\">\n <p>{{ 'PaginationComponent.page' | translate }}</p>\n\n <
|
|
3513
|
+
template: "<div class=\"wz-pagination\" *ngIf=\"pagination && pagination.itemsPerPage\">\n <div class=\"wz-pagination__wrapper\">\n <div class=\"wz-pagination__wrapper__page\">\n <p>{{ 'PaginationComponent.page' | translate }}</p>\n\n <wz-page-selector [pagination]=\"pagination\" [totalItems]=\"pagination.totalItems\" (pageChange)=\"onGotoPageChange($event)\"></wz-page-selector>\n </div>\n\n <div class=\"wz-pagination__wrapper__elements\">\n <p>{{ pagination.currentPage | customPagniationText: pagination.totalItems:pagination.itemsPerPage }}</p>\n </div>\n\n <div class=\"wz-pagination__wrapper__arrows\">\n <div\n (click)=\"decrementPage()\"\n class=\"wz-pagination__wrapper__arrows__arrow wz-pagination__wrapper__arrows__arrow--left\"\n [ngClass]=\"{ 'wz-pagination__wrapper__arrows__arrow--disabled': pagination.currentPage === 1 }\"\n >\n <span class=\"wz-pagination__wrapper__arrows__arrow__icon\"></span>\n </div>\n <div\n (click)=\"incrementPage()\"\n class=\"wz-pagination__wrapper__arrows__arrow wz-pagination__wrapper__arrows__arrow--right\"\n [ngClass]=\"{\n 'wz-pagination__wrapper__arrows__arrow--disabled':\n pagination.currentPage | IsLastPage: pagination.totalItems:pagination.itemsPerPage\n }\"\n >\n <span class=\"wz-pagination__wrapper__arrows__arrow__icon\"></span>\n </div>\n </div>\n </div>\n</div>\n"
|
|
3504
3514
|
}),
|
|
3505
3515
|
__metadata("design:paramtypes", [])
|
|
3506
3516
|
], PaginationComponent);
|
|
@@ -4219,6 +4229,118 @@ var NumberToArray = /** @class */ (function () {
|
|
|
4219
4229
|
return NumberToArray;
|
|
4220
4230
|
}());
|
|
4221
4231
|
|
|
4232
|
+
var PageSelectorComponent = /** @class */ (function () {
|
|
4233
|
+
function PageSelectorComponent() {
|
|
4234
|
+
this.openAbsoluteSelect = false;
|
|
4235
|
+
this.largeNumberOfPage = false;
|
|
4236
|
+
this.numberOfPage = 0;
|
|
4237
|
+
this.pageChange = new EventEmitter();
|
|
4238
|
+
}
|
|
4239
|
+
Object.defineProperty(PageSelectorComponent.prototype, "pagination", {
|
|
4240
|
+
get: function () {
|
|
4241
|
+
return this._pagination;
|
|
4242
|
+
},
|
|
4243
|
+
set: function (pagination) {
|
|
4244
|
+
this._pagination = pagination;
|
|
4245
|
+
},
|
|
4246
|
+
enumerable: true,
|
|
4247
|
+
configurable: true
|
|
4248
|
+
});
|
|
4249
|
+
Object.defineProperty(PageSelectorComponent.prototype, "totalItems", {
|
|
4250
|
+
get: function () {
|
|
4251
|
+
return this._totalItems;
|
|
4252
|
+
},
|
|
4253
|
+
set: function (totalItems) {
|
|
4254
|
+
this.numberOfPage = Math.ceil(totalItems / this.pagination.itemsPerPage);
|
|
4255
|
+
this.largeNumberOfPage = this.numberOfPage > 30;
|
|
4256
|
+
},
|
|
4257
|
+
enumerable: true,
|
|
4258
|
+
configurable: true
|
|
4259
|
+
});
|
|
4260
|
+
PageSelectorComponent.prototype.onGotoPageChange = function (event, directValue) {
|
|
4261
|
+
if (directValue) {
|
|
4262
|
+
this.pageChange.emit(event);
|
|
4263
|
+
this.openAbsoluteSelect = false;
|
|
4264
|
+
}
|
|
4265
|
+
else {
|
|
4266
|
+
this.pageChange.emit(parseInt(event.target.value));
|
|
4267
|
+
}
|
|
4268
|
+
};
|
|
4269
|
+
__decorate([
|
|
4270
|
+
Input(),
|
|
4271
|
+
__metadata("design:type", Object),
|
|
4272
|
+
__metadata("design:paramtypes", [Object])
|
|
4273
|
+
], PageSelectorComponent.prototype, "pagination", null);
|
|
4274
|
+
__decorate([
|
|
4275
|
+
Input(),
|
|
4276
|
+
__metadata("design:type", Number),
|
|
4277
|
+
__metadata("design:paramtypes", [Number])
|
|
4278
|
+
], PageSelectorComponent.prototype, "totalItems", null);
|
|
4279
|
+
__decorate([
|
|
4280
|
+
Output(),
|
|
4281
|
+
__metadata("design:type", EventEmitter)
|
|
4282
|
+
], PageSelectorComponent.prototype, "pageChange", void 0);
|
|
4283
|
+
PageSelectorComponent = __decorate([
|
|
4284
|
+
Component({
|
|
4285
|
+
selector: 'wz-page-selector',
|
|
4286
|
+
template: "<div class=\"wz-selector\">\n\n <div class=\"wz-selector__default\" [ngStyle]=\"{'width': 40 + (10*pagination.currentPage.toString().length) + 'px'}\">\n <div class=\"wz-selector__default__base\" *ngIf=\"largeNumberOfPage;\" (click)=\"openAbsoluteSelect = !openAbsoluteSelect\">\n <input name=\"page-input\" [value]=\"pagination.currentPage\" (change)=\"onGotoPageChange($event, false);openAbsoluteSelect = false;\" [ngStyle]=\"{'width': 40 + (10*pagination.currentPage.toString().length) + 'px'}\" />\n <i class=\"fas fa-sort-down\"></i>\n </div>\n <div class=\"wz-selector__default__absolute\" *ngIf=\"openAbsoluteSelect\">\n <div class=\"wz-selector__default__absolute__wrapper\" *ngFor=\"let pageIndex of (pagination.totalItems | LargeNumberOfPage: pagination.itemsPerPage : pagination.currentPage).slice().reverse() as result\">\n <div class=\"wz-selector__default__absolute__wrapper__item\" [ngClass]=\"{'selected': pageIndex.value === pagination.currentPage}\" (click)=\"onGotoPageChange(pageIndex.value, true)\">\n <span>{{ pageIndex.display }}</span>\n </div>\n </div>\n </div>\n </div>\n\n <ng-container *ngIf=\"!largeNumberOfPage\">\n <select name=\"page\" (change)=\"onGotoPageChange($event, false)\" [ngStyle]=\"{'width': 40 + (10*pagination.currentPage.toString().length) + 'px'}\">\n <ng-container *ngFor=\"let pageIndex of pagination.totalItems | ArrayTotalPages: pagination.itemsPerPage\">\n <option [selected]=\"pageIndex === pagination.currentPage\" [value]=\"pageIndex\">\n {{ pageIndex }}\n </option>\n </ng-container>\n </select>\n </ng-container>\n</div>\n"
|
|
4287
|
+
}),
|
|
4288
|
+
__metadata("design:paramtypes", [])
|
|
4289
|
+
], PageSelectorComponent);
|
|
4290
|
+
return PageSelectorComponent;
|
|
4291
|
+
}());
|
|
4292
|
+
|
|
4293
|
+
var LargeNumberOfPagePipe = /** @class */ (function () {
|
|
4294
|
+
function LargeNumberOfPagePipe() {
|
|
4295
|
+
}
|
|
4296
|
+
/**
|
|
4297
|
+
* Return an incremental array
|
|
4298
|
+
* Display 30 pages, from -15 to +15 of the current page
|
|
4299
|
+
* @param totalItems
|
|
4300
|
+
* @param itemsPerPage
|
|
4301
|
+
*/
|
|
4302
|
+
LargeNumberOfPagePipe.prototype.transform = function (totalItems, itemsPerPage, currentPage) {
|
|
4303
|
+
if (!(totalItems >= 0 && itemsPerPage >= 0)) {
|
|
4304
|
+
throw new Error('totalItems or itemsPerPage missing in ArrayTotalPages pipe.');
|
|
4305
|
+
}
|
|
4306
|
+
var arrayLength = 32;
|
|
4307
|
+
var startAtPage = currentPage <= 15 ? 0 : currentPage - 15;
|
|
4308
|
+
var totalPage = Math.ceil(totalItems / itemsPerPage);
|
|
4309
|
+
var arrayWithPageNumber = Array.apply(null, { length: arrayLength })
|
|
4310
|
+
.map(Number.call, Number)
|
|
4311
|
+
.map(function (x) {
|
|
4312
|
+
var pageIndex = {
|
|
4313
|
+
display: startAtPage + x + 1,
|
|
4314
|
+
value: startAtPage + x + 1
|
|
4315
|
+
};
|
|
4316
|
+
if (x === arrayLength - 2) {
|
|
4317
|
+
pageIndex.display = '...';
|
|
4318
|
+
}
|
|
4319
|
+
if (x === arrayLength - 1) {
|
|
4320
|
+
pageIndex.display = totalPage;
|
|
4321
|
+
pageIndex.value = totalPage;
|
|
4322
|
+
}
|
|
4323
|
+
return pageIndex;
|
|
4324
|
+
});
|
|
4325
|
+
if (startAtPage) {
|
|
4326
|
+
arrayWithPageNumber.unshift({
|
|
4327
|
+
display: 1,
|
|
4328
|
+
value: 1
|
|
4329
|
+
}, {
|
|
4330
|
+
display: "...",
|
|
4331
|
+
value: 2
|
|
4332
|
+
});
|
|
4333
|
+
}
|
|
4334
|
+
return arrayWithPageNumber;
|
|
4335
|
+
};
|
|
4336
|
+
LargeNumberOfPagePipe = __decorate([
|
|
4337
|
+
Pipe({
|
|
4338
|
+
name: 'LargeNumberOfPage'
|
|
4339
|
+
})
|
|
4340
|
+
], LargeNumberOfPagePipe);
|
|
4341
|
+
return LargeNumberOfPagePipe;
|
|
4342
|
+
}());
|
|
4343
|
+
|
|
4222
4344
|
;
|
|
4223
4345
|
var components = [
|
|
4224
4346
|
WzImgManagerComponent,
|
|
@@ -4241,7 +4363,8 @@ var components = [
|
|
|
4241
4363
|
InputSearchComponent,
|
|
4242
4364
|
PaginationComponent,
|
|
4243
4365
|
CheckboxComponent,
|
|
4244
|
-
AlertComponent
|
|
4366
|
+
AlertComponent,
|
|
4367
|
+
PageSelectorComponent,
|
|
4245
4368
|
];
|
|
4246
4369
|
var directives = [
|
|
4247
4370
|
DragDropDirective,
|
|
@@ -4260,7 +4383,8 @@ var pipes = [
|
|
|
4260
4383
|
PagniationIsLastPage,
|
|
4261
4384
|
PagniationText,
|
|
4262
4385
|
ImageSrcPipe,
|
|
4263
|
-
NumberToArray
|
|
4386
|
+
NumberToArray,
|
|
4387
|
+
LargeNumberOfPagePipe
|
|
4264
4388
|
];
|
|
4265
4389
|
var WzImgManagerModule = /** @class */ (function () {
|
|
4266
4390
|
function WzImgManagerModule() {
|
|
@@ -4325,5 +4449,5 @@ var ImgCDNConfigDTO = /** @class */ (function () {
|
|
|
4325
4449
|
* Generated bundle index. Do not edit.
|
|
4326
4450
|
*/
|
|
4327
4451
|
|
|
4328
|
-
export { CanvaButtonApi, CanvaService, ImgApiDto, ImgCDNConfigDTO, ImgManagerConfigDto, ImgManagerService, ImgSelectionService, RenamePictureService, WzImgManagerComponent, WzImgManagerModule, ImgManagerConfigService as ɵa, ImgCDNService as ɵb, TableComponent as ɵba, FiltersTableService as ɵbb, InputSearchComponent as ɵbc, PaginationComponent as ɵbd, CheckboxComponent as ɵbe, AlertComponent as ɵbf,
|
|
4452
|
+
export { CanvaButtonApi, CanvaService, ImgApiDto, ImgCDNConfigDTO, ImgManagerConfigDto, ImgManagerService, ImgSelectionService, RenamePictureService, WzImgManagerComponent, WzImgManagerModule, ImgManagerConfigService as ɵa, ImgCDNService as ɵb, TableComponent as ɵba, FiltersTableService as ɵbb, InputSearchComponent as ɵbc, PaginationComponent as ɵbd, CheckboxComponent as ɵbe, AlertComponent as ɵbf, PageSelectorComponent as ɵbg, DragDropDirective as ɵbh, LoadingDirective as ɵbi, AutoHideDirective as ɵbj, CopyClipboardDirective as ɵbk, TableColumn as ɵbl, CheckBoxRow as ɵbm, TableColumnHeader as ɵbn, TableRow as ɵbo, AbstractDebounceDirective as ɵbp, DebounceKeyupDirective as ɵbq, PagniationArrayTotalPages as ɵbr, PagniationIsLastPage as ɵbs, PagniationText as ɵbt, ImageSrcPipe as ɵbu, NumberToArray as ɵbv, LargeNumberOfPagePipe as ɵbw, UserSettingsService as ɵc, ImgEventService as ɵd, DomService as ɵe, ImgTabsComponent as ɵf, AlertService as ɵg, ImgUploadComponent as ɵh, easeInOut as ɵi, PexelLibComponent as ɵj, listAnnimation as ɵk, PexelsService as ɵl, ImgCardComponent as ɵm, ImagesActionHandler as ɵn, UploadListComponent as ɵo, ImgEditorComponent as ɵp, EditorInfoSectionComponent as ɵq, CanvaBtnComponent as ɵr, ImgSelectionComponent as ɵs, LoaderComponent as ɵt, DropdownComponent as ɵu, CropperComponent as ɵv, insertRemove as ɵw, ImagesViewComponent as ɵx, MosaicViewComponent as ɵy, TableViewComponent as ɵz };
|
|
4329
4453
|
//# sourceMappingURL=wizishop-img-manager.js.map
|