@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
|
@@ -173,6 +173,14 @@ var ImgManagerService = /** @class */ (function () {
|
|
|
173
173
|
displayBtn: true,
|
|
174
174
|
pageficheProduct: true
|
|
175
175
|
};
|
|
176
|
+
this.angularFicheProductConfig = {
|
|
177
|
+
stateDisplayed: 'closed',
|
|
178
|
+
multipleImgMode: true,
|
|
179
|
+
showImgManagerModule: true,
|
|
180
|
+
showSelection: true,
|
|
181
|
+
displayBtn: false,
|
|
182
|
+
pageficheProduct: true
|
|
183
|
+
};
|
|
176
184
|
this.wiziblockConfig = {
|
|
177
185
|
stateDisplayed: 'closed',
|
|
178
186
|
multipleImgMode: false,
|
|
@@ -262,6 +270,8 @@ var ImgManagerService = /** @class */ (function () {
|
|
|
262
270
|
return this.pageFicheProductConfig;
|
|
263
271
|
case "simple-with-button":
|
|
264
272
|
return this.simpleWithButtonOpenerConfig;
|
|
273
|
+
case 'angular-fiche-product':
|
|
274
|
+
return this.angularFicheProductConfig;
|
|
265
275
|
default:
|
|
266
276
|
return;
|
|
267
277
|
}
|