forked from VOICEVOX/voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into selection-unify
- Loading branch information
Showing
38 changed files
with
253 additions
and
1,189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
"test-ui:storybook-vrt": "cross-env TARGET=storybook playwright test --ui", | ||
"lint": "eslint --ext .js,.vue,.ts,.mts *.config.* src tests build .storybook", | ||
"fmt": "eslint --ext .js,.vue,.ts,.mts *.config.* src tests build .storybook --fix", | ||
"markdownlint": "markdownlint --ignore node_modules/ --ignore dist/ --ignore dist_electron/ ./", | ||
"markdownlint": "markdownlint --ignore node_modules/ --ignore dist/ --ignore dist_electron/ --ignore dist_preview/ ./", | ||
"typecheck": "vue-tsc --noEmit", | ||
"typos": "cross-env ./build/vendored/typos/typos", | ||
"electron:build": "cross-env VITE_TARGET=electron vite build && electron-builder --config electron-builder.config.js --publish never", | ||
|
@@ -46,6 +46,7 @@ | |
"@gtm-support/vue-gtm": "1.2.3", | ||
"@quasar/extras": "1.10.10", | ||
"@sevenc-nanashi/utaformatix-ts": "npm:@jsr/[email protected]", | ||
"@std/path": "npm:@jsr/[email protected]", | ||
"async-lock": "1.4.0", | ||
"dayjs": "1.10.7", | ||
"electron-log": "5.1.2", | ||
|
@@ -67,7 +68,7 @@ | |
"shlex": "2.1.2", | ||
"systeminformation": "5.21.15", | ||
"tree-kill": "1.2.2", | ||
"vue": "3.5.11", | ||
"vue": "3.5.13", | ||
"vuedraggable": "4.1.0", | ||
"vuex": "4.0.2", | ||
"zod": "3.22.4" | ||
|
@@ -78,7 +79,7 @@ | |
"devDependencies": { | ||
"@chromatic-com/storybook": "1.5.0", | ||
"@openapitools/openapi-generator-cli": "2.15.3", | ||
"@playwright/test": "1.48.0", | ||
"@playwright/test": "1.48.2", | ||
"@quasar/vite-plugin": "1.8.1", | ||
"@storybook/addon-essentials": "8.4.4", | ||
"@storybook/addon-links": "8.4.4", | ||
|
@@ -124,18 +125,17 @@ | |
"license-checker-rseidelsohn": "4.3.0", | ||
"markdownlint-cli": "0.37.0", | ||
"node-fetch": "2.7.0", | ||
"playwright": "1.48.0", | ||
"playwright": "1.48.2", | ||
"prettier": "3.2.5", | ||
"sass-embedded": "1.81.0", | ||
"storybook": "8.4.4", | ||
"typescript": "5.5.2", | ||
"vite": "5.4.11", | ||
"vite-plugin-checker": "0.8.0", | ||
"vite-plugin-electron": "0.29.0", | ||
"vite-plugin-node-polyfills": "0.22.0", | ||
"vite-tsconfig-paths": "5.1.2", | ||
"vitest": "2.1.2", | ||
"vue-tsc": "2.1.6", | ||
"vue-tsc": "2.1.10", | ||
"yargs": "17.2.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!-- StoreのUI_LOCKEDを参照してContextMenuを表示する --> | ||
|
||
<template> | ||
<Presentation ref="contextMenu" :header :menudata :uiLocked /> | ||
</template> | ||
|
||
<script lang="ts"> | ||
export type { ContextMenuItemData } from "./Presentation.vue"; | ||
</script> | ||
<script setup lang="ts"> | ||
import { computed, useTemplateRef } from "vue"; | ||
import type { ComponentExposed } from "vue-component-type-helpers"; | ||
import Presentation, { ContextMenuItemData } from "./Presentation.vue"; | ||
import { useStore } from "@/store"; | ||
|
||
defineOptions({ | ||
name: "ContextMenu", | ||
}); | ||
|
||
defineProps<{ | ||
header?: string; | ||
menudata: ContextMenuItemData[]; | ||
}>(); | ||
defineExpose({ | ||
hide: () => { | ||
contextMenu.value?.hide(); | ||
}, | ||
}); | ||
|
||
const store = useStore(); | ||
const uiLocked = computed(() => store.getters.UI_LOCKED); | ||
const contextMenu = | ||
useTemplateRef<ComponentExposed<typeof Presentation>>("contextMenu"); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.