@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.
Files changed (187) hide show
  1. package/README.md +19 -0
  2. package/esm2020/lib/api/models/builders/query-param.builder.mjs +49 -0
  3. package/esm2020/lib/api/models/filter-match-type.model.mjs +24 -0
  4. package/esm2020/lib/api/models/filter-param.model.mjs +46 -0
  5. package/esm2020/lib/api/models/index.mjs +9 -0
  6. package/esm2020/lib/api/models/mappers.mjs +17 -0
  7. package/esm2020/lib/api/models/query-mode.model.mjs +19 -0
  8. package/esm2020/lib/api/models/query-param.model.mjs +69 -0
  9. package/esm2020/lib/api/models/query-result.model.mjs +45 -0
  10. package/esm2020/lib/api/models/serialization.model.mjs +2 -0
  11. package/esm2020/lib/api/services/abstract-crud-api.service.mjs +72 -0
  12. package/esm2020/lib/api/services/index.mjs +2 -0
  13. package/esm2020/lib/api/utils/index.mjs +3 -0
  14. package/esm2020/lib/api/utils/medius-rest.util.mjs +70 -0
  15. package/esm2020/lib/api/utils/object-serializer.util.mjs +226 -0
  16. package/esm2020/lib/components/action/action.component.mjs +63 -0
  17. package/esm2020/lib/components/action/dialog/action-dialog.component.mjs +148 -0
  18. package/esm2020/lib/components/action/index.mjs +4 -0
  19. package/esm2020/lib/components/action/route/action-route.component.mjs +144 -0
  20. package/esm2020/lib/components/form/editor/form-editor.component.mjs +140 -0
  21. package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +58 -0
  22. package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +51 -0
  23. package/esm2020/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +16 -0
  24. package/esm2020/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +26 -0
  25. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +94 -0
  26. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +124 -0
  27. package/esm2020/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +17 -0
  28. package/esm2020/lib/components/form/formly/fields/index.mjs +8 -0
  29. package/esm2020/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +17 -0
  30. package/esm2020/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.mjs +16 -0
  31. package/esm2020/lib/components/form/formly/wrappers/index.mjs +3 -0
  32. package/esm2020/lib/components/form/index.mjs +2 -0
  33. package/esm2020/lib/components/layout/app.breadcrumb.component.mjs +27 -0
  34. package/esm2020/lib/components/layout/app.footer.component.mjs +35 -0
  35. package/esm2020/lib/components/layout/app.main.component.mjs +25 -0
  36. package/esm2020/lib/components/layout/app.main.component.service.mjs +133 -0
  37. package/esm2020/lib/components/layout/app.menu.component.mjs +38 -0
  38. package/esm2020/lib/components/layout/app.menuitem.component.mjs +243 -0
  39. package/esm2020/lib/components/layout/app.topbar.component.mjs +135 -0
  40. package/esm2020/lib/components/layout/index.mjs +7 -0
  41. package/esm2020/lib/components/tableview/index.mjs +4 -0
  42. package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +31 -0
  43. package/esm2020/lib/components/tableview/table/table.component.mjs +173 -0
  44. package/esm2020/lib/components/tableview/tableview.component.mjs +82 -0
  45. package/esm2020/lib/components/tableview/tableview.component.service.mjs +18 -0
  46. package/esm2020/lib/config/formly.config.mjs +165 -0
  47. package/esm2020/lib/config/index.mjs +2 -0
  48. package/esm2020/lib/directives/index.mjs +2 -0
  49. package/esm2020/lib/directives/template.directive.mjs +25 -0
  50. package/esm2020/lib/mng-commons.module.mjs +338 -0
  51. package/esm2020/lib/models/action/action.model.mjs +58 -0
  52. package/esm2020/lib/models/action/index.mjs +2 -0
  53. package/esm2020/lib/models/config/index.mjs +2 -0
  54. package/esm2020/lib/models/config/mng-config.model.mjs +3 -0
  55. package/esm2020/lib/models/descriptors/action-descriptor.model.mjs +283 -0
  56. package/esm2020/lib/models/descriptors/editor-descriptor.model.mjs +647 -0
  57. package/esm2020/lib/models/descriptors/index.mjs +6 -0
  58. package/esm2020/lib/models/descriptors/model-descriptor.model.mjs +34 -0
  59. package/esm2020/lib/models/descriptors/table-descriptor.model.mjs +123 -0
  60. package/esm2020/lib/models/descriptors/tableview-descriptor.model.mjs +124 -0
  61. package/esm2020/lib/models/events/editor-event.model.mjs +14 -0
  62. package/esm2020/lib/models/events/index.mjs +3 -0
  63. package/esm2020/lib/models/events/table-event.model.mjs +16 -0
  64. package/esm2020/lib/models/interfaces/confirmation-service.model.mjs +2 -0
  65. package/esm2020/lib/models/interfaces/index.mjs +2 -0
  66. package/esm2020/lib/models/providers/data-provider.model.mjs +86 -0
  67. package/esm2020/lib/models/providers/index.mjs +2 -0
  68. package/esm2020/lib/models/types/index.mjs +3 -0
  69. package/esm2020/lib/models/types/type.decorator.mjs +8 -0
  70. package/esm2020/lib/models/types/type.model.mjs +2 -0
  71. package/esm2020/lib/models/validators/field.validator.mjs +21 -0
  72. package/esm2020/lib/models/validators/index.mjs +2 -0
  73. package/esm2020/lib/pipes/index.mjs +2 -0
  74. package/esm2020/lib/pipes/property-path.pipe.mjs +36 -0
  75. package/esm2020/lib/services/action.service.mjs +239 -0
  76. package/esm2020/lib/services/breadcrumb.service.mjs +21 -0
  77. package/esm2020/lib/services/configuration.service.mjs +77 -0
  78. package/esm2020/lib/services/index.mjs +7 -0
  79. package/esm2020/lib/services/menu.service.mjs +26 -0
  80. package/esm2020/lib/services/navigation.service.mjs +49 -0
  81. package/esm2020/lib/services/providers/config-service.provider.mjs +12 -0
  82. package/esm2020/lib/services/providers/formly-config.provider.mjs +31 -0
  83. package/esm2020/lib/services/providers/index.mjs +3 -0
  84. package/esm2020/lib/services/settings.service.mjs +40 -0
  85. package/esm2020/lib/utils/editor-formly.util.mjs +165 -0
  86. package/esm2020/lib/utils/i18n.util.mjs +75 -0
  87. package/esm2020/lib/utils/index.mjs +5 -0
  88. package/esm2020/lib/utils/model.util.mjs +38 -0
  89. package/esm2020/lib/utils/type.util.mjs +43 -0
  90. package/esm2020/mediusinc-mng-commons.mjs +5 -0
  91. package/esm2020/public-api.mjs +33 -0
  92. package/fesm2015/mediusinc-mng-commons.mjs +5056 -0
  93. package/fesm2015/mediusinc-mng-commons.mjs.map +1 -0
  94. package/fesm2020/mediusinc-mng-commons.mjs +5012 -0
  95. package/fesm2020/mediusinc-mng-commons.mjs.map +1 -0
  96. package/lib/api/models/builders/query-param.builder.d.ts +11 -0
  97. package/lib/api/models/filter-match-type.model.d.ts +21 -0
  98. package/lib/api/models/filter-param.model.d.ts +23 -0
  99. package/lib/api/models/index.d.ts +8 -0
  100. package/lib/api/models/mappers.d.ts +6 -0
  101. package/lib/api/models/query-mode.model.d.ts +16 -0
  102. package/lib/api/models/query-param.model.d.ts +31 -0
  103. package/lib/api/models/query-result.model.d.ts +36 -0
  104. package/lib/api/models/serialization.model.d.ts +8 -0
  105. package/lib/api/services/abstract-crud-api.service.d.ts +23 -0
  106. package/lib/api/services/index.d.ts +1 -0
  107. package/lib/api/utils/index.d.ts +2 -0
  108. package/lib/api/utils/medius-rest.util.d.ts +6 -0
  109. package/lib/api/utils/object-serializer.util.d.ts +30 -0
  110. package/lib/components/action/action.component.d.ts +36 -0
  111. package/lib/components/action/dialog/action-dialog.component.d.ts +48 -0
  112. package/lib/components/action/index.d.ts +3 -0
  113. package/lib/components/action/route/action-route.component.d.ts +32 -0
  114. package/lib/components/form/editor/form-editor.component.d.ts +37 -0
  115. package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +21 -0
  116. package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +19 -0
  117. package/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.d.ts +6 -0
  118. package/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.d.ts +12 -0
  119. package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +17 -0
  120. package/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.d.ts +36 -0
  121. package/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.d.ts +6 -0
  122. package/lib/components/form/formly/fields/index.d.ts +7 -0
  123. package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +8 -0
  124. package/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.d.ts +8 -0
  125. package/lib/components/form/formly/wrappers/index.d.ts +2 -0
  126. package/lib/components/form/index.d.ts +1 -0
  127. package/lib/components/layout/app.breadcrumb.component.d.ts +16 -0
  128. package/lib/components/layout/app.footer.component.d.ts +8 -0
  129. package/lib/components/layout/app.main.component.d.ts +12 -0
  130. package/lib/components/layout/app.main.component.service.d.ts +40 -0
  131. package/lib/components/layout/app.menu.component.d.ts +14 -0
  132. package/lib/components/layout/app.menuitem.component.d.ts +31 -0
  133. package/lib/components/layout/app.topbar.component.d.ts +16 -0
  134. package/lib/components/layout/index.d.ts +6 -0
  135. package/lib/components/tableview/index.d.ts +3 -0
  136. package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +15 -0
  137. package/lib/components/tableview/table/table.component.d.ts +47 -0
  138. package/lib/components/tableview/tableview.component.d.ts +36 -0
  139. package/lib/components/tableview/tableview.component.service.d.ts +11 -0
  140. package/lib/config/formly.config.d.ts +8 -0
  141. package/lib/config/index.d.ts +1 -0
  142. package/lib/directives/index.d.ts +1 -0
  143. package/lib/directives/template.directive.d.ts +11 -0
  144. package/lib/mng-commons.module.d.ts +74 -0
  145. package/lib/models/action/action.model.d.ts +53 -0
  146. package/lib/models/action/index.d.ts +1 -0
  147. package/lib/models/config/index.d.ts +1 -0
  148. package/lib/models/config/mng-config.model.d.ts +19 -0
  149. package/lib/models/descriptors/action-descriptor.model.d.ts +124 -0
  150. package/lib/models/descriptors/editor-descriptor.model.d.ts +248 -0
  151. package/lib/models/descriptors/index.d.ts +5 -0
  152. package/lib/models/descriptors/model-descriptor.model.d.ts +15 -0
  153. package/lib/models/descriptors/table-descriptor.model.d.ts +45 -0
  154. package/lib/models/descriptors/tableview-descriptor.model.d.ts +38 -0
  155. package/lib/models/events/editor-event.model.d.ts +11 -0
  156. package/lib/models/events/index.d.ts +2 -0
  157. package/lib/models/events/table-event.model.d.ts +17 -0
  158. package/lib/models/interfaces/confirmation-service.model.d.ts +6 -0
  159. package/lib/models/interfaces/index.d.ts +1 -0
  160. package/lib/models/providers/data-provider.model.d.ts +62 -0
  161. package/lib/models/providers/index.d.ts +1 -0
  162. package/lib/models/types/index.d.ts +2 -0
  163. package/lib/models/types/type.decorator.d.ts +2 -0
  164. package/lib/models/types/type.model.d.ts +10 -0
  165. package/lib/models/validators/field.validator.d.ts +18 -0
  166. package/lib/models/validators/index.d.ts +1 -0
  167. package/lib/pipes/index.d.ts +1 -0
  168. package/lib/pipes/property-path.pipe.d.ts +7 -0
  169. package/lib/services/action.service.d.ts +92 -0
  170. package/lib/services/breadcrumb.service.d.ts +9 -0
  171. package/lib/services/configuration.service.d.ts +35 -0
  172. package/lib/services/index.d.ts +6 -0
  173. package/lib/services/menu.service.d.ts +11 -0
  174. package/lib/services/navigation.service.d.ts +14 -0
  175. package/lib/services/providers/config-service.provider.d.ts +5 -0
  176. package/lib/services/providers/formly-config.provider.d.ts +4 -0
  177. package/lib/services/providers/index.d.ts +2 -0
  178. package/lib/services/settings.service.d.ts +18 -0
  179. package/lib/utils/editor-formly.util.d.ts +9 -0
  180. package/lib/utils/i18n.util.d.ts +14 -0
  181. package/lib/utils/index.d.ts +4 -0
  182. package/lib/utils/model.util.d.ts +5 -0
  183. package/lib/utils/type.util.d.ts +15 -0
  184. package/mediusinc-mng-commons-0.0.1-rc.2.tgz +0 -0
  185. package/mediusinc-mng-commons.d.ts +5 -0
  186. package/package.json +38 -0
  187. 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,6 @@
1
+ export * from './action.service';
2
+ export * from './breadcrumb.service';
3
+ export * from './configuration.service';
4
+ export * from './menu.service';
5
+ export * from './navigation.service';
6
+ export * from './settings.service';
@@ -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,2 @@
1
+ export * from './config-service.provider';
2
+ export * from './formly-config.provider';
@@ -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,4 @@
1
+ export * from './editor-formly.util';
2
+ export * from './i18n.util';
3
+ export * from './model.util';
4
+ export * from './type.util';
@@ -0,0 +1,5 @@
1
+ import { ClassType } from '../models/types';
2
+ export declare class ModelUtil {
3
+ static findIdAttribute<T>(classType: ClassType<T>): string | null;
4
+ static findTitleAttribute<T>(classType: ClassType<T>): string | null;
5
+ }
@@ -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
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@mediusinc/mng-commons" />
5
+ export * from './public-api';
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
+ }
@@ -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';