Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor: CharacterButton.vueをリファクタ #1730

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
966 changes: 288 additions & 678 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"systeminformation": "5.21.15",
"tree-kill": "1.2.2",
"uuid": "9.0.0",
"vue": "3.2.45",
"vue": "3.4.15",
"vue-router": "4.0.8",
"vuedraggable": "4.1.0",
"vuex": "4.0.2",
Expand Down Expand Up @@ -101,7 +101,7 @@
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-vue": "9.5.1",
"eslint-plugin-vue": "9.20.1",
"happy-dom": "8.4.2",
"license-checker": "25.0.1",
"markdownlint": "0.31.1",
Expand All @@ -122,7 +122,7 @@
"vite-plugin-node-polyfills": "0.15.0",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6",
"vue-tsc": "1.8.19",
"vue-tsc": "1.8.27",
"yargs": "17.2.1"
},
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/AudioCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
<script setup lang="ts">
import { computed, watch, ref, nextTick } from "vue";
import { QInput } from "quasar";
import CharacterButton from "./CharacterButton.vue";
import CharacterButton from "./CharacterButton/Container.vue";
import { MenuItemButton, MenuItemSeparator } from "./MenuBar.vue";
import ContextMenu from "./ContextMenu.vue";
import { useStore } from "@/store";
Expand Down
2 changes: 1 addition & 1 deletion src/components/AudioInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@
<script setup lang="ts">
import { computed, ref, watchEffect } from "vue";
import { QSelectProps } from "quasar";
import CharacterButton from "./CharacterButton.vue";
import PresetManageDialog from "./PresetManageDialog.vue";
import CharacterButton from "./CharacterButton/Container.vue";
import { useStore } from "@/store";

import {
Expand Down
Loading
Loading