@wizishop/img-manager 15.2.31 → 15.2.33
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/services/img-selection.service.mjs +4 -1
- package/esm2020/lib/wz-img-manager.module.mjs +3 -1
- package/fesm2015/wizishop-img-manager.mjs +4 -1
- package/fesm2015/wizishop-img-manager.mjs.map +1 -1
- package/fesm2020/wizishop-img-manager.mjs +4 -1
- package/fesm2020/wizishop-img-manager.mjs.map +1 -1
- package/package.json +1 -1
- package/wizishop-img-manager-15.2.33.tgz +0 -0
- package/wizishop-img-manager-15.2.31.tgz +0 -0
|
@@ -31,6 +31,9 @@ class ImgSelectionService {
|
|
|
31
31
|
this.imgSelection$ = new BehaviorSubject([]);
|
|
32
32
|
this.imgSelectedListLoading$ = new BehaviorSubject(false);
|
|
33
33
|
console.log('ImgSelectionService');
|
|
34
|
+
this.imgSelection$.subscribe(imgSelectedList => {
|
|
35
|
+
console.log('imgSelectedList', imgSelectedList);
|
|
36
|
+
}); // TODO remove
|
|
34
37
|
}
|
|
35
38
|
getImgSelection() {
|
|
36
39
|
return this.imgSelection$.getValue();
|
|
@@ -4006,6 +4009,7 @@ class WzImgManagerModule {
|
|
|
4006
4009
|
CanvaService,
|
|
4007
4010
|
DomService,
|
|
4008
4011
|
ImgEventService,
|
|
4012
|
+
ImgSelectionService,
|
|
4009
4013
|
// {
|
|
4010
4014
|
// provide: ImgSelectionService,
|
|
4011
4015
|
// useFactory: () => // provide the same
|
|
@@ -4132,4 +4136,3 @@ class ImgManagerConfigDto {
|
|
|
4132
4136
|
|
|
4133
4137
|
export { ApiService, CanvaButtonApi, CanvaService, ImageNotFoundService, ImgApiDto, ImgManagerConfigDto, ImgManagerService, ImgSelectionService, RenamePictureService, WzImgManagerComponent, WzImgManagerModule };
|
|
4134
4138
|
//# sourceMappingURL=wizishop-img-manager.mjs.map
|
|
4135
|
-
//# sourceMappingURL=wizishop-img-manager.mjs.map
|