aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt-odlux/odlux/apps/configurationApp/src/models
diff options
context:
space:
mode:
authorMichael Dürre <michael.duerre@highstreet-technologies.com>2025-03-03 16:53:52 +0100
committerMichael Dürre <michael.duerre@highstreet-technologies.com>2025-03-03 16:54:04 +0100
commit0fc9b3ec08ccf9137eddf1490a6a1f2a3a069de3 (patch)
tree3956ddab2a6b31e939de374c6c522cd1ac360950 /sdnr/wt-odlux/odlux/apps/configurationApp/src/models
parent025618795be67e37ccdfef9c6d179d70cdffeaca (diff)
fix odlux config appHEADmaster
fixed augment resolving order Issue-ID: CCSDK-4094 Change-Id: I03d17f7a76266370df2201b2667a2e10b8fa93dd Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt-odlux/odlux/apps/configurationApp/src/models')
-rw-r--r--sdnr/wt-odlux/odlux/apps/configurationApp/src/models/uiModels.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/sdnr/wt-odlux/odlux/apps/configurationApp/src/models/uiModels.ts b/sdnr/wt-odlux/odlux/apps/configurationApp/src/models/uiModels.ts
index c839f1c91..c9f5e8041 100644
--- a/sdnr/wt-odlux/odlux/apps/configurationApp/src/models/uiModels.ts
+++ b/sdnr/wt-odlux/odlux/apps/configurationApp/src/models/uiModels.ts
@@ -209,7 +209,7 @@ export const isViewElementEmpty = (viewElement: ViewElement): viewElement is Vie
return viewElement && viewElement.uiType === 'empty';
};
-export const ResolveFunction = Symbol('IsResolved');
+export const ResolveFunction = Symbol('ResolveFunction');
export type ViewSpecification = {
id: string;
@@ -219,6 +219,7 @@ export type ViewSpecification = {
parentView?: string;
language: string;
ifFeature?: string;
+ augmentations?: string[];
when?: WhenAST;
uses?: (string[]) & { [ResolveFunction]?: (parent: string) => void };
elements: { [name: string]: ViewElement };