Skip to content

Commit

Permalink
chore(deps): update devdeps non-major (#9032)
Browse files Browse the repository at this point in the history
* chore(deps): update devdeps non-major

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Schmidt <[email protected]>
  • Loading branch information
renovate[bot] and dschmidt authored May 15, 2023
1 parent 3d72720 commit 82d4380
Show file tree
Hide file tree
Showing 12 changed files with 319 additions and 371 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
"not OperaMobile > 0"
],
"dependencies": {
"@vue/compiler-dom": "3.2.47",
"@vue/compiler-sfc": "3.2.47",
"@vue/runtime-dom": "3.2.47",
"@vue/compiler-dom": "3.3.2",
"@vue/compiler-sfc": "3.3.2",
"@vue/runtime-dom": "3.3.2",
"keycode": "^2.2.1",
"rollup-plugin-gzip": "^3.1.0",
"vite-plugin-static-copy": "^0.13.0",
"vite-plugin-treat-umd-as-commonjs": "0.1.3",
"vue": "3.2.47"
"vue": "3.3.2"
},
"peerDependencies": {
"caf": "*",
Expand Down Expand Up @@ -68,9 +68,9 @@
"@types/jest": "29.5.1",
"@types/jest-axe": "3.5.5",
"@types/lodash-es": "4.17.7",
"@types/node": "16.18.11",
"@types/node": "16.18.29",
"@types/node-fetch": "2.6.3",
"@vitejs/plugin-vue": "4.2.1",
"@vitejs/plugin-vue": "4.2.3",
"@vue/test-utils": "v2.4.0-alpha.0",
"@vue/vue3-jest": "29.2.4",
"autoprefixer": "10.4.14",
Expand Down
6 changes: 3 additions & 3 deletions packages/design-system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@
"typescript": "4.9.5",
"url-loader": "^4.1.1",
"v-calendar": "github:dschmidt/v-calendar#3ce6e3b8afd5491cb53ee811281d5fa8a45b044d",
"vue": "3.2.47",
"vue": "3.3.2",
"vue-inline-svg": "^3.1.0",
"vue-loader": "^15.9.0",
"vue-router": "4.1.6",
"vue-router": "4.2.0",
"vue-select": "4.0.0-beta.6",
"vue-style-loader": "^4.1.2",
"vue-styleguidist": "^4.44.2",
Expand All @@ -133,7 +133,7 @@
"postcss-url": "^9.0.0",
"tippy.js": "^6.3.7",
"v-calendar": "github:dschmidt/v-calendar#3ce6e3b8afd5491cb53ee811281d5fa8a45b044d",
"vue": "3.2.47",
"vue": "3.3.2",
"vue-inline-svg": "^3.1.0",
"vue-select": "^3.12.0",
"web-client": "workspace:@ownclouders/web-client@*",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"uuid": "^9.0.0",
"vue-concurrency": "4.0.1",
"vue3-gettext": "^2.3.3",
"vue-router": "4.1.6",
"vue-router": "4.2.0",
"vuex": "4.1.0",
"web-app-files": "workspace:*",
"web-app-search": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-files/src/components/AppBar/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export default defineComponent({
...mapState('Files', ['areHiddenFilesShown', 'areFileExtensionsShown']),
pageTitle() {
const title = this.$route.meta.title || ''
const title = (this.$route.meta.title as string) || ''
return this.$gettext(title)
},
showContextActions() {
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-files/src/views/FilesDrop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default defineComponent({
computed: {
...mapGetters(['configuration']),
pageTitle() {
return this.$gettext(this.$route.meta.title)
return this.$gettext(this.$route.meta.title as string)
},
publicLinkToken() {
return this.$route.params.token
Expand Down
9 changes: 5 additions & 4 deletions packages/web-app-search/src/views/List.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ import { defineComponent } from 'vue'
import { providerStore } from '../service'
import { debounce } from 'lodash-es'
import { queryItemAsString } from 'web-pkg/src'
export default defineComponent({
data() {
// HACK: vue-tsc thinks this.$route is a `Function` for whatever reason
// TODO: port to composition api
const { provider: providerId } = (this.$route as any).query
const { provider: providerId } = this.$route.query
const { listSearch } = providerStore.availableProviders.find(
(provider) => provider.id === providerId
)
Expand Down Expand Up @@ -47,7 +46,9 @@ export default defineComponent({
methods: {
async search() {
this.loading = true
this.searchResult = await this.listSearch.search(this.$route.query.term || '')
this.searchResult = await this.listSearch.search(
queryItemAsString(this.$route.query.term) || ''
)
this.loading = false
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/web-pkg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"qs": "^6.10.3",
"uuid": "^9.0.0",
"vue-concurrency": "4.0.1",
"vue-router": "4.1.6",
"vue-router": "4.2.0",
"vue3-gettext": "2.5.0-alpha.1",
"vuex": "4.1.0",
"web-client": "workspace:@ownclouders/web-client@*",
Expand Down
4 changes: 2 additions & 2 deletions packages/web-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
"tippy.js": "^6.3.7",
"utf8": "^3.0.0",
"uuid": "^9.0.0",
"vue": "3.2.47",
"vue": "3.3.2",
"vue-concurrency": "4.0.1",
"vue-inline-svg": "3.1.2",
"vue-router": "4.1.6",
"vue-router": "4.2.0",
"vue-select": "4.0.0-beta.6",
"vue3-gettext": "^2.3.3",
"vuex": "4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-runtime/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default defineComponent({
'resolvePublicLink',
'accessDenied'
]
if (!this.$route.name || plainLayoutRoutes.includes(this.$route.name)) {
if (!this.$route.name || plainLayoutRoutes.includes(this.$route.name as string)) {
return LayoutPlain
}
if (isPublicLinkContext(this.$router, this.$route)) {
Expand Down
2 changes: 1 addition & 1 deletion packages/web-runtime/src/pages/account.vue
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ export default defineComponent({
},
computed: {
pageTitle() {
return this.$gettext(this.$route.meta.title)
return this.$gettext(this.$route.meta.title as string)
}
},
methods: {
Expand Down
2 changes: 1 addition & 1 deletion packages/web-test-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"axios": "0.27.2",
"design-system": "workspace:@ownclouders/design-system@*",
"vue3-gettext": "^2.3.3",
"vue-router": "4.1.6",
"vue-router": "4.2.0",
"vuex": "4.1.0"
}
}
Loading

0 comments on commit 82d4380

Please sign in to comment.