monkey-front-core 21.0.41 → 21.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.
@@ -126,10 +126,10 @@ class MonkeyEcxCookieStorageService {
126
126
  console.error('MonkeyEcxCookieStorageService -> setCookie', err);
127
127
  }
128
128
  }
129
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCookieStorageService, deps: [{ token: i1.CookieService }], target: i0.ɵɵFactoryTarget.Injectable }); }
130
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCookieStorageService, providedIn: 'root' }); }
129
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCookieStorageService, deps: [{ token: i1.CookieService }], target: i0.ɵɵFactoryTarget.Injectable }); }
130
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCookieStorageService, providedIn: 'root' }); }
131
131
  }
132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCookieStorageService, decorators: [{
132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCookieStorageService, decorators: [{
133
133
  type: Injectable,
134
134
  args: [{
135
135
  providedIn: 'root'
@@ -535,10 +535,10 @@ class MonkeyEcxTokenStorageService {
535
535
  }));
536
536
  }
537
537
  }
538
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTokenStorageService, deps: [{ token: i1$1.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
539
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTokenStorageService, providedIn: 'root' }); }
538
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTokenStorageService, deps: [{ token: i1$1.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
539
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTokenStorageService, providedIn: 'root' }); }
540
540
  }
541
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTokenStorageService, decorators: [{
541
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTokenStorageService, decorators: [{
542
542
  type: Injectable,
543
543
  args: [{
544
544
  providedIn: 'root'
@@ -583,6 +583,109 @@ var CountryMasks;
583
583
  * MIT Licence
584
584
  ************************* */
585
585
 
586
+ /* eslint-disable no-plusplus */
587
+ class CNPJValidator {
588
+ static { this.baseLength = 12; }
589
+ static { this.baseRegex = /^([A-Z\d]){12}$/; }
590
+ static { this.fullRegex = /^([A-Z\d]){12}(\d){2}$/; }
591
+ static { this.maskCharactersRegex = /[./-]/g; }
592
+ static { this.invalidCharactersRegex = /[^A-Z\d./-]/i; }
593
+ static { this.zeroCharCode = '0'.charCodeAt(0); }
594
+ static { this.checkDigitWeights = [6, 5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2]; }
595
+ static { this.zeroCnpj = '00000000000000'; }
596
+ static removeMask(document) {
597
+ return document.replace(this.maskCharactersRegex, '');
598
+ }
599
+ static calculateCheckDigits(document) {
600
+ if (!this.invalidCharactersRegex.test(document)) {
601
+ const unmaskedCnpj = this.removeMask(document);
602
+ if (this.baseRegex.test(unmaskedCnpj) &&
603
+ unmaskedCnpj !== this.zeroCnpj.substring(0, this.baseLength)) {
604
+ let sumDV1 = 0;
605
+ let sumDV2 = 0;
606
+ for (let i = 0; i < this.baseLength; i++) {
607
+ const digitAscii = unmaskedCnpj.charCodeAt(i) - this.zeroCharCode;
608
+ sumDV1 += digitAscii * this.checkDigitWeights[i + 1];
609
+ sumDV2 += digitAscii * this.checkDigitWeights[i];
610
+ }
611
+ const dv1 = sumDV1 % 11 < 2 ? 0 : 11 - (sumDV1 % 11);
612
+ sumDV2 += dv1 * this.checkDigitWeights[this.baseLength];
613
+ const dv2 = sumDV2 % 11 < 2 ? 0 : 11 - (sumDV2 % 11);
614
+ return `${dv1}${dv2}`;
615
+ }
616
+ }
617
+ throw new Error('');
618
+ }
619
+ static isValid(document) {
620
+ try {
621
+ if (!this.invalidCharactersRegex.test(document)) {
622
+ const unmasked = this.removeMask(document);
623
+ if (this.fullRegex.test(unmasked) && unmasked !== this.zeroCnpj) {
624
+ const providedCheckDigits = unmasked.substring(this.baseLength);
625
+ const calculatedCheckDigits = this.calculateCheckDigits(unmasked.substring(0, this.baseLength));
626
+ return providedCheckDigits === calculatedCheckDigits;
627
+ }
628
+ }
629
+ }
630
+ catch (e) {
631
+ // not to do
632
+ }
633
+ return false;
634
+ }
635
+ }
636
+
637
+ /* eslint-disable no-plusplus */
638
+ class CPFValidator {
639
+ static { this.baseLength = 9; }
640
+ static { this.baseRegex = /^([A-Z\d]){9}$/; }
641
+ static { this.maskCharactersRegex = /[./-]/g; }
642
+ static { this.invalidCharactersRegex = /[^A-Z\d./-]/i; }
643
+ static { this.fullRegex = /^([\d]){9}(\d){2}$/; }
644
+ static { this.zeroCpf = '00000000000'; }
645
+ static removeMask(document) {
646
+ return document.replace(this.maskCharactersRegex, '');
647
+ }
648
+ static calculateCheckDigits(document) {
649
+ if (!this.invalidCharactersRegex.test(document)) {
650
+ const unmasked = this.removeMask(document);
651
+ if (this.baseRegex.test(unmasked) &&
652
+ unmasked !== this.zeroCpf.substring(0, this.baseLength)) {
653
+ const weightsDV1 = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0];
654
+ const weightsDV2 = [11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0];
655
+ let sumDV1 = 0;
656
+ let sumDV2 = 0;
657
+ for (let i = 0; i < document.length; i++) {
658
+ sumDV1 += Number(document[i]) * weightsDV1[i];
659
+ }
660
+ const dv1 = sumDV1 % 11 <= 1 ? 0 : 11 - (sumDV1 % 11);
661
+ document = `${document}${dv1}`;
662
+ for (let i = 0; i < document.length; i++) {
663
+ sumDV2 += Number(document[i]) * weightsDV2[i];
664
+ }
665
+ const dv2 = sumDV2 % 11 <= 1 ? 0 : 11 - (sumDV2 % 11);
666
+ return `${dv1}${dv2}`;
667
+ }
668
+ }
669
+ throw new Error('');
670
+ }
671
+ static isValid(document) {
672
+ try {
673
+ if (!this.invalidCharactersRegex.test(document)) {
674
+ const unmasked = this.removeMask(document);
675
+ if (this.fullRegex.test(unmasked) && unmasked !== this.zeroCpf) {
676
+ const providedCheckDigits = unmasked.substring(this.baseLength);
677
+ const calculatedCheckDigits = this.calculateCheckDigits(unmasked.substring(0, this.baseLength));
678
+ return providedCheckDigits === calculatedCheckDigits;
679
+ }
680
+ }
681
+ }
682
+ catch (e) {
683
+ // not to do
684
+ }
685
+ return false;
686
+ }
687
+ }
688
+
586
689
  /* eslint-disable block-scoped-var */
587
690
  /* eslint-disable no-restricted-syntax */
588
691
  /** ************************
@@ -683,38 +786,15 @@ class MonkeyEcxUtils {
683
786
  return split?.splice(1, split.length)?.join(' ');
684
787
  }
685
788
  static isCPFCNPJValid(document) {
686
- document = document.replace(/[^\d]/g, '');
789
+ document = document.replace(/[./-]/g, '');
687
790
  const handled = document.replace(new RegExp(document.charAt(0), 'g'), '');
688
791
  if (!handled)
689
792
  return false;
690
793
  if (document.length === 11) {
691
- let base = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0];
692
- for (var i = 0, n = 0; i < 9; n += document[i] * base[i++])
693
- ;
694
- if (document[9] != ((n %= 11) <= 1 ? 0 : 11 - n)) {
695
- return false;
696
- }
697
- base = [11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0];
698
- for (var i = 0, n = 0; i <= 9; n += document[i] * base[i++])
699
- ;
700
- if (document[10] != ((n %= 11) <= 1 ? 0 : 11 - n)) {
701
- return false;
702
- }
703
- return true;
794
+ return CPFValidator.isValid(document);
704
795
  }
705
796
  if (document.length === 14 || /0{14}/.test(document)) {
706
- const base = [6, 5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2];
707
- for (var i = 0, n = 0; i < 12; n += document[i] * base[++i])
708
- ;
709
- if (document[12] != ((n %= 11) < 2 ? 0 : 11 - n)) {
710
- return false;
711
- }
712
- for (var i = 0, n = 0; i <= 12; n += document[i] * base[i++])
713
- ;
714
- if (document[13] != ((n %= 11) < 2 ? 0 : 11 - n)) {
715
- return false;
716
- }
717
- return true;
797
+ return CNPJValidator.isValid(document);
718
798
  }
719
799
  return false;
720
800
  }
@@ -1240,10 +1320,10 @@ class MonkeyEcxConfigsService {
1240
1320
  }
1241
1321
  return null;
1242
1322
  }
1243
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxConfigsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1244
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxConfigsService, providedIn: 'root' }); }
1323
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxConfigsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1324
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxConfigsService, providedIn: 'root' }); }
1245
1325
  }
1246
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxConfigsService, decorators: [{
1326
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxConfigsService, decorators: [{
1247
1327
  type: Injectable,
1248
1328
  args: [{
1249
1329
  providedIn: 'root'
@@ -1401,10 +1481,10 @@ class MonkeyEcxAlertsService {
1401
1481
  apply() {
1402
1482
  this.handleValidation();
1403
1483
  }
1404
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAlertsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1405
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAlertsService, providedIn: 'root' }); }
1484
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAlertsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1485
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAlertsService, providedIn: 'root' }); }
1406
1486
  }
1407
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAlertsService, decorators: [{
1487
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAlertsService, decorators: [{
1408
1488
  type: Injectable,
1409
1489
  args: [{
1410
1490
  providedIn: 'root'
@@ -1546,10 +1626,10 @@ Using this console can allow attackers to pass through you and retrieve your inf
1546
1626
  return data[locale]?.[key] ?? null;
1547
1627
  }));
1548
1628
  }
1549
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyDictionaryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1550
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyDictionaryService, providedIn: 'root' }); }
1629
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyDictionaryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1630
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyDictionaryService, providedIn: 'root' }); }
1551
1631
  }
1552
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyDictionaryService, decorators: [{
1632
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyDictionaryService, decorators: [{
1553
1633
  type: Injectable,
1554
1634
  args: [{
1555
1635
  providedIn: 'root'
@@ -1594,10 +1674,10 @@ class MonkeyEcxSecurityConsoleService {
1594
1674
  this.handleValidation();
1595
1675
  }, 300);
1596
1676
  }
1597
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxSecurityConsoleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1598
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxSecurityConsoleService, providedIn: 'root' }); }
1677
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxSecurityConsoleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1678
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxSecurityConsoleService, providedIn: 'root' }); }
1599
1679
  }
1600
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxSecurityConsoleService, decorators: [{
1680
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxSecurityConsoleService, decorators: [{
1601
1681
  type: Injectable,
1602
1682
  args: [{
1603
1683
  providedIn: 'root'
@@ -1703,10 +1783,10 @@ class MonkeyEcxDatadogService {
1703
1783
  apply() {
1704
1784
  this.handleValidation();
1705
1785
  }
1706
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDatadogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1707
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDatadogService, providedIn: 'root' }); }
1786
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDatadogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1787
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDatadogService, providedIn: 'root' }); }
1708
1788
  }
1709
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDatadogService, decorators: [{
1789
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDatadogService, decorators: [{
1710
1790
  type: Injectable,
1711
1791
  args: [{
1712
1792
  providedIn: 'root'
@@ -1852,10 +1932,10 @@ class MonkeyEcxErrorService {
1852
1932
  apply(e) {
1853
1933
  this.handleValidation(e);
1854
1934
  }
1855
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxErrorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1856
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxErrorService, providedIn: 'root' }); }
1935
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxErrorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1936
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxErrorService, providedIn: 'root' }); }
1857
1937
  }
1858
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxErrorService, decorators: [{
1938
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxErrorService, decorators: [{
1859
1939
  type: Injectable,
1860
1940
  args: [{
1861
1941
  providedIn: 'root'
@@ -1924,10 +2004,10 @@ class MonkeyEcxFeatureToggleService {
1924
2004
  return;
1925
2005
  await this.handleValidation(environment.launchDarklyClientSideID, whiteLabel);
1926
2006
  }
1927
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFeatureToggleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1928
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFeatureToggleService, providedIn: 'root' }); }
2007
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFeatureToggleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2008
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFeatureToggleService, providedIn: 'root' }); }
1929
2009
  }
1930
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFeatureToggleService, decorators: [{
2010
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFeatureToggleService, decorators: [{
1931
2011
  type: Injectable,
1932
2012
  args: [{
1933
2013
  providedIn: 'root'
@@ -1980,10 +2060,10 @@ class MonkeyEcxGTMService {
1980
2060
  apply() {
1981
2061
  this.handleValidation();
1982
2062
  }
1983
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxGTMService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1984
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxGTMService, providedIn: 'root' }); }
2063
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxGTMService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2064
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxGTMService, providedIn: 'root' }); }
1985
2065
  }
1986
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxGTMService, decorators: [{
2066
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxGTMService, decorators: [{
1987
2067
  type: Injectable,
1988
2068
  args: [{
1989
2069
  providedIn: 'root'
@@ -2048,10 +2128,10 @@ class MonkeyEcxNewVersionService {
2048
2128
  apply() {
2049
2129
  this.handleValidation();
2050
2130
  }
2051
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxNewVersionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2052
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxNewVersionService, providedIn: 'root' }); }
2131
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxNewVersionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2132
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxNewVersionService, providedIn: 'root' }); }
2053
2133
  }
2054
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxNewVersionService, decorators: [{
2134
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxNewVersionService, decorators: [{
2055
2135
  type: Injectable,
2056
2136
  args: [{
2057
2137
  providedIn: 'root'
@@ -2196,10 +2276,10 @@ class MonkeyEcxConnectionService {
2196
2276
  if (this._idleTimeoutHandle)
2197
2277
  clearTimeout(this._idleTimeoutHandle);
2198
2278
  }
2199
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxConnectionService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable }); }
2200
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxConnectionService, providedIn: 'root' }); }
2279
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxConnectionService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable }); }
2280
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxConnectionService, providedIn: 'root' }); }
2201
2281
  }
2202
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxConnectionService, decorators: [{
2282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxConnectionService, decorators: [{
2203
2283
  type: Injectable,
2204
2284
  args: [{ providedIn: 'root' }]
2205
2285
  }], ctorParameters: () => [{ type: i0.NgZone }] });
@@ -2312,10 +2392,10 @@ class MonkeyEcxRequestErrorService {
2312
2392
  }, timeout);
2313
2393
  this.handleNetworkBlock(error);
2314
2394
  }
2315
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxRequestErrorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2316
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxRequestErrorService, providedIn: 'root' }); }
2395
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxRequestErrorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2396
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxRequestErrorService, providedIn: 'root' }); }
2317
2397
  }
2318
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxRequestErrorService, decorators: [{
2398
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxRequestErrorService, decorators: [{
2319
2399
  type: Injectable,
2320
2400
  args: [{ providedIn: 'root' }]
2321
2401
  }] });
@@ -2421,10 +2501,10 @@ class MonkeyEcxRequestStateService {
2421
2501
  }
2422
2502
  return this.refreshSubject.pipe(take(1), switchMap(() => this.retryRequest(req, next)));
2423
2503
  }
2424
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxRequestStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2425
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxRequestStateService, providedIn: 'root' }); }
2504
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxRequestStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2505
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxRequestStateService, providedIn: 'root' }); }
2426
2506
  }
2427
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxRequestStateService, decorators: [{
2507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxRequestStateService, decorators: [{
2428
2508
  type: Injectable,
2429
2509
  args: [{ providedIn: 'root' }]
2430
2510
  }] });
@@ -2543,10 +2623,10 @@ class MonkeyEcxService {
2543
2623
  options = this.getOptions(options);
2544
2624
  return this._http.delete(url, options || {});
2545
2625
  }
2546
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2547
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxService, providedIn: 'root' }); }
2626
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2627
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxService, providedIn: 'root' }); }
2548
2628
  }
2549
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxService, decorators: [{
2629
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxService, decorators: [{
2550
2630
  type: Injectable,
2551
2631
  args: [{
2552
2632
  providedIn: 'root'
@@ -2686,10 +2766,10 @@ class MonkeyEcxLocaleService {
2686
2766
  async apply() {
2687
2767
  await this.handleValidation();
2688
2768
  }
2689
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxLocaleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2690
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxLocaleService, providedIn: 'root' }); }
2769
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxLocaleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2770
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxLocaleService, providedIn: 'root' }); }
2691
2771
  }
2692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxLocaleService, decorators: [{
2772
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxLocaleService, decorators: [{
2693
2773
  type: Injectable,
2694
2774
  args: [{
2695
2775
  providedIn: 'root'
@@ -2850,10 +2930,10 @@ class MonkeyEcxMaintenanceService {
2850
2930
  apply() {
2851
2931
  this.handleValidation();
2852
2932
  }
2853
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxMaintenanceService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2854
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxMaintenanceService, providedIn: 'root' }); }
2933
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxMaintenanceService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2934
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxMaintenanceService, providedIn: 'root' }); }
2855
2935
  }
2856
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxMaintenanceService, decorators: [{
2936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxMaintenanceService, decorators: [{
2857
2937
  type: Injectable,
2858
2938
  args: [{
2859
2939
  providedIn: 'root'
@@ -2923,10 +3003,10 @@ class MonkeyEcxStyleGuideService {
2923
3003
  this.applyFonts(config);
2924
3004
  this.applyTheme(config);
2925
3005
  }
2926
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxStyleGuideService, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable }); }
2927
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxStyleGuideService, providedIn: 'root' }); }
3006
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxStyleGuideService, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable }); }
3007
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxStyleGuideService, providedIn: 'root' }); }
2928
3008
  }
2929
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxStyleGuideService, decorators: [{
3009
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxStyleGuideService, decorators: [{
2930
3010
  type: Injectable,
2931
3011
  args: [{
2932
3012
  providedIn: 'root'
@@ -2963,10 +3043,10 @@ class MonkeyEcxUpdateService {
2963
3043
  apply() {
2964
3044
  this.handleValidation();
2965
3045
  }
2966
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxUpdateService, deps: [{ token: i1$2.SwUpdate }], target: i0.ɵɵFactoryTarget.Injectable }); }
2967
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxUpdateService, providedIn: 'root' }); }
3046
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxUpdateService, deps: [{ token: i1$2.SwUpdate }], target: i0.ɵɵFactoryTarget.Injectable }); }
3047
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxUpdateService, providedIn: 'root' }); }
2968
3048
  }
2969
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxUpdateService, decorators: [{
3049
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxUpdateService, decorators: [{
2970
3050
  type: Injectable,
2971
3051
  args: [{
2972
3052
  providedIn: 'root'
@@ -3063,10 +3143,10 @@ class MonkeyEcxInitService {
3063
3143
  this._errorService.apply(e);
3064
3144
  }
3065
3145
  }
3066
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxInitService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3067
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxInitService, providedIn: 'root' }); }
3146
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxInitService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3147
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxInitService, providedIn: 'root' }); }
3068
3148
  }
3069
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxInitService, decorators: [{
3149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxInitService, decorators: [{
3070
3150
  type: Injectable,
3071
3151
  args: [{ providedIn: 'root' }]
3072
3152
  }], ctorParameters: () => [] });
@@ -3111,10 +3191,10 @@ class LService {
3111
3191
  'decrypt'
3112
3192
  ]);
3113
3193
  }
3114
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: LService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3115
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: LService, providedIn: 'root' }); }
3194
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: LService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3195
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: LService, providedIn: 'root' }); }
3116
3196
  }
3117
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: LService, decorators: [{
3197
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: LService, decorators: [{
3118
3198
  type: Injectable,
3119
3199
  args: [{
3120
3200
  providedIn: 'root'
@@ -3198,8 +3278,8 @@ class MonkeyEcxScheduleService {
3198
3278
  });
3199
3279
  this._routerSubscription.unsubscribe();
3200
3280
  }
3201
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxScheduleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3202
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxScheduleService, providedIn: 'root' }); }
3281
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxScheduleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3282
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxScheduleService, providedIn: 'root' }); }
3203
3283
  }
3204
3284
  __decorate([
3205
3285
  MonkeyEcxCoreService({
@@ -3209,7 +3289,7 @@ __decorate([
3209
3289
  }
3210
3290
  })
3211
3291
  ], MonkeyEcxScheduleService.prototype, "startWithRequest", null);
3212
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxScheduleService, decorators: [{
3292
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxScheduleService, decorators: [{
3213
3293
  type: Injectable,
3214
3294
  args: [{ providedIn: 'root' }]
3215
3295
  }], propDecorators: { startWithRequest: [] } });
@@ -3242,10 +3322,10 @@ class MonkeyEcxLoggedHandleService {
3242
3322
  this.destroyToken();
3243
3323
  this.destroySchedule();
3244
3324
  }
3245
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxLoggedHandleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3246
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxLoggedHandleService, providedIn: 'root' }); }
3325
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxLoggedHandleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3326
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxLoggedHandleService, providedIn: 'root' }); }
3247
3327
  }
3248
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxLoggedHandleService, decorators: [{
3328
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxLoggedHandleService, decorators: [{
3249
3329
  type: Injectable,
3250
3330
  args: [{
3251
3331
  providedIn: 'root'
@@ -3524,8 +3604,8 @@ class MonkeyEcxAuthService {
3524
3604
  });
3525
3605
  localeService.apply();
3526
3606
  }
3527
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3528
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthService, providedIn: 'root' }); }
3607
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3608
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthService, providedIn: 'root' }); }
3529
3609
  }
3530
3610
  __decorate([
3531
3611
  MonkeyEcxCoreService({
@@ -3554,7 +3634,7 @@ __decorate([
3554
3634
  }
3555
3635
  })
3556
3636
  ], MonkeyEcxAuthService.prototype, "me", null);
3557
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthService, decorators: [{
3637
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthService, decorators: [{
3558
3638
  type: Injectable,
3559
3639
  args: [{ providedIn: 'root' }]
3560
3640
  }], propDecorators: { deleteToken: [], login: [], me: [] } });
@@ -3594,10 +3674,10 @@ class MonkeyEcxGlobalErrorHandler {
3594
3674
  // not to
3595
3675
  }
3596
3676
  }
3597
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxGlobalErrorHandler, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
3598
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxGlobalErrorHandler, providedIn: 'root' }); }
3677
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxGlobalErrorHandler, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
3678
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxGlobalErrorHandler, providedIn: 'root' }); }
3599
3679
  }
3600
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxGlobalErrorHandler, decorators: [{
3680
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxGlobalErrorHandler, decorators: [{
3601
3681
  type: Injectable,
3602
3682
  args: [{
3603
3683
  providedIn: 'root'
@@ -3656,10 +3736,10 @@ fill="#000000" stroke="none">
3656
3736
  </svg>
3657
3737
  `);
3658
3738
  }
3659
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxIconsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3660
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxIconsService, providedIn: 'root' }); }
3739
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxIconsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3740
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxIconsService, providedIn: 'root' }); }
3661
3741
  }
3662
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxIconsService, decorators: [{
3742
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxIconsService, decorators: [{
3663
3743
  type: Injectable,
3664
3744
  args: [{
3665
3745
  providedIn: 'root'
@@ -3992,10 +4072,10 @@ class MonkeyEcxFormValidationService {
3992
4072
  }
3993
4073
  });
3994
4074
  }
3995
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormValidationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3996
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormValidationService, providedIn: 'root' }); }
4075
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormValidationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4076
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormValidationService, providedIn: 'root' }); }
3997
4077
  }
3998
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormValidationService, decorators: [{
4078
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormValidationService, decorators: [{
3999
4079
  type: Injectable,
4000
4080
  args: [{ providedIn: 'root' }]
4001
4081
  }] });
@@ -4126,10 +4206,10 @@ class MonkeyEcxErrorMessageDirective {
4126
4206
  ngOnDestroy() {
4127
4207
  this.sub?.unsubscribe();
4128
4208
  }
4129
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxErrorMessageDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4130
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.6", type: MonkeyEcxErrorMessageDirective, isStandalone: true, selector: "[monkeyecxErrorMessage]", inputs: { errorMessage: ["monkeyecxErrorMessage", "errorMessage"] }, ngImport: i0 }); }
4209
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxErrorMessageDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4210
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.4", type: MonkeyEcxErrorMessageDirective, isStandalone: true, selector: "[monkeyecxErrorMessage]", inputs: { errorMessage: ["monkeyecxErrorMessage", "errorMessage"] }, ngImport: i0 }); }
4131
4211
  }
4132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxErrorMessageDirective, decorators: [{
4212
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxErrorMessageDirective, decorators: [{
4133
4213
  type: Directive,
4134
4214
  args: [{
4135
4215
  selector: '[monkeyecxErrorMessage]',
@@ -4179,10 +4259,10 @@ class MonkeyEcxFeatureByProgramDirective {
4179
4259
  ngOnInit() {
4180
4260
  this.init();
4181
4261
  }
4182
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFeatureByProgramDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4183
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.6", type: MonkeyEcxFeatureByProgramDirective, isStandalone: true, selector: "[monkeyecxFeatureByProgram]", inputs: { feature: "feature" }, ngImport: i0 }); }
4262
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFeatureByProgramDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4263
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.4", type: MonkeyEcxFeatureByProgramDirective, isStandalone: true, selector: "[monkeyecxFeatureByProgram]", inputs: { feature: "feature" }, ngImport: i0 }); }
4184
4264
  }
4185
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFeatureByProgramDirective, decorators: [{
4265
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFeatureByProgramDirective, decorators: [{
4186
4266
  type: Directive,
4187
4267
  args: [{
4188
4268
  selector: '[monkeyecxFeatureByProgram]'
@@ -4240,10 +4320,10 @@ class MonkeyEcxFeatureDirective {
4240
4320
  }
4241
4321
  });
4242
4322
  }
4243
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFeatureDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4244
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.6", type: MonkeyEcxFeatureDirective, isStandalone: true, selector: "[monkeyecxFeature]", inputs: { feature: ["featureName", "feature"] }, ngImport: i0 }); }
4323
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFeatureDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4324
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.4", type: MonkeyEcxFeatureDirective, isStandalone: true, selector: "[monkeyecxFeature]", inputs: { feature: ["featureName", "feature"] }, ngImport: i0 }); }
4245
4325
  }
4246
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFeatureDirective, decorators: [{
4326
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFeatureDirective, decorators: [{
4247
4327
  type: Directive,
4248
4328
  args: [{
4249
4329
  selector: '[monkeyecxFeature]'
@@ -4292,10 +4372,10 @@ class MonkeyEcxLoadingDirective {
4292
4372
  this._view = this.viewContainer.createEmbeddedView(this.templateRef);
4293
4373
  }
4294
4374
  }
4295
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxLoadingDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4296
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.6", type: MonkeyEcxLoadingDirective, isStandalone: true, selector: "[monkeyecxLoading]", inputs: { monkeyecxLoading: "monkeyecxLoading", monkeyecxLoadingSize: "monkeyecxLoadingSize" }, usesOnChanges: true, ngImport: i0 }); }
4375
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxLoadingDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4376
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.4", type: MonkeyEcxLoadingDirective, isStandalone: true, selector: "[monkeyecxLoading]", inputs: { monkeyecxLoading: "monkeyecxLoading", monkeyecxLoadingSize: "monkeyecxLoadingSize" }, usesOnChanges: true, ngImport: i0 }); }
4297
4377
  }
4298
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxLoadingDirective, decorators: [{
4378
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxLoadingDirective, decorators: [{
4299
4379
  type: Directive,
4300
4380
  args: [{
4301
4381
  selector: '[monkeyecxLoading]'
@@ -4364,10 +4444,10 @@ class MonkeyEcxSecurityDirective {
4364
4444
  this.changeDetectorRef.detectChanges();
4365
4445
  this.handleData();
4366
4446
  }
4367
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxSecurityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4368
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.6", type: MonkeyEcxSecurityDirective, isStandalone: true, selector: "[monkeyecxSecurity]", inputs: { roles: ["securityRoles", "roles"], byExclusion: ["securityByExclusion", "byExclusion"] }, ngImport: i0 }); }
4447
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxSecurityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4448
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.4", type: MonkeyEcxSecurityDirective, isStandalone: true, selector: "[monkeyecxSecurity]", inputs: { roles: ["securityRoles", "roles"], byExclusion: ["securityByExclusion", "byExclusion"] }, ngImport: i0 }); }
4369
4449
  }
4370
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxSecurityDirective, decorators: [{
4450
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxSecurityDirective, decorators: [{
4371
4451
  type: Directive,
4372
4452
  args: [{
4373
4453
  selector: '[monkeyecxSecurity]'
@@ -4735,10 +4815,10 @@ class MonkeyEcxAuthGuardCompany {
4735
4815
  this._authService.redirectLoginWelcomeBack();
4736
4816
  return false;
4737
4817
  }
4738
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardCompany, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4739
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardCompany, providedIn: 'root' }); }
4818
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardCompany, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4819
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardCompany, providedIn: 'root' }); }
4740
4820
  }
4741
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardCompany, decorators: [{
4821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardCompany, decorators: [{
4742
4822
  type: Injectable,
4743
4823
  args: [{ providedIn: 'root' }]
4744
4824
  }] });
@@ -4758,10 +4838,10 @@ class MonkeyEcxAuthGuardLogin {
4758
4838
  }
4759
4839
  return true;
4760
4840
  }
4761
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardLogin, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4762
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardLogin, providedIn: 'root' }); }
4841
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardLogin, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4842
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardLogin, providedIn: 'root' }); }
4763
4843
  }
4764
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardLogin, decorators: [{
4844
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardLogin, decorators: [{
4765
4845
  type: Injectable,
4766
4846
  args: [{ providedIn: 'root' }]
4767
4847
  }] });
@@ -4829,10 +4909,10 @@ class MonkeyEcxAuthGuardByRole {
4829
4909
  }
4830
4910
  return true;
4831
4911
  }
4832
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardByRole, deps: [{ token: MonkeyEcxTokenStorageService }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
4833
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardByRole, providedIn: 'root' }); }
4912
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardByRole, deps: [{ token: MonkeyEcxTokenStorageService }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
4913
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardByRole, providedIn: 'root' }); }
4834
4914
  }
4835
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuardByRole, decorators: [{
4915
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuardByRole, decorators: [{
4836
4916
  type: Injectable,
4837
4917
  args: [{
4838
4918
  providedIn: 'root'
@@ -4850,10 +4930,10 @@ class MonkeyEcxAuthGuard {
4850
4930
  this._authService.redirectLoginWelcomeBack();
4851
4931
  return false;
4852
4932
  }
4853
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4854
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuard, providedIn: 'root' }); }
4933
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4934
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuard, providedIn: 'root' }); }
4855
4935
  }
4856
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxAuthGuard, decorators: [{
4936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxAuthGuard, decorators: [{
4857
4937
  type: Injectable,
4858
4938
  args: [{
4859
4939
  providedIn: 'root'
@@ -4874,13 +4954,6 @@ const refreshShouldHappen = (response) => {
4874
4954
  if (!handledType && typeof error === 'object') {
4875
4955
  handledType = error?.error;
4876
4956
  }
4877
- console.log('=============');
4878
- console.log(type);
4879
- console.log(url);
4880
- console.log(url?.includes('uaa/oauth/token'));
4881
- console.log(/^\/uaa\/.+\/activate$/.test(url));
4882
- console.log(error);
4883
- console.log('=============');
4884
4957
  if (type === 'ERROR')
4885
4958
  return false;
4886
4959
  if ((url?.includes('uaa/oauth/token') || /\/uaa\/.+\/activate$/.test(url)) &&
@@ -4957,11 +5030,11 @@ class MonkeyEcxCoreModule {
4957
5030
  ]
4958
5031
  };
4959
5032
  }
4960
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
4961
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCoreModule, imports: [CommonModule] }); }
4962
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCoreModule, imports: [CommonModule] }); }
5033
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
5034
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCoreModule, imports: [CommonModule] }); }
5035
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCoreModule, imports: [CommonModule] }); }
4963
5036
  }
4964
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCoreModule, decorators: [{
5037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCoreModule, decorators: [{
4965
5038
  type: NgModule,
4966
5039
  args: [{
4967
5040
  imports: [CommonModule]
@@ -4984,10 +5057,10 @@ class MonkeyEcxBlobSecurePipe {
4984
5057
  return this._sanitizer.bypassSecurityTrustUrl(URL.createObjectURL(val));
4985
5058
  }));
4986
5059
  }
4987
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxBlobSecurePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4988
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxBlobSecurePipe, isStandalone: false, name: "monkeyecxBlobSecure" }); }
5060
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxBlobSecurePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5061
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxBlobSecurePipe, isStandalone: false, name: "monkeyecxBlobSecure" }); }
4989
5062
  }
4990
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxBlobSecurePipe, decorators: [{
5063
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxBlobSecurePipe, decorators: [{
4991
5064
  type: Pipe,
4992
5065
  args: [{
4993
5066
  name: 'monkeyecxBlobSecure',
@@ -5014,10 +5087,10 @@ class MonkeyEcxCurrencyCodePipe {
5014
5087
  }[currency];
5015
5088
  return `${value} (${type === 'symbol' ? symbol : currency})`;
5016
5089
  }
5017
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCurrencyCodePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5018
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCurrencyCodePipe, isStandalone: false, name: "monkeyecxCurrencyCode" }); }
5090
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCurrencyCodePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5091
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCurrencyCodePipe, isStandalone: false, name: "monkeyecxCurrencyCode" }); }
5019
5092
  }
5020
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxCurrencyCodePipe, decorators: [{
5093
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCurrencyCodePipe, decorators: [{
5021
5094
  type: Pipe,
5022
5095
  args: [{
5023
5096
  name: 'monkeyecxCurrencyCode',
@@ -5036,10 +5109,10 @@ class MonkeyEcxDisplayFirstNamePipe {
5036
5109
  return '';
5037
5110
  return MonkeyEcxUtils.cutFirstLastName(name);
5038
5111
  }
5039
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDisplayFirstNamePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5040
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDisplayFirstNamePipe, isStandalone: false, name: "monkeyecxDisplayFirstName" }); }
5112
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDisplayFirstNamePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5113
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDisplayFirstNamePipe, isStandalone: false, name: "monkeyecxDisplayFirstName" }); }
5041
5114
  }
5042
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDisplayFirstNamePipe, decorators: [{
5115
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDisplayFirstNamePipe, decorators: [{
5043
5116
  type: Pipe,
5044
5117
  args: [{
5045
5118
  name: 'monkeyecxDisplayFirstName',
@@ -5060,10 +5133,10 @@ class MonkeyEcxDisplayInitialsPipe {
5060
5133
  const second = MonkeyEcxUtils.cutFirstLastName(name, 'last');
5061
5134
  return `${first?.charAt(0)} ${second?.charAt(0)}`;
5062
5135
  }
5063
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5064
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, isStandalone: false, name: "monkeyecxDisplayInitials" }); }
5136
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5137
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, isStandalone: false, name: "monkeyecxDisplayInitials" }); }
5065
5138
  }
5066
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, decorators: [{
5139
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, decorators: [{
5067
5140
  type: Pipe,
5068
5141
  args: [{
5069
5142
  name: 'monkeyecxDisplayInitials',
@@ -5084,10 +5157,10 @@ class MonkeyEcxFormatAddressPipe {
5084
5157
  })
5085
5158
  .join(', ');
5086
5159
  }
5087
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatAddressPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5088
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatAddressPipe, isStandalone: false, name: "monkeyecxFormatAddress" }); }
5160
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatAddressPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5161
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatAddressPipe, isStandalone: false, name: "monkeyecxFormatAddress" }); }
5089
5162
  }
5090
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatAddressPipe, decorators: [{
5163
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatAddressPipe, decorators: [{
5091
5164
  type: Pipe,
5092
5165
  args: [{
5093
5166
  name: 'monkeyecxFormatAddress',
@@ -5126,10 +5199,10 @@ class MonkeyEcxFormatBeaufityJSONPipe {
5126
5199
  .replace(/>/g, '&gt;')
5127
5200
  .replace(jsonLine, replacer);
5128
5201
  }
5129
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5130
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, isStandalone: false, name: "monkeyecxFormatBeautifyJSON" }); }
5202
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5203
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, isStandalone: false, name: "monkeyecxFormatBeautifyJSON" }); }
5131
5204
  }
5132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, decorators: [{
5205
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, decorators: [{
5133
5206
  type: Pipe,
5134
5207
  args: [{
5135
5208
  name: 'monkeyecxFormatBeautifyJSON',
@@ -5165,10 +5238,10 @@ class MonkeyEcxFormatCurrencyPipe {
5165
5238
  }
5166
5239
  return value;
5167
5240
  }
5168
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatCurrencyPipe, deps: [{ token: i1$3.CurrencyPipe }], target: i0.ɵɵFactoryTarget.Pipe }); }
5169
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatCurrencyPipe, isStandalone: false, name: "monkeyecxFormatCurrency" }); }
5241
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatCurrencyPipe, deps: [{ token: i1$3.CurrencyPipe }], target: i0.ɵɵFactoryTarget.Pipe }); }
5242
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatCurrencyPipe, isStandalone: false, name: "monkeyecxFormatCurrency" }); }
5170
5243
  }
5171
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatCurrencyPipe, decorators: [{
5244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatCurrencyPipe, decorators: [{
5172
5245
  type: Pipe,
5173
5246
  args: [{
5174
5247
  name: 'monkeyecxFormatCurrency',
@@ -5192,10 +5265,10 @@ class MonkeyEcxFormatDatePipe {
5192
5265
  }
5193
5266
  return this.dt.transform(date, format, this._timezone.toString());
5194
5267
  }
5195
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDatePipe, deps: [{ token: i1$3.DatePipe }], target: i0.ɵɵFactoryTarget.Pipe }); }
5196
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDatePipe, isStandalone: false, name: "monkeyecxFormatDate" }); }
5268
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDatePipe, deps: [{ token: i1$3.DatePipe }], target: i0.ɵɵFactoryTarget.Pipe }); }
5269
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDatePipe, isStandalone: false, name: "monkeyecxFormatDate" }); }
5197
5270
  }
5198
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDatePipe, decorators: [{
5271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDatePipe, decorators: [{
5199
5272
  type: Pipe,
5200
5273
  args: [{
5201
5274
  name: 'monkeyecxFormatDate',
@@ -5218,10 +5291,10 @@ class MonkeyEcxFormatDocumentPipe {
5218
5291
  }
5219
5292
  return MonkeyEcxUtils.formatDocumentWithMask(document, withType, this._country);
5220
5293
  }
5221
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5222
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, isStandalone: false, name: "monkeyecxFormatDocument" }); }
5294
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5295
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, isStandalone: false, name: "monkeyecxFormatDocument" }); }
5223
5296
  }
5224
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, decorators: [{
5297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, decorators: [{
5225
5298
  type: Pipe,
5226
5299
  args: [{
5227
5300
  name: 'monkeyecxFormatDocument',
@@ -5240,10 +5313,10 @@ class MonkeyEcxFormatNumberPipe {
5240
5313
  return '';
5241
5314
  return formatNumber(Number(number), 'ptbr');
5242
5315
  }
5243
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatNumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5244
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatNumberPipe, isStandalone: false, name: "monkeyecxFormatNumber" }); }
5316
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatNumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5317
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatNumberPipe, isStandalone: false, name: "monkeyecxFormatNumber" }); }
5245
5318
  }
5246
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatNumberPipe, decorators: [{
5319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatNumberPipe, decorators: [{
5247
5320
  type: Pipe,
5248
5321
  args: [{
5249
5322
  name: 'monkeyecxFormatNumber',
@@ -5286,10 +5359,10 @@ class MonkeyEcxFormatPhonePipe {
5286
5359
  }
5287
5360
  return '';
5288
5361
  }
5289
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatPhonePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5290
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatPhonePipe, isStandalone: false, name: "monkeyecxFormatPhone" }); }
5362
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatPhonePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5363
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatPhonePipe, isStandalone: false, name: "monkeyecxFormatPhone" }); }
5291
5364
  }
5292
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatPhonePipe, decorators: [{
5365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatPhonePipe, decorators: [{
5293
5366
  type: Pipe,
5294
5367
  args: [{
5295
5368
  name: 'monkeyecxFormatPhone',
@@ -5309,10 +5382,10 @@ class MonkeyEcxFormatSizePipe {
5309
5382
  const sizeNum = Number(size);
5310
5383
  return MonkeyEcxUtils.formatFileSize(sizeNum);
5311
5384
  }
5312
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatSizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5313
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatSizePipe, isStandalone: false, name: "monkeyecxFormatSize" }); }
5385
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatSizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5386
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatSizePipe, isStandalone: false, name: "monkeyecxFormatSize" }); }
5314
5387
  }
5315
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatSizePipe, decorators: [{
5388
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatSizePipe, decorators: [{
5316
5389
  type: Pipe,
5317
5390
  args: [{
5318
5391
  name: 'monkeyecxFormatSize',
@@ -5335,10 +5408,10 @@ class MonkeyEcxFormatTaxPipe {
5335
5408
  maximumFractionDigits: decimalDigits
5336
5409
  })} %`;
5337
5410
  }
5338
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatTaxPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5339
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatTaxPipe, isStandalone: false, name: "monkeyecxFormatTax" }); }
5411
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatTaxPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5412
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatTaxPipe, isStandalone: false, name: "monkeyecxFormatTax" }); }
5340
5413
  }
5341
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatTaxPipe, decorators: [{
5414
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatTaxPipe, decorators: [{
5342
5415
  type: Pipe,
5343
5416
  args: [{
5344
5417
  name: 'monkeyecxFormatTax',
@@ -5360,10 +5433,10 @@ class MonkeyEcxFormatDocumentTypePipe {
5360
5433
  return '';
5361
5434
  return MonkeyEcxUtils.getDocumentType(document, this._country);
5362
5435
  }
5363
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5364
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, isStandalone: false, name: "monkeyecxFormatDocumentType" }); }
5436
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5437
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, isStandalone: false, name: "monkeyecxFormatDocumentType" }); }
5365
5438
  }
5366
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, decorators: [{
5439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, decorators: [{
5367
5440
  type: Pipe,
5368
5441
  args: [{
5369
5442
  name: 'monkeyecxFormatDocumentType',
@@ -5382,10 +5455,10 @@ class MonkeyEcxFormatValue {
5382
5455
  return '';
5383
5456
  return number;
5384
5457
  }
5385
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatValue, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5386
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatValue, isStandalone: false, name: "monkeyecxFormatValue" }); }
5458
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatValue, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5459
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatValue, isStandalone: false, name: "monkeyecxFormatValue" }); }
5387
5460
  }
5388
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatValue, decorators: [{
5461
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatValue, decorators: [{
5389
5462
  type: Pipe,
5390
5463
  args: [{
5391
5464
  name: 'monkeyecxFormatValue',
@@ -5404,10 +5477,10 @@ class MonkeyEcxFormatZipCodePipe {
5404
5477
  return '';
5405
5478
  return MonkeyEcxUtils.formatZipCode(zipCode);
5406
5479
  }
5407
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5408
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, isStandalone: false, name: "monkeyecxFormatZipCode" }); }
5480
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5481
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, isStandalone: false, name: "monkeyecxFormatZipCode" }); }
5409
5482
  }
5410
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, decorators: [{
5483
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, decorators: [{
5411
5484
  type: Pipe,
5412
5485
  args: [{
5413
5486
  name: 'monkeyecxFormatZipCode',
@@ -5431,10 +5504,10 @@ class MonkeyEcxTextTruncatePipe {
5431
5504
  const right = text.length - left + 1;
5432
5505
  return `${text.substr(0, left)} ${midChar} ${text.substring(right)}`;
5433
5506
  }
5434
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTextTruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5435
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTextTruncatePipe, isStandalone: false, name: "monkeyecxTextTruncate" }); }
5507
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTextTruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5508
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTextTruncatePipe, isStandalone: false, name: "monkeyecxTextTruncate" }); }
5436
5509
  }
5437
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTextTruncatePipe, decorators: [{
5510
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTextTruncatePipe, decorators: [{
5438
5511
  type: Pipe,
5439
5512
  args: [{
5440
5513
  name: 'monkeyecxTextTruncate',
@@ -5451,10 +5524,10 @@ class MonkeyEcxTruncateQtdPipe {
5451
5524
  transform(number, threshold) {
5452
5525
  return `${number > threshold ? `${threshold}+` : number}`;
5453
5526
  }
5454
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5455
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, isStandalone: false, name: "monkeyecxTruncateQtd" }); }
5527
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5528
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, isStandalone: false, name: "monkeyecxTruncateQtd" }); }
5456
5529
  }
5457
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, decorators: [{
5530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, decorators: [{
5458
5531
  type: Pipe,
5459
5532
  args: [{
5460
5533
  name: 'monkeyecxTruncateQtd',
@@ -5468,8 +5541,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
5468
5541
  * MIT Licence
5469
5542
  ************************* */
5470
5543
  class MonkeyEcxPipesModule {
5471
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxPipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
5472
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxPipesModule, declarations: [MonkeyEcxBlobSecurePipe,
5544
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxPipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
5545
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxPipesModule, declarations: [MonkeyEcxBlobSecurePipe,
5473
5546
  MonkeyEcxDisplayFirstNamePipe,
5474
5547
  MonkeyEcxDisplayInitialsPipe,
5475
5548
  MonkeyEcxFormatAddressPipe,
@@ -5504,9 +5577,9 @@ class MonkeyEcxPipesModule {
5504
5577
  MonkeyEcxTextTruncatePipe,
5505
5578
  MonkeyEcxTruncateQtdPipe,
5506
5579
  MonkeyEcxFormatDatePipe] }); }
5507
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxPipesModule, providers: [CurrencyPipe, DatePipe] }); }
5580
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxPipesModule, providers: [CurrencyPipe, DatePipe] }); }
5508
5581
  }
