@mediusinc/mng-commons 0.4.3 → 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/config/models/mng-config.model.mjs +1 -1
- package/esm2020/lib/mng-commons.module.mjs +5 -3
- package/esm2020/lib/services/commons.service.mjs +9 -10
- package/esm2020/lib/services/configuration.service.mjs +53 -19
- 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/config-service.provider.mjs +13 -3
- package/esm2020/lib/services/providers/index.mjs +1 -2
- package/esm2020/lib/services/tokens/commons-init.token.mjs +3 -0
- package/esm2020/lib/services/tokens/index.mjs +2 -1
- package/esm2020/lib/utils/i18n.util.mjs +4 -5
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/mediusinc-mng-commons.mjs +122 -38
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +116 -36
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/config/models/mng-config.model.d.ts +1 -1
- package/lib/services/commons.service.d.ts +4 -4
- package/lib/services/configuration.service.d.ts +3 -2
- 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/config-service.provider.d.ts +2 -1
- package/lib/services/providers/index.d.ts +0 -1
- package/lib/services/tokens/commons-init.token.d.ts +3 -0
- package/lib/services/tokens/index.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/esm2020/lib/services/providers/commons-init.provider.mjs +0 -4
- package/lib/services/providers/commons-init.provider.d.ts +0 -2
|
@@ -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,
|
|
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';
|
|
@@ -3203,12 +3203,11 @@ var I18nUtils;
|
|
|
3203
3203
|
return I18nUtils.Action.getAsync(translate, action, ['editor.title', 'title'], action.editorTitle ?? undefined, item);
|
|
3204
3204
|
}
|
|
3205
3205
|
static getParams(translate, action, item, params = {}) {
|
|
3206
|
-
const
|
|
3207
|
-
return I18nUtils.Action.populateParams(
|
|
3206
|
+
const i18nParams = I18nUtils.Model.getParams(translate, action.model ?? undefined, item, params);
|
|
3207
|
+
return I18nUtils.Action.populateParams(i18nParams);
|
|
3208
3208
|
}
|
|
3209
3209
|
static getParamsAsync(translate, action, item, params = {}) {
|
|
3210
|
-
|
|
3211
|
-
return I18nUtils.Model.getParamsAsync(translate, action.model ?? undefined, item, params).pipe(map(i18nParams => I18nUtils.Action.populateParams(modelI18nParams)));
|
|
3210
|
+
return I18nUtils.Model.getParamsAsync(translate, action.model ?? undefined, item, params).pipe(map(i18nParams => I18nUtils.Action.populateParams(i18nParams)));
|
|
3212
3211
|
}
|
|
3213
3212
|
static populateParams(params = {}) {
|
|
3214
3213
|
params = { ...params };
|
|
@@ -3800,6 +3799,8 @@ const MNG_BROWSER_STORAGE_IT = new InjectionToken('Browser storage', {
|
|
|
3800
3799
|
factory: () => localStorage
|
|
3801
3800
|
});
|
|
3802
3801
|
|
|
3802
|
+
const MNG_COMMONS_INITIALIZER_IT = new InjectionToken('MNG Commons Initializer');
|
|
3803
|
+
|
|
3803
3804
|
const ACTION_EDITOR_DIALOG_COMPONENT_SETTING = new InjectionToken('ACTION_EDITOR_DIALOG_COMPONENT_SETTING');
|
|
3804
3805
|
|
|
3805
3806
|
const MNG_MODULE_CONFIG_IT = new InjectionToken('MngModuleConfig');
|
|
@@ -4363,7 +4364,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
4363
4364
|
class MngConfigurationService {
|
|
4364
4365
|
constructor(http) {
|
|
4365
4366
|
this.http = http;
|
|
4366
|
-
this.
|
|
4367
|
+
this.jsonSources = [];
|
|
4367
4368
|
this.configuration = { ...this.projectEnvironment };
|
|
4368
4369
|
}
|
|
4369
4370
|
static init(httpClient) {
|
|
@@ -4390,23 +4391,55 @@ class MngConfigurationService {
|
|
|
4390
4391
|
* Adds new config source from JSON file.
|
|
4391
4392
|
* @param url Url to JSON file.
|
|
4392
4393
|
*/
|
|
4393
|
-
addJsonSource(url = this.projectEnvironment.configurationJsonSource) {
|
|
4394
|
+
addJsonSource(url = this.projectEnvironment.configurationJsonSource, load = false) {
|
|
4394
4395
|
if (!url) {
|
|
4395
|
-
console.
|
|
4396
|
+
console.debug('No path to configuration file specified. Setting default.');
|
|
4396
4397
|
url = 'assets/config/env{{environment}}.json';
|
|
4397
4398
|
}
|
|
4398
|
-
const
|
|
4399
|
-
|
|
4400
|
-
|
|
4401
|
-
|
|
4402
|
-
|
|
4403
|
-
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
this.
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
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()));
|
|
4410
4443
|
}
|
|
4411
4444
|
/**
|
|
4412
4445
|
* Get configuration.
|
|
@@ -4426,9 +4459,10 @@ class MngConfigurationService {
|
|
|
4426
4459
|
*/
|
|
4427
4460
|
mergeConfigs() {
|
|
4428
4461
|
let config = { ...this.projectEnvironment };
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
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 };
|
|
4432
4466
|
}
|
|
4433
4467
|
}
|
|
4434
4468
|
this.configuration = config;
|
|
@@ -4437,12 +4471,11 @@ class MngConfigurationService {
|
|
|
4437
4471
|
MngConfigurationService._instance = null;
|
|
4438
4472
|
|
|
4439
4473
|
class MngCommonsService {
|
|
4440
|
-
constructor(router, primengConfig, translate, titleService,
|
|
4474
|
+
constructor(router, primengConfig, translate, titleService, moduleConfig, localStorage) {
|
|
4441
4475
|
this.router = router;
|
|
4442
4476
|
this.primengConfig = primengConfig;
|
|
4443
4477
|
this.translate = translate;
|
|
4444
4478
|
this.titleService = titleService;
|
|
4445
|
-
this.configurationService = configurationService;
|
|
4446
4479
|
this.moduleConfig = moduleConfig;
|
|
4447
4480
|
this.localStorage = localStorage;
|
|
4448
4481
|
// menu
|
|
@@ -4571,8 +4604,7 @@ class MngCommonsService {
|
|
|
4571
4604
|
get user$() {
|
|
4572
4605
|
return this.userSubject.asObservable();
|
|
4573
4606
|
}
|
|
4574
|
-
|
|
4575
|
-
// menu
|
|
4607
|
+
reset() {
|
|
4576
4608
|
this._menuMode = this.moduleConfig?.menu?.mode ?? 'sidebar';
|
|
4577
4609
|
this._menuModeSubject.next(this._menuMode);
|
|
4578
4610
|
this._menuItems = this.moduleConfig?.menu?.menuItems ?? [];
|
|
@@ -4606,7 +4638,8 @@ class MngCommonsService {
|
|
|
4606
4638
|
this.translate.langs = this.appLanguages;
|
|
4607
4639
|
this.translate.use(this.appLanguage);
|
|
4608
4640
|
this.translate.get('mngPrime').subscribe(value => this.primengConfig.setTranslation(value));
|
|
4609
|
-
this.
|
|
4641
|
+
this.routerEventsSubscription?.unsubscribe();
|
|
4642
|
+
this.routerEventsSubscription = this.router.events
|
|
4610
4643
|
.pipe(
|
|
4611
4644
|
// Filter the NavigationEnd events as the breadcrumb is updated only when the route reaches its end
|
|
4612
4645
|
filter(event => event instanceof NavigationEnd))
|
|
@@ -4614,7 +4647,8 @@ class MngCommonsService {
|
|
|
4614
4647
|
this.updateBreadcrumbs();
|
|
4615
4648
|
this.setPageTitle();
|
|
4616
4649
|
});
|
|
4617
|
-
this.
|
|
4650
|
+
this.translateLangChangeSubscription?.unsubscribe();
|
|
4651
|
+
this.translateLangChangeSubscription = this.translate.onLangChange.subscribe(() => {
|
|
4618
4652
|
this.updateBreadcrumbs();
|
|
4619
4653
|
this.setPageTitle();
|
|
4620
4654
|
});
|
|
@@ -4757,11 +4791,11 @@ class MngCommonsService {
|
|
|
4757
4791
|
return titlePieces.join(' - ');
|
|
4758
4792
|
}
|
|
4759
4793
|
}
|
|
4760
|
-
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 });
|
|
4761
4795
|
MngCommonsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService });
|
|
4762
4796
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngCommonsService, decorators: [{
|
|
4763
4797
|
type: Injectable
|
|
4764
|
-
}], 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: [{
|
|
4765
4799
|
type: Inject,
|
|
4766
4800
|
args: [MNG_MODULE_CONFIG_IT]
|
|
4767
4801
|
}] }, { type: Storage, decorators: [{
|
|
@@ -7505,9 +7539,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
7505
7539
|
args: ['window:resize', ['$event']]
|
|
7506
7540
|
}] } });
|
|
7507
7541
|
|
|
7508
|
-
function mngCommonsInitializerProvider(
|
|
7509
|
-
return () =>
|
|
7542
|
+
function mngCommonsInitializerProvider(mngCommonsInit) {
|
|
7543
|
+
return () => mngCommonsInit.initialize();
|
|
7544
|
+
}
|
|
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
|
+
}
|
|
7510
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
|
+
}] }]; } });
|
|
7511
7581
|
|
|
7512
7582
|
const mngConfigurationServiceProvider = (httpClient, moduleConfig) => {
|
|
7513
7583
|
const service = MngConfigurationService.init(httpClient);
|
|
@@ -7522,7 +7592,16 @@ function mngConfigJsonAppInitializerProvider(configService, moduleConfig) {
|
|
|
7522
7592
|
return of(false);
|
|
7523
7593
|
}
|
|
7524
7594
|
else {
|
|
7525
|
-
|
|
7595
|
+
const jsonSource = moduleConfig?.configuration?.jsonSource;
|
|
7596
|
+
if (!jsonSource) {
|
|
7597
|
+
return configService.addJsonSource();
|
|
7598
|
+
}
|
|
7599
|
+
else if (Array.isArray(jsonSource)) {
|
|
7600
|
+
return combineLatest(jsonSource.map(source => configService.addJsonSource(source))).pipe(map(sourcesRes => sourcesRes.every(s => s)));
|
|
7601
|
+
}
|
|
7602
|
+
else {
|
|
7603
|
+
return configService.addJsonSource(jsonSource);
|
|
7604
|
+
}
|
|
7526
7605
|
}
|
|
7527
7606
|
};
|
|
7528
7607
|
}
|
|
@@ -7803,6 +7882,7 @@ class MngCommonsModule {
|
|
|
7803
7882
|
DialogService,
|
|
7804
7883
|
MessageService,
|
|
7805
7884
|
ConfirmationService,
|
|
7885
|
+
MngCommonsInitService,
|
|
7806
7886
|
MngActionExecutorService,
|
|
7807
7887
|
MngNavigationService,
|
|
7808
7888
|
MngCommonsService,
|
|
@@ -7832,7 +7912,7 @@ class MngCommonsModule {
|
|
|
7832
7912
|
{
|
|
7833
7913
|
provide: APP_INITIALIZER,
|
|
7834
7914
|
useFactory: mngCommonsInitializerProvider,
|
|
7835
|
-
deps: [
|
|
7915
|
+
deps: [MngCommonsInitService],
|
|
7836
7916
|
multi: true
|
|
7837
7917
|
},
|
|
7838
7918
|
{
|
|
@@ -8667,5 +8747,5 @@ class RouteDataBuilder {
|
|
|
8667
8747
|
* Generated bundle index. Do not edit.
|
|
8668
8748
|
*/
|
|
8669
8749
|
|
|
8670
|
-
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,
|
|
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 };
|
|
8671
8751
|
//# sourceMappingURL=mediusinc-mng-commons.mjs.map
|