Skip to content

Commit 298e44b

Browse files
committed
chore: bump version
1 parent a750c0b commit 298e44b

File tree

2 files changed

+33
-9
lines changed

2 files changed

+33
-9
lines changed

packages/core/src/auto-imports.d.ts

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ declare global {
4242
const createEventHook: typeof import('@vueuse/core')['createEventHook']
4343
const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
4444
const createGraphNodes: typeof import('./utils/store')['createGraphNodes']
45-
const createHooks: typeof import('./store/index')['createHooks']
45+
const createHooks: typeof import('./store/hooks')['createHooks']
4646
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
4747
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
4848
const createRemoveChange: typeof import('./utils/changes')['createRemoveChange']
@@ -109,9 +109,6 @@ declare global {
109109
const isReadonly: typeof import('vue')['isReadonly']
110110
const isRect: typeof import('./utils/graph')['isRect']
111111
const isRef: typeof import('vue')['isRef']
112-
const logicAnd: typeof import('@vueuse/core')['logicAnd']
113-
const logicNot: typeof import('@vueuse/core')['logicNot']
114-
const logicOr: typeof import('@vueuse/core')['logicOr']
115112
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
116113
const markRaw: typeof import('vue')['markRaw']
117114
const nextTick: typeof import('vue')['nextTick']
@@ -183,6 +180,14 @@ declare global {
183180
const updatePosition: typeof import('./utils/drag')['updatePosition']
184181
const useActions: typeof import('./store/index')['useActions']
185182
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
183+
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
184+
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
185+
const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
186+
const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
187+
const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
188+
const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
189+
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
190+
const useArraySome: typeof import('@vueuse/core')['useArraySome']
186191
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
187192
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
188193
const useAttrs: typeof import('vue')['useAttrs']
@@ -193,8 +198,8 @@ declare global {
193198
const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
194199
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
195200
const useCached: typeof import('@vueuse/core')['useCached']
196-
const useClamp: typeof import('@vueuse/core')['useClamp']
197201
const useClipboard: typeof import('@vueuse/core')['useClipboard']
202+
const useCloned: typeof import('@vueuse/core')['useCloned']
198203
const useColorMode: typeof import('@vueuse/core')['useColorMode']
199204
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
200205
const useCounter: typeof import('@vueuse/core')['useCounter']
@@ -276,8 +281,10 @@ declare global {
276281
const usePointer: typeof import('@vueuse/core')['usePointer']
277282
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
278283
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
284+
const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
279285
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
280286
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
287+
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
281288
const useRafFn: typeof import('@vueuse/core')['useRafFn']
282289
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
283290
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
@@ -289,15 +296,18 @@ declare global {
289296
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
290297
const useShare: typeof import('@vueuse/core')['useShare']
291298
const useSlots: typeof import('vue')['useSlots']
299+
const useSorted: typeof import('@vueuse/core')['useSorted']
292300
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
293301
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
294302
const useState: typeof import('./store/index')['useState']
295303
const useStepper: typeof import('@vueuse/core')['useStepper']
296304
const useStorage: typeof import('@vueuse/core')['useStorage']
297305
const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
298306
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
307+
const useSupported: typeof import('@vueuse/core')['useSupported']
299308
const useSwipe: typeof import('@vueuse/core')['useSwipe']
300309
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
310+
const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
301311
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
302312
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
303313
const useThrottle: typeof import('@vueuse/core')['useThrottle']
@@ -309,6 +319,8 @@ declare global {
309319
const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
310320
const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
311321
const useTitle: typeof import('@vueuse/core')['useTitle']
322+
const useToNumber: typeof import('@vueuse/core')['useToNumber']
323+
const useToString: typeof import('@vueuse/core')['useToString']
312324
const useToggle: typeof import('@vueuse/core')['useToggle']
313325
const useTransition: typeof import('@vueuse/core')['useTransition']
314326
const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']

packages/resize-rotate-node/src/auto-imports.d.ts

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ declare global {
3636
const isReactive: typeof import('vue')['isReactive']
3737
const isReadonly: typeof import('vue')['isReadonly']
3838
const isRef: typeof import('vue')['isRef']
39-
const logicAnd: typeof import('@vueuse/core')['logicAnd']
40-
const logicNot: typeof import('@vueuse/core')['logicNot']
41-
const logicOr: typeof import('@vueuse/core')['logicOr']
4239
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
4340
const markRaw: typeof import('vue')['markRaw']
4441
const nextTick: typeof import('vue')['nextTick']
@@ -99,6 +96,14 @@ declare global {
9996
const unrefElement: typeof import('@vueuse/core')['unrefElement']
10097
const until: typeof import('@vueuse/core')['until']
10198
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
99+
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
100+
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
101+
const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
102+
const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
103+
const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
104+
const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
105+
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
106+
const useArraySome: typeof import('@vueuse/core')['useArraySome']
102107
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
103108
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
104109
const useAttrs: typeof import('vue')['useAttrs']
@@ -109,8 +114,8 @@ declare global {
109114
const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
110115
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
111116
const useCached: typeof import('@vueuse/core')['useCached']
112-
const useClamp: typeof import('@vueuse/core')['useClamp']
113117
const useClipboard: typeof import('@vueuse/core')['useClipboard']
118+
const useCloned: typeof import('@vueuse/core')['useCloned']
114119
const useColorMode: typeof import('@vueuse/core')['useColorMode']
115120
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
116121
const useCounter: typeof import('@vueuse/core')['useCounter']
@@ -183,8 +188,10 @@ declare global {
183188
const usePointer: typeof import('@vueuse/core')['usePointer']
184189
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
185190
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
191+
const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
186192
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
187193
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
194+
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
188195
const useRafFn: typeof import('@vueuse/core')['useRafFn']
189196
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
190197
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
@@ -196,14 +203,17 @@ declare global {
196203
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
197204
const useShare: typeof import('@vueuse/core')['useShare']
198205
const useSlots: typeof import('vue')['useSlots']
206+
const useSorted: typeof import('@vueuse/core')['useSorted']
199207
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
200208
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
201209
const useStepper: typeof import('@vueuse/core')['useStepper']
202210
const useStorage: typeof import('@vueuse/core')['useStorage']
203211
const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
204212
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
213+
const useSupported: typeof import('@vueuse/core')['useSupported']
205214
const useSwipe: typeof import('@vueuse/core')['useSwipe']
206215
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
216+
const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
207217
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
208218
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
209219
const useThrottle: typeof import('@vueuse/core')['useThrottle']
@@ -215,6 +225,8 @@ declare global {
215225
const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
216226
const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
217227
const useTitle: typeof import('@vueuse/core')['useTitle']
228+
const useToNumber: typeof import('@vueuse/core')['useToNumber']
229+
const useToString: typeof import('@vueuse/core')['useToString']
218230
const useToggle: typeof import('@vueuse/core')['useToggle']
219231
const useTransition: typeof import('@vueuse/core')['useTransition']
220232
const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']

0 commit comments

Comments
 (0)