@mediusinc/mng-commons 0.4.5 → 0.4.6
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/mng-commons.module.mjs +5 -3
- package/esm2020/lib/services/commons.service.mjs +55 -81
- package/esm2020/lib/services/internal/commons-init.provider.mjs +4 -0
- package/esm2020/lib/services/internal/commons-init.service.mjs +44 -0
- package/esm2020/lib/services/internal/index.mjs +3 -0
- package/esm2020/lib/services/providers/index.mjs +1 -2
- package/fesm2015/mediusinc-mng-commons.mjs +97 -83
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +94 -82
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/services/commons.service.d.ts +5 -7
- package/lib/services/internal/commons-init.provider.d.ts +3 -0
- package/lib/services/internal/commons-init.service.d.ts +16 -0
- package/lib/services/internal/index.d.ts +2 -0
- package/lib/services/providers/index.d.ts +0 -1
- package/package.json +1 -1
- package/esm2020/lib/services/providers/commons-init.provider.mjs +0 -4
- package/lib/services/providers/commons-init.provider.d.ts +0 -3
|
@@ -2,7 +2,7 @@ import * as i4 from '@angular/common';
|
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
3
|
import { HttpErrorResponse, HttpClient, HttpClientModule } from '@angular/common/http';
|
|
4
4
|
import * as i0 from '@angular/core';
|
|
5
|
-
import { InjectionToken, Injectable, Pipe, Inject,
|
|
5
|
+
import { InjectionToken, Injectable, Pipe, Inject, EventEmitter, Component, ChangeDetectionStrategy, Optional, HostBinding, Input, Output, Directive, ContentChildren, ViewChild, forwardRef, ViewChildren, HostListener, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
6
6
|
import * as i4$2 from '@angular/forms';
|
|
7
7
|
import { Validators, FormGroup, FormArray, NG_VALUE_ACCESSOR, FormControl, ReactiveFormsModule } from '@angular/forms';
|
|
8
8
|
import * as i1 from '@angular/router';
|
|
@@ -72,7 +72,7 @@ import * as i4$3 from 'primeng/toolbar';
|
|
|
72
72
|
import { ToolbarModule } from 'primeng/toolbar';
|
|
73
73
|
import * as i9 from 'primeng/tooltip';
|
|
74
74
|
import { TooltipModule } from 'primeng/tooltip';
|
|
75
|
-
import { throwError, of, Subject, Observable, from, combineLatest, tap, BehaviorSubject, ReplaySubject, mergeMap as mergeMap$1
|
|
75
|
+
import { throwError, of, Subject, Observable, from, combineLatest, tap, BehaviorSubject, ReplaySubject, switchMap, distinctUntilChanged, mergeMap as mergeMap$1 } from 'rxjs';
|
|
76
76
|
import 'reflect-metadata';
|
|
77
77
|
import { map, mergeMap, first, catchError, filter, finalize, startWith } from 'rxjs/operators';
|
|
78
78
|
import * as i4$1 from '@angular/platform-browser';
|
|
@@ -4514,17 +4514,13 @@ class MngConfigurationService {
|
|
|
4514
4514
|
MngConfigurationService._instance = null;
|
|
4515
4515
|
|
|
4516
4516
|
class MngCommonsService {
|
|
4517
|
-
constructor(router, primengConfig, translate, titleService,
|
|
4517
|
+
constructor(router, primengConfig, translate, titleService, moduleConfig, localStorage) {
|
|
4518
4518
|
this.router = router;
|
|
4519
4519
|
this.primengConfig = primengConfig;
|
|
4520
4520
|
this.translate = translate;
|
|
4521
4521
|
this.titleService = titleService;
|
|
4522
|
-
this.configurationService = configurationService;
|
|
4523
4522
|
this.moduleConfig = moduleConfig;
|
|
4524
4523
|
this.localStorage = localStorage;
|
|
4525
|
-
this.commonsInitializers = commonsInitializers;
|
|
4526
|
-
// internal
|
|
4527
|
-
this.isInitialized = false;
|
|
4528
4524
|
// menu
|
|
4529
4525
|
this._menuMode = 'sidebar';
|
|
4530
4526
|
this._menuModeSubject = new BehaviorSubject(this._menuMode);
|
|
@@ -4659,71 +4655,55 @@ class MngCommonsService {
|
|
|
4659
4655
|
get user$() {
|
|
4660
4656
|
return this.userSubject.asObservable();
|
|
4661
4657
|
}
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
this.
|
|
4709
|
-
this.
|
|
4710
|
-
|
|
4711
|
-
this.router.events
|
|
4712
|
-
.pipe(
|
|
4713
|
-
// Filter the NavigationEnd events as the breadcrumb is updated only when the route reaches its end
|
|
4714
|
-
filter(event => event instanceof NavigationEnd))
|
|
4715
|
-
.subscribe(() => {
|
|
4716
|
-
this.updateBreadcrumbs();
|
|
4717
|
-
this.setPageTitle();
|
|
4718
|
-
});
|
|
4719
|
-
this.translate.onLangChange.subscribe(() => {
|
|
4720
|
-
this.updateBreadcrumbs();
|
|
4721
|
-
this.setPageTitle();
|
|
4722
|
-
});
|
|
4723
|
-
console.debug(`@mediusinc/mng-commons initialization complete.`);
|
|
4724
|
-
return true;
|
|
4725
|
-
}));
|
|
4726
|
-
this.isInitialized = true;
|
|
4658
|
+
reset() {
|
|
4659
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
|
|
4660
|
+
this._menuMode = (_c = (_b = (_a = this.moduleConfig) === null || _a === void 0 ? void 0 : _a.menu) === null || _b === void 0 ? void 0 : _b.mode) !== null && _c !== void 0 ? _c : 'sidebar';
|
|
4661
|
+
this._menuModeSubject.next(this._menuMode);
|
|
4662
|
+
this._menuItems = (_f = (_e = (_d = this.moduleConfig) === null || _d === void 0 ? void 0 : _d.menu) === null || _e === void 0 ? void 0 : _e.menuItems) !== null && _f !== void 0 ? _f : [];
|
|
4663
|
+
this._menuPinEnabled = (_j = (_h = (_g = this.moduleConfig) === null || _g === void 0 ? void 0 : _g.menu) === null || _h === void 0 ? void 0 : _h.pinEnabled) !== null && _j !== void 0 ? _j : false;
|
|
4664
|
+
// visual
|
|
4665
|
+
this._colorScheme = (_m = (_l = (_k = this.moduleConfig) === null || _k === void 0 ? void 0 : _k.app) === null || _l === void 0 ? void 0 : _l.colorScheme) !== null && _m !== void 0 ? _m : 'light';
|
|
4666
|
+
// ripple
|
|
4667
|
+
this.primengConfig.ripple = true;
|
|
4668
|
+
this.primengConfig.filterMatchModeOptions = {
|
|
4669
|
+
text: [
|
|
4670
|
+
FilterDescriptor.MatchModeEnum.Contains,
|
|
4671
|
+
FilterDescriptor.MatchModeEnum.Equals,
|
|
4672
|
+
FilterDescriptor.MatchModeEnum.NotEquals,
|
|
4673
|
+
FilterDescriptor.MatchModeEnum.StartsWith,
|
|
4674
|
+
FilterDescriptor.MatchModeEnum.EndsWith
|
|
4675
|
+
],
|
|
4676
|
+
numeric: [
|
|
4677
|
+
FilterDescriptor.MatchModeEnum.Equals,
|
|
4678
|
+
FilterDescriptor.MatchModeEnum.NotEquals,
|
|
4679
|
+
FilterDescriptor.MatchModeEnum.LessThanOrEqualTo,
|
|
4680
|
+
FilterDescriptor.MatchModeEnum.GreaterThanOrEqualTo
|
|
4681
|
+
],
|
|
4682
|
+
date: [
|
|
4683
|
+
FilterDescriptor.MatchModeEnum.DateIs,
|
|
4684
|
+
FilterDescriptor.MatchModeEnum.DateIsNot,
|
|
4685
|
+
FilterDescriptor.MatchModeEnum.DateBefore,
|
|
4686
|
+
FilterDescriptor.MatchModeEnum.DateAfter
|
|
4687
|
+
]
|
|
4688
|
+
};
|
|
4689
|
+
// translate
|
|
4690
|
+
this.translate.langs = this.appLanguages;
|
|
4691
|
+
this.translate.use(this.appLanguage);
|
|
4692
|
+
this.translate.get('mngPrime').subscribe(value => this.primengConfig.setTranslation(value));
|
|
4693
|
+
(_o = this.routerEventsSubscription) === null || _o === void 0 ? void 0 : _o.unsubscribe();
|
|
4694
|
+
this.routerEventsSubscription = this.router.events
|
|
4695
|
+
.pipe(
|
|
4696
|
+
// Filter the NavigationEnd events as the breadcrumb is updated only when the route reaches its end
|
|
4697
|
+
filter(event => event instanceof NavigationEnd))
|
|
4698
|
+
.subscribe(() => {
|
|
4699
|
+
this.updateBreadcrumbs();
|
|
4700
|
+
this.setPageTitle();
|
|
4701
|
+
});
|
|
4702
|
+
(_p = this.translateLangChangeSubscription) === null || _p === void 0 ? void 0 : _p.unsubscribe();
|
|
4703
|
+
this.translateLangChangeSubscription = this.translate.onLangChange.subscribe(() => {
|
|
4704
|
+
this.updateBreadcrumbs();
|
|
4705
|
+
this.setPageTitle();
|
|
4706
|
+
});
|
|
4727
4707
|
}
|
|
4728
4708
|
// MENU actions
|
|
4729
4709
|
menuChangeActiveKey(key) {
|
|
@@ -4863,22 +4843,17 @@ class MngCommonsService {
|
|
|
4863
4843
|
return titlePieces.join(' - ');
|
|
4864
4844
|
}
|
|
4865
4845
|
}
|
|
4866
|
-
MngCommonsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService, deps: [{ token: i1.Router }, { token: i2.PrimeNGConfig }, { token: i1$1.TranslateService }, { token: i4$1.Title }, { token:
|
|
4846
|
+
MngCommonsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService, deps: [{ token: i1.Router }, { token: i2.PrimeNGConfig }, { token: i1$1.TranslateService }, { token: i4$1.Title }, { token: MNG_MODULE_CONFIG_IT }, { token: MNG_BROWSER_STORAGE_IT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4867
4847
|
MngCommonsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService });
|
|
4868
4848
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService, decorators: [{
|
|
4869
4849
|
type: Injectable
|
|
4870
4850
|
}], ctorParameters: function () {
|
|
4871
|
-
return [{ type: i1.Router }, { type: i2.PrimeNGConfig }, { type: i1$1.TranslateService }, { type: i4$1.Title }, { type:
|
|
4851
|
+
return [{ type: i1.Router }, { type: i2.PrimeNGConfig }, { type: i1$1.TranslateService }, { type: i4$1.Title }, { type: undefined, decorators: [{
|
|
4872
4852
|
type: Inject,
|
|
4873
4853
|
args: [MNG_MODULE_CONFIG_IT]
|
|
4874
4854
|
}] }, { type: Storage, decorators: [{
|
|
4875
4855
|
type: Inject,
|
|
4876
4856
|
args: [MNG_BROWSER_STORAGE_IT]
|
|
4877
|
-
}] }, { type: undefined, decorators: [{
|
|
4878
|
-
type: Inject,
|
|
4879
|
-
args: [MNG_COMMONS_INITIALIZER_IT]
|
|
4880
|
-
}, {
|
|
4881
|
-
type: Optional
|
|
4882
4857
|
}] }];
|
|
4883
4858
|
} });
|
|
4884
4859
|
|
|
@@ -7670,10 +7645,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
7670
7645
|
args: ['window:resize', ['$event']]
|
|
7671
7646
|
}] } });
|
|
7672
7647
|
|
|
7673
|
-
function mngCommonsInitializerProvider(
|
|
7674
|
-
return () =>
|
|
7648
|
+
function mngCommonsInitializerProvider(mngCommonsInit) {
|
|
7649
|
+
return () => mngCommonsInit.initialize();
|
|
7675
7650
|
}
|
|
7676
7651
|
|
|
7652
|
+
class MngCommonsInitService {
|
|
7653
|
+
constructor(translate, configurationService, mngCommons, commonsInitializers) {
|
|
7654
|
+
this.translate = translate;
|
|
7655
|
+
this.configurationService = configurationService;
|
|
7656
|
+
this.mngCommons = mngCommons;
|
|
7657
|
+
this.commonsInitializers = commonsInitializers;
|
|
7658
|
+
this.isInitialized = false;
|
|
7659
|
+
}
|
|
7660
|
+
initialize() {
|
|
7661
|
+
if (this.isInitialized) {
|
|
7662
|
+
return of(void 0);
|
|
7663
|
+
}
|
|
7664
|
+
console.debug(`Initializing @mediusinc/mng-commons.`);
|
|
7665
|
+
return this.configurationService.loadJsonSources().pipe(mergeMap$1(() => {
|
|
7666
|
+
if (this.commonsInitializers) {
|
|
7667
|
+
console.debug(`Module initializers for @mediusinc/mng-commons.`);
|
|
7668
|
+
return combineLatest(this.commonsInitializers.map(ci => ci())).pipe(map(res => res));
|
|
7669
|
+
}
|
|
7670
|
+
else {
|
|
7671
|
+
return of(true);
|
|
7672
|
+
}
|
|
7673
|
+
}), map(() => this.mngCommons.reset()));
|
|
7674
|
+
this.isInitialized = true;
|
|
7675
|
+
}
|
|
7676
|
+
}
|
|
7677
|
+
MngCommonsInitService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsInitService, deps: [{ token: i1$1.TranslateService }, { token: MngConfigurationService }, { token: MngCommonsService }, { token: MNG_COMMONS_INITIALIZER_IT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7678
|
+
MngCommonsInitService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsInitService });
|
|
7679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsInitService, decorators: [{
|
|
7680
|
+
type: Injectable
|
|
7681
|
+
}], ctorParameters: function () {
|
|
7682
|
+
return [{ type: i1$1.TranslateService }, { type: MngConfigurationService }, { type: MngCommonsService }, { type: undefined, decorators: [{
|
|
7683
|
+
type: Inject,
|
|
7684
|
+
args: [MNG_COMMONS_INITIALIZER_IT]
|
|
7685
|
+
}, {
|
|
7686
|
+
type: Optional
|
|
7687
|
+
}] }];
|
|
7688
|
+
} });
|
|
7689
|
+
|
|
7677
7690
|
const mngConfigurationServiceProvider = (httpClient, moduleConfig) => {
|
|
7678
7691
|
var _a;
|
|
7679
7692
|
const service = MngConfigurationService.init(httpClient);
|
|
@@ -7985,6 +7998,7 @@ class MngCommonsModule {
|
|
|
7985
7998
|
DialogService,
|
|
7986
7999
|
MessageService,
|
|
7987
8000
|
ConfirmationService,
|
|
8001
|
+
MngCommonsInitService,
|
|
7988
8002
|
MngActionExecutorService,
|
|
7989
8003
|
MngNavigationService,
|
|
7990
8004
|
MngCommonsService,
|
|
@@ -8014,7 +8028,7 @@ class MngCommonsModule {
|
|
|
8014
8028
|
{
|
|
8015
8029
|
provide: APP_INITIALIZER,
|
|
8016
8030
|
useFactory: mngCommonsInitializerProvider,
|
|
8017
|
-
deps: [
|
|
8031
|
+
deps: [MngCommonsInitService],
|
|
8018
8032
|
multi: true
|
|
8019
8033
|
},
|
|
8020
8034
|
{
|
|
@@ -8853,5 +8867,5 @@ class RouteDataBuilder {
|
|
|
8853
8867
|
* Generated bundle index. Do not edit.
|
|
8854
8868
|
*/
|
|
8855
8869
|
|
|
8856
|
-
export { ACTION_EDITOR_DIALOG_COMPONENT_SETTING, AFieldDescriptor, AFieldGroupDescriptor, AGenericFieldDescriptor, AMngApiService, AMngBaseApiService, AMngCrudApiService, AMngGetAllApiService, AMngTableviewRouteComponent, ActionActivationResult, ActionActivationTriggerEnum, ActionDeleteDescriptor, ActionDescriptor, ActionEditorAddDescriptor, ActionEditorDescriptor, ActionEditorDetailsDescriptor, ActionEditorEditDescriptor, ActionEditorSubmitDescriptor, ActionError, ActionExecContext, ActionLevelEnum, ActionLinkDescriptor, ActionPositionEnum, ActionRunResult, ActionSimpleDescriptor, ActionTriggerResult, ActionTypeEnum, ColumnDescriptor, DataProvider, DefaultMngErrorMapperService, EditorDataProvider, EditorDescriptor, EditorFormlyUtil, EnumName, EnumUtil, FieldDescriptor, FieldGroupDescriptor, FieldInputDescriptor, FieldLookupDescriptor, FieldLookupEnumDescriptor, FieldManyEditorDescriptor, FieldManyToManyEditorDescriptor, FieldTabGroupDescriptor, FieldValidator, FilterDescriptor, FilterLookupDescriptor, FilterLookupEnumDescriptor, I18nUtils, JsonPathPipe, LookupDataProvider, MNG_AUTOCOMPLETE_VALUE_ACCESSOR, MNG_BROWSER_STORAGE_IT, MNG_COMMONS_INITIALIZER_IT, MNG_DROPDOWN_VALUE_ACCESSOR, MNG_MODULE_CONFIG_IT, MediusFilterMatchType, MediusFilterParam, MediusQueryMode, MediusQueryParam, MediusQueryParamBuilder, MediusQueryResult, MediusRestUtil, MngActionComponent, MngActionEditorComponent, MngActionExecutorService, MngActionRouteComponent, MngAutocompleteComponent, MngBooleanPipe, MngBreadcrumbComponent, MngCommonsModule, MngCommonsService, MngComponentDirective, MngConfigurationService, MngDropdownComponent, MngEnumPipe, MngErrorMapperService, MngFooterComponent, MngFormEditorComponent, MngFormEditorSubmitEvent, MngFormFieldEvent, MngFormFieldEventComponentSubtype, MngFormFieldEventDialogSubtype, MngFormFieldEventTypeEnum, MngFormlyFieldAutocompleteComponent, MngFormlyFieldDropdownComponent, MngFormlyFieldFieldsetComponent, MngFormlyFieldInputComponent, MngFormlyFieldLookupDialogComponent, MngFormlyFieldTableDialogFormComponent, MngFormlyFieldTableDialogMultiselectComponent, MngFormlyFieldTabsComponent, MngFormlyFieldWrapperComponent, MngFormlyTableWrapperComponent, MngI18nPropertyPipe, MngLinkFormatterPipe, MngMainLayoutComponent, MngMainLayoutComponentService, MngMenuComponent, MngMenuItemComponent, MngNavigationService, MngTableCellClickEvent, MngTableColumnFilterComponent, MngTableColumnValueComponent, MngTableComponent, MngTableLoadEvent, MngTableReloadEvent, MngTableviewComponent, MngTableviewRouteComponent, MngTemplateDirective, MngTopbarComponent, MngViewContainerComponentService, ModelDescriptor, ModelUtil, NotificationUtil, ObjectSerializer, RouteBuilder, RouteDataBuilder, RoutesBuilder, TableDataProvider, TableDescriptor, TableviewDataProvider, TableviewDescriptor, TypeName, TypeUtil, enumNameDecoratorPropertyName, enumsMapBase, formlyTypesConfig, formlyWrappersConfig, getEmailValidationMessage, getFormlyValidationMessages, getMaxLengthValidationMessage, getMinLengthValidationMessage, getRequiredValidationMessage, getTextPatternValidationMessage,
|
|
8870
|
+
export { ACTION_EDITOR_DIALOG_COMPONENT_SETTING, AFieldDescriptor, AFieldGroupDescriptor, AGenericFieldDescriptor, AMngApiService, AMngBaseApiService, AMngCrudApiService, AMngGetAllApiService, AMngTableviewRouteComponent, ActionActivationResult, ActionActivationTriggerEnum, ActionDeleteDescriptor, ActionDescriptor, ActionEditorAddDescriptor, ActionEditorDescriptor, ActionEditorDetailsDescriptor, ActionEditorEditDescriptor, ActionEditorSubmitDescriptor, ActionError, ActionExecContext, ActionLevelEnum, ActionLinkDescriptor, ActionPositionEnum, ActionRunResult, ActionSimpleDescriptor, ActionTriggerResult, ActionTypeEnum, ColumnDescriptor, DataProvider, DefaultMngErrorMapperService, EditorDataProvider, EditorDescriptor, EditorFormlyUtil, EnumName, EnumUtil, FieldDescriptor, FieldGroupDescriptor, FieldInputDescriptor, FieldLookupDescriptor, FieldLookupEnumDescriptor, FieldManyEditorDescriptor, FieldManyToManyEditorDescriptor, FieldTabGroupDescriptor, FieldValidator, FilterDescriptor, FilterLookupDescriptor, FilterLookupEnumDescriptor, I18nUtils, JsonPathPipe, LookupDataProvider, MNG_AUTOCOMPLETE_VALUE_ACCESSOR, MNG_BROWSER_STORAGE_IT, MNG_COMMONS_INITIALIZER_IT, MNG_DROPDOWN_VALUE_ACCESSOR, MNG_MODULE_CONFIG_IT, MediusFilterMatchType, MediusFilterParam, MediusQueryMode, MediusQueryParam, MediusQueryParamBuilder, MediusQueryResult, MediusRestUtil, MngActionComponent, MngActionEditorComponent, MngActionExecutorService, MngActionRouteComponent, MngAutocompleteComponent, MngBooleanPipe, MngBreadcrumbComponent, MngCommonsModule, MngCommonsService, MngComponentDirective, MngConfigurationService, MngDropdownComponent, MngEnumPipe, MngErrorMapperService, MngFooterComponent, MngFormEditorComponent, MngFormEditorSubmitEvent, MngFormFieldEvent, MngFormFieldEventComponentSubtype, MngFormFieldEventDialogSubtype, MngFormFieldEventTypeEnum, MngFormlyFieldAutocompleteComponent, MngFormlyFieldDropdownComponent, MngFormlyFieldFieldsetComponent, MngFormlyFieldInputComponent, MngFormlyFieldLookupDialogComponent, MngFormlyFieldTableDialogFormComponent, MngFormlyFieldTableDialogMultiselectComponent, MngFormlyFieldTabsComponent, MngFormlyFieldWrapperComponent, MngFormlyTableWrapperComponent, MngI18nPropertyPipe, MngLinkFormatterPipe, MngMainLayoutComponent, MngMainLayoutComponentService, MngMenuComponent, MngMenuItemComponent, MngNavigationService, MngTableCellClickEvent, MngTableColumnFilterComponent, MngTableColumnValueComponent, MngTableComponent, MngTableLoadEvent, MngTableReloadEvent, MngTableviewComponent, MngTableviewRouteComponent, MngTemplateDirective, MngTopbarComponent, MngViewContainerComponentService, ModelDescriptor, ModelUtil, NotificationUtil, ObjectSerializer, RouteBuilder, RouteDataBuilder, RoutesBuilder, TableDataProvider, TableDescriptor, TableviewDataProvider, TableviewDescriptor, TypeName, TypeUtil, enumNameDecoratorPropertyName, enumsMapBase, formlyTypesConfig, formlyWrappersConfig, getEmailValidationMessage, getFormlyValidationMessages, getMaxLengthValidationMessage, getMinLengthValidationMessage, getRequiredValidationMessage, getTextPatternValidationMessage, mngConfigJsonAppInitializerProvider, mngConfigurationServiceProvider, mngFormlyConfigProvider, primeNgModules, typeMapBase, typeNameDecoratorPropertyName };
|
|
8857
8871
|
//# sourceMappingURL=mediusinc-mng-commons.mjs.map
|