@mediusinc/mng-commons 6.1.0-rc.1 → 6.2.0-rc.0
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/core/helpers/route.d.ts +1 -0
- package/core/models/menu.model.d.ts +1 -0
- package/fesm2022/mediusinc-mng-commons-core.mjs +3 -3
- package/fesm2022/mediusinc-mng-commons-core.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-form.mjs +8 -1
- package/fesm2022/mediusinc-mng-commons-form.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-tableview-api.mjs +34 -1
- package/fesm2022/mediusinc-mng-commons-tableview-api.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-tableview.mjs +28 -4
- package/fesm2022/mediusinc-mng-commons-tableview.mjs.map +1 -1
- package/form/components/autocomplete/autocomplete.component.d.ts +1 -0
- package/package.json +1 -1
- package/tableview/api/editor/descriptors/field-base.descriptor.d.ts +11 -0
- package/tableview/api/editor/descriptors/field-group.descriptor.d.ts +4 -1
- package/version-info.json +5 -5
package/core/helpers/route.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export declare function adjustRouteMenuLazyChildrenRouterLinks(rootMenuItem: Pri
|
|
|
19
19
|
disabled?: boolean;
|
|
20
20
|
routerLink?: string | Array<string> | null;
|
|
21
21
|
href?: string;
|
|
22
|
+
hrefExternalIcon?: string | null;
|
|
22
23
|
target?: string;
|
|
23
24
|
queryParams?: {
|
|
24
25
|
[k: string]: any;
|
|
@@ -1100,8 +1100,8 @@ class LoggerService {
|
|
|
1100
1100
|
return;
|
|
1101
1101
|
}
|
|
1102
1102
|
const logConfig = (LoggerService._configurationService?.getConfigValue)?.('log');
|
|
1103
|
-
if ((
|
|
1104
|
-
(!
|
|
1103
|
+
if ((log.category && log.level < (logConfig?.category?.[log.category]?.level ?? logConfig?.level ?? this.defaultLogLevel)) ||
|
|
1104
|
+
(!log.category && log.level < (logConfig?.level ?? this.defaultLogLevel))) {
|
|
1105
1105
|
return;
|
|
1106
1106
|
}
|
|
1107
1107
|
if (logConfig?.timestampFormat) {
|
|
@@ -3475,7 +3475,7 @@ class CommonsConfigurationService {
|
|
|
3475
3475
|
addModuleConfigSource(config) {
|
|
3476
3476
|
this.moduleConfig = config;
|
|
3477
3477
|
this.mergeConfigs();
|
|
3478
|
-
this.logger?.debug(`Module configuration source added
|
|
3478
|
+
this.logger?.debug(`Module configuration source added.`, this.moduleConfig);
|
|
3479
3479
|
}
|
|
3480
3480
|
/**
|
|
3481
3481
|
* Add project environment source.
|