@mediusinc/mng-commons 0.4.4 → 0.4.5

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.
@@ -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, EventEmitter, Component, ChangeDetectionStrategy, Optional, HostBinding, Input, Output, Directive, ContentChildren, ViewChild, forwardRef, ViewChildren, HostListener, APP_INITIALIZER, NgModule } from '@angular/core';
5
+ import { InjectionToken, Injectable, Pipe, Inject, Optional, EventEmitter, Component, ChangeDetectionStrategy, 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, BehaviorSubject, ReplaySubject, switchMap, distinctUntilChanged, combineLatest } from 'rxjs';
75
+ import { throwError, of, Subject, Observable, from, combineLatest, tap, BehaviorSubject, ReplaySubject, mergeMap as mergeMap$1, switchMap, distinctUntilChanged } 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';
@@ -3799,6 +3799,8 @@ const MNG_BROWSER_STORAGE_IT = new InjectionToken('Browser storage', {
3799
3799
  factory: () => localStorage
3800
3800
  });
3801
3801
 
3802
+ const MNG_COMMONS_INITIALIZER_IT = new InjectionToken('MNG Commons Initializer');
3803
+
3802
3804
  const ACTION_EDITOR_DIALOG_COMPONENT_SETTING = new InjectionToken('ACTION_EDITOR_DIALOG_COMPONENT_SETTING');
3803
3805
 
3804
3806
  const MNG_MODULE_CONFIG_IT = new InjectionToken('MngModuleConfig');
