Skip to content

Commit c78f8aa

Browse files
committed
chore: update vue dependencies
1 parent 97d3a3e commit c78f8aa

File tree

7 files changed

+1438
-1485
lines changed

7 files changed

+1438
-1485
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
"@typescript/native-preview": "7.0.0-dev.20250912.1",
4444
"@unhead/vue": "^2.0.5",
4545
"@vitejs/plugin-vue": "^5.2.1",
46-
"@vue/compiler-sfc": "^3.5.13",
47-
"@vue/language-server": "^2.2.8",
48-
"@vue/runtime-core": "^3.5.13",
49-
"@vue/runtime-dom": "^3.5.13",
46+
"@vue/compiler-sfc": "^3.5.21",
47+
"@vue/language-server": "^3.0.7",
48+
"@vue/runtime-core": "^3.5.21",
49+
"@vue/runtime-dom": "^3.5.21",
5050
"@vuetify/github-releaser": "^4.0.3",
5151
"@vueuse/head": "^1.3.1",
5252
"concurrently": "^9.1.2",
@@ -62,7 +62,7 @@
6262
"eslint-plugin-promise": "^6.6.0",
6363
"eslint-plugin-react": "^7.37.5",
6464
"eslint-plugin-sonarjs": "^0.25.1",
65-
"eslint-plugin-vue": "^10.0.0",
65+
"eslint-plugin-vue": "^10.4.0",
6666
"eslint-plugin-vuetify": "^2.5.2",
6767
"glob": "^11.0.1",
6868
"husky": "^9.1.7",
@@ -87,11 +87,11 @@
8787
"vite": "^6.3.5",
8888
"vite-plugin-inspect": "11.1.0",
8989
"vite-plugin-warmup": "^0.1.0",
90-
"vue": "^3.5.13",
91-
"vue-eslint-parser": "^10.1.3",
92-
"vue-tsc": "^2.2.10",
90+
"vue": "^3.5.21",
91+
"vue-eslint-parser": "^10.2.0",
92+
"vue-tsc": "^3.0.7",
9393
"vuetify": "workspace:*",
9494
"yargs": "^17.7.2"
9595
},
96-
"packageManager": "pnpm@10.16.1"
96+
"packageManager": "pnpm@10.17.0"
9797
}

packages/api-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"piscina": "^4.9.2",
1717
"prettier": "^3.5.3",
1818
"ts-morph": "^25.0.1",
19-
"vue": "^3.5.13",
19+
"vue": "^3.5.21",
2020
"vuetify": "workspace:*"
2121
},
2222
"devDependencies": {

packages/docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"roboto-fontface": "^0.10.0",
3838
"swetrix": "^3.6.1",
3939
"vee-validate": "^4.15.0",
40-
"vue": "^3.5.13",
40+
"vue": "^3.5.21",
4141
"vue-i18n": "^11.1.3",
4242
"vue-instantsearch": "^4.20.6",
4343
"vue-router": "^4.5.0",
@@ -56,7 +56,7 @@
5656
"@types/markdown-it-container": "^2.0.10",
5757
"@types/prismjs": "^1.26.5",
5858
"@vitejs/plugin-basic-ssl": "^2.0.0",
59-
"@vue/compiler-sfc": "^3.5.13",
59+
"@vue/compiler-sfc": "^3.5.21",
6060
"@vuetify/api-generator": "workspace:*",
6161
"@yankeeinlondon/builder-api": "^1.4.1",
6262
"ajv": "^8.17.1",
@@ -84,7 +84,7 @@
8484
"vite-plugin-pwa": "^1.0.0",
8585
"vite-plugin-vue-layouts": "^0.11.0",
8686
"vite-plugin-vuetify": "^2.1.1",
87-
"vue-tsc": "^2.2.10"
87+
"vue-tsc": "^3.0.7"
8888
},
8989
"publishConfig": {
9090
"access": "public"

packages/docs/src/examples/accessibility/menu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<script setup>
2626
function onClick () {
27-
// Perform an action
27+
// Perform an action
2828
}
2929
</script>
3030

packages/docs/src/examples/v-hotkey/prop-key-map.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ const customKeyMap = {
184184
const platform = ref('mac')
185185
186186
const customKeyMap = {
187-
// Include common keys that we're not customizing
187+
// Include common keys that we're not customizing
188188
shift: {
189189
mac: { symbol: '', icon: '$shift', text: '$vuetify.hotkey.shift' },
190190
default: { text: 'Shift' },
@@ -198,7 +198,7 @@ const customKeyMap = {
198198
default: { text: 'Ctrl' },
199199
},
200200
201-
// Custom key overrides
201+
// Custom key overrides
202202
ctrl: {
203203
mac: { symbol: '', icon: '$ctrl', text: 'Control' },
204204
default: { symbol: '', icon: '$ctrl', text: 'Control' },
@@ -211,7 +211,7 @@ const customKeyMap = {
211211
default: { symbol: '', icon: '$enter', text: 'Return' },
212212
},
213213
214-
// Include other keys for completeness
214+
// Include other keys for completeness
215215
arrowup: {
216216
default: { symbol: '', icon: '$arrowup', text: '$vuetify.hotkey.upArrow' },
217217
},

packages/vuetify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
"vite-live-preview": "^0.3.2",
184184
"vite-ssr": "^0.17.2",
185185
"vitest": "^3.1.1",
186-
"vue": "^3.5.13",
186+
"vue": "^3.5.21",
187187
"vue-i18n": "^11.1.3",
188188
"vue-router": "^4.5.0",
189189
"webdriverio": "^9.15.0"

0 commit comments

Comments
 (0)