@wizishop/img-manager 15.0.4 → 15.0.7
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/images-view/images-view.component.mjs +25 -22
- package/esm2020/lib/components/images-view/mosaic-view/mosaic-view.component.mjs +3 -3
- package/esm2020/lib/services/img-manager.service.mjs +11 -2
- package/fesm2015/wizishop-img-manager.mjs +38 -27
- package/fesm2015/wizishop-img-manager.mjs.map +1 -1
- package/fesm2020/wizishop-img-manager.mjs +38 -27
- package/fesm2020/wizishop-img-manager.mjs.map +1 -1
- package/lib/components/images-view/images-view.component.d.ts +2 -2
- package/lib/services/img-manager.service.d.ts +4 -2
- package/package.json +1 -1
- package/wizishop-img-manager-15.0.7.tgz +0 -0
- package/wizishop-img-manager-15.0.4.tgz +0 -0
|
@@ -48,7 +48,7 @@ export declare class ImagesViewComponent implements OnInit, AfterViewInit {
|
|
|
48
48
|
nbImgToDelSelected: number;
|
|
49
49
|
disable: boolean;
|
|
50
50
|
isLoading: boolean;
|
|
51
|
-
|
|
51
|
+
isTotalRetrieved: boolean;
|
|
52
52
|
delListImgLoader: boolean;
|
|
53
53
|
initComponent: boolean;
|
|
54
54
|
failLoaded: boolean;
|
|
@@ -106,7 +106,7 @@ export declare class ImagesViewComponent implements OnInit, AfterViewInit {
|
|
|
106
106
|
* Set a img list in order to fill properly all the line of images displayed in mosaic.
|
|
107
107
|
* Otherwise, the space-between css will do a bad display
|
|
108
108
|
*/
|
|
109
|
-
private
|
|
109
|
+
private calculateNbImgFake;
|
|
110
110
|
private getImg;
|
|
111
111
|
private imgAlreadyExist;
|
|
112
112
|
private setNbImgToDelSelected;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, HttpParams } from '@angular/common/http';
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
|
-
import { ImgPictureDTO, ParamsImgManagerDTO } from '../dto/img-manager.dto';
|
|
3
|
+
import { ImgPictureDTO, ImgPicturesDTO, ParamsImgManagerDTO } from '../dto/img-manager.dto';
|
|
4
4
|
import { ImgManagerDisplayConfig } from '../dto/export-dtos.api';
|
|
5
5
|
import { ImgManagerConfig } from '../dto/config/img-manager';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -17,7 +17,9 @@ export declare class ImgManagerService {
|
|
|
17
17
|
constructor(http: HttpClient);
|
|
18
18
|
setApiConfig(img_manager_route: string, shop_token: string): void;
|
|
19
19
|
private getOptionsHeaders;
|
|
20
|
-
|
|
20
|
+
shopImgList: ImgPicturesDTO;
|
|
21
|
+
previousParams: ParamsImgManagerDTO;
|
|
22
|
+
getShopImgList(params?: ParamsImgManagerDTO): Observable<ImgPicturesDTO>;
|
|
21
23
|
getShopTotalImgList(params?: ParamsImgManagerDTO): Observable<any>;
|
|
22
24
|
getShopImg(idFile: string): Observable<any>;
|
|
23
25
|
getParams(params: ParamsImgManagerDTO): void;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|