5509
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxPipesModule, decorators: [{
5582
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxPipesModule, decorators: [{
5510
5583
  type: NgModule,
5511
5584
  args: [{
5512
5585
  declarations: [
@@ -5579,8 +5652,8 @@ class MonkeyEcxBaseResolver {
5579
5652
  this.router = inject(Router);
5580
5653
  this.paramsSubject = new BehaviorSubject({});
5581
5654
  this.params$ = this.paramsSubject.asObservable();
5582
- this.control = signal(initialControl, ...(ngDevMode ? [{ debugName: "control" }] : []));
5583
- this.data = signal(initialData, ...(ngDevMode ? [{ debugName: "data" }] : []));
5655
+ this.control = signal(initialControl, ...(ngDevMode ? [{ debugName: "control" }] : /* istanbul ignore next */ []));
5656
+ this.data = signal(initialData, ...(ngDevMode ? [{ debugName: "data" }] : /* istanbul ignore next */ []));
5584
5657
  }
5585
5658
  get pathParams() {
5586
5659
  return this.paramsSubject.value.pathParams;
@@ -5655,10 +5728,10 @@ class MonkeyEcxI18nResolver {
5655
5728
  getHost() {
5656
5729
  return '';
5657
5730
  }
5658
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxI18nResolver, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5659
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxI18nResolver }); }
5731
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxI18nResolver, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5732
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxI18nResolver }); }
5660
5733
  }
5661
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxI18nResolver, decorators: [{
5734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxI18nResolver, decorators: [{
5662
5735
  type: Injectable
5663
5736
  }], ctorParameters: () => [] });
5664
5737
 
@@ -5716,10 +5789,10 @@ class MonkeyEcxFileCacheService {
5716
5789
  clear() {
5717
5790
  this.cache.clear();
5718
5791
  }
5719
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFileCacheService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5720
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFileCacheService, providedIn: 'root' }); }
5792
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFileCacheService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5793
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFileCacheService, providedIn: 'root' }); }
5721
5794
  }
5722
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxFileCacheService, decorators: [{
5795
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFileCacheService, decorators: [{
5723
5796
  type: Injectable,
5724
5797
  args: [{
5725
5798
  providedIn: 'root'
@@ -5771,10 +5844,10 @@ class MonkeyEcxDiscoveryParamsService {
5771
5844
  found = this.getData(param);
5772
5845
  return found;
5773
5846
  }
5774
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, deps: [{ token: i2.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
5775
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, providedIn: 'root' }); }
5847
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, deps: [{ token: i2.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
5848
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, providedIn: 'root' }); }
5776
5849
  }
5777
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, decorators: [{
5850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, decorators: [{
5778
5851
  type: Injectable,
5779
5852
  args: [{
5780
5853
  providedIn: 'root'