@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.
@@ -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 (ctor) => {
356
- return class extends ctor {
355
+ return function integrateLoc(constructor) {
356
+ return class extends constructor {
357
357
  constructor() {
358
358
  super(...arguments);
359
359
  this.__loc__ = loc;