Skip to content

Commit 36ff74f

Browse files
chore(deps): update vueuse monorepo to v14 (v3) (major) (#5331)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Benjamin Canac <canacb1@gmail.com>
1 parent 5ebca36 commit 36ff74f

File tree

7 files changed

+68
-31
lines changed

7 files changed

+68
-31
lines changed

docs/app/components/content/examples/table/TableDragAndDropExample.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import type { TableColumn } from '@nuxt/ui'
3-
import { useSortable } from '@vueuse/integrations/useSortable.mjs'
3+
import { useSortable } from '@vueuse/integrations/useSortable'
44
55
type Payment = {
66
id: string

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"@octokit/rest": "^22.0.1",
2323
"@rollup/plugin-yaml": "^4.1.2",
2424
"@vercel/analytics": "^1.6.0",
25-
"@vueuse/integrations": "^13.9.0",
26-
"@vueuse/nuxt": "^13.9.0",
25+
"@vueuse/integrations": "^14.1.0",
26+
"@vueuse/nuxt": "^14.1.0",
2727
"ai": "^4.3.19",
2828
"better-sqlite3": "^12.5.0",
2929
"capture-website": "^5.1.0",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@
124124
"@tailwindcss/vite": "^4.1.17",
125125
"@tanstack/vue-table": "^8.21.3",
126126
"@unhead/vue": "^2.0.19",
127-
"@vueuse/core": "^13.9.0",
128-
"@vueuse/integrations": "^13.9.0",
127+
"@vueuse/core": "^14.1.0",
128+
"@vueuse/integrations": "^14.1.0",
129129
"colortranslator": "^5.0.0",
130130
"consola": "^3.4.2",
131131
"defu": "^6.1.4",

pnpm-lock.yaml

Lines changed: 60 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/runtime/components/ColorPicker.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- eslint-disable vue/block-tag-newline -->
22
<script lang="ts">
3-
import type { MaybeRefOrGetter } from '@vueuse/shared'
3+
import type { MaybeRefOrGetter } from 'vue'
44
import type { AppConfig } from '@nuxt/schema'
55
import theme from '#build/ui/color-picker'
66
import type { HSLObject } from 'colortranslator'

src/runtime/composables/useFileUpload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import type { MaybeRef } from 'vue'
12
import { ref, computed, unref, onMounted, watch, reactive } from 'vue'
23
import { useFileDialog, useDropZone } from '@vueuse/core'
3-
import type { MaybeRef } from '@vueuse/core'
44

55
export interface UseFileUploadOptions {
66
/**

src/runtime/utils/locale.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import type { Ref } from 'vue'
1+
import type { Ref, MaybeRef } from 'vue'
22
import type { Locale, Direction } from '../types/locale'
3-
import type { MaybeRef } from '@vueuse/core'
43
import { computed, isRef, ref, unref } from 'vue'
54
import { get } from './index'
65

0 commit comments

Comments
 (0)