@esfaenza/extensions 15.2.7 → 15.2.8
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/extensions.exports.service.mjs +3 -3
- package/fesm2015/esfaenza-extensions.mjs +2 -2
- package/fesm2015/esfaenza-extensions.mjs.map +1 -1
- package/fesm2020/esfaenza-extensions.mjs +2 -2
- package/fesm2020/esfaenza-extensions.mjs.map +1 -1
- package/lib/services/extensions.exports.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -352,8 +352,8 @@ const locProperty = "__loc__";
|
|
|
352
352
|
* @param {Type<LocalizationService>} loc Tipo ereditato dal LocalizationService che può essere creato a runtime sotto contesto della DI di Angular
|
|
353
353
|
*/
|
|
354
354
|
function ExportLocalization(loc) {
|
|
355
|
-
return (
|
|
356
|
-
return class extends
|
|
355
|
+
return function integrateLoc(constructor) {
|
|
356
|
+
return class extends constructor {
|
|
357
357
|
constructor() {
|
|
358
358
|
super(...arguments);
|
|
359
359
|
this.__loc__ = loc;
|