From 9fb0353442fe13da848805e8335ab4b0aa10cdc0 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Wed, 30 Jul 2025 08:17:01 +0200 Subject: [PATCH] feat: Composants d'affichage des types de machines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - TypeComponentDisplay.vue : Affichage des composants existants avec hiérarchie - TypeInfoDisplay.vue : Informations générales du type de machine - TypeMachinePieceDisplay.vue : Affichage des pièces principales - Support de l'affichage en lecture seule des structures complexes - Gestion des champs personnalisés et sous-composants --- app/components/TypeComponentDisplay.vue | 157 +++++++++++++++++++++ app/components/TypeInfoDisplay.vue | 23 +++ app/components/TypeMachinePieceDisplay.vue | 50 +++++++ 3 files changed, 230 insertions(+) create mode 100644 app/components/TypeComponentDisplay.vue create mode 100644 app/components/TypeInfoDisplay.vue create mode 100644 app/components/TypeMachinePieceDisplay.vue diff --git a/app/components/TypeComponentDisplay.vue b/app/components/TypeComponentDisplay.vue new file mode 100644 index 0000000..32edaa1 --- /dev/null +++ b/app/components/TypeComponentDisplay.vue @@ -0,0 +1,157 @@ + + + \ No newline at end of file diff --git a/app/components/TypeInfoDisplay.vue b/app/components/TypeInfoDisplay.vue new file mode 100644 index 0000000..7ee594b --- /dev/null +++ b/app/components/TypeInfoDisplay.vue @@ -0,0 +1,23 @@ + + + \ No newline at end of file diff --git a/app/components/TypeMachinePieceDisplay.vue b/app/components/TypeMachinePieceDisplay.vue new file mode 100644 index 0000000..0445779 --- /dev/null +++ b/app/components/TypeMachinePieceDisplay.vue @@ -0,0 +1,50 @@ + + + \ No newline at end of file