@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';
|
|
@@ -4471,17 +4471,13 @@ class MngConfigurationService {
|
|
|
4471
4471
|
MngConfigurationService._instance = null;
|
|
4472
4472
|
|
|
4473
4473
|
class MngCommonsService {
|
|
4474
|
-
constructor(router, primengConfig, translate, titleService,
|
|
4474
|
+
constructor(router, primengConfig, translate, titleService, moduleConfig, localStorage) {
|
|
4475
4475
|
this.router = router;
|
|
4476
4476
|
this.primengConfig = primengConfig;
|
|
4477
4477
|
this.translate = translate;
|
|
4478
4478
|
this.titleService = titleService;
|
|
4479
|
-
this.configurationService = configurationService;
|
|
4480
4479
|
this.moduleConfig = moduleConfig;
|
|
4481
4480
|
this.localStorage = localStorage;
|
|
4482
|
-
this.commonsInitializers = commonsInitializers;
|
|
4483
|
-
// internal
|
|
4484
|
-
this.isInitialized = false;
|
|
4485
4481
|
// menu
|
|
4486
4482
|
this._menuMode = 'sidebar';
|
|
4487
4483
|
this._menuModeSubject = new BehaviorSubject(this._menuMode);
|
|
@@ -4608,70 +4604,54 @@ class MngCommonsService {
|
|
|
4608
4604
|
get user$() {
|
|
4609
4605
|
return this.userSubject.asObservable();
|
|
4610
4606
|
}
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
this.
|
|
4657
|
-
this.
|
|
4658
|
-
|
|
4659
|
-
this.router.events
|
|
4660
|
-
.pipe(
|
|
4661
|
-
// Filter the NavigationEnd events as the breadcrumb is updated only when the route reaches its end
|
|
4662
|
-
filter(event => event instanceof NavigationEnd))
|
|
4663
|
-
.subscribe(() => {
|
|
4664
|
-
this.updateBreadcrumbs();
|
|
4665
|
-
this.setPageTitle();
|
|
4666
|
-
});
|
|
4667
|
-
this.translate.onLangChange.subscribe(() => {
|
|
4668
|
-
this.updateBreadcrumbs();
|
|
4669
|
-
this.setPageTitle();
|
|
4670
|
-
});
|
|
4671
|
-
console.debug(`@mediusinc/mng-commons initialization complete.`);
|
|
4672
|
-
return true;
|
|
4673
|
-
}));
|
|
4674
|
-
this.isInitialized = true;
|
|
4607
|
+
reset() {
|
|
4608
|
+
this._menuMode = this.moduleConfig?.menu?.mode ?? 'sidebar';
|
|
4609
|
+
this._menuModeSubject.next(this._menuMode);
|
|
4610
|
+
this._menuItems = this.moduleConfig?.menu?.menuItems ?? [];
|
|
4611
|
+
this._menuPinEnabled = this.moduleConfig?.menu?.pinEnabled ?? false;
|
|
4612
|
+
// visual
|
|
4613
|
+
this._colorScheme = this.moduleConfig?.app?.colorScheme ?? 'light';
|
|
4614
|
+
// ripple
|
|
4615
|
+
this.primengConfig.ripple = true;
|
|
4616
|
+
this.primengConfig.filterMatchModeOptions = {
|
|
4617
|
+
text: [
|
|
4618
|
+
FilterDescriptor.MatchModeEnum.Contains,
|
|
4619
|
+
FilterDescriptor.MatchModeEnum.Equals,
|
|
4620
|
+
FilterDescriptor.MatchModeEnum.NotEquals,
|
|
4621
|
+
FilterDescriptor.MatchModeEnum.StartsWith,
|
|
4622
|
+
FilterDescriptor.MatchModeEnum.EndsWith
|
|
4623
|
+
],
|
|
4624
|
+
numeric: [
|
|
4625
|
+
FilterDescriptor.MatchModeEnum.Equals,
|
|
4626
|
+
FilterDescriptor.MatchModeEnum.NotEquals,
|
|
4627
|
+
FilterDescriptor.MatchModeEnum.LessThanOrEqualTo,
|
|
4628
|
+
FilterDescriptor.MatchModeEnum.GreaterThanOrEqualTo
|
|
4629
|
+
],
|
|
4630
|
+
date: [
|
|
4631
|
+
FilterDescriptor.MatchModeEnum.DateIs,
|
|
4632
|
+
FilterDescriptor.MatchModeEnum.DateIsNot,
|
|
4633
|
+
FilterDescriptor.MatchModeEnum.DateBefore,
|
|
4634
|
+
FilterDescriptor.MatchModeEnum.DateAfter
|
|
4635
|
+
]
|
|
4636
|
+
};
|
|
4637
|
+
// translate
|
|
4638
|
+
this.translate.langs = this.appLanguages;
|
|
4639
|
+
this.translate.use(this.appLanguage);
|
|
4640
|
+
this.translate.get('mngPrime').subscribe(value => this.primengConfig.setTranslation(value));
|
|
4641
|
+
this.routerEventsSubscription?.unsubscribe();
|
|
4642
|
+
this.routerEventsSubscription = this.router.events
|
|
4643
|
+
.pipe(
|
|
4644
|
+
// Filter the NavigationEnd events as the breadcrumb is updated only when the route reaches its end
|
|
4645
|
+
filter(event => event instanceof NavigationEnd))
|
|
4646
|
+
.subscribe(() => {
|
|
4647
|
+
this.updateBreadcrumbs();
|
|
4648
|
+
this.setPageTitle();
|
|
4649
|
+
});
|
|
4650
|
+
this.translateLangChangeSubscription?.unsubscribe();
|
|
4651
|
+
this.translateLangChangeSubscription = this.translate.onLangChange.subscribe(() => {
|
|
4652
|
+
this.updateBreadcrumbs();
|
|
4653
|
+
this.setPageTitle();
|
|
4654
|
+
});
|
|
4675
4655
|
}
|
|
4676
4656
|
// MENU actions
|
|
4677
4657
|
menuChangeActiveKey(key) {
|
|
@@ -4811,21 +4791,16 @@ class MngCommonsService {
|
|
|
4811
4791
|
return titlePieces.join(' - ');
|
|
4812
4792
|
}
|
|
4813
4793
|
}
|
|
4814
|
-
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:
|
|
4794
|
+
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 });
|
|
4815
4795
|
MngCommonsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService });
|
|
4816
4796
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService, decorators: [{
|
|
4817
4797
|
type: Injectable
|
|
4818
|
-
}], ctorParameters: function () { return [{ type: i1.Router }, { type: i2.PrimeNGConfig }, { type: i1$1.TranslateService }, { type: i4$1.Title }, { type:
|
|
4798
|
+
}], ctorParameters: function () { return [{ type: i1.Router }, { type: i2.PrimeNGConfig }, { type: i1$1.TranslateService }, { type: i4$1.Title }, { type: undefined, decorators: [{
|
|
4819
4799
|
type: Inject,
|
|
4820
4800
|
args: [MNG_MODULE_CONFIG_IT]
|
|
4821
4801
|
}] }, { type: Storage, decorators: [{
|
|
4822
4802
|
type: Inject,
|
|
4823
4803
|
args: [MNG_BROWSER_STORAGE_IT]
|
|
4824
|
-
}] }, { type: undefined, decorators: [{
|
|
4825
|
-
type: Inject,
|
|
4826
|
-
args: [MNG_COMMONS_INITIALIZER_IT]
|
|
4827
|
-
}, {
|
|
4828
|
-
type: Optional
|
|
4829
4804
|
}] }]; } });
|
|
4830
4805
|
|
|
4831
4806
|
/**
|
|
@@ -7564,10 +7539,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
7564
7539
|
args: ['window:resize', ['$event']]
|
|
7565
7540
|
}] } });
|
|
7566
7541
|
|
|
7567
|
-
function mngCommonsInitializerProvider(
|
|
7568
|
-
return () =>
|
|
7542
|
+
function mngCommonsInitializerProvider(mngCommonsInit) {
|
|
7543
|
+
return () => mngCommonsInit.initialize();
|
|
7569
7544
|
}
|
|
7570
7545
|
|
|
7546
|
+
class MngCommonsInitService {
|
|
7547
|
+
constructor(translate, configurationService, mngCommons, commonsInitializers) {
|
|
7548
|
+
this.translate = translate;
|
|
7549
|
+
this.configurationService = configurationService;
|
|
7550
|
+
this.mngCommons = mngCommons;
|
|
7551
|
+
this.commonsInitializers = commonsInitializers;
|
|
7552
|
+
this.isInitialized = false;
|
|
7553
|
+
}
|
|
7554
|
+
initialize() {
|
|
7555
|
+
if (this.isInitialized) {
|
|
7556
|
+
return of(void 0);
|
|
7557
|
+
}
|
|
7558
|
+
console.debug(`Initializing @mediusinc/mng-commons.`);
|
|
7559
|
+
return this.configurationService.loadJsonSources().pipe(mergeMap$1(() => {
|
|
7560
|
+
if (this.commonsInitializers) {
|
|
7561
|
+
console.debug(`Module initializers for @mediusinc/mng-commons.`);
|
|
7562
|
+
return combineLatest(this.commonsInitializers.map(ci => ci())).pipe(map(res => res));
|
|
7563
|
+
}
|
|
7564
|
+
else {
|
|
7565
|
+
return of(true);
|
|
7566
|
+
}
|
|
7567
|
+
}), map(() => this.mngCommons.reset()));
|
|
7568
|
+
this.isInitialized = true;
|
|
7569
|
+
}
|
|
7570
|
+
}
|
|
7571
|
+
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 });
|
|
7572
|
+
MngCommonsInitService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsInitService });
|
|
7573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsInitService, decorators: [{
|
|
7574
|
+
type: Injectable
|
|
7575
|
+
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }, { type: MngConfigurationService }, { type: MngCommonsService }, { type: undefined, decorators: [{
|
|
7576
|
+
type: Inject,
|
|
7577
|
+
args: [MNG_COMMONS_INITIALIZER_IT]
|
|
7578
|
+
}, {
|
|
7579
|
+
type: Optional
|
|
7580
|
+
}] }]; } });
|
|
7581
|
+
|
|
7571
7582
|
const mngConfigurationServiceProvider = (httpClient, moduleConfig) => {
|
|
7572
7583
|
const service = MngConfigurationService.init(httpClient);
|
|
7573
7584
|
if (moduleConfig?.configuration?.projectEnvironment) {
|
|
@@ -7871,6 +7882,7 @@ class MngCommonsModule {
|
|
|
7871
7882
|
DialogService,
|
|
7872
7883
|
MessageService,
|
|
7873
7884
|
ConfirmationService,
|
|
7885
|
+
MngCommonsInitService,
|
|
7874
7886
|
MngActionExecutorService,
|
|
7875
7887
|
MngNavigationService,
|
|
7876
7888
|
MngCommonsService,
|
|
@@ -7900,7 +7912,7 @@ class MngCommonsModule {
|
|
|
7900
7912
|
{
|
|
7901
7913
|
provide: APP_INITIALIZER,
|
|
7902
7914
|
useFactory: mngCommonsInitializerProvider,
|
|
7903
|
-
deps: [
|
|
7915
|
+
deps: [MngCommonsInitService],
|
|
7904
7916
|
multi: true
|
|
7905
7917
|
},
|
|
7906
7918
|
{
|
|
@@ -8735,5 +8747,5 @@ class RouteDataBuilder {
|
|
|
8735
8747
|
* Generated bundle index. Do not edit.
|
|
8736
8748
|
*/
|
|
8737
8749
|
|
|
8738
|
-
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,
|
|
8750
|
+
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 };
|
|
8739
8751
|
//# sourceMappingURL=mediusinc-mng-commons.mjs.map
|