@wizishop/img-manager 0.2.83 → 0.2.85
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/bundles/wizishop-img-manager.umd.js +10 -0
- package/bundles/wizishop-img-manager.umd.js.map +1 -1
- package/bundles/wizishop-img-manager.umd.min.js +2 -2
- package/bundles/wizishop-img-manager.umd.min.js.map +1 -1
- package/esm2015/lib/services/img-manager.service.js +11 -1
- package/esm5/lib/services/img-manager.service.js +11 -1
- package/fesm2015/wizishop-img-manager.js +10 -0
- package/fesm2015/wizishop-img-manager.js.map +1 -1
- package/fesm5/wizishop-img-manager.js +10 -0
- package/fesm5/wizishop-img-manager.js.map +1 -1
- package/lib/services/img-manager.service.d.ts +2 -1
- package/package.json +1 -1
- package/wizishop-img-manager-0.2.85.tgz +0 -0
- package/wizishop-img-manager.metadata.json +1 -1
- package/wz-img-manager.scss +813 -798
- package/wizishop-img-manager-0.2.83.tgz +0 -0
|
@@ -375,6 +375,14 @@
|
|
|
375
375
|
displayBtn: true,
|
|
376
376
|
pageficheProduct: true
|
|
377
377
|
};
|
|
378
|
+
this.angularFicheProductConfig = {
|
|
379
|
+
stateDisplayed: 'closed',
|
|
380
|
+
multipleImgMode: true,
|
|
381
|
+
showImgManagerModule: true,
|
|
382
|
+
showSelection: true,
|
|
383
|
+
displayBtn: false,
|
|
384
|
+
pageficheProduct: true
|
|
385
|
+
};
|
|
378
386
|
this.wiziblockConfig = {
|
|
379
387
|
stateDisplayed: 'closed',
|
|
380
388
|
multipleImgMode: false,
|
|
@@ -464,6 +472,8 @@
|
|
|
464
472
|
return this.pageFicheProductConfig;
|
|
465
473
|
case "simple-with-button":
|
|
466
474
|
return this.simpleWithButtonOpenerConfig;
|
|
475
|
+
case 'angular-fiche-product':
|
|
476
|
+
return this.angularFicheProductConfig;
|
|
467
477
|
default:
|
|
468
478
|
return;
|
|
469
479
|
}
|