Skip to content

Commit 02cb1ea

Browse files
committed
chore: upgrade deps
1 parent b51b95b commit 02cb1ea

File tree

5 files changed

+402
-834
lines changed

5 files changed

+402
-834
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@
9898
"prettier": "^2.8.4",
9999
"tsup": "^6.6.3",
100100
"tsx": "^3.12.5",
101-
"typescript": "^5.0.0-dev.20230226",
102-
"vite": "^4.1.4",
101+
"typescript": "^5.0.2",
102+
"vite": "^4.2.0",
103103
"vitest": "^0.29.3"
104104
},
105105
"engines": {

playground/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
"vercel-build": "pnpm run -C .. build && pnpm build"
1212
},
1313
"dependencies": {
14-
"@unocss/reset": "^0.50.4",
14+
"@unocss/reset": "^0.50.6",
1515
"@vueuse/core": "^9.13.0",
1616
"unplugin-jsx-string": "workspace:*",
1717
"vue": "^3.2.47"
1818
},
1919
"devDependencies": {
2020
"@iconify-json/carbon": "^1.1.16",
21-
"@vitejs/plugin-vue": "^4.0.0",
21+
"@vitejs/plugin-vue": "^4.1.0",
2222
"@vue/runtime-core": "^3.2.47",
23-
"unocss": "^0.50.4",
23+
"unocss": "^0.50.6",
2424
"unplugin-auto-import": "^0.15.1",
2525
"unplugin-vue-components": "^0.24.1",
26-
"vite": "^4.1.4",
26+
"vite": "^4.2.0",
2727
"vue-tsc": "^1.2.0"
2828
}
2929
}

playground/src/typings/auto-import.d.ts

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
// Generated by 'unplugin-auto-import'
1+
/* eslint-disable */
2+
/* prettier-ignore */
3+
// @ts-nocheck
4+
// Generated by unplugin-auto-import
25
export {}
36
declare global {
47
const EffectScope: typeof import('vue')['EffectScope']
@@ -73,7 +76,6 @@ declare global {
7376
const refThrottled: typeof import('@vueuse/core')['refThrottled']
7477
const refWithControl: typeof import('@vueuse/core')['refWithControl']
7578
const resolveComponent: typeof import('vue')['resolveComponent']
76-
const resolveDirective: typeof import('vue')['resolveDirective']
7779
const resolveRef: typeof import('@vueuse/core')['resolveRef']
7880
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
7981
const shallowReactive: typeof import('vue')['shallowReactive']
@@ -103,6 +105,7 @@ declare global {
103105
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
104106
const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
105107
const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
108+
const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
106109
const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
107110
const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
108111
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
@@ -197,6 +200,7 @@ declare global {
197200
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
198201
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
199202
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
203+
const usePrevious: typeof import('@vueuse/core')['usePrevious']
200204
const useRafFn: typeof import('@vueuse/core')['useRafFn']
201205
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
202206
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
@@ -263,6 +267,11 @@ declare global {
263267
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
264268
const whenever: typeof import('@vueuse/core')['whenever']
265269
}
270+
// for type re-export
271+
declare global {
272+
// @ts-ignore
273+
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
274+
}
266275
// for vue template auto import
267276
import { UnwrapRef } from 'vue'
268277
declare module 'vue' {
@@ -339,7 +348,6 @@ declare module 'vue' {
339348
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
340349
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
341350
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
342-
readonly resolveDirective: UnwrapRef<typeof import('vue')['resolveDirective']>
343351
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
344352
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
345353
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
@@ -369,6 +377,7 @@ declare module 'vue' {
369377
readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
370378
readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
371379
readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
380+
readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
372381
readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
373382
readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
374383
readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
@@ -463,6 +472,7 @@ declare module 'vue' {
463472
readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
464473
readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
465474
readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
475+
readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
466476
readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
467477
readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
468478
readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>

playground/src/typings/components.d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// generated by unplugin-vue-components
2-
// We suggest you to commit this file into source control
1+
/* eslint-disable */
2+
/* prettier-ignore */
3+
// @ts-nocheck
4+
// Generated by unplugin-vue-components
35
// Read more: https://github.com/vuejs/core/pull/3399
46
import '@vue/runtime-core'
57

0 commit comments

Comments
 (0)