From 10477e47da3be7e5e90f6b59301717cca3963c02 Mon Sep 17 00:00:00 2001 From: Sebastian Eicke Date: Tue, 19 Nov 2024 13:41:23 +0100 Subject: [PATCH] Add SupplementalSemanticId Component --- .../src/components/SubmodelElementView.vue | 16 ++++++++ .../components/UIComponents/SemanticID.vue | 8 ++-- .../UIComponents/SupplementalSemanticID.vue | 37 +++++++++++++++++++ 3 files changed, 57 insertions(+), 4 deletions(-) create mode 100644 aas-web-ui/src/components/UIComponents/SupplementalSemanticID.vue diff --git a/aas-web-ui/src/components/SubmodelElementView.vue b/aas-web-ui/src/components/SubmodelElementView.vue index 24cc24e..a1f7fe9 100644 --- a/aas-web-ui/src/components/SubmodelElementView.vue +++ b/aas-web-ui/src/components/SubmodelElementView.vue @@ -47,6 +47,20 @@ " :semantic-id-object="submodelElementData.semanticId" :semantic-title="'SemanticID'"> + + + @@ -160,6 +174,7 @@ import DisplayNameElement from '@/components/UIComponents/DisplayNameElement.vue'; import IdentificationElement from '@/components/UIComponents/IdentificationElement.vue'; import SemanticID from '@/components/UIComponents/SemanticID.vue'; + import SupplementalSemanticID from '@/components/UIComponents/SupplementalSemanticID.vue'; import RequestHandling from '@/mixins/RequestHandling'; import SubmodelElementHandling from '@/mixins/SubmodelElementHandling'; import { useAASStore } from '@/store/AASDataStore'; @@ -173,6 +188,7 @@ DisplayNameElement, DescriptionElement, SemanticID, + SupplementalSemanticID, ConceptDescription, Submodel, diff --git a/aas-web-ui/src/components/UIComponents/SemanticID.vue b/aas-web-ui/src/components/UIComponents/SemanticID.vue index cf3117b..c1910c4 100644 --- a/aas-web-ui/src/components/UIComponents/SemanticID.vue +++ b/aas-web-ui/src/components/UIComponents/SemanticID.vue @@ -1,6 +1,6 @@