@mediusinc/mng-commons 0.0.1-rc.2
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/README.md +19 -0
- package/esm2020/lib/api/models/builders/query-param.builder.mjs +49 -0
- package/esm2020/lib/api/models/filter-match-type.model.mjs +24 -0
- package/esm2020/lib/api/models/filter-param.model.mjs +46 -0
- package/esm2020/lib/api/models/index.mjs +9 -0
- package/esm2020/lib/api/models/mappers.mjs +17 -0
- package/esm2020/lib/api/models/query-mode.model.mjs +19 -0
- package/esm2020/lib/api/models/query-param.model.mjs +69 -0
- package/esm2020/lib/api/models/query-result.model.mjs +45 -0
- package/esm2020/lib/api/models/serialization.model.mjs +2 -0
- package/esm2020/lib/api/services/abstract-crud-api.service.mjs +72 -0
- package/esm2020/lib/api/services/index.mjs +2 -0
- package/esm2020/lib/api/utils/index.mjs +3 -0
- package/esm2020/lib/api/utils/medius-rest.util.mjs +70 -0
- package/esm2020/lib/api/utils/object-serializer.util.mjs +226 -0
- package/esm2020/lib/components/action/action.component.mjs +63 -0
- package/esm2020/lib/components/action/dialog/action-dialog.component.mjs +148 -0
- package/esm2020/lib/components/action/index.mjs +4 -0
- package/esm2020/lib/components/action/route/action-route.component.mjs +144 -0
- package/esm2020/lib/components/form/editor/form-editor.component.mjs +140 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +58 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +51 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +16 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +26 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +94 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +124 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +17 -0
- package/esm2020/lib/components/form/formly/fields/index.mjs +8 -0
- package/esm2020/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +17 -0
- package/esm2020/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.mjs +16 -0
- package/esm2020/lib/components/form/formly/wrappers/index.mjs +3 -0
- package/esm2020/lib/components/form/index.mjs +2 -0
- package/esm2020/lib/components/layout/app.breadcrumb.component.mjs +27 -0
- package/esm2020/lib/components/layout/app.footer.component.mjs +35 -0
- package/esm2020/lib/components/layout/app.main.component.mjs +25 -0
- package/esm2020/lib/components/layout/app.main.component.service.mjs +133 -0
- package/esm2020/lib/components/layout/app.menu.component.mjs +38 -0
- package/esm2020/lib/components/layout/app.menuitem.component.mjs +243 -0
- package/esm2020/lib/components/layout/app.topbar.component.mjs +135 -0
- package/esm2020/lib/components/layout/index.mjs +7 -0
- package/esm2020/lib/components/tableview/index.mjs +4 -0
- package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +31 -0
- package/esm2020/lib/components/tableview/table/table.component.mjs +173 -0
- package/esm2020/lib/components/tableview/tableview.component.mjs +82 -0
- package/esm2020/lib/components/tableview/tableview.component.service.mjs +18 -0
- package/esm2020/lib/config/formly.config.mjs +165 -0
- package/esm2020/lib/config/index.mjs +2 -0
- package/esm2020/lib/directives/index.mjs +2 -0
- package/esm2020/lib/directives/template.directive.mjs +25 -0
- package/esm2020/lib/mng-commons.module.mjs +338 -0
- package/esm2020/lib/models/action/action.model.mjs +58 -0
- package/esm2020/lib/models/action/index.mjs +2 -0
- package/esm2020/lib/models/config/index.mjs +2 -0
- package/esm2020/lib/models/config/mng-config.model.mjs +3 -0
- package/esm2020/lib/models/descriptors/action-descriptor.model.mjs +283 -0
- package/esm2020/lib/models/descriptors/editor-descriptor.model.mjs +647 -0
- package/esm2020/lib/models/descriptors/index.mjs +6 -0
- package/esm2020/lib/models/descriptors/model-descriptor.model.mjs +34 -0
- package/esm2020/lib/models/descriptors/table-descriptor.model.mjs +123 -0
- package/esm2020/lib/models/descriptors/tableview-descriptor.model.mjs +124 -0
- package/esm2020/lib/models/events/editor-event.model.mjs +14 -0
- package/esm2020/lib/models/events/index.mjs +3 -0
- package/esm2020/lib/models/events/table-event.model.mjs +16 -0
- package/esm2020/lib/models/interfaces/confirmation-service.model.mjs +2 -0
- package/esm2020/lib/models/interfaces/index.mjs +2 -0
- package/esm2020/lib/models/providers/data-provider.model.mjs +86 -0
- package/esm2020/lib/models/providers/index.mjs +2 -0
- package/esm2020/lib/models/types/index.mjs +3 -0
- package/esm2020/lib/models/types/type.decorator.mjs +8 -0
- package/esm2020/lib/models/types/type.model.mjs +2 -0
- package/esm2020/lib/models/validators/field.validator.mjs +21 -0
- package/esm2020/lib/models/validators/index.mjs +2 -0
- package/esm2020/lib/pipes/index.mjs +2 -0
- package/esm2020/lib/pipes/property-path.pipe.mjs +36 -0
- package/esm2020/lib/services/action.service.mjs +239 -0
- package/esm2020/lib/services/breadcrumb.service.mjs +21 -0
- package/esm2020/lib/services/configuration.service.mjs +77 -0
- package/esm2020/lib/services/index.mjs +7 -0
- package/esm2020/lib/services/menu.service.mjs +26 -0
- package/esm2020/lib/services/navigation.service.mjs +49 -0
- package/esm2020/lib/services/providers/config-service.provider.mjs +12 -0
- package/esm2020/lib/services/providers/formly-config.provider.mjs +31 -0
- package/esm2020/lib/services/providers/index.mjs +3 -0
- package/esm2020/lib/services/settings.service.mjs +40 -0
- package/esm2020/lib/utils/editor-formly.util.mjs +165 -0
- package/esm2020/lib/utils/i18n.util.mjs +75 -0
- package/esm2020/lib/utils/index.mjs +5 -0
- package/esm2020/lib/utils/model.util.mjs +38 -0
- package/esm2020/lib/utils/type.util.mjs +43 -0
- package/esm2020/mediusinc-mng-commons.mjs +5 -0
- package/esm2020/public-api.mjs +33 -0
- package/fesm2015/mediusinc-mng-commons.mjs +5056 -0
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -0
- package/fesm2020/mediusinc-mng-commons.mjs +5012 -0
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -0
- package/lib/api/models/builders/query-param.builder.d.ts +11 -0
- package/lib/api/models/filter-match-type.model.d.ts +21 -0
- package/lib/api/models/filter-param.model.d.ts +23 -0
- package/lib/api/models/index.d.ts +8 -0
- package/lib/api/models/mappers.d.ts +6 -0
- package/lib/api/models/query-mode.model.d.ts +16 -0
- package/lib/api/models/query-param.model.d.ts +31 -0
- package/lib/api/models/query-result.model.d.ts +36 -0
- package/lib/api/models/serialization.model.d.ts +8 -0
- package/lib/api/services/abstract-crud-api.service.d.ts +23 -0
- package/lib/api/services/index.d.ts +1 -0
- package/lib/api/utils/index.d.ts +2 -0
- package/lib/api/utils/medius-rest.util.d.ts +6 -0
- package/lib/api/utils/object-serializer.util.d.ts +30 -0
- package/lib/components/action/action.component.d.ts +36 -0
- package/lib/components/action/dialog/action-dialog.component.d.ts +48 -0
- package/lib/components/action/index.d.ts +3 -0
- package/lib/components/action/route/action-route.component.d.ts +32 -0
- package/lib/components/form/editor/form-editor.component.d.ts +37 -0
- package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +21 -0
- package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +19 -0
- package/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.d.ts +6 -0
- package/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.d.ts +12 -0
- package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +17 -0
- package/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.d.ts +36 -0
- package/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.d.ts +6 -0
- package/lib/components/form/formly/fields/index.d.ts +7 -0
- package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +8 -0
- package/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.d.ts +8 -0
- package/lib/components/form/formly/wrappers/index.d.ts +2 -0
- package/lib/components/form/index.d.ts +1 -0
- package/lib/components/layout/app.breadcrumb.component.d.ts +16 -0
- package/lib/components/layout/app.footer.component.d.ts +8 -0
- package/lib/components/layout/app.main.component.d.ts +12 -0
- package/lib/components/layout/app.main.component.service.d.ts +40 -0
- package/lib/components/layout/app.menu.component.d.ts +14 -0
- package/lib/components/layout/app.menuitem.component.d.ts +31 -0
- package/lib/components/layout/app.topbar.component.d.ts +16 -0
- package/lib/components/layout/index.d.ts +6 -0
- package/lib/components/tableview/index.d.ts +3 -0
- package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +15 -0
- package/lib/components/tableview/table/table.component.d.ts +47 -0
- package/lib/components/tableview/tableview.component.d.ts +36 -0
- package/lib/components/tableview/tableview.component.service.d.ts +11 -0
- package/lib/config/formly.config.d.ts +8 -0
- package/lib/config/index.d.ts +1 -0
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/template.directive.d.ts +11 -0
- package/lib/mng-commons.module.d.ts +74 -0
- package/lib/models/action/action.model.d.ts +53 -0
- package/lib/models/action/index.d.ts +1 -0
- package/lib/models/config/index.d.ts +1 -0
- package/lib/models/config/mng-config.model.d.ts +19 -0
- package/lib/models/descriptors/action-descriptor.model.d.ts +124 -0
- package/lib/models/descriptors/editor-descriptor.model.d.ts +248 -0
- package/lib/models/descriptors/index.d.ts +5 -0
- package/lib/models/descriptors/model-descriptor.model.d.ts +15 -0
- package/lib/models/descriptors/table-descriptor.model.d.ts +45 -0
- package/lib/models/descriptors/tableview-descriptor.model.d.ts +38 -0
- package/lib/models/events/editor-event.model.d.ts +11 -0
- package/lib/models/events/index.d.ts +2 -0
- package/lib/models/events/table-event.model.d.ts +17 -0
- package/lib/models/interfaces/confirmation-service.model.d.ts +6 -0
- package/lib/models/interfaces/index.d.ts +1 -0
- package/lib/models/providers/data-provider.model.d.ts +62 -0
- package/lib/models/providers/index.d.ts +1 -0
- package/lib/models/types/index.d.ts +2 -0
- package/lib/models/types/type.decorator.d.ts +2 -0
- package/lib/models/types/type.model.d.ts +10 -0
- package/lib/models/validators/field.validator.d.ts +18 -0
- package/lib/models/validators/index.d.ts +1 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/pipes/property-path.pipe.d.ts +7 -0
- package/lib/services/action.service.d.ts +92 -0
- package/lib/services/breadcrumb.service.d.ts +9 -0
- package/lib/services/configuration.service.d.ts +35 -0
- package/lib/services/index.d.ts +6 -0
- package/lib/services/menu.service.d.ts +11 -0
- package/lib/services/navigation.service.d.ts +14 -0
- package/lib/services/providers/config-service.provider.d.ts +5 -0
- package/lib/services/providers/formly-config.provider.d.ts +4 -0
- package/lib/services/providers/index.d.ts +2 -0
- package/lib/services/settings.service.d.ts +18 -0
- package/lib/utils/editor-formly.util.d.ts +9 -0
- package/lib/utils/i18n.util.d.ts +14 -0
- package/lib/utils/index.d.ts +4 -0
- package/lib/utils/model.util.d.ts +5 -0
- package/lib/utils/type.util.d.ts +15 -0
- package/mediusinc-mng-commons-0.0.1-rc.2.tgz +0 -0
- package/mediusinc-mng-commons.d.ts +5 -0
- package/package.json +38 -0
- package/public-api.d.ts +22 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
export declare class ConfigurationService {
|
|
4
|
+
private http;
|
|
5
|
+
private static _instance;
|
|
6
|
+
static init(httpClient: HttpClient): ConfigurationService;
|
|
7
|
+
static get(): ConfigurationService;
|
|
8
|
+
private projectEnvironment?;
|
|
9
|
+
private jsonEnvironments;
|
|
10
|
+
private configuration;
|
|
11
|
+
private constructor();
|
|
12
|
+
/**
|
|
13
|
+
* Add project environment source.
|
|
14
|
+
* @param environemnt Environment.
|
|
15
|
+
*/
|
|
16
|
+
addEnvironmentSource(environment: any): void;
|
|
17
|
+
/**
|
|
18
|
+
* Adds new config source from JSON file.
|
|
19
|
+
* @param url Url to JSON file.
|
|
20
|
+
*/
|
|
21
|
+
addJsonSource(url?: string): Observable<boolean>;
|
|
22
|
+
/**
|
|
23
|
+
* Get configuration.
|
|
24
|
+
*/
|
|
25
|
+
getConfig(): any;
|
|
26
|
+
/**
|
|
27
|
+
* Get configuration value for key.
|
|
28
|
+
* @param key Configuration key.
|
|
29
|
+
*/
|
|
30
|
+
getConfigValue(key: string): any;
|
|
31
|
+
/**
|
|
32
|
+
* Merges configuration from multiple sources with
|
|
33
|
+
*/
|
|
34
|
+
private mergeConfigs;
|
|
35
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class MenuService {
|
|
3
|
+
private menuSource;
|
|
4
|
+
private resetSource;
|
|
5
|
+
menuSource$: import("rxjs").Observable<string>;
|
|
6
|
+
resetSource$: import("rxjs").Observable<unknown>;
|
|
7
|
+
onMenuStateChange(key: string): void;
|
|
8
|
+
reset(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MenuService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { Location } from '@angular/common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NavigationService {
|
|
5
|
+
private router;
|
|
6
|
+
private location;
|
|
7
|
+
private history;
|
|
8
|
+
constructor(router: Router, location: Location);
|
|
9
|
+
getCurrentLocation(): string | null;
|
|
10
|
+
getPreviousLocation(): string | null;
|
|
11
|
+
back(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NavigationService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { MngModuleConfig } from '../../models/config';
|
|
3
|
+
import { ConfigurationService } from '../configuration.service';
|
|
4
|
+
export declare const configurationServiceProvider: (httpClient: HttpClient, moduleConfig: MngModuleConfig) => ConfigurationService;
|
|
5
|
+
export declare function configJsonAppInitializerProvider(configService: ConfigurationService, moduleConfig: MngModuleConfig): () => import("rxjs").Observable<boolean>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
2
|
+
import { ConfigOption } from '@ngx-formly/core';
|
|
3
|
+
import { MngModuleConfig } from '../../models/config';
|
|
4
|
+
export declare function formlyConfigProvider(translate: TranslateService, moduleConfig?: MngModuleConfig): ConfigOption;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { PrimeNGConfig } from 'primeng/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AppSettingsService {
|
|
4
|
+
private primengConfig;
|
|
5
|
+
private readonly _menuMode;
|
|
6
|
+
private readonly _colorScheme;
|
|
7
|
+
constructor(primengConfig: PrimeNGConfig);
|
|
8
|
+
get menuMode(): "horizontal" | "static" | "sidebar" | "slim" | "overlay";
|
|
9
|
+
get colorScheme(): "light" | "dark";
|
|
10
|
+
init(): void;
|
|
11
|
+
isStatic(): boolean;
|
|
12
|
+
isOverlay(): boolean;
|
|
13
|
+
isSlim(): boolean;
|
|
14
|
+
isHorizontal(): boolean;
|
|
15
|
+
isSidebar(): boolean;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppSettingsService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppSettingsService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FormlyFieldConfig } from '@ngx-formly/core';
|
|
2
|
+
import { EditorDescriptor, AFieldDescriptor, FieldTabGroupDescriptor, FieldGroupDescriptor } from '../models/descriptors';
|
|
3
|
+
export declare class EditorFormlyUtil {
|
|
4
|
+
static createFormlyConfigFromDescriptor(descriptor: EditorDescriptor<any>): FormlyFieldConfig[];
|
|
5
|
+
static createFormlyTabType(tabGroups: FieldTabGroupDescriptor<any>[]): FormlyFieldConfig[];
|
|
6
|
+
static createFormlyGroupType(groups: FieldGroupDescriptor<any>[]): FormlyFieldConfig[];
|
|
7
|
+
static createFormlyFields(descriptor: FieldGroupDescriptor<any>): FormlyFieldConfig[];
|
|
8
|
+
static createFormlyField(descriptor: AFieldDescriptor<any, any>): FormlyFieldConfig;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ModelDescriptor, ActionDescriptor } from '../models/descriptors';
|
|
4
|
+
export declare class I18nUtil {
|
|
5
|
+
static instantActionTranslation(translate: TranslateService, action: ActionDescriptor<any>, keyPath: string, customKey?: string, item?: any, fallbackKey?: string): string | null;
|
|
6
|
+
static streamActionTranslation(translate: TranslateService, action: ActionDescriptor<any>, keyPath: string, customKey?: string, item?: any, fallbackKey?: string): Observable<string | null>;
|
|
7
|
+
static getActionTranslation(translate: TranslateService, action: ActionDescriptor<any>, keyPath: string, customKey?: string, item?: any, fallbackKey?: string, oneTime?: boolean): Observable<string | null>;
|
|
8
|
+
private static getActionKeysByPriority;
|
|
9
|
+
static getActionI18nParams(action: ActionDescriptor<any>, item: any, i18nModelName?: string): any;
|
|
10
|
+
static instantModelName(translate: TranslateService, model: ModelDescriptor<any>, singular?: boolean): string;
|
|
11
|
+
static getModelName(translate: TranslateService, model: ModelDescriptor<any>, oneTime?: boolean, singular?: boolean): Observable<string | null>;
|
|
12
|
+
static getModelNameKeys(model: ModelDescriptor<any>, singular?: boolean): string[];
|
|
13
|
+
private static selectKeyByPriority;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import 'reflect-metadata';
|
|
2
|
+
import { ClassType } from '../models/types';
|
|
3
|
+
export declare class TypeUtil {
|
|
4
|
+
static defineReflectTypeName(targetType: ClassType<any>, typeName?: string): void;
|
|
5
|
+
/**
|
|
6
|
+
* Gets type name from either decorator or reflect metadata.
|
|
7
|
+
* @param type Class.
|
|
8
|
+
*/
|
|
9
|
+
static findTypeName(type: ClassType<any>): string;
|
|
10
|
+
/**
|
|
11
|
+
* Get value from decorator defined property name
|
|
12
|
+
* @param type Class.
|
|
13
|
+
*/
|
|
14
|
+
static getDecoratorTypeName(type: Function): string | undefined;
|
|
15
|
+
}
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mediusinc/mng-commons",
|
|
3
|
+
"version": "0.0.1-rc.2",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/core": "^13.1.0",
|
|
6
|
+
"@angular/common": "^13.1.0",
|
|
7
|
+
"@angular/forms": "^13.1.0",
|
|
8
|
+
"@angular/router": "^13.1.0",
|
|
9
|
+
"@ngx-formly/core": "^6.0.0-next.6",
|
|
10
|
+
"@ngx-translate/core": "^14.0.0",
|
|
11
|
+
"@ngx-translate/http-loader": "^7.0.0",
|
|
12
|
+
"primeng": "^13.1.0"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"tslib": "^2.3.0",
|
|
16
|
+
"reflect-metadata": "^0.1.13"
|
|
17
|
+
},
|
|
18
|
+
"module": "fesm2015/mediusinc-mng-commons.mjs",
|
|
19
|
+
"es2020": "fesm2020/mediusinc-mng-commons.mjs",
|
|
20
|
+
"esm2020": "esm2020/mediusinc-mng-commons.mjs",
|
|
21
|
+
"fesm2020": "fesm2020/mediusinc-mng-commons.mjs",
|
|
22
|
+
"fesm2015": "fesm2015/mediusinc-mng-commons.mjs",
|
|
23
|
+
"typings": "mediusinc-mng-commons.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
"./package.json": {
|
|
26
|
+
"default": "./package.json"
|
|
27
|
+
},
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./mediusinc-mng-commons.d.ts",
|
|
30
|
+
"esm2020": "./esm2020/mediusinc-mng-commons.mjs",
|
|
31
|
+
"es2020": "./fesm2020/mediusinc-mng-commons.mjs",
|
|
32
|
+
"es2015": "./fesm2015/mediusinc-mng-commons.mjs",
|
|
33
|
+
"node": "./fesm2015/mediusinc-mng-commons.mjs",
|
|
34
|
+
"default": "./fesm2020/mediusinc-mng-commons.mjs"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"sideEffects": false
|
|
38
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export * from './lib/mng-commons.module';
|
|
2
|
+
export * from './lib/api/services';
|
|
3
|
+
export * from './lib/services';
|
|
4
|
+
export * from './lib/services/providers';
|
|
5
|
+
export * from './lib/api/utils';
|
|
6
|
+
export * from './lib/utils';
|
|
7
|
+
export * from './lib/components/action';
|
|
8
|
+
export * from './lib/components/form';
|
|
9
|
+
export * from './lib/components/form/formly/fields';
|
|
10
|
+
export * from './lib/components/form/formly/wrappers';
|
|
11
|
+
export * from './lib/components/layout';
|
|
12
|
+
export * from './lib/components/tableview';
|
|
13
|
+
export * from './lib/directives';
|
|
14
|
+
export * from './lib/pipes';
|
|
15
|
+
export * from './lib/api/models';
|
|
16
|
+
export * from './lib/models/config';
|
|
17
|
+
export * from './lib/models/descriptors';
|
|
18
|
+
export * from './lib/models/events';
|
|
19
|
+
export * from './lib/models/interfaces';
|
|
20
|
+
export * from './lib/models/providers';
|
|
21
|
+
export * from './lib/models/types';
|
|
22
|
+
export * from './lib/models/validators';
|