@dpuse/dpuse-shared 0.3.805 → 0.3.807
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.
|
@@ -7,7 +7,9 @@ export interface ContextModelDimensionHierarchyConfig extends ComponentInstanceC
|
|
|
7
7
|
children: ContextModelDimensionHierarchyNodeConfig[];
|
|
8
8
|
}
|
|
9
9
|
export interface ContextModelDimensionHierarchyLevelConfig {
|
|
10
|
+
id: string;
|
|
10
11
|
label: LocaleLabel;
|
|
12
|
+
description: LocaleDescription;
|
|
11
13
|
}
|
|
12
14
|
export interface ContextModelDimensionHierarchyNodeConfig {
|
|
13
15
|
id: string | number;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { LocaleDescription, LocaleLabel } from '../../../../../locale';
|
|
2
2
|
export type ContextModelEntityEventId = 'creation' | 'activation' | 'recognition' | 'correction' | 'modification' | 'derecognition' | 'deactivation' | 'archival' | 'deletion';
|
|
3
3
|
export interface ContextModelEntityEventConfig {
|
|
4
|
+
id: ContextModelEntityEventId;
|
|
4
5
|
labelAction: LocaleLabel;
|
|
5
6
|
labelState?: LocaleLabel;
|
|
6
7
|
description: LocaleDescription;
|
|
7
8
|
}
|
|
8
|
-
export type ContextModelEntityEventsConfig =
|
|
9
|
+
export type ContextModelEntityEventsConfig = ContextModelEntityEventConfig[];
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { LocaleDescription, LocaleLabel } from '../../../../../locale';
|
|
2
2
|
export interface ContextModelEntityPrimaryMeasureConfig {
|
|
3
|
+
id: string;
|
|
3
4
|
label: LocaleLabel;
|
|
4
5
|
description: LocaleDescription;
|
|
5
6
|
formula?: string;
|
|
6
7
|
events?: unknown[];
|
|
7
8
|
}
|
|
8
|
-
export type ContextModelEntityPrimaryMeasuresConfig =
|
|
9
|
+
export type ContextModelEntityPrimaryMeasuresConfig = ContextModelEntityPrimaryMeasureConfig[];
|