Skip to content

Commit d896024

Browse files
chore(deps): update vueuse monorepo to v14 (v4) (major) (#5335)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Benjamin Canac <canacb1@gmail.com>
1 parent 8d0a014 commit d896024

File tree

7 files changed

+44
-46
lines changed

7 files changed

+44
-46
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
@@ -27,8 +27,8 @@
2727
"@regle/rules": "^1.11.0",
2828
"@vercel/analytics": "^1.6.0",
2929
"@vercel/speed-insights": "^1.3.0",
30-
"@vueuse/integrations": "^13.9.0",
31-
"@vueuse/nuxt": "^13.9.0",
30+
"@vueuse/integrations": "^14.1.0",
31+
"@vueuse/nuxt": "^14.1.0",
3232
"ai": "^5.0.105",
3333
"better-sqlite3": "^12.5.0",
3434
"capture-website": "^5.1.0",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@
134134
"@tanstack/vue-table": "^8.21.3",
135135
"@tanstack/vue-virtual": "^3.13.12",
136136
"@unhead/vue": "^2.0.19",
137-
"@vueuse/core": "^13.9.0",
138-
"@vueuse/integrations": "^13.9.0",
137+
"@vueuse/core": "^14.1.0",
138+
"@vueuse/integrations": "^14.1.0",
139139
"colortranslator": "^5.0.0",
140140
"consola": "^3.4.2",
141141
"defu": "^6.1.4",

pnpm-lock.yaml

Lines changed: 36 additions & 36 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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import type { ComponentPublicInstance } from 'vue'
1+
import type { ComponentPublicInstance, MaybeRef } from 'vue'
22
import { ref, computed, unref, onMounted, watch, reactive } from 'vue'
33
import { useFileDialog, useDropZone } from '@vueuse/core'
4-
import type { MaybeRef } from '@vueuse/core'
54

65
export interface UseFileUploadOptions {
76
/**

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)