@esfaenza/extensions 13.3.6 → 14.2.0

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.
@@ -40,10 +40,10 @@ class ExtensionsModule {
40
40
  };
41
41
  }
42
42
  }
43
- ExtensionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ExtensionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
44
- ExtensionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ExtensionsModule });
45
- ExtensionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ExtensionsModule });
46
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ExtensionsModule, decorators: [{
43
+ ExtensionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ExtensionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
44
+ ExtensionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ExtensionsModule });
45
+ ExtensionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ExtensionsModule });
46
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ExtensionsModule, decorators: [{
47
47
  type: NgModule
48
48
  }] });
49
49
 
@@ -158,12 +158,12 @@ class MessageService {
158
158
  * @param {string} text Testo da mostrare
159
159
  * @param {"toastr" | "swal" | null} secondaryNotificationType Qualora sia una notifica secondaria, ne indica il tipo
160
160
  */
161
- simpleSuccess(text, secondaryNotificationType = null) {
161
+ simpleSuccess(text, secondaryNotificationType = null, secondaryNotificationTimeout = null) {
162
162
  let tos = this.toastrOrSwal(secondaryNotificationType);
163
163
  if (tos == "swal")
164
164
  this.successSwal.fire("", text);
165
165
  else
166
- this.toastr.success(text, null, { positionClass: tos == "toastr" ? "toast-top-right" : "toast-top-center", timeOut: tos == "toastr" ? 0 : 5000, extendedTimeOut: tos == "toastr" ? 0 : 1000 });
166
+ this.toastr.success(text, null, { positionClass: tos == "toastr" ? "toast-top-right" : "toast-top-center", timeOut: secondaryNotificationTimeout || (tos == "toastr" ? 0 : 5000), extendedTimeOut: tos == "toastr" ? 0 : 1000 });
167
167
  }
168
168
  /**
169
169
  * Presentazione di un semplice messaggio di informazione
@@ -174,12 +174,12 @@ class MessageService {
174
174
  * @param {string} text Testo da mostrare
175
175
  * @param {"toastr" | "swal" | null} secondaryNotificationType Qualora sia una notifica secondaria, ne indica il tipo
176
176
  */
177
- simpleInfo(text, secondaryNotificationType = null) {
177
+ simpleInfo(text, secondaryNotificationType = null, secondaryNotificationTimeout = null) {
178
178
  let tos = this.toastrOrSwal(secondaryNotificationType);
179
179
  if (tos == "swal")
180
180
  this.infoSwal.fire("", text);
181
181
  else
182
- this.toastr.info(text, null, { positionClass: tos == "toastr" ? "toast-top-right" : "toast-top-center", timeOut: tos == "toastr" ? 0 : 5000, extendedTimeOut: tos == "toastr" ? 0 : 1000 });
182
+ this.toastr.info(text, null, { positionClass: tos == "toastr" ? "toast-top-right" : "toast-top-center", timeOut: secondaryNotificationTimeout || (tos == "toastr" ? 0 : 5000), extendedTimeOut: tos == "toastr" ? 0 : 1000 });
183
183
  }
184
184
  /**
185
185
  * Presentazione di un semplice messaggio di errore
@@ -190,12 +190,12 @@ class MessageService {
190
190
  * @param {string} text Testo da mostrare
191
191
  * @param {"toastr" | "swal" | null} secondaryNotificationType Qualora sia una notifica secondaria, ne indica il tipo
192
192
  */
193
- simpleError(text, secondaryNotificationType = null) {
193
+ simpleError(text, secondaryNotificationType = null, secondaryNotificationTimeout = null) {
194
194
  let tos = this.toastrOrSwal(secondaryNotificationType);
195
195
  if (tos == "swal")
196
196
  this.errorSwal.fire("", text);
197
197
  else
198
- this.toastr.error(text, null, { positionClass: tos == "toastr" ? "toast-top-right" : "toast-top-center", timeOut: tos == "toastr" ? 0 : 5000, extendedTimeOut: tos == "toastr" ? 0 : 1000 });
198
+ this.toastr.error(text, null, { positionClass: tos == "toastr" ? "toast-top-right" : "toast-top-center", timeOut: secondaryNotificationTimeout || (tos == "toastr" ? 0 : 5000), extendedTimeOut: tos == "toastr" ? 0 : 1000 });
199
199
  }
200
200
  /**
201
201
  * Presentazione di un semplice messaggio di avviso
@@ -206,12 +206,12 @@ class MessageService {
206
206
  * @param {string} text Testo da mostrare
207
207
  * @param {"toastr" | "swal" | null} secondaryNotificationType Qualora sia una notifica secondaria, ne indica il tipo
208
208
  */
209
- simpleWarning(text, secondaryNotificationType = null) {
209
+ simpleWarning(text, secondaryNotificationType = null, secondaryNotificationTimeout = null) {
210
210
  let tos = this.toastrOrSwal(secondaryNotificationType);
211
211
  if (tos == "swal")
212
212
  this.warningSwal.fire("", text);
213
213
  else
214
- this.toastr.warning(text, null, { positionClass: tos == "toastr" ? "toast-top-right" : "toast-top-center", timeOut: tos == "toastr" ? 0 : 5000, extendedTimeOut: tos == "toastr" ? 0 : 1000 });
214
+ this.toastr.warning(text, null, { positionClass: tos == "toastr" ? "toast-top-right" : "toast-top-center", timeOut: secondaryNotificationTimeout || (tos == "toastr" ? 0 : 5000), extendedTimeOut: tos == "toastr" ? 0 : 1000 });
215
215
  }
216
216
  /**
217
217
  * Ripulisce tutti i messaggi presenti in un dato momento sullo schermo
@@ -357,9 +357,9 @@ class MessageService {
357
357
  }
358
358
  }
359
359
  }
360
- MessageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MessageService, deps: [{ token: i1.ToastrService }, { token: EXT_FANCY_ALERTS, optional: true }, { token: EXT_LOCALE, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
361
- MessageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MessageService });
362
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MessageService, decorators: [{
360
+ MessageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: MessageService, deps: [{ token: i1.ToastrService }, { token: EXT_FANCY_ALERTS, optional: true }, { token: EXT_LOCALE, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
361
+ MessageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: MessageService });
362
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: MessageService, decorators: [{
363
363
  type: Injectable
364
364
  }], ctorParameters: function () {
365
365
  return [{ type: i1.ToastrService }, { type: undefined, decorators: [{
@@ -528,9 +528,9 @@ class ClipboardService {
528
528
  document.body.removeChild(textArea);
529
529
  }
530
530
  }
531
- ClipboardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClipboardService, deps: [{ token: MessageService }, { token: EXT_LOCALE, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
532
- ClipboardService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClipboardService });
533
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClipboardService, decorators: [{
531
+ ClipboardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ClipboardService, deps: [{ token: MessageService }, { token: EXT_LOCALE, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
532
+ ClipboardService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ClipboardService });
533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ClipboardService, decorators: [{
534
534
  type: Injectable
535
535
  }], ctorParameters: function () {
536
536
  return [{ type: MessageService }, { type: undefined, decorators: [{
@@ -603,8 +603,13 @@ class DateService {
603
603
  if (mydt == null)
604
604
  return "FE: Not a Date";
605
605
  let isZeroTime = mydt.startOf(timepart).valueOf() === mydt.valueOf();
606
- if (!isZeroTime)
606
+ if (!isZeroTime) {
607
+ if (timepart == "day" && mydt.subtract(1, "hour").hour() == mydt.hour()) {
608
+ // Se l'ora precedente è lo stesso orario dell'ora attuale l'istante finale dev'essere mandato avanti di 1
609
+ mydt = mydt.add(1, "hour");
610
+ }
607
611
  return printSeconds ? mydt.format(this.cfg.fulldateDisplay) : mydt.format(this.cfg.fulldateDisplayNoSS);
612
+ }
608
613
  let tmpValue = mydt.subtract(1, timepart);
609
614
  let value = "";
610
615
  // Istante finale delle ore: 05/10/1992 --> 04/10/1992 24:00(:00)
@@ -712,7 +717,7 @@ class DateService {
712
717
  tryThis = toCall(date, this.cfg.smallDate);
713
718
  else if (length == this.cfg.fulldateNoSS.length)
714
719
  tryThis = toCall(date, this.cfg.fulldateNoSS);
715
- if (tryThis && tryThis.isValid())
720
+ if (tryThis && tryThis.isValid && tryThis.isValid())
716
721
  return tryThis;
717
722
  // Se niente funziona, null.
718
723
  // Ricondurre l'Input ad una data non è possibile.
@@ -754,9 +759,9 @@ class DateService {
754
759
  return date.format(small ? this.cfg.smallDate : seconds ? this.cfg.fulldateDisplay : this.cfg.fulldateDisplayNoSS);
755
760
  }
756
761
  }
757
- DateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateService, deps: [{ token: EXT_LOCALE, optional: true }, { token: EXT_ALLOW_UTC, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
758
- DateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateService });
759
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateService, decorators: [{
762
+ DateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DateService, deps: [{ token: EXT_LOCALE, optional: true }, { token: EXT_ALLOW_UTC, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
763
+ DateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DateService });
764
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DateService, decorators: [{
760
765
  type: Injectable
761
766
  }], ctorParameters: function () {
762
767
  return [{ type: undefined, decorators: [{
@@ -1035,20 +1040,30 @@ class ExportService {
1035
1040
  parseAndGetHeaders(obj) {
1036
1041
  var headers = [];
1037
1042
  // Miracle incoming
1038
- for (var prop in obj) {
1043
+ let propsDictionary = Object.getOwnPropertyNames(Object.getPrototypeOf(obj));
1044
+ for (var propId in propsDictionary) {
1045
+ if (!propsDictionary.hasOwnProperty(propId))
1046
+ continue;
1047
+ let prop = propsDictionary[propId];
1048
+ let propBase = "";
1039
1049
  let toCall;
1040
- if (typeof obj[prop + listCsvHdrPrefix] !== "undefined")
1050
+ if (prop.endsWith(listCsvHdrPrefix)) {
1051
+ propBase = prop.replace(listCsvHdrPrefix, '');
1041
1052
  toCall = this.parseList.bind(this);
1042
- else if (typeof obj[prop + dictionaryCsvHdrPrefix] !== "undefined")
1053
+ }
1054
+ else if (prop.endsWith(dictionaryCsvHdrPrefix)) {
1043
1055
  toCall = this.parseDictionary.bind(this);
1044
- else if (typeof obj[prop + csvVisPrefix] !== "undefined") {
1045
- if (typeof obj[prop + csvValueNavigator] !== "undefined")
1056
+ propBase = prop.replace(dictionaryCsvHdrPrefix, '');
1057
+ }
1058
+ else if (prop.endsWith(csvVisPrefix)) {
1059
+ propBase = prop.replace(csvVisPrefix, '');
1060
+ if (typeof obj[propBase + csvValueNavigator] !== "undefined")
1046
1061
  toCall = this.parseObject.bind(this);
1047
1062
  else
1048
1063
  toCall = this.parseProperty.bind(this);
1049
1064
  }
1050
1065
  if (toCall)
1051
- toCall(obj, prop, headers);
1066
+ toCall(obj, propBase, headers);
1052
1067
  }
1053
1068
  return headers;
1054
1069
  }
@@ -1089,7 +1104,7 @@ class ExportService {
1089
1104
  // Se ho un formato data trasformo in dayjs, formatto ed esporto
1090
1105
  // Per la trasformazione in dayjs provo prima a passargli la stringa di netto, sperando la riconosca
1091
1106
  // Se non funziona provo a definirgli la formattazione standard del metering per quel linguaggio
1092
- let val = this.dates.getFormatted(obj[prop], format.length <= 10, false);
1107
+ let val = this.dates.getFormatted(obj[prop], format.length <= 10, format.length > 16);
1093
1108
  Object.defineProperty(obj, prop + "_fmt", { value: val !== null && val !== void 0 ? val : "", writable: false, enumerable: true });
1094
1109
  headers.push({ label: lbl ? lbl : prop + "_fmt", key: prop + "_fmt", order: order, type: "date" });
1095
1110
  }
@@ -1132,7 +1147,7 @@ class ExportService {
1132
1147
  type = "number";
1133
1148
  }
1134
1149
  else if (format) {
1135
- value = this.dates.getFormatted(value, format.length <= 10, false);
1150
+ value = this.dates.getFormatted(value, format.length <= 10, format.length > 16);
1136
1151
  type = "date";
1137
1152
  }
1138
1153
  Object.defineProperty(obj, prop, { value: value, writable: false, enumerable: true });
@@ -1186,7 +1201,7 @@ class ExportService {
1186
1201
  type = "number";
1187
1202
  }
1188
1203
  else if (valueformat) {
1189
- value = this.dates.getFormatted(obj[prop], valueformat.length <= 10, false);
1204
+ value = this.dates.getFormatted(obj[prop], valueformat.length <= 10, valueformat.length > 16);
1190
1205
  type = "date";
1191
1206
  }
1192
1207
  Object.defineProperty(obj, prop + idx, { value: value, writable: false });
@@ -1254,9 +1269,9 @@ class ExportService {
1254
1269
  return Deserialize(items, type);
1255
1270
  }
1256
1271
  }
1257
- ExportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ExportService, deps: [{ token: DateService }], target: i0.ɵɵFactoryTarget.Injectable });
1258
- ExportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ExportService });
1259
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ExportService, decorators: [{
1272
+ ExportService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ExportService, deps: [{ token: DateService }], target: i0.ɵɵFactoryTarget.Injectable });
1273
+ ExportService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ExportService });
1274
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ExportService, decorators: [{
1260
1275
  type: Injectable
1261
1276
  }], ctorParameters: function () { return [{ type: DateService }]; } });
1262
1277
 
@@ -1561,9 +1576,9 @@ class HashingService {
1561
1576
  return (a + b) & 0xFFFFFFFF;
1562
1577
  }
1563
1578
  }
1564
- HashingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: HashingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1565
- HashingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: HashingService });
1566
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: HashingService, decorators: [{
1579
+ HashingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: HashingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1580
+ HashingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: HashingService });
1581
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: HashingService, decorators: [{
1567
1582
  type: Injectable
1568
1583
  }] });
1569
1584
 
@@ -1769,10 +1784,52 @@ class UtilityService {
1769
1784
  return "string";
1770
1785
  }
1771
1786
  }
1787
+ /**
1788
+ * Effettua la clonazione profonda di un oggetto in maniera molto più performante che JSON.parse(JSON.stringify()).
1789
+ *
1790
+ * Usare solo per oggetti puri e quantomeno semplici per evitare complicazioni derivanti dalle semplificazioni che questo metodo assume
1791
+ *
1792
+ * @param {any} source Oggetto da clonare
1793
+ *
1794
+ * @return {any} Clone dell'oggetto passato
1795
+ */
1796
+ deepClone(source) {
1797
+ // Valori semplici
1798
+ if (source == null || typeof source !== 'object')
1799
+ return source;
1800
+ // Pseudo Struct
1801
+ switch (toString.call(source)) {
1802
+ case '[object Boolean]':
1803
+ case '[object Number]':
1804
+ case '[object String]':
1805
+ case '[object Date]':
1806
+ return new source.constructor(source.valueOf());
1807
+ default: break;
1808
+ }
1809
+ // Oggetti Complessi
1810
+ return this.recursiveStep(source, Array.isArray(source) || source instanceof Array ? [] : Object.create(Object.getPrototypeOf(source)));
1811
+ }
1812
+ /**
1813
+ * @ignore
1814
+ * Step ricorsivo per la clonatura degli oggetti. Vedere **deepClone**
1815
+ */
1816
+ recursiveStep(source, destination) {
1817
+ if (Array.isArray(source) || source instanceof Array) {
1818
+ for (var i = 0, ii = source.length; i < ii; i++)
1819
+ destination.push(this.deepClone(source[i]));
1820
+ }
1821
+ else if (source && typeof source.hasOwnProperty === 'function') {
1822
+ for (let key in source) {
1823
+ if (source.hasOwnProperty(key))
1824
+ destination[key] = this.deepClone(source[key]);
1825
+ }
1826
+ }
1827
+ return destination;
1828
+ }
1772
1829
  }
1773
- UtilityService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: UtilityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1774
- UtilityService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: UtilityService });
1775
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: UtilityService, decorators: [{
1830
+ UtilityService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: UtilityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1831
+ UtilityService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: UtilityService });
1832
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: UtilityService, decorators: [{
1776
1833
  type: Injectable
1777
1834
  }] });
1778
1835
 
@@ -1831,9 +1888,9 @@ class InterComService {
1831
1888
  this.outbounds[key] = new Subject();
1832
1889
  }
1833
1890
  }
1834
- InterComService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: InterComService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1835
- InterComService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: InterComService });
1836
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: InterComService, decorators: [{
1891
+ InterComService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: InterComService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1892
+ InterComService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: InterComService });
1893
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: InterComService, decorators: [{
1837
1894
  type: Injectable
1838
1895
  }] });
1839
1896
 
@@ -1870,10 +1927,10 @@ class FullExtensionsModule {
1870
1927
  };
1871
1928
  }
1872
1929
  }
1873
- FullExtensionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FullExtensionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1874
- FullExtensionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FullExtensionsModule });
1875
- FullExtensionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FullExtensionsModule });
1876
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FullExtensionsModule, decorators: [{
1930
+ FullExtensionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FullExtensionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1931
+ FullExtensionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: FullExtensionsModule });
1932
+ FullExtensionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FullExtensionsModule });
1933
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FullExtensionsModule, decorators: [{
1877
1934
  type: NgModule
1878
1935
  }] });
1879
1936