@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';
@@ -3829,6 +3829,8 @@ const MNG_BROWSER_STORAGE_IT = new InjectionToken('Browser storage', {
3829
3829
  factory: () => localStorage
3830
3830
  });
3831
3831
 
3832
+ const MNG_COMMONS_INITIALIZER_IT = new InjectionToken('MNG Commons Initializer');
3833
+
3832
3834
  const ACTION_EDITOR_DIALOG_COMPONENT_SETTING = new InjectionToken('ACTION_EDITOR_DIALOG_COMPONENT_SETTING');
3833
3835
 
3834
3836
  const MNG_MODULE_CONFIG_IT = new InjectionToken('MngModuleConfig');
@@ -4403,7 +4405,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
4403
4405
  class MngConfigurationService {
4404
4406
  constructor(http) {
4405
4407
  this.http = http;
4406
- this.jsonEnvironments = [];
4408
+ this.jsonSources = [];
4407
4409
  this.configuration = Object.assign({}, this.projectEnvironment);
4408
4410
  }
4409
4411
  static init(httpClient) {
@@ -4430,23 +4432,57 @@ class MngConfigurationService {
4430
4432
  * Adds new config source from JSON file.
4431
4433
  * @param url Url to JSON file.
4432
4434
  */
4433
- addJsonSource(url = this.projectEnvironment.configurationJsonSource) {
4435
+ addJsonSource(url = this.projectEnvironment.configurationJsonSource, load = false) {
4434
4436
  if (!url) {
4435
- console.warn('No path to configuration file specified. Setting default.');
4437
+ console.debug('No path to configuration file specified. Setting default.');
4436
4438
  url = 'assets/config/env{{environment}}.json';
4437
4439
  }
4438
- const envName = this.projectEnvironment.name || (this.projectEnvironment.production ? 'prod' : 'dev');
4439
- url = url.replace('{{environment}}', '.' + envName);
4440
- return this.http.get(url).pipe(catchError(err => {
4441
- console.warn('Error loading configuration file:' + err.message + '. Falling back to env.json');
4442
- const pathSegments = url.split('/');
4443
- pathSegments[pathSegments.length - 1] = 'env.json';
4444
- return this.http.get(pathSegments.join('/'));
4445
- }), map(res => {
4446
- this.jsonEnvironments.push(res);
4447
- this.mergeConfigs();
4448
- return true;
4449
- }));
4440
+ const sourceInfo = {
4441
+ url: url,
4442
+ isEnvironment: false,
4443
+ isLoaded: false
4444
+ };
4445
+ this.jsonSources.push(sourceInfo);
4446
+ console.debug(`Added JSON source: ${url}`);
4447
+ if (load) {
4448
+ return this.loadJsonSources();
4449
+ }
4450
+ else {
4451
+ return of(true);
4452
+ }
4453
+ }
4454
+ loadJsonSources() {
4455
+ return combineLatest(this.jsonSources
4456
+ .filter(source => !source.isLoaded)
4457
+ .map(sourceInfo => {
4458
+ var _a;
4459
+ let url = sourceInfo.url;
4460
+ if (url.indexOf('{{environment}}') >= 0) {
4461
+ sourceInfo.isEnvironment = true;
4462
+ sourceInfo.environment = this.projectEnvironment.name || (this.projectEnvironment.production ? 'prod' : 'dev');
4463
+ url = url.replace('{{environment}}', '.' + sourceInfo.environment);
4464
+ }
4465
+ console.debug(`Loading JSON source: ${sourceInfo.url} with env ${(_a = sourceInfo.environment) !== null && _a !== void 0 ? _a : '/'}`);
4466
+ return this.http.get(url).pipe(catchError((err) => {
4467
+ var _a;
4468
+ if (sourceInfo.isEnvironment) {
4469
+ const noEnvUrl = sourceInfo.url.replace('{{environment}}', '');
4470
+ sourceInfo.environment = null;
4471
+ console.debug(`Reloading JSON source: ${sourceInfo.url} with env ${(_a = sourceInfo.environment) !== null && _a !== void 0 ? _a : '/'}`);
4472
+ return this.http.get(noEnvUrl);
4473
+ }
4474
+ else {
4475
+ const message = `Configuration file ${url} not loaded (${err.status}): ${err.message}.`;
4476
+ console.error(message);
4477
+ return throwError(() => new Error(message));
4478
+ }
4479
+ }), map(configuration => {
4480
+ sourceInfo.configuration = configuration;
4481
+ sourceInfo.isLoaded = true;
4482
+ console.debug(`JSON source loaded: ${sourceInfo.url}`);
4483
+ return true;
4484
+ }));
4485
+ })).pipe(map(sourceResults => sourceResults.every(sr => sr)), tap(sourceResults => this.mergeConfigs()));
4450
4486
  }
4451
4487
  /**
4452
4488
  * Get configuration.
@@ -4466,9 +4502,10 @@ class MngConfigurationService {
4466
4502
  */
4467
4503
  mergeConfigs() {
4468
4504
  let config = Object.assign({}, this.projectEnvironment);
4469
- if (this.jsonEnvironments.length) {
4470
- for (const je of this.jsonEnvironments) {
4471
- config = Object.assign(Object.assign({}, config), je);
4505
+ const jsonConfigs = this.jsonSources.filter(source => source.isLoaded && typeof source.configuration === 'object').map(source => source.configuration);
4506
+ if (jsonConfigs.length) {
4507
+ for (const jsonConfig of jsonConfigs) {
4508
+ config = Object.assign(Object.assign({}, config), jsonConfig);
4472
4509
  }
4473
4510
  }
4474
4511
  this.configuration = config;
@@ -4477,7 +4514,7 @@ class MngConfigurationService {
4477
4514
  MngConfigurationService._instance = null;
4478
4515
 
4479
4516
  class MngCommonsService {
4480
- constructor(router, primengConfig, translate, titleService, configurationService, moduleConfig, localStorage) {
4517
+ constructor(router, primengConfig, translate, titleService, configurationService, moduleConfig, localStorage, commonsInitializers) {
4481
4518
  this.router = router;
4482
4519
  this.primengConfig = primengConfig;
4483
4520
  this.translate = translate;
@@ -4485,6 +4522,9 @@ class MngCommonsService {
4485
4522
  this.configurationService = configurationService;
4486
4523
  this.moduleConfig = moduleConfig;
4487
4524
  this.localStorage = localStorage;
4525
+ this.commonsInitializers = commonsInitializers;
4526
+ // internal
4527
+ this.isInitialized = false;
4488
4528
  // menu
4489
4529
  this._menuMode = 'sidebar';
4490
4530
  this._menuModeSubject = new BehaviorSubject(this._menuMode);
@@ -4620,53 +4660,70 @@ class MngCommonsService {
4620
4660
  return this.userSubject.asObservable();
4621
4661
  }
4622
4662
  initialize() {
4623
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
4624
- // menu
4625
- 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';
4626
- this._menuModeSubject.next(this._menuMode);
4627
- 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 : [];
4628
- 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;
4629
- // visual
4630
- 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';
4631
- // ripple
4632
- this.primengConfig.ripple = true;
4633
- this.primengConfig.filterMatchModeOptions = {
4634
- text: [
4635
- FilterDescriptor.MatchModeEnum.Contains,
4636
- FilterDescriptor.MatchModeEnum.Equals,
4637
- FilterDescriptor.MatchModeEnum.NotEquals,
4638
- FilterDescriptor.MatchModeEnum.StartsWith,
4639
- FilterDescriptor.MatchModeEnum.EndsWith
4640
- ],
4641
- numeric: [
4642
- FilterDescriptor.MatchModeEnum.Equals,
4643
- FilterDescriptor.MatchModeEnum.NotEquals,
4644
- FilterDescriptor.MatchModeEnum.LessThanOrEqualTo,
4645
- FilterDescriptor.MatchModeEnum.GreaterThanOrEqualTo
4646
- ],
4647
- date: [
4648
- FilterDescriptor.MatchModeEnum.DateIs,
4649
- FilterDescriptor.MatchModeEnum.DateIsNot,
4650
- FilterDescriptor.MatchModeEnum.DateBefore,
4651
- FilterDescriptor.MatchModeEnum.DateAfter
4652
- ]
4653
- };
4654
- // translate
4655
- this.translate.langs = this.appLanguages;
4656
- this.translate.use(this.appLanguage);
4657
- this.translate.get('mngPrime').subscribe(value => this.primengConfig.setTranslation(value));
4658
- this.router.events
4659
- .pipe(
4660
- // Filter the NavigationEnd events as the breadcrumb is updated only when the route reaches its end
4661
- filter(event => event instanceof NavigationEnd))
4662
- .subscribe(() => {
4663
- this.updateBreadcrumbs();
4664
- this.setPageTitle();
4665
- });
4666
- this.translate.onLangChange.subscribe(() => {
4667
- this.updateBreadcrumbs();
4668
- this.setPageTitle();
4669
- });
4663
+ if (this.isInitialized) {
4664
+ return of(false);
4665
+ }
4666
+ console.debug(`Initializing @mediusinc/mng-commons.`);
4667
+ return this.configurationService.loadJsonSources().pipe(mergeMap$1(jsonSourcesRes => {
4668
+ if (this.commonsInitializers) {
4669
+ console.debug(`Initializing @mediusinc/mng-commons initializers.`);
4670
+ return combineLatest(this.commonsInitializers.map(ci => ci())).pipe(map(res => res));
4671
+ }
4672
+ else {
4673
+ return of(true);
4674
+ }
4675
+ }), map(() => {
4676
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
4677
+ // menu
4678
+ 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';
4679
+ this._menuModeSubject.next(this._menuMode);
4680
+ 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 : [];
4681
+ 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;
4682
+ // visual
4683
+ 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';
4684
+ // ripple
4685
+ this.primengConfig.ripple = true;
4686
+ this.primengConfig.filterMatchModeOptions = {
4687
+ text: [
4688
+ FilterDescriptor.MatchModeEnum.Contains,
4689
+ FilterDescriptor.MatchModeEnum.Equals,
4690
+ FilterDescriptor.MatchModeEnum.NotEquals,
4691
+ FilterDescriptor.MatchModeEnum.StartsWith,
4692
+ FilterDescriptor.MatchModeEnum.EndsWith
4693
+ ],
4694
+ numeric: [
4695
+ FilterDescriptor.MatchModeEnum.Equals,
4696
+ FilterDescriptor.MatchModeEnum.NotEquals,
4697
+ FilterDescriptor.MatchModeEnum.LessThanOrEqualTo,
4698
+ FilterDescriptor.MatchModeEnum.GreaterThanOrEqualTo
4699
+ ],
4700
+ date: [
4701
+ FilterDescriptor.MatchModeEnum.DateIs,
4702
+ FilterDescriptor.MatchModeEnum.DateIsNot,
4703
+ FilterDescriptor.MatchModeEnum.DateBefore,
4704
+ FilterDescriptor.MatchModeEnum.DateAfter
4705
+ ]
4706
+ };
4707
+ // translate
4708
+ this.translate.langs = this.appLanguages;
4709
+ this.translate.use(this.appLanguage);
4710
+ this.translate.get('mngPrime').subscribe(value => this.primengConfig.setTranslation(value));
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;
4670
4727
  }
4671
4728
  // MENU actions
4672
4729
  menuChangeActiveKey(key) {
@@ -4806,7 +4863,7 @@ class MngCommonsService {
4806
4863
  return titlePieces.join(' - ');
4807
4864
  }
4808
4865
  }
4809
- 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 });
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: MngConfigurationService }, { token: MNG_MODULE_CONFIG_IT }, { token: MNG_BROWSER_STORAGE_IT }, { token: MNG_COMMONS_INITIALIZER_IT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4810
4867
  MngCommonsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService });
4811
4868
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService, decorators: [{
4812
4869
  type: Injectable
@@ -4817,6 +4874,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
4817
4874
  }] }, { type: Storage, decorators: [{
4818
4875
  type: Inject,
4819
4876
  args: [MNG_BROWSER_STORAGE_IT]
4877
+ }] }, { type: undefined, decorators: [{
4878
+ type: Inject,
4879
+ args: [MNG_COMMONS_INITIALIZER_IT]
4880
+ }, {
4881
+ type: Optional
4820
4882
  }] }];
4821
4883
  } });
4822
4884
 
@@ -7622,12 +7684,21 @@ const mngConfigurationServiceProvider = (httpClient, moduleConfig) => {
7622
7684
  };
7623
7685
  function mngConfigJsonAppInitializerProvider(configService, moduleConfig) {
7624
7686
  return () => {
7625
- var _a, _b, _c;
7687
+ var _a, _b;
7626
7688
  if ((_a = moduleConfig === null || moduleConfig === void 0 ? void 0 : moduleConfig.configuration) === null || _a === void 0 ? void 0 : _a.skipJsonSourceInit) {
7627
7689
  return of(false);
7628
7690
  }
7629
7691
  else {
7630
- return configService.addJsonSource((_c = (_b = moduleConfig === null || moduleConfig === void 0 ? void 0 : moduleConfig.configuration) === null || _b === void 0 ? void 0 : _b.jsonSource) !== null && _c !== void 0 ? _c : undefined);
7692
+ const jsonSource = (_b = moduleConfig === null || moduleConfig === void 0 ? void 0 : moduleConfig.configuration) === null || _b === void 0 ? void 0 : _b.jsonSource;
7693
+ if (!jsonSource) {
7694
+ return configService.addJsonSource();
7695
+ }
7696
+ else if (Array.isArray(jsonSource)) {
7697
+ return combineLatest(jsonSource.map(source => configService.addJsonSource(source))).pipe(map(sourcesRes => sourcesRes.every(s => s)));
7698
+ }
7699
+ else {
7700
+ return configService.addJsonSource(jsonSource);
7701
+ }
7631
7702
  }
7632
7703
  };
7633
7704
  }
@@ -8782,5 +8853,5 @@ class RouteDataBuilder {
8782
8853
  * Generated bundle index. Do not edit.
8783
8854
  */
8784
8855
 
8785
- 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 };
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, mngCommonsInitializerProvider, mngConfigJsonAppInitializerProvider, mngConfigurationServiceProvider, mngFormlyConfigProvider, primeNgModules, typeMapBase, typeNameDecoratorPropertyName };
8786
8857
  //# sourceMappingURL=mediusinc-mng-commons.mjs.map