monkey-front-core 21.0.42 → 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.
|
|
130
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
539
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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(/[
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
1244
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
1405
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
1550
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
1598
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
1707
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
1856
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
1928
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
1984
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2052
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2200
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2316
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2425
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2547
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2690
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2854
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2927
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
2967
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
3067
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
3115
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
3202
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
3246
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
3528
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
3598
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
3660
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
3996
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4130
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4183
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4244
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4296
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4368
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4739
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4762
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4833
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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.
|
|
4854
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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.
|
|
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'
|
|
@@ -4950,11 +5030,11 @@ class MonkeyEcxCoreModule {
|
|
|
4950
5030
|
]
|
|
4951
5031
|
};
|
|
4952
5032
|
}
|
|
4953
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
4954
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.
|
|
4955
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.
|
|
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] }); }
|
|
4956
5036
|
}
|
|
4957
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCoreModule, decorators: [{
|
|
4958
5038
|
type: NgModule,
|
|
4959
5039
|
args: [{
|
|
4960
5040
|
imports: [CommonModule]
|
|
@@ -4977,10 +5057,10 @@ class MonkeyEcxBlobSecurePipe {
|
|
|
4977
5057
|
return this._sanitizer.bypassSecurityTrustUrl(URL.createObjectURL(val));
|
|
4978
5058
|
}));
|
|
4979
5059
|
}
|
|
4980
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
4981
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
4982
5062
|
}
|
|
4983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5063
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxBlobSecurePipe, decorators: [{
|
|
4984
5064
|
type: Pipe,
|
|
4985
5065
|
args: [{
|
|
4986
5066
|
name: 'monkeyecxBlobSecure',
|
|
@@ -5007,10 +5087,10 @@ class MonkeyEcxCurrencyCodePipe {
|
|
|
5007
5087
|
}[currency];
|
|
5008
5088
|
return `${value} (${type === 'symbol' ? symbol : currency})`;
|
|
5009
5089
|
}
|
|
5010
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5011
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5012
5092
|
}
|
|
5013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxCurrencyCodePipe, decorators: [{
|
|
5014
5094
|
type: Pipe,
|
|
5015
5095
|
args: [{
|
|
5016
5096
|
name: 'monkeyecxCurrencyCode',
|
|
@@ -5029,10 +5109,10 @@ class MonkeyEcxDisplayFirstNamePipe {
|
|
|
5029
5109
|
return '';
|
|
5030
5110
|
return MonkeyEcxUtils.cutFirstLastName(name);
|
|
5031
5111
|
}
|
|
5032
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5033
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5034
5114
|
}
|
|
5035
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDisplayFirstNamePipe, decorators: [{
|
|
5036
5116
|
type: Pipe,
|
|
5037
5117
|
args: [{
|
|
5038
5118
|
name: 'monkeyecxDisplayFirstName',
|
|
@@ -5053,10 +5133,10 @@ class MonkeyEcxDisplayInitialsPipe {
|
|
|
5053
5133
|
const second = MonkeyEcxUtils.cutFirstLastName(name, 'last');
|
|
5054
5134
|
return `${first?.charAt(0)} ${second?.charAt(0)}`;
|
|
5055
5135
|
}
|
|
5056
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5057
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5058
5138
|
}
|
|
5059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, decorators: [{
|
|
5060
5140
|
type: Pipe,
|
|
5061
5141
|
args: [{
|
|
5062
5142
|
name: 'monkeyecxDisplayInitials',
|
|
@@ -5077,10 +5157,10 @@ class MonkeyEcxFormatAddressPipe {
|
|
|
5077
5157
|
})
|
|
5078
5158
|
.join(', ');
|
|
5079
5159
|
}
|
|
5080
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5081
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5082
5162
|
}
|
|
5083
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatAddressPipe, decorators: [{
|
|
5084
5164
|
type: Pipe,
|
|
5085
5165
|
args: [{
|
|
5086
5166
|
name: 'monkeyecxFormatAddress',
|
|
@@ -5119,10 +5199,10 @@ class MonkeyEcxFormatBeaufityJSONPipe {
|
|
|
5119
5199
|
.replace(/>/g, '>')
|
|
5120
5200
|
.replace(jsonLine, replacer);
|
|
5121
5201
|
}
|
|
5122
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5123
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5124
5204
|
}
|
|
5125
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, decorators: [{
|
|
5126
5206
|
type: Pipe,
|
|
5127
5207
|
args: [{
|
|
5128
5208
|
name: 'monkeyecxFormatBeautifyJSON',
|
|
@@ -5158,10 +5238,10 @@ class MonkeyEcxFormatCurrencyPipe {
|
|
|
5158
5238
|
}
|
|
5159
5239
|
return value;
|
|
5160
5240
|
}
|
|
5161
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5162
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5163
5243
|
}
|
|
5164
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatCurrencyPipe, decorators: [{
|
|
5165
5245
|
type: Pipe,
|
|
5166
5246
|
args: [{
|
|
5167
5247
|
name: 'monkeyecxFormatCurrency',
|
|
@@ -5185,10 +5265,10 @@ class MonkeyEcxFormatDatePipe {
|
|
|
5185
5265
|
}
|
|
5186
5266
|
return this.dt.transform(date, format, this._timezone.toString());
|
|
5187
5267
|
}
|
|
5188
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5189
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5190
5270
|
}
|
|
5191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDatePipe, decorators: [{
|
|
5192
5272
|
type: Pipe,
|
|
5193
5273
|
args: [{
|
|
5194
5274
|
name: 'monkeyecxFormatDate',
|
|
@@ -5211,10 +5291,10 @@ class MonkeyEcxFormatDocumentPipe {
|
|
|
5211
5291
|
}
|
|
5212
5292
|
return MonkeyEcxUtils.formatDocumentWithMask(document, withType, this._country);
|
|
5213
5293
|
}
|
|
5214
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5215
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5216
5296
|
}
|
|
5217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, decorators: [{
|
|
5218
5298
|
type: Pipe,
|
|
5219
5299
|
args: [{
|
|
5220
5300
|
name: 'monkeyecxFormatDocument',
|
|
@@ -5233,10 +5313,10 @@ class MonkeyEcxFormatNumberPipe {
|
|
|
5233
5313
|
return '';
|
|
5234
5314
|
return formatNumber(Number(number), 'ptbr');
|
|
5235
5315
|
}
|
|
5236
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5237
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5238
5318
|
}
|
|
5239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatNumberPipe, decorators: [{
|
|
5240
5320
|
type: Pipe,
|
|
5241
5321
|
args: [{
|
|
5242
5322
|
name: 'monkeyecxFormatNumber',
|
|
@@ -5279,10 +5359,10 @@ class MonkeyEcxFormatPhonePipe {
|
|
|
5279
5359
|
}
|
|
5280
5360
|
return '';
|
|
5281
5361
|
}
|
|
5282
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5283
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5284
5364
|
}
|
|
5285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatPhonePipe, decorators: [{
|
|
5286
5366
|
type: Pipe,
|
|
5287
5367
|
args: [{
|
|
5288
5368
|
name: 'monkeyecxFormatPhone',
|
|
@@ -5302,10 +5382,10 @@ class MonkeyEcxFormatSizePipe {
|
|
|
5302
5382
|
const sizeNum = Number(size);
|
|
5303
5383
|
return MonkeyEcxUtils.formatFileSize(sizeNum);
|
|
5304
5384
|
}
|
|
5305
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5306
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5307
5387
|
}
|
|
5308
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatSizePipe, decorators: [{
|
|
5309
5389
|
type: Pipe,
|
|
5310
5390
|
args: [{
|
|
5311
5391
|
name: 'monkeyecxFormatSize',
|
|
@@ -5328,10 +5408,10 @@ class MonkeyEcxFormatTaxPipe {
|
|
|
5328
5408
|
maximumFractionDigits: decimalDigits
|
|
5329
5409
|
})} %`;
|
|
5330
5410
|
}
|
|
5331
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5332
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5333
5413
|
}
|
|
5334
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatTaxPipe, decorators: [{
|
|
5335
5415
|
type: Pipe,
|
|
5336
5416
|
args: [{
|
|
5337
5417
|
name: 'monkeyecxFormatTax',
|
|
@@ -5353,10 +5433,10 @@ class MonkeyEcxFormatDocumentTypePipe {
|
|
|
5353
5433
|
return '';
|
|
5354
5434
|
return MonkeyEcxUtils.getDocumentType(document, this._country);
|
|
5355
5435
|
}
|
|
5356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5357
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5358
5438
|
}
|
|
5359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5439
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, decorators: [{
|
|
5360
5440
|
type: Pipe,
|
|
5361
5441
|
args: [{
|
|
5362
5442
|
name: 'monkeyecxFormatDocumentType',
|
|
@@ -5375,10 +5455,10 @@ class MonkeyEcxFormatValue {
|
|
|
5375
5455
|
return '';
|
|
5376
5456
|
return number;
|
|
5377
5457
|
}
|
|
5378
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5379
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5380
5460
|
}
|
|
5381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5461
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatValue, decorators: [{
|
|
5382
5462
|
type: Pipe,
|
|
5383
5463
|
args: [{
|
|
5384
5464
|
name: 'monkeyecxFormatValue',
|
|
@@ -5397,10 +5477,10 @@ class MonkeyEcxFormatZipCodePipe {
|
|
|
5397
5477
|
return '';
|
|
5398
5478
|
return MonkeyEcxUtils.formatZipCode(zipCode);
|
|
5399
5479
|
}
|
|
5400
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5401
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5402
5482
|
}
|
|
5403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, decorators: [{
|
|
5404
5484
|
type: Pipe,
|
|
5405
5485
|
args: [{
|
|
5406
5486
|
name: 'monkeyecxFormatZipCode',
|
|
@@ -5424,10 +5504,10 @@ class MonkeyEcxTextTruncatePipe {
|
|
|
5424
5504
|
const right = text.length - left + 1;
|
|
5425
5505
|
return `${text.substr(0, left)} ${midChar} ${text.substring(right)}`;
|
|
5426
5506
|
}
|
|
5427
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5428
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5429
5509
|
}
|
|
5430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTextTruncatePipe, decorators: [{
|
|
5431
5511
|
type: Pipe,
|
|
5432
5512
|
args: [{
|
|
5433
5513
|
name: 'monkeyecxTextTruncate',
|
|
@@ -5444,10 +5524,10 @@ class MonkeyEcxTruncateQtdPipe {
|
|
|
5444
5524
|
transform(number, threshold) {
|
|
5445
5525
|
return `${number > threshold ? `${threshold}+` : number}`;
|
|
5446
5526
|
}
|
|
5447
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5448
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.
|
|
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" }); }
|
|
5449
5529
|
}
|
|
5450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, decorators: [{
|
|
5451
5531
|
type: Pipe,
|
|
5452
5532
|
args: [{
|
|
5453
5533
|
name: 'monkeyecxTruncateQtd',
|
|
@@ -5461,8 +5541,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
5461
5541
|
* MIT Licence
|
|
5462
5542
|
************************* */
|
|
5463
5543
|
class MonkeyEcxPipesModule {
|
|
5464
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5465
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.
|
|
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,
|
|
5466
5546
|
MonkeyEcxDisplayFirstNamePipe,
|
|
5467
5547
|
MonkeyEcxDisplayInitialsPipe,
|
|
5468
5548
|
MonkeyEcxFormatAddressPipe,
|
|
@@ -5497,9 +5577,9 @@ class MonkeyEcxPipesModule {
|
|
|
5497
5577
|
MonkeyEcxTextTruncatePipe,
|
|
5498
5578
|
MonkeyEcxTruncateQtdPipe,
|
|
5499
5579
|
MonkeyEcxFormatDatePipe] }); }
|
|
5500
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.
|
|
5580
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxPipesModule, providers: [CurrencyPipe, DatePipe] }); }
|
|
5501
5581
|
}
|
|
5502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxPipesModule, decorators: [{
|
|
5503
5583
|
type: NgModule,
|
|
5504
5584
|
args: [{
|
|
5505
5585
|
declarations: [
|
|
@@ -5572,8 +5652,8 @@ class MonkeyEcxBaseResolver {
|
|
|
5572
5652
|
this.router = inject(Router);
|
|
5573
5653
|
this.paramsSubject = new BehaviorSubject({});
|
|
5574
5654
|
this.params$ = this.paramsSubject.asObservable();
|
|
5575
|
-
this.control = signal(initialControl, ...(ngDevMode ? [{ debugName: "control" }] : []));
|
|
5576
|
-
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 */ []));
|
|
5577
5657
|
}
|
|
5578
5658
|
get pathParams() {
|
|
5579
5659
|
return this.paramsSubject.value.pathParams;
|
|
@@ -5648,10 +5728,10 @@ class MonkeyEcxI18nResolver {
|
|
|
5648
5728
|
getHost() {
|
|
5649
5729
|
return '';
|
|
5650
5730
|
}
|
|
5651
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5652
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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 }); }
|
|
5653
5733
|
}
|
|
5654
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxI18nResolver, decorators: [{
|
|
5655
5735
|
type: Injectable
|
|
5656
5736
|
}], ctorParameters: () => [] });
|
|
5657
5737
|
|
|
@@ -5709,10 +5789,10 @@ class MonkeyEcxFileCacheService {
|
|
|
5709
5789
|
clear() {
|
|
5710
5790
|
this.cache.clear();
|
|
5711
5791
|
}
|
|
5712
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5713
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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' }); }
|
|
5714
5794
|
}
|
|
5715
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxFileCacheService, decorators: [{
|
|
5716
5796
|
type: Injectable,
|
|
5717
5797
|
args: [{
|
|
5718
5798
|
providedIn: 'root'
|
|
@@ -5764,10 +5844,10 @@ class MonkeyEcxDiscoveryParamsService {
|
|
|
5764
5844
|
found = this.getData(param);
|
|
5765
5845
|
return found;
|
|
5766
5846
|
}
|
|
5767
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
5768
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
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' }); }
|
|
5769
5849
|
}
|
|
5770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
5850
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, decorators: [{
|
|
5771
5851
|
type: Injectable,
|
|
5772
5852
|
args: [{
|
|
5773
5853
|
providedIn: 'root'
|