From 35c48ccd3346957347f2517a6c4773e4eed2ff5e Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Tue, 16 May 2023 13:17:49 +0200 Subject: [PATCH] Form overhaul: Action form --- .../client/ui/components/global/TextField.vue | 3 + .../client/ui/properties/PropertyForm.vue | 10 +- .../client/ui/properties/forms/ActionForm.vue | 129 +++++++----------- .../properties/forms/shared/ComputedField.vue | 3 + .../properties/forms/shared/FormSections.vue | 2 +- .../viewers/shared/OutlinedInput.vue | 4 +- 6 files changed, 65 insertions(+), 86 deletions(-) diff --git a/app/imports/client/ui/components/global/TextField.vue b/app/imports/client/ui/components/global/TextField.vue index 283f5c01..856ba681 100644 --- a/app/imports/client/ui/components/global/TextField.vue +++ b/app/imports/client/ui/components/global/TextField.vue @@ -16,6 +16,9 @@ + diff --git a/app/imports/client/ui/properties/PropertyForm.vue b/app/imports/client/ui/properties/PropertyForm.vue index 19e1fe33..a5293b08 100644 --- a/app/imports/client/ui/properties/PropertyForm.vue +++ b/app/imports/client/ui/properties/PropertyForm.vue @@ -94,7 +94,7 @@ \ No newline at end of file + diff --git a/app/imports/client/ui/properties/forms/ActionForm.vue b/app/imports/client/ui/properties/forms/ActionForm.vue index a81d1d5e..63b316fe 100644 --- a/app/imports/client/ui/properties/forms/ActionForm.vue +++ b/app/imports/client/ui/properties/forms/ActionForm.vue @@ -1,33 +1,44 @@