reactive-route 0.0.1-alpha.26 → 0.0.1-alpha.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/dist/cjs/adapters/vue/index.js +39 -0
- package/dist/cjs/adapters/vue/package.json +1 -0
- package/dist/cjs/vue/index.js +0 -0
- package/dist/cjs/vue/package.json +1 -0
- package/dist/esm/adapters/vue/index.js +18 -0
- package/dist/esm/adapters/vue/package.json +1 -0
- package/dist/esm/vue/index.js +0 -0
- package/dist/esm/vue/package.json +1 -0
- package/dist/tsconfig.types.react.tsbuildinfo +1 -1
- package/dist/vue/index.d.ts +1 -1
- package/dist/vue/index.d.ts.map +1 -1
- package/e2e/app.test.ts +130 -0
- package/e2e/teardown.ts +12 -0
- package/package.json +25 -9
- package/playwright.config.ts +54 -0
- package/vitepress/.vitepress/cache/deps/_metadata.json +52 -0
- package/vitepress/.vitepress/cache/deps/chunk-FL23S3EK.js +12705 -0
- package/vitepress/.vitepress/cache/deps/chunk-FL23S3EK.js.map +7 -0
- package/vitepress/.vitepress/cache/deps/chunk-VGAXUAUJ.js +9952 -0
- package/vitepress/.vitepress/cache/deps/chunk-VGAXUAUJ.js.map +7 -0
- package/vitepress/.vitepress/cache/deps/package.json +3 -0
- package/vitepress/.vitepress/cache/deps/vitepress___@vue_devtools-api.js +3844 -0
- package/vitepress/.vitepress/cache/deps/vitepress___@vue_devtools-api.js.map +7 -0
- package/vitepress/.vitepress/cache/deps/vitepress___@vueuse_core.js +588 -0
- package/vitepress/.vitepress/cache/deps/vitepress___@vueuse_core.js.map +7 -0
- package/vitepress/.vitepress/cache/deps/vitepress___@vueuse_integrations_useFocusTrap.js +1153 -0
- package/vitepress/.vitepress/cache/deps/vitepress___@vueuse_integrations_useFocusTrap.js.map +7 -0
- package/vitepress/.vitepress/cache/deps/vitepress___mark__js_src_vanilla__js.js +1665 -0
- package/vitepress/.vitepress/cache/deps/vitepress___mark__js_src_vanilla__js.js.map +7 -0
- package/vitepress/.vitepress/cache/deps/vitepress___minisearch.js +1812 -0
- package/vitepress/.vitepress/cache/deps/vitepress___minisearch.js.map +7 -0
- package/vitepress/.vitepress/cache/deps/vue.js +342 -0
- package/vitepress/.vitepress/cache/deps/vue.js.map +7 -0
- package/vitepress/.vitepress/config.mts +72 -0
- package/vitepress/.vitepress/theme/custom.css +9 -0
- package/vitepress/.vitepress/theme/index.ts +5 -0
- package/vitepress/examples/preact.md +22 -0
- package/vitepress/examples/react.md +22 -0
- package/vitepress/examples/solid.md +21 -0
- package/vitepress/file.svg +79 -0
- package/vitepress/guide/advanced.md +131 -0
- package/vitepress/guide/getting-started.md +139 -0
- package/vitepress/guide/index.md +44 -0
- package/vitepress/guide/preact.md +33 -0
- package/vitepress/guide/react.md +33 -0
- package/vitepress/guide/router-component.md +67 -0
- package/vitepress/guide/router-configuration.md +185 -0
- package/vitepress/guide/routes-configuration.md +191 -0
- package/vitepress/guide/solid.md +68 -0
- package/vitepress/guide/ssr.md +70 -0
- package/vitepress/index.md +29 -0
- package/vitest.vue.config.mjs +23 -0
- package/dist/vue/Router.d.ts +0 -4
- package/dist/vue/Router.d.ts.map +0 -1
|
@@ -0,0 +1,588 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DefaultMagicKeysAliasMap,
|
|
3
|
+
StorageSerializers,
|
|
4
|
+
TransitionPresets,
|
|
5
|
+
assert,
|
|
6
|
+
breakpointsAntDesign,
|
|
7
|
+
breakpointsBootstrapV5,
|
|
8
|
+
breakpointsElement,
|
|
9
|
+
breakpointsMasterCss,
|
|
10
|
+
breakpointsPrimeFlex,
|
|
11
|
+
breakpointsQuasar,
|
|
12
|
+
breakpointsSematic,
|
|
13
|
+
breakpointsTailwind,
|
|
14
|
+
breakpointsVuetify,
|
|
15
|
+
breakpointsVuetifyV2,
|
|
16
|
+
breakpointsVuetifyV3,
|
|
17
|
+
bypassFilter,
|
|
18
|
+
camelize,
|
|
19
|
+
clamp,
|
|
20
|
+
cloneFnJSON,
|
|
21
|
+
computedAsync,
|
|
22
|
+
computedEager,
|
|
23
|
+
computedInject,
|
|
24
|
+
computedWithControl,
|
|
25
|
+
containsProp,
|
|
26
|
+
controlledRef,
|
|
27
|
+
createEventHook,
|
|
28
|
+
createFetch,
|
|
29
|
+
createFilterWrapper,
|
|
30
|
+
createGlobalState,
|
|
31
|
+
createInjectionState,
|
|
32
|
+
createRef,
|
|
33
|
+
createReusableTemplate,
|
|
34
|
+
createSharedComposable,
|
|
35
|
+
createSingletonPromise,
|
|
36
|
+
createTemplatePromise,
|
|
37
|
+
createUnrefFn,
|
|
38
|
+
customStorageEventName,
|
|
39
|
+
debounceFilter,
|
|
40
|
+
defaultDocument,
|
|
41
|
+
defaultLocation,
|
|
42
|
+
defaultNavigator,
|
|
43
|
+
defaultWindow,
|
|
44
|
+
executeTransition,
|
|
45
|
+
extendRef,
|
|
46
|
+
formatDate,
|
|
47
|
+
formatTimeAgo,
|
|
48
|
+
formatTimeAgoIntl,
|
|
49
|
+
formatTimeAgoIntlParts,
|
|
50
|
+
get,
|
|
51
|
+
getLifeCycleTarget,
|
|
52
|
+
getSSRHandler,
|
|
53
|
+
hasOwn,
|
|
54
|
+
hyphenate,
|
|
55
|
+
identity,
|
|
56
|
+
increaseWithUnit,
|
|
57
|
+
injectLocal,
|
|
58
|
+
invoke,
|
|
59
|
+
isClient,
|
|
60
|
+
isDef,
|
|
61
|
+
isDefined,
|
|
62
|
+
isIOS,
|
|
63
|
+
isObject,
|
|
64
|
+
isWorker,
|
|
65
|
+
makeDestructurable,
|
|
66
|
+
mapGamepadToXbox360Controller,
|
|
67
|
+
noop,
|
|
68
|
+
normalizeDate,
|
|
69
|
+
notNullish,
|
|
70
|
+
now,
|
|
71
|
+
objectEntries,
|
|
72
|
+
objectOmit,
|
|
73
|
+
objectPick,
|
|
74
|
+
onClickOutside,
|
|
75
|
+
onElementRemoval,
|
|
76
|
+
onKeyDown,
|
|
77
|
+
onKeyPressed,
|
|
78
|
+
onKeyStroke,
|
|
79
|
+
onKeyUp,
|
|
80
|
+
onLongPress,
|
|
81
|
+
onStartTyping,
|
|
82
|
+
pausableFilter,
|
|
83
|
+
promiseTimeout,
|
|
84
|
+
provideLocal,
|
|
85
|
+
provideSSRWidth,
|
|
86
|
+
pxValue,
|
|
87
|
+
rand,
|
|
88
|
+
reactify,
|
|
89
|
+
reactifyObject,
|
|
90
|
+
reactiveComputed,
|
|
91
|
+
reactiveOmit,
|
|
92
|
+
reactivePick,
|
|
93
|
+
refAutoReset,
|
|
94
|
+
refDebounced,
|
|
95
|
+
refDefault,
|
|
96
|
+
refThrottled,
|
|
97
|
+
refWithControl,
|
|
98
|
+
resolveRef,
|
|
99
|
+
resolveUnref,
|
|
100
|
+
set,
|
|
101
|
+
setSSRHandler,
|
|
102
|
+
syncRef,
|
|
103
|
+
syncRefs,
|
|
104
|
+
templateRef,
|
|
105
|
+
throttleFilter,
|
|
106
|
+
timestamp,
|
|
107
|
+
toArray,
|
|
108
|
+
toReactive,
|
|
109
|
+
toRef,
|
|
110
|
+
toRefs,
|
|
111
|
+
toValue,
|
|
112
|
+
tryOnBeforeMount,
|
|
113
|
+
tryOnBeforeUnmount,
|
|
114
|
+
tryOnMounted,
|
|
115
|
+
tryOnScopeDispose,
|
|
116
|
+
tryOnUnmounted,
|
|
117
|
+
unrefElement,
|
|
118
|
+
until,
|
|
119
|
+
useActiveElement,
|
|
120
|
+
useAnimate,
|
|
121
|
+
useArrayDifference,
|
|
122
|
+
useArrayEvery,
|
|
123
|
+
useArrayFilter,
|
|
124
|
+
useArrayFind,
|
|
125
|
+
useArrayFindIndex,
|
|
126
|
+
useArrayFindLast,
|
|
127
|
+
useArrayIncludes,
|
|
128
|
+
useArrayJoin,
|
|
129
|
+
useArrayMap,
|
|
130
|
+
useArrayReduce,
|
|
131
|
+
useArraySome,
|
|
132
|
+
useArrayUnique,
|
|
133
|
+
useAsyncQueue,
|
|
134
|
+
useAsyncState,
|
|
135
|
+
useBase64,
|
|
136
|
+
useBattery,
|
|
137
|
+
useBluetooth,
|
|
138
|
+
useBreakpoints,
|
|
139
|
+
useBroadcastChannel,
|
|
140
|
+
useBrowserLocation,
|
|
141
|
+
useCached,
|
|
142
|
+
useClipboard,
|
|
143
|
+
useClipboardItems,
|
|
144
|
+
useCloned,
|
|
145
|
+
useColorMode,
|
|
146
|
+
useConfirmDialog,
|
|
147
|
+
useCountdown,
|
|
148
|
+
useCounter,
|
|
149
|
+
useCssVar,
|
|
150
|
+
useCurrentElement,
|
|
151
|
+
useCycleList,
|
|
152
|
+
useDark,
|
|
153
|
+
useDateFormat,
|
|
154
|
+
useDebounceFn,
|
|
155
|
+
useDebouncedRefHistory,
|
|
156
|
+
useDeviceMotion,
|
|
157
|
+
useDeviceOrientation,
|
|
158
|
+
useDevicePixelRatio,
|
|
159
|
+
useDevicesList,
|
|
160
|
+
useDisplayMedia,
|
|
161
|
+
useDocumentVisibility,
|
|
162
|
+
useDraggable,
|
|
163
|
+
useDropZone,
|
|
164
|
+
useElementBounding,
|
|
165
|
+
useElementByPoint,
|
|
166
|
+
useElementHover,
|
|
167
|
+
useElementSize,
|
|
168
|
+
useElementVisibility,
|
|
169
|
+
useEventBus,
|
|
170
|
+
useEventListener,
|
|
171
|
+
useEventSource,
|
|
172
|
+
useEyeDropper,
|
|
173
|
+
useFavicon,
|
|
174
|
+
useFetch,
|
|
175
|
+
useFileDialog,
|
|
176
|
+
useFileSystemAccess,
|
|
177
|
+
useFocus,
|
|
178
|
+
useFocusWithin,
|
|
179
|
+
useFps,
|
|
180
|
+
useFullscreen,
|
|
181
|
+
useGamepad,
|
|
182
|
+
useGeolocation,
|
|
183
|
+
useIdle,
|
|
184
|
+
useImage,
|
|
185
|
+
useInfiniteScroll,
|
|
186
|
+
useIntersectionObserver,
|
|
187
|
+
useInterval,
|
|
188
|
+
useIntervalFn,
|
|
189
|
+
useKeyModifier,
|
|
190
|
+
useLastChanged,
|
|
191
|
+
useLocalStorage,
|
|
192
|
+
useMagicKeys,
|
|
193
|
+
useManualRefHistory,
|
|
194
|
+
useMediaControls,
|
|
195
|
+
useMediaQuery,
|
|
196
|
+
useMemoize,
|
|
197
|
+
useMemory,
|
|
198
|
+
useMounted,
|
|
199
|
+
useMouse,
|
|
200
|
+
useMouseInElement,
|
|
201
|
+
useMousePressed,
|
|
202
|
+
useMutationObserver,
|
|
203
|
+
useNavigatorLanguage,
|
|
204
|
+
useNetwork,
|
|
205
|
+
useNow,
|
|
206
|
+
useObjectUrl,
|
|
207
|
+
useOffsetPagination,
|
|
208
|
+
useOnline,
|
|
209
|
+
usePageLeave,
|
|
210
|
+
useParallax,
|
|
211
|
+
useParentElement,
|
|
212
|
+
usePerformanceObserver,
|
|
213
|
+
usePermission,
|
|
214
|
+
usePointer,
|
|
215
|
+
usePointerLock,
|
|
216
|
+
usePointerSwipe,
|
|
217
|
+
usePreferredColorScheme,
|
|
218
|
+
usePreferredContrast,
|
|
219
|
+
usePreferredDark,
|
|
220
|
+
usePreferredLanguages,
|
|
221
|
+
usePreferredReducedMotion,
|
|
222
|
+
usePreferredReducedTransparency,
|
|
223
|
+
usePrevious,
|
|
224
|
+
useRafFn,
|
|
225
|
+
useRefHistory,
|
|
226
|
+
useResizeObserver,
|
|
227
|
+
useSSRWidth,
|
|
228
|
+
useScreenOrientation,
|
|
229
|
+
useScreenSafeArea,
|
|
230
|
+
useScriptTag,
|
|
231
|
+
useScroll,
|
|
232
|
+
useScrollLock,
|
|
233
|
+
useSessionStorage,
|
|
234
|
+
useShare,
|
|
235
|
+
useSorted,
|
|
236
|
+
useSpeechRecognition,
|
|
237
|
+
useSpeechSynthesis,
|
|
238
|
+
useStepper,
|
|
239
|
+
useStorage,
|
|
240
|
+
useStorageAsync,
|
|
241
|
+
useStyleTag,
|
|
242
|
+
useSupported,
|
|
243
|
+
useSwipe,
|
|
244
|
+
useTemplateRefsList,
|
|
245
|
+
useTextDirection,
|
|
246
|
+
useTextSelection,
|
|
247
|
+
useTextareaAutosize,
|
|
248
|
+
useThrottleFn,
|
|
249
|
+
useThrottledRefHistory,
|
|
250
|
+
useTimeAgo,
|
|
251
|
+
useTimeAgoIntl,
|
|
252
|
+
useTimeout,
|
|
253
|
+
useTimeoutFn,
|
|
254
|
+
useTimeoutPoll,
|
|
255
|
+
useTimestamp,
|
|
256
|
+
useTitle,
|
|
257
|
+
useToNumber,
|
|
258
|
+
useToString,
|
|
259
|
+
useToggle,
|
|
260
|
+
useTransition,
|
|
261
|
+
useUrlSearchParams,
|
|
262
|
+
useUserMedia,
|
|
263
|
+
useVModel,
|
|
264
|
+
useVModels,
|
|
265
|
+
useVibrate,
|
|
266
|
+
useVirtualList,
|
|
267
|
+
useWakeLock,
|
|
268
|
+
useWebNotification,
|
|
269
|
+
useWebSocket,
|
|
270
|
+
useWebWorker,
|
|
271
|
+
useWebWorkerFn,
|
|
272
|
+
useWindowFocus,
|
|
273
|
+
useWindowScroll,
|
|
274
|
+
useWindowSize,
|
|
275
|
+
watchArray,
|
|
276
|
+
watchAtMost,
|
|
277
|
+
watchDebounced,
|
|
278
|
+
watchDeep,
|
|
279
|
+
watchIgnorable,
|
|
280
|
+
watchImmediate,
|
|
281
|
+
watchOnce,
|
|
282
|
+
watchPausable,
|
|
283
|
+
watchThrottled,
|
|
284
|
+
watchTriggerable,
|
|
285
|
+
watchWithFilter,
|
|
286
|
+
whenever
|
|
287
|
+
} from "./chunk-VGAXUAUJ.js";
|
|
288
|
+
import "./chunk-FL23S3EK.js";
|
|
289
|
+
export {
|
|
290
|
+
DefaultMagicKeysAliasMap,
|
|
291
|
+
StorageSerializers,
|
|
292
|
+
TransitionPresets,
|
|
293
|
+
assert,
|
|
294
|
+
computedAsync as asyncComputed,
|
|
295
|
+
refAutoReset as autoResetRef,
|
|
296
|
+
breakpointsAntDesign,
|
|
297
|
+
breakpointsBootstrapV5,
|
|
298
|
+
breakpointsElement,
|
|
299
|
+
breakpointsMasterCss,
|
|
300
|
+
breakpointsPrimeFlex,
|
|
301
|
+
breakpointsQuasar,
|
|
302
|
+
breakpointsSematic,
|
|
303
|
+
breakpointsTailwind,
|
|
304
|
+
breakpointsVuetify,
|
|
305
|
+
breakpointsVuetifyV2,
|
|
306
|
+
breakpointsVuetifyV3,
|
|
307
|
+
bypassFilter,
|
|
308
|
+
camelize,
|
|
309
|
+
clamp,
|
|
310
|
+
cloneFnJSON,
|
|
311
|
+
computedAsync,
|
|
312
|
+
computedEager,
|
|
313
|
+
computedInject,
|
|
314
|
+
computedWithControl,
|
|
315
|
+
containsProp,
|
|
316
|
+
computedWithControl as controlledComputed,
|
|
317
|
+
controlledRef,
|
|
318
|
+
createEventHook,
|
|
319
|
+
createFetch,
|
|
320
|
+
createFilterWrapper,
|
|
321
|
+
createGlobalState,
|
|
322
|
+
createInjectionState,
|
|
323
|
+
reactify as createReactiveFn,
|
|
324
|
+
createRef,
|
|
325
|
+
createReusableTemplate,
|
|
326
|
+
createSharedComposable,
|
|
327
|
+
createSingletonPromise,
|
|
328
|
+
createTemplatePromise,
|
|
329
|
+
createUnrefFn,
|
|
330
|
+
customStorageEventName,
|
|
331
|
+
debounceFilter,
|
|
332
|
+
refDebounced as debouncedRef,
|
|
333
|
+
watchDebounced as debouncedWatch,
|
|
334
|
+
defaultDocument,
|
|
335
|
+
defaultLocation,
|
|
336
|
+
defaultNavigator,
|
|
337
|
+
defaultWindow,
|
|
338
|
+
computedEager as eagerComputed,
|
|
339
|
+
executeTransition,
|
|
340
|
+
extendRef,
|
|
341
|
+
formatDate,
|
|
342
|
+
formatTimeAgo,
|
|
343
|
+
formatTimeAgoIntl,
|
|
344
|
+
formatTimeAgoIntlParts,
|
|
345
|
+
get,
|
|
346
|
+
getLifeCycleTarget,
|
|
347
|
+
getSSRHandler,
|
|
348
|
+
hasOwn,
|
|
349
|
+
hyphenate,
|
|
350
|
+
identity,
|
|
351
|
+
watchIgnorable as ignorableWatch,
|
|
352
|
+
increaseWithUnit,
|
|
353
|
+
injectLocal,
|
|
354
|
+
invoke,
|
|
355
|
+
isClient,
|
|
356
|
+
isDef,
|
|
357
|
+
isDefined,
|
|
358
|
+
isIOS,
|
|
359
|
+
isObject,
|
|
360
|
+
isWorker,
|
|
361
|
+
makeDestructurable,
|
|
362
|
+
mapGamepadToXbox360Controller,
|
|
363
|
+
noop,
|
|
364
|
+
normalizeDate,
|
|
365
|
+
notNullish,
|
|
366
|
+
now,
|
|
367
|
+
objectEntries,
|
|
368
|
+
objectOmit,
|
|
369
|
+
objectPick,
|
|
370
|
+
onClickOutside,
|
|
371
|
+
onElementRemoval,
|
|
372
|
+
onKeyDown,
|
|
373
|
+
onKeyPressed,
|
|
374
|
+
onKeyStroke,
|
|
375
|
+
onKeyUp,
|
|
376
|
+
onLongPress,
|
|
377
|
+
onStartTyping,
|
|
378
|
+
pausableFilter,
|
|
379
|
+
watchPausable as pausableWatch,
|
|
380
|
+
promiseTimeout,
|
|
381
|
+
provideLocal,
|
|
382
|
+
provideSSRWidth,
|
|
383
|
+
pxValue,
|
|
384
|
+
rand,
|
|
385
|
+
reactify,
|
|
386
|
+
reactifyObject,
|
|
387
|
+
reactiveComputed,
|
|
388
|
+
reactiveOmit,
|
|
389
|
+
reactivePick,
|
|
390
|
+
refAutoReset,
|
|
391
|
+
refDebounced,
|
|
392
|
+
refDefault,
|
|
393
|
+
refThrottled,
|
|
394
|
+
refWithControl,
|
|
395
|
+
resolveRef,
|
|
396
|
+
resolveUnref,
|
|
397
|
+
set,
|
|
398
|
+
setSSRHandler,
|
|
399
|
+
syncRef,
|
|
400
|
+
syncRefs,
|
|
401
|
+
templateRef,
|
|
402
|
+
throttleFilter,
|
|
403
|
+
refThrottled as throttledRef,
|
|
404
|
+
watchThrottled as throttledWatch,
|
|
405
|
+
timestamp,
|
|
406
|
+
toArray,
|
|
407
|
+
toReactive,
|
|
408
|
+
toRef,
|
|
409
|
+
toRefs,
|
|
410
|
+
toValue,
|
|
411
|
+
tryOnBeforeMount,
|
|
412
|
+
tryOnBeforeUnmount,
|
|
413
|
+
tryOnMounted,
|
|
414
|
+
tryOnScopeDispose,
|
|
415
|
+
tryOnUnmounted,
|
|
416
|
+
unrefElement,
|
|
417
|
+
until,
|
|
418
|
+
useActiveElement,
|
|
419
|
+
useAnimate,
|
|
420
|
+
useArrayDifference,
|
|
421
|
+
useArrayEvery,
|
|
422
|
+
useArrayFilter,
|
|
423
|
+
useArrayFind,
|
|
424
|
+
useArrayFindIndex,
|
|
425
|
+
useArrayFindLast,
|
|
426
|
+
useArrayIncludes,
|
|
427
|
+
useArrayJoin,
|
|
428
|
+
useArrayMap,
|
|
429
|
+
useArrayReduce,
|
|
430
|
+
useArraySome,
|
|
431
|
+
useArrayUnique,
|
|
432
|
+
useAsyncQueue,
|
|
433
|
+
useAsyncState,
|
|
434
|
+
useBase64,
|
|
435
|
+
useBattery,
|
|
436
|
+
useBluetooth,
|
|
437
|
+
useBreakpoints,
|
|
438
|
+
useBroadcastChannel,
|
|
439
|
+
useBrowserLocation,
|
|
440
|
+
useCached,
|
|
441
|
+
useClipboard,
|
|
442
|
+
useClipboardItems,
|
|
443
|
+
useCloned,
|
|
444
|
+
useColorMode,
|
|
445
|
+
useConfirmDialog,
|
|
446
|
+
useCountdown,
|
|
447
|
+
useCounter,
|
|
448
|
+
useCssVar,
|
|
449
|
+
useCurrentElement,
|
|
450
|
+
useCycleList,
|
|
451
|
+
useDark,
|
|
452
|
+
useDateFormat,
|
|
453
|
+
refDebounced as useDebounce,
|
|
454
|
+
useDebounceFn,
|
|
455
|
+
useDebouncedRefHistory,
|
|
456
|
+
useDeviceMotion,
|
|
457
|
+
useDeviceOrientation,
|
|
458
|
+
useDevicePixelRatio,
|
|
459
|
+
useDevicesList,
|
|
460
|
+
useDisplayMedia,
|
|
461
|
+
useDocumentVisibility,
|
|
462
|
+
useDraggable,
|
|
463
|
+
useDropZone,
|
|
464
|
+
useElementBounding,
|
|
465
|
+
useElementByPoint,
|
|
466
|
+
useElementHover,
|
|
467
|
+
useElementSize,
|
|
468
|
+
useElementVisibility,
|
|
469
|
+
useEventBus,
|
|
470
|
+
useEventListener,
|
|
471
|
+
useEventSource,
|
|
472
|
+
useEyeDropper,
|
|
473
|
+
useFavicon,
|
|
474
|
+
useFetch,
|
|
475
|
+
useFileDialog,
|
|
476
|
+
useFileSystemAccess,
|
|
477
|
+
useFocus,
|
|
478
|
+
useFocusWithin,
|
|
479
|
+
useFps,
|
|
480
|
+
useFullscreen,
|
|
481
|
+
useGamepad,
|
|
482
|
+
useGeolocation,
|
|
483
|
+
useIdle,
|
|
484
|
+
useImage,
|
|
485
|
+
useInfiniteScroll,
|
|
486
|
+
useIntersectionObserver,
|
|
487
|
+
useInterval,
|
|
488
|
+
useIntervalFn,
|
|
489
|
+
useKeyModifier,
|
|
490
|
+
useLastChanged,
|
|
491
|
+
useLocalStorage,
|
|
492
|
+
useMagicKeys,
|
|
493
|
+
useManualRefHistory,
|
|
494
|
+
useMediaControls,
|
|
495
|
+
useMediaQuery,
|
|
496
|
+
useMemoize,
|
|
497
|
+
useMemory,
|
|
498
|
+
useMounted,
|
|
499
|
+
useMouse,
|
|
500
|
+
useMouseInElement,
|
|
501
|
+
useMousePressed,
|
|
502
|
+
useMutationObserver,
|
|
503
|
+
useNavigatorLanguage,
|
|
504
|
+
useNetwork,
|
|
505
|
+
useNow,
|
|
506
|
+
useObjectUrl,
|
|
507
|
+
useOffsetPagination,
|
|
508
|
+
useOnline,
|
|
509
|
+
usePageLeave,
|
|
510
|
+
useParallax,
|
|
511
|
+
useParentElement,
|
|
512
|
+
usePerformanceObserver,
|
|
513
|
+
usePermission,
|
|
514
|
+
usePointer,
|
|
515
|
+
usePointerLock,
|
|
516
|
+
usePointerSwipe,
|
|
517
|
+
usePreferredColorScheme,
|
|
518
|
+
usePreferredContrast,
|
|
519
|
+
usePreferredDark,
|
|
520
|
+
usePreferredLanguages,
|
|
521
|
+
usePreferredReducedMotion,
|
|
522
|
+
usePreferredReducedTransparency,
|
|
523
|
+
usePrevious,
|
|
524
|
+
useRafFn,
|
|
525
|
+
useRefHistory,
|
|
526
|
+
useResizeObserver,
|
|
527
|
+
useSSRWidth,
|
|
528
|
+
useScreenOrientation,
|
|
529
|
+
useScreenSafeArea,
|
|
530
|
+
useScriptTag,
|
|
531
|
+
useScroll,
|
|
532
|
+
useScrollLock,
|
|
533
|
+
useSessionStorage,
|
|
534
|
+
useShare,
|
|
535
|
+
useSorted,
|
|
536
|
+
useSpeechRecognition,
|
|
537
|
+
useSpeechSynthesis,
|
|
538
|
+
useStepper,
|
|
539
|
+
useStorage,
|
|
540
|
+
useStorageAsync,
|
|
541
|
+
useStyleTag,
|
|
542
|
+
useSupported,
|
|
543
|
+
useSwipe,
|
|
544
|
+
useTemplateRefsList,
|
|
545
|
+
useTextDirection,
|
|
546
|
+
useTextSelection,
|
|
547
|
+
useTextareaAutosize,
|
|
548
|
+
refThrottled as useThrottle,
|
|
549
|
+
useThrottleFn,
|
|
550
|
+
useThrottledRefHistory,
|
|
551
|
+
useTimeAgo,
|
|
552
|
+
useTimeAgoIntl,
|
|
553
|
+
useTimeout,
|
|
554
|
+
useTimeoutFn,
|
|
555
|
+
useTimeoutPoll,
|
|
556
|
+
useTimestamp,
|
|
557
|
+
useTitle,
|
|
558
|
+
useToNumber,
|
|
559
|
+
useToString,
|
|
560
|
+
useToggle,
|
|
561
|
+
useTransition,
|
|
562
|
+
useUrlSearchParams,
|
|
563
|
+
useUserMedia,
|
|
564
|
+
useVModel,
|
|
565
|
+
useVModels,
|
|
566
|
+
useVibrate,
|
|
567
|
+
useVirtualList,
|
|
568
|
+
useWakeLock,
|
|
569
|
+
useWebNotification,
|
|
570
|
+
useWebSocket,
|
|
571
|
+
useWebWorker,
|
|
572
|
+
useWebWorkerFn,
|
|
573
|
+
useWindowFocus,
|
|
574
|
+
useWindowScroll,
|
|
575
|
+
useWindowSize,
|
|
576
|
+
watchArray,
|
|
577
|
+
watchAtMost,
|
|
578
|
+
watchDebounced,
|
|
579
|
+
watchDeep,
|
|
580
|
+
watchIgnorable,
|
|
581
|
+
watchImmediate,
|
|
582
|
+
watchOnce,
|
|
583
|
+
watchPausable,
|
|
584
|
+
watchThrottled,
|
|
585
|
+
watchTriggerable,
|
|
586
|
+
watchWithFilter,
|
|
587
|
+
whenever
|
|
588
|
+
};
|