From 050ca5bf2b82cc1853e36d4e1852be247b97aab1 Mon Sep 17 00:00:00 2001 From: monman53 Date: Fri, 14 Jun 2024 20:03:42 +0900 Subject: [PATCH] Minor change --- src/Controller.vue | 226 ++++++++++++++++++++++++++++++++++ src/Document.vue | 97 ++++++++------- src/Overlay.vue | 72 +++++++++++ src/Parameter.vue | 299 --------------------------------------------- src/SVG/SVG.vue | 10 +- src/Stage.vue | 4 +- 6 files changed, 359 insertions(+), 349 deletions(-) create mode 100644 src/Controller.vue create mode 100644 src/Overlay.vue delete mode 100644 src/Parameter.vue diff --git a/src/Controller.vue b/src/Controller.vue new file mode 100644 index 0000000..98a9c01 --- /dev/null +++ b/src/Controller.vue @@ -0,0 +1,226 @@ + + + + + \ No newline at end of file diff --git a/src/Document.vue b/src/Document.vue index 738e1bc..9a4a8fd 100644 --- a/src/Document.vue +++ b/src/Document.vue @@ -9,56 +9,65 @@ onMounted(() => { diff --git a/src/Parameter.vue b/src/Parameter.vue deleted file mode 100644 index 795389a..0000000 --- a/src/Parameter.vue +++ /dev/null @@ -1,299 +0,0 @@ - - - - - diff --git a/src/SVG/SVG.vue b/src/SVG/SVG.vue index a0d3b4f..a48afbb 100644 --- a/src/SVG/SVG.vue +++ b/src/SVG/SVG.vue @@ -147,8 +147,7 @@ const rUI = computed(() => { - + @@ -160,6 +159,9 @@ const rUI = computed(() => { + + @@ -219,12 +221,12 @@ svg { .hover-sibling { stroke: white; - stroke-width: v-bind('strokeWidth.thick'); + stroke-width: v-bind('strokeWidth.normal'); } .hover-sibling-bg { stroke: v-bind('lineBgColor'); - stroke-width: v-bind('strokeWidth.thickBg'); + stroke-width: v-bind('strokeWidth.normalBg'); } .hover-sibling-master:hover~.hover-sibling, diff --git a/src/Stage.vue b/src/Stage.vue index 7caa270..2a39955 100644 --- a/src/Stage.vue +++ b/src/Stage.vue @@ -5,7 +5,7 @@ import { state, options } from './globals' import SVG from './SVG/SVG.vue' import Canvas from './Canvas.vue' -import Parameter from './Parameter.vue' +import Overlay from './Overlay.vue' import Preview from './Preview.vue' import Memory from './Memory.vue' @@ -44,7 +44,7 @@ onMounted(() => {
- +