@@ -4362,7 +4364,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
4362
4364
  class MngConfigurationService {
4363
4365
  constructor(http) {
4364
4366
  this.http = http;
4365
- this.jsonEnvironments = [];
4367
+ this.jsonSources = [];
4366
4368
  this.configuration = { ...this.projectEnvironment };
4367
4369
  }
4368
4370
  static init(httpClient) {
@@ -4389,23 +4391,55 @@ class MngConfigurationService {
4389
4391
  * Adds new config source from JSON file.
4390
4392
  * @param url Url to JSON file.
4391
4393
  */
4392
- addJsonSource(url = this.projectEnvironment.configurationJsonSource) {
4394
+ addJsonSource(url = this.projectEnvironment.configurationJsonSource, load = false) {
4393
4395
  if (!url) {
4394
- console.warn('No path to configuration file specified. Setting default.');
4396
+ console.debug('No path to configuration file specified. Setting default.');
4395
4397
  url = 'assets/config/env{{environment}}.json';
4396
4398
  }
4397
- const envName = this.projectEnvironment.name || (this.projectEnvironment.production ? 'prod' : 'dev');
4398
- url = url.replace('{{environment}}', '.' + envName);
4399
- return this.http.get(url).pipe(catchError(err => {
4400
- console.warn('Error loading configuration file:' + err.message + '. Falling back to env.json');
4401
- const pathSegments = url.split('/');
4402
- pathSegments[pathSegments.length - 1] = 'env.json';
4403
- return this.http.get(pathSegments.join('/'));
4404
- }), map(res => {
4405
- this.jsonEnvironments.push(res);
4406
- this.mergeConfigs();
4407
- return true;
4408
- }));
4399
+ const sourceInfo = {
4400
+ url: url,
4401
+ isEnvironment: false,
4402
+ isLoaded: false
4403
+ };
4404
+ this.jsonSources.push(sourceInfo);
4405
+ console.debug(`Added JSON source: ${url}`);
4406
+ if (load) {
4407
+ return this.loadJsonSources();
4408
+ }
4409
+ else {
4410
+ return of(true);
4411
+ }
4412
+ }
4413
+ loadJsonSources() {
4414
+ return combineLatest(this.jsonSources
4415
+ .filter(source => !source.isLoaded)
4416
+ .map(sourceInfo => {
4417
+ let url = sourceInfo.url;
4418
+ if (url.indexOf('{{environment}}') >= 0) {
4419
+ sourceInfo.isEnvironment = true;
4420
+ sourceInfo.environment = this.projectEnvironment.name || (this.projectEnvironment.production ? 'prod' : 'dev');
4421
+ url = url.replace('{{environment}}', '.' + sourceInfo.environment);
4422
+ }
4423
+ console.debug(`Loading JSON source: ${sourceInfo.url} with env ${sourceInfo.environment ?? '/'}`);
4424
+ return this.http.get(url).pipe(catchError((err) => {
4425
+ if (sourceInfo.isEnvironment) {
4426
+ const noEnvUrl = sourceInfo.url.replace('{{environment}}', '');
4427
+ sourceInfo.environment = null;
4428
+ console.debug(`Reloading JSON source: ${sourceInfo.url} with env ${sourceInfo.environment ?? '/'}`);
4429
+ return this.http.get(noEnvUrl);
4430
+ }
4431
+ else {
4432
+ const message = `Configuration file ${url} not loaded (${err.status}): ${err.message}.`;
4433
+ console.error(message);
4434
+ return throwError(() => new Error(message));
4435
+ }
4436
+ }), map(configuration => {
4437
+ sourceInfo.configuration = configuration;
4438
+ sourceInfo.isLoaded = true;
4439
+ console.debug(`JSON source loaded: ${sourceInfo.url}`);
4440
+ return true;
4441
+ }));
4442
+ })).pipe(map(sourceResults => sourceResults.every(sr => sr)), tap(sourceResults => this.mergeConfigs()));
4409
4443
  }
4410
4444
  /**
4411
4445
  * Get configuration.
@@ -4425,9 +4459,10 @@ class MngConfigurationService {
4425
4459
  */
4426
4460
  mergeConfigs() {
4427
4461
  let config = { ...this.projectEnvironment };
4428
- if (this.jsonEnvironments.length) {
4429
- for (const je of this.jsonEnvironments) {
4430
- config = { ...config, ...je };
4462
+ const jsonConfigs = this.jsonSources.filter(source => source.isLoaded && typeof source.configuration === 'object').map(source => source.configuration);
4463
+ if (jsonConfigs.length) {
4464
+ for (const jsonConfig of jsonConfigs) {
4465
+ config = { ...config, ...jsonConfig };
4431
4466
  }
4432
4467
  }
4433
4468
  this.configuration = config;
@@ -4436,7 +4471,7 @@ class MngConfigurationService {
4436
4471
  MngConfigurationService._instance = null;
4437
4472
 
4438
4473
  class MngCommonsService {
4439
- constructor(router, primengConfig, translate, titleService, configurationService, moduleConfig, localStorage) {
4474
+ constructor(router, primengConfig, translate, titleService, configurationService, moduleConfig, localStorage, commonsInitializers) {
4440
4475
  this.router = router;
4441
4476
  this.primengConfig = primengConfig;
4442
4477
  this.translate = translate;
@@ -4444,6 +4479,9 @@ class MngCommonsService {
4444
4479
  this.configurationService = configurationService;
4445
4480
  this.moduleConfig = moduleConfig;
4446
4481
  this.localStorage = localStorage;
4482
+ this.commonsInitializers = commonsInitializers;
4483
+ // internal
4484
+ this.isInitialized = false;
4447
4485
  // menu
4448
4486
  this._menuMode = 'sidebar';
4449
4487
  this._menuModeSubject = new BehaviorSubject(this._menuMode);
@@ -4571,52 +4609,69 @@ class MngCommonsService {
4571
4609
  return this.userSubject.asObservable();
4572
4610
  }
4573
4611
  initialize() {
4574
- // menu
4575
- this._menuMode = this.moduleConfig?.menu?.mode ?? 'sidebar';
4576
- this._menuModeSubject.next(this._menuMode);
4577
- this._menuItems = this.moduleConfig?.menu?.menuItems ?? [];
4578
- this._menuPinEnabled = this.moduleConfig?.menu?.pinEnabled ?? false;
4579
- // visual
4580
- this._colorScheme = this.moduleConfig?.app?.colorScheme ?? 'light';
4581
- // ripple
4582
- this.primengConfig.ripple = true;
4583
- this.primengConfig.filterMatchModeOptions = {
4584
- text: [
4585
- FilterDescriptor.MatchModeEnum.Contains,
4586
- FilterDescriptor.MatchModeEnum.Equals,
4587
- FilterDescriptor.MatchModeEnum.NotEquals,
4588
- FilterDescriptor.MatchModeEnum.StartsWith,
4589
- FilterDescriptor.MatchModeEnum.EndsWith
4590
- ],
4591
- numeric: [
4592
- FilterDescriptor.MatchModeEnum.Equals,
4593
- FilterDescriptor.MatchModeEnum.NotEquals,
4594
- FilterDescriptor.MatchModeEnum.LessThanOrEqualTo,
4595
- FilterDescriptor.MatchModeEnum.GreaterThanOrEqualTo
4596
- ],
4597
- date: [
4598
- FilterDescriptor.MatchModeEnum.DateIs,
4599
- FilterDescriptor.MatchModeEnum.DateIsNot,
4600
- FilterDescriptor.MatchModeEnum.DateBefore,
4601
- FilterDescriptor.MatchModeEnum.DateAfter
4602
- ]
4603
- };
4604
- // translate
4605
- this.translate.langs = this.appLanguages;
4606
- this.translate.use(this.appLanguage);
4607
- this.translate.get('mngPrime').subscribe(value => this.primengConfig.setTranslation(value));
4608
- this.router.events
4609
- .pipe(
4610
- // Filter the NavigationEnd events as the breadcrumb is updated only when the route reaches its end
4611
- filter(event => event instanceof NavigationEnd))
4612
- .subscribe(() => {
4613
- this.updateBreadcrumbs();
4614
- this.setPageTitle();
4615
- });
4616
- this.translate.onLangChange.subscribe(() => {
4617
- this.updateBreadcrumbs();
4618
- this.setPageTitle();
4619
- });
4612
+ if (this.isInitialized) {
4613
+ return of(false);
4614
+ }
4615
+ console.debug(`Initializing @mediusinc/mng-commons.`);
4616
+ return this.configurationService.loadJsonSources().pipe(mergeMap$1(jsonSourcesRes => {
4617
+ if (this.commonsInitializers) {
4618
+ console.debug(`Initializing @mediusinc/mng-commons initializers.`);
4619
+ return combineLatest(this.commonsInitializers.map(ci => ci())).pipe(map(res => res));
4620
+ }
4621
+ else {
4622
+ return of(true);
4623
+ }
4624
+ }), map(() => {
4625
+ // menu
4626
+ this._menuMode = this.moduleConfig?.menu?.mode ?? 'sidebar';
4627
+ this._menuModeSubject.next(this._menuMode);
4628
+ this._menuItems = this.moduleConfig?.menu?.menuItems ?? [];
4629
+ this._menuPinEnabled = this.moduleConfig?.menu?.pinEnabled ?? false;
4630
+ // visual
4631
+ this._colorScheme = this.moduleConfig?.app?.colorScheme ?? 'light';
4632
+ // ripple
4633
+ this.primengConfig.ripple = true;
4634
+ this.primengConfig.filterMatchModeOptions = {
4635
+ text: [
4636
+ FilterDescriptor.MatchModeEnum.Contains,
4637
+ FilterDescriptor.MatchModeEnum.Equals,
4638
+ FilterDescriptor.MatchModeEnum.NotEquals,
4639
+ FilterDescriptor.MatchModeEnum.StartsWith,
4640
+ FilterDescriptor.MatchModeEnum.EndsWith
4641
+ ],
4642
+ numeric: [
4643
+ FilterDescriptor.MatchModeEnum.Equals,
4644
+ FilterDescriptor.MatchModeEnum.NotEquals,
4645
+ FilterDescriptor.MatchModeEnum.LessThanOrEqualTo,
4646
+ FilterDescriptor.MatchModeEnum.GreaterThanOrEqualTo
4647
+ ],
4648
+ date: [
4649
+ FilterDescriptor.MatchModeEnum.DateIs,
4650
+ FilterDescriptor.MatchModeEnum.DateIsNot,
4651
+ FilterDescriptor.MatchModeEnum.DateBefore,
4652
+ FilterDescriptor.MatchModeEnum.DateAfter
4653
+ ]
4654
+ };
4655
+ // translate
4656
+ this.translate.langs = this.appLanguages;
4657
+ this.translate.use(this.appLanguage);
4658
+ this.translate.get('mngPrime').subscribe(value => this.primengConfig.setTranslation(value));
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;
4620
4675
  }
4621
4676
  // MENU actions
4622
4677
  menuChangeActiveKey(key) {
@@ -4756,7 +4811,7 @@ class MngCommonsService {
4756
4811
  return titlePieces.join(' - ');
4757
4812
  }
4758
4813
  }
4759
- 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: MngConfigurationService }, { token: MNG_MODULE_CONFIG_IT }, { token: MNG_BROWSER_STORAGE_IT }], target: i0.ɵɵFactoryTarget.Injectable });
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: MngConfigurationService }, { token: MNG_MODULE_CONFIG_IT }, { token: MNG_BROWSER_STORAGE_IT }, { token: MNG_COMMONS_INITIALIZER_IT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4760
4815
  MngCommonsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService });
4761
4816
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService, decorators: [{
4762
4817
  type: Injectable
@@ -4766,6 +4821,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
4766
4821
  }] }, { type: Storage, decorators: [{
4767
4822
  type: Inject,
4768
4823
  args: [MNG_BROWSER_STORAGE_IT]
4824
+ }] }, { type: undefined, decorators: [{
4825
+ type: Inject,
4826
+ args: [MNG_COMMONS_INITIALIZER_IT]
4827
+ }, {
4828
+ type: Optional
4769
4829
  }] }]; } });
4770
4830
 
4771
4831
  /**
@@ -7521,7 +7581,16 @@ function mngConfigJsonAppInitializerProvider(configService, moduleConfig) {
7521
7581
  return of(false);
7522
7582
  }
7523
7583
  else {
7524
- return configService.addJsonSource(moduleConfig?.configuration?.jsonSource ?? undefined);
7584
+ const jsonSource = moduleConfig?.configuration?.jsonSource;
7585
+ if (!jsonSource) {
7586
+ return configService.addJsonSource();
7587
+ }
7588
+ else if (Array.isArray(jsonSource)) {
7589
+ return combineLatest(jsonSource.map(source => configService.addJsonSource(source))).pipe(map(sourcesRes => sourcesRes.every(s => s)));
7590
+ }
7591
+ else {
7592
+ return configService.addJsonSource(jsonSource);
7593
+ }
7525
7594
  }
7526
7595
  };
7527
7596
  }
@@ -8666,5 +8735,5 @@ class RouteDataBuilder {
8666
8735
  * Generated bundle index. Do not edit.
8667
8736
  */
8668
8737
 
8669
- export { 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_DROPDOWN_VALUE_ACCESSOR, 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, mngCommonsInitializerProvider, mngConfigJsonAppInitializerProvider, mngConfigurationServiceProvider, mngFormlyConfigProvider, primeNgModules, typeMapBase, typeNameDecoratorPropertyName };
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, mngCommonsInitializerProvider, mngConfigJsonAppInitializerProvider, mngConfigurationServiceProvider, mngFormlyConfigProvider, primeNgModules, typeMapBase, typeNameDecoratorPropertyName };
8670
8739
  //# sourceMappingURL=mediusinc-mng-commons.mjs.map