monkey-front-core 0.0.527 → 0.0.528
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/core/injectors/index.mjs +2 -1
- package/esm2020/lib/core/services/error/monkeyecx-others-errors-handling.service.mjs +21 -9
- package/fesm2015/monkey-front-core.mjs +22 -8
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +20 -8
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/injectors/index.d.ts +1 -0
- package/lib/core/services/error/monkeyecx-others-errors-handling.service.d.ts +3 -1
- package/monkey-front-core-0.0.528.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.527.tgz +0 -0
|
@@ -2,4 +2,5 @@ import { InjectionToken } from '@angular/core';
|
|
|
2
2
|
export const MECX_TIMEZONEOFFSET = new InjectionToken('');
|
|
3
3
|
export const MECX_DATE_FORMAT = new InjectionToken('');
|
|
4
4
|
export const MECX_LANG = new InjectionToken('');
|
|
5
|
-
|
|
5
|
+
export const MECX_ENV = new InjectionToken('');
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tb25rZXktZnJvbnQtY29yZS9zcmMvbGliL2NvcmUvaW5qZWN0b3JzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFL0MsTUFBTSxDQUFDLE1BQU0sbUJBQW1CLEdBQUcsSUFBSSxjQUFjLENBQVMsRUFBRSxDQUFDLENBQUM7QUFDbEUsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxjQUFjLENBQVMsRUFBRSxDQUFDLENBQUM7QUFDL0QsTUFBTSxDQUFDLE1BQU0sU0FBUyxHQUFHLElBQUksY0FBYyxDQUFTLEVBQUUsQ0FBQyxDQUFDO0FBQ3hELE1BQU0sQ0FBQyxNQUFNLFFBQVEsR0FBRyxJQUFJLGNBQWMsQ0FBUyxFQUFFLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmV4cG9ydCBjb25zdCBNRUNYX1RJTUVaT05FT0ZGU0VUID0gbmV3IEluamVjdGlvblRva2VuPHN0cmluZz4oJycpO1xuZXhwb3J0IGNvbnN0IE1FQ1hfREFURV9GT1JNQVQgPSBuZXcgSW5qZWN0aW9uVG9rZW48c3RyaW5nPignJyk7XG5leHBvcnQgY29uc3QgTUVDWF9MQU5HID0gbmV3IEluamVjdGlvblRva2VuPHN0cmluZz4oJycpO1xuZXhwb3J0IGNvbnN0IE1FQ1hfRU5WID0gbmV3IEluamVjdGlvblRva2VuPHN0cmluZz4oJycpO1xuIl19
|
|
@@ -1,32 +1,44 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
1
|
+
import { Inject, Injectable } from '@angular/core';
|
|
2
2
|
import { VersionChangedComponent } from '../../../components/version-changed';
|
|
3
|
+
import { MECX_ENV } from '../../injectors';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
import * as i1 from "monkey-style-guide";
|
|
5
6
|
export class MonkeyEcxOthersErrorsHandlingService {
|
|
6
|
-
constructor(modalService) {
|
|
7
|
+
constructor(modalService, env) {
|
|
7
8
|
this.modalService = modalService;
|
|
9
|
+
this.env = env;
|
|
8
10
|
// not to do
|
|
9
11
|
}
|
|
10
12
|
handleError(error) {
|
|
11
13
|
const { modalService } = this;
|
|
12
14
|
const { message } = error;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
+
try {
|
|
16
|
+
if (this.env.toString() !== 'prod') {
|
|
17
|
+
console.log('==> error <==');
|
|
18
|
+
console.log(error);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
catch (e) {
|
|
22
|
+
// not to
|
|
23
|
+
}
|
|
15
24
|
if (new RegExp(/Loading chunk [\d]+ failed/).test(message)) {
|
|
16
|
-
console.log('xxxxxxxxx');
|
|
17
25
|
modalService.open(VersionChangedComponent, {
|
|
18
26
|
color: 'theme',
|
|
19
|
-
size: 'md'
|
|
27
|
+
size: 'md',
|
|
28
|
+
hideClose: true
|
|
20
29
|
});
|
|
21
30
|
}
|
|
22
31
|
}
|
|
23
32
|
}
|
|
24
|
-
MonkeyEcxOthersErrorsHandlingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxOthersErrorsHandlingService, deps: [{ token: i1.MonkeyStyleGuideModalService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
33
|
+
MonkeyEcxOthersErrorsHandlingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxOthersErrorsHandlingService, deps: [{ token: i1.MonkeyStyleGuideModalService }, { token: MECX_ENV }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25
34
|
MonkeyEcxOthersErrorsHandlingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxOthersErrorsHandlingService, providedIn: 'root' });
|
|
26
35
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxOthersErrorsHandlingService, decorators: [{
|
|
27
36
|
type: Injectable,
|
|
28
37
|
args: [{
|
|
29
38
|
providedIn: 'root'
|
|
30
39
|
}]
|
|
31
|
-
}], ctorParameters: function () { return [{ type: i1.MonkeyStyleGuideModalService }
|
|
32
|
-
|
|
40
|
+
}], ctorParameters: function () { return [{ type: i1.MonkeyStyleGuideModalService }, { type: i0.InjectionToken, decorators: [{
|
|
41
|
+
type: Inject,
|
|
42
|
+
args: [MECX_ENV]
|
|
43
|
+
}] }]; } });
|
|
44
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9ua2V5ZWN4LW90aGVycy1lcnJvcnMtaGFuZGxpbmcuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL21vbmtleS1mcm9udC1jb3JlL3NyYy9saWIvY29yZS9zZXJ2aWNlcy9lcnJvci9tb25rZXllY3gtb3RoZXJzLWVycm9ycy1oYW5kbGluZy5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsVUFBVSxFQUFrQixNQUFNLGVBQWUsQ0FBQztBQUVuRSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUM5RSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0saUJBQWlCLENBQUM7OztBQUszQyxNQUFNLE9BQU8sb0NBQW9DO0lBQy9DLFlBQ1UsWUFBMEMsRUFDeEIsR0FBMkI7UUFEN0MsaUJBQVksR0FBWixZQUFZLENBQThCO1FBQ3hCLFFBQUcsR0FBSCxHQUFHLENBQXdCO1FBRXJELFlBQVk7SUFDZCxDQUFDO0lBRU0sV0FBVyxDQUFDLEtBQVU7UUFDM0IsTUFBTSxFQUFFLFlBQVksRUFBRSxHQUFHLElBQUksQ0FBQztRQUM5QixNQUFNLEVBQUUsT0FBTyxFQUFFLEdBQUcsS0FBSyxDQUFDO1FBRTFCLElBQUk7WUFDRixJQUFJLElBQUksQ0FBQyxHQUFHLENBQUMsUUFBUSxFQUFFLEtBQUssTUFBTSxFQUFFO2dCQUNsQyxPQUFPLENBQUMsR0FBRyxDQUFDLGVBQWUsQ0FBQyxDQUFDO2dCQUM3QixPQUFPLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO2FBQ3BCO1NBQ0Y7UUFBQyxPQUFPLENBQUMsRUFBRTtZQUNWLFNBQVM7U0FDVjtRQUVELElBQUksSUFBSSxNQUFNLENBQUMsNEJBQTRCLENBQUMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLEVBQUU7WUFDMUQsWUFBWSxDQUFDLElBQUksQ0FBQyx1QkFBdUIsRUFBRTtnQkFDekMsS0FBSyxFQUFFLE9BQU87Z0JBQ2QsSUFBSSxFQUFFLElBQUk7Z0JBQ1YsU0FBUyxFQUFFLElBQUk7YUFDaEIsQ0FBQyxDQUFDO1NBQ0o7SUFDSCxDQUFDOztpSUE1QlUsb0NBQW9DLDhEQUdyQyxRQUFRO3FJQUhQLG9DQUFvQyxjQUZuQyxNQUFNOzJGQUVQLG9DQUFvQztrQkFIaEQsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkI7OzBCQUlJLE1BQU07MkJBQUMsUUFBUSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdCwgSW5qZWN0YWJsZSwgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE1vbmtleVN0eWxlR3VpZGVNb2RhbFNlcnZpY2UgfSBmcm9tICdtb25rZXktc3R5bGUtZ3VpZGUnO1xuaW1wb3J0IHsgVmVyc2lvbkNoYW5nZWRDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi9jb21wb25lbnRzL3ZlcnNpb24tY2hhbmdlZCc7XG5pbXBvcnQgeyBNRUNYX0VOViB9IGZyb20gJy4uLy4uL2luamVjdG9ycyc7XG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnXG59KVxuZXhwb3J0IGNsYXNzIE1vbmtleUVjeE90aGVyc0Vycm9yc0hhbmRsaW5nU2VydmljZSB7XG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgbW9kYWxTZXJ2aWNlOiBNb25rZXlTdHlsZUd1aWRlTW9kYWxTZXJ2aWNlLFxuICAgIEBJbmplY3QoTUVDWF9FTlYpIHByaXZhdGUgZW52OiBJbmplY3Rpb25Ub2tlbjxzdHJpbmc+XG4gICkge1xuICAgIC8vIG5vdCB0byBkb1xuICB9XG5cbiAgcHVibGljIGhhbmRsZUVycm9yKGVycm9yOiBhbnkpIHtcbiAgICBjb25zdCB7IG1vZGFsU2VydmljZSB9ID0gdGhpcztcbiAgICBjb25zdCB7IG1lc3NhZ2UgfSA9IGVycm9yO1xuXG4gICAgdHJ5IHtcbiAgICAgIGlmICh0aGlzLmVudi50b1N0cmluZygpICE9PSAncHJvZCcpIHtcbiAgICAgICAgY29uc29sZS5sb2coJz09PiBlcnJvciA8PT0nKTtcbiAgICAgICAgY29uc29sZS5sb2coZXJyb3IpO1xuICAgICAgfVxuICAgIH0gY2F0Y2ggKGUpIHtcbiAgICAgIC8vIG5vdCB0b1xuICAgIH1cblxuICAgIGlmIChuZXcgUmVnRXhwKC9Mb2FkaW5nIGNodW5rIFtcXGRdKyBmYWlsZWQvKS50ZXN0KG1lc3NhZ2UpKSB7XG4gICAgICBtb2RhbFNlcnZpY2Uub3BlbihWZXJzaW9uQ2hhbmdlZENvbXBvbmVudCwge1xuICAgICAgICBjb2xvcjogJ3RoZW1lJyxcbiAgICAgICAgc2l6ZTogJ21kJyxcbiAgICAgICAgaGlkZUNsb3NlOiB0cnVlXG4gICAgICB9KTtcbiAgICB9XG4gIH1cbn1cbiJdfQ==
|
|
@@ -903,6 +903,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
903
903
|
const MECX_TIMEZONEOFFSET = new InjectionToken('');
|
|
904
904
|
const MECX_DATE_FORMAT = new InjectionToken('');
|
|
905
905
|
const MECX_LANG = new InjectionToken('');
|
|
906
|
+
const MECX_ENV = new InjectionToken('');
|
|
906
907
|
|
|
907
908
|
class MonkeyEcxFormatCurrencyPipe {
|
|
908
909
|
constructor(currencyPipe, defaultCurencyCode, lang) {
|
|
@@ -5202,32 +5203,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5202
5203
|
}], ctorParameters: function () { return [{ type: MonkeyEcxService }, { type: MonkeyEcxTokenStorageService }, { type: MonkeyEcxAuthenticationService }, { type: i2$2.Router }, { type: i1.MonkeyStyleGuideSnackbarService }, { type: i1$1.TranslateService }]; } });
|
|
5203
5204
|
|
|
5204
5205
|
class MonkeyEcxOthersErrorsHandlingService {
|
|
5205
|
-
constructor(modalService) {
|
|
5206
|
+
constructor(modalService, env) {
|
|
5206
5207
|
this.modalService = modalService;
|
|
5208
|
+
this.env = env;
|
|
5207
5209
|
// not to do
|
|
5208
5210
|
}
|
|
5209
5211
|
handleError(error) {
|
|
5210
5212
|
const { modalService } = this;
|
|
5211
5213
|
const { message } = error;
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
+
try {
|
|
5215
|
+
if (this.env.toString() !== 'prod') {
|
|
5216
|
+
console.log('==> error <==');
|
|
5217
|
+
console.log(error);
|
|
5218
|
+
}
|
|
5219
|
+
}
|
|
5220
|
+
catch (e) {
|
|
5221
|
+
// not to
|
|
5222
|
+
}
|
|
5214
5223
|
if (new RegExp(/Loading chunk [\d]+ failed/).test(message)) {
|
|
5215
|
-
console.log('xxxxxxxxx');
|
|
5216
5224
|
modalService.open(VersionChangedComponent, {
|
|
5217
5225
|
color: 'theme',
|
|
5218
|
-
size: 'md'
|
|
5226
|
+
size: 'md',
|
|
5227
|
+
hideClose: true
|
|
5219
5228
|
});
|
|
5220
5229
|
}
|
|
5221
5230
|
}
|
|
5222
5231
|
}
|
|
5223
|
-
MonkeyEcxOthersErrorsHandlingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxOthersErrorsHandlingService, deps: [{ token: i1.MonkeyStyleGuideModalService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5232
|
+
MonkeyEcxOthersErrorsHandlingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxOthersErrorsHandlingService, deps: [{ token: i1.MonkeyStyleGuideModalService }, { token: MECX_ENV }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5224
5233
|
MonkeyEcxOthersErrorsHandlingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxOthersErrorsHandlingService, providedIn: 'root' });
|
|
5225
5234
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxOthersErrorsHandlingService, decorators: [{
|
|
5226
5235
|
type: Injectable,
|
|
5227
5236
|
args: [{
|
|
5228
5237
|
providedIn: 'root'
|
|
5229
5238
|
}]
|
|
5230
|
-
}], ctorParameters: function () {
|
|
5239
|
+
}], ctorParameters: function () {
|
|
5240
|
+
return [{ type: i1.MonkeyStyleGuideModalService }, { type: i0.InjectionToken, decorators: [{
|
|
5241
|
+
type: Inject,
|
|
5242
|
+
args: [MECX_ENV]
|
|
5243
|
+
}] }];
|
|
5244
|
+
} });
|
|
5231
5245
|
|
|
5232
5246
|
class MonkeyEcxErrorHandlingService {
|
|
5233
5247
|
constructor(injector) {
|
|
@@ -6899,5 +6913,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
6899
6913
|
* Generated bundle index. Do not edit.
|
|
6900
6914
|
*/
|
|
6901
6915
|
|
|
6902
|
-
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, Link, MECX_DATE_FORMAT, MECX_LANG, MECX_TIMEZONEOFFSET, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardByRole, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsActions, MonkeyEcxCommonsResolveBaseService, MonkeyEcxCommonsResolveService, MonkeyEcxCommonsSelectors, MonkeyEcxCommonsService, MonkeyEcxCommonsStoreBaseService, MonkeyEcxCommonsStoreService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxCurrencyConfigService, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDisplaySupportPhone, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDatePipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLinksModel, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPaginationService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, differentFromZero, documentValidator, documentValidatorByType, emailValidator, passwordConfirmValidator, registerValidator, requiredWithTrimValidator, index as store, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
6916
|
+
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, Link, MECX_DATE_FORMAT, MECX_ENV, MECX_LANG, MECX_TIMEZONEOFFSET, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardByRole, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsActions, MonkeyEcxCommonsResolveBaseService, MonkeyEcxCommonsResolveService, MonkeyEcxCommonsSelectors, MonkeyEcxCommonsService, MonkeyEcxCommonsStoreBaseService, MonkeyEcxCommonsStoreService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxCurrencyConfigService, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDisplaySupportPhone, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDatePipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLinksModel, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPaginationService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, differentFromZero, documentValidator, documentValidatorByType, emailValidator, passwordConfirmValidator, registerValidator, requiredWithTrimValidator, index as store, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
6903
6917
|
//# sourceMappingURL=monkey-front-core.mjs.map
|