From 10751cb79877600f3eb44be147bb76519f27f5aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Tue, 17 Jan 2023 18:25:56 +0000 Subject: [PATCH] CalendarImage -> DoorMapEditor --- ui/src/App.vue | 6 +- ui/src/components/CalendarImage.vue | 147 -------------------- ui/src/components/DoorMapEditor.vue | 64 +++++++++ ui/src/components/rects/Rect.vue | 43 ++++++ ui/src/components/rects/RectPad.vue | 85 +++++++++++ ui/src/components/{ => rects}/rectangles.ts | 0 6 files changed, 195 insertions(+), 150 deletions(-) delete mode 100644 ui/src/components/CalendarImage.vue create mode 100644 ui/src/components/DoorMapEditor.vue create mode 100644 ui/src/components/rects/Rect.vue create mode 100644 ui/src/components/rects/RectPad.vue rename ui/src/components/{ => rects}/rectangles.ts (100%) diff --git a/ui/src/App.vue b/ui/src/App.vue index cbfd175..c60083f 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -9,7 +9,7 @@

Der Gelöt

- + -
- - - - - -
- - - - - \ No newline at end of file diff --git a/ui/src/components/DoorMapEditor.vue b/ui/src/components/DoorMapEditor.vue new file mode 100644 index 0000000..80f2a36 --- /dev/null +++ b/ui/src/components/DoorMapEditor.vue @@ -0,0 +1,64 @@ + + + + + \ No newline at end of file diff --git a/ui/src/components/rects/Rect.vue b/ui/src/components/rects/Rect.vue new file mode 100644 index 0000000..e874d04 --- /dev/null +++ b/ui/src/components/rects/Rect.vue @@ -0,0 +1,43 @@ + + + + + \ No newline at end of file diff --git a/ui/src/components/rects/RectPad.vue b/ui/src/components/rects/RectPad.vue new file mode 100644 index 0000000..9236f70 --- /dev/null +++ b/ui/src/components/rects/RectPad.vue @@ -0,0 +1,85 @@ + + + + + \ No newline at end of file diff --git a/ui/src/components/rectangles.ts b/ui/src/components/rects/rectangles.ts similarity index 100% rename from ui/src/components/rectangles.ts rename to ui/src/components/rects/rectangles.ts