@vueuse/shared 8.4.1 → 8.6.0
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/index.cjs +20 -17
- package/index.d.ts +3 -2
- package/index.iife.js +48 -18
- package/index.iife.min.js +1 -1
- package/index.mjs +20 -18
- package/package.json +20 -20
package/index.cjs
CHANGED
|
@@ -325,6 +325,7 @@ function refAutoReset(defaultValue, afterMs = 1e4) {
|
|
|
325
325
|
});
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
+
var _a;
|
|
328
329
|
const isClient = typeof window !== "undefined";
|
|
329
330
|
const isDef = (val) => typeof val !== "undefined";
|
|
330
331
|
const assert = (condition, ...infos) => {
|
|
@@ -348,6 +349,7 @@ const rand = (min, max) => {
|
|
|
348
349
|
max = Math.floor(max);
|
|
349
350
|
return Math.floor(Math.random() * (max - min + 1)) + min;
|
|
350
351
|
};
|
|
352
|
+
const isIOS = isClient && ((_a = window == null ? void 0 : window.navigator) == null ? void 0 : _a.userAgent) && /iP(ad|hone|od)/.test(window.navigator.userAgent);
|
|
351
353
|
|
|
352
354
|
function createFilterWrapper(filter, fn) {
|
|
353
355
|
function wrapper(...args) {
|
|
@@ -393,7 +395,7 @@ function debounceFilter(ms, options = {}) {
|
|
|
393
395
|
function throttleFilter(ms, trailing = true, leading = true) {
|
|
394
396
|
let lastExec = 0;
|
|
395
397
|
let timer;
|
|
396
|
-
let
|
|
398
|
+
let isLeading = true;
|
|
397
399
|
const clear = () => {
|
|
398
400
|
if (timer) {
|
|
399
401
|
clearTimeout(timer);
|
|
@@ -408,24 +410,20 @@ function throttleFilter(ms, trailing = true, leading = true) {
|
|
|
408
410
|
lastExec = Date.now();
|
|
409
411
|
return invoke();
|
|
410
412
|
}
|
|
411
|
-
if (elapsed > duration) {
|
|
413
|
+
if (elapsed > duration && (leading || !isLeading)) {
|
|
412
414
|
lastExec = Date.now();
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
else
|
|
416
|
-
invoke();
|
|
417
|
-
}
|
|
418
|
-
if (trailing) {
|
|
415
|
+
invoke();
|
|
416
|
+
} else if (trailing) {
|
|
419
417
|
timer = setTimeout(() => {
|
|
420
418
|
lastExec = Date.now();
|
|
421
|
-
|
|
422
|
-
preventLeading = true;
|
|
419
|
+
isLeading = true;
|
|
423
420
|
clear();
|
|
424
421
|
invoke();
|
|
425
422
|
}, duration);
|
|
426
423
|
}
|
|
427
424
|
if (!leading && !timer)
|
|
428
|
-
timer = setTimeout(() =>
|
|
425
|
+
timer = setTimeout(() => isLeading = true, duration);
|
|
426
|
+
isLeading = false;
|
|
429
427
|
};
|
|
430
428
|
return filter;
|
|
431
429
|
}
|
|
@@ -490,7 +488,7 @@ function increaseWithUnit(target, delta) {
|
|
|
490
488
|
function objectPick(obj, keys, omitUndefined = false) {
|
|
491
489
|
return keys.reduce((n, k) => {
|
|
492
490
|
if (k in obj) {
|
|
493
|
-
if (!omitUndefined ||
|
|
491
|
+
if (!omitUndefined || obj[k] !== void 0)
|
|
494
492
|
n[k] = obj[k];
|
|
495
493
|
}
|
|
496
494
|
return n;
|
|
@@ -667,7 +665,9 @@ function toRefs(objectRef) {
|
|
|
667
665
|
copy[key] = v;
|
|
668
666
|
objectRef.value = copy;
|
|
669
667
|
} else {
|
|
670
|
-
|
|
668
|
+
const newObject = __spreadProps$4(__spreadValues$6({}, objectRef.value), { [key]: v });
|
|
669
|
+
Object.setPrototypeOf(newObject, objectRef.value);
|
|
670
|
+
objectRef.value = newObject;
|
|
671
671
|
}
|
|
672
672
|
}
|
|
673
673
|
}));
|
|
@@ -876,7 +876,7 @@ function useIntervalFn(cb, interval = 1e3, options = {}) {
|
|
|
876
876
|
clean();
|
|
877
877
|
}
|
|
878
878
|
function resume() {
|
|
879
|
-
if (interval <= 0)
|
|
879
|
+
if (vueDemi.unref(interval) <= 0)
|
|
880
880
|
return;
|
|
881
881
|
isActive.value = true;
|
|
882
882
|
if (immediateCallback)
|
|
@@ -1119,12 +1119,14 @@ var __objRest$3 = (source, exclude) => {
|
|
|
1119
1119
|
};
|
|
1120
1120
|
function watchDebounced(source, cb, options = {}) {
|
|
1121
1121
|
const _a = options, {
|
|
1122
|
-
debounce = 0
|
|
1122
|
+
debounce = 0,
|
|
1123
|
+
maxWait = void 0
|
|
1123
1124
|
} = _a, watchOptions = __objRest$3(_a, [
|
|
1124
|
-
"debounce"
|
|
1125
|
+
"debounce",
|
|
1126
|
+
"maxWait"
|
|
1125
1127
|
]);
|
|
1126
1128
|
return watchWithFilter(source, cb, __spreadProps$3(__spreadValues$3({}, watchOptions), {
|
|
1127
|
-
eventFilter: debounceFilter(debounce)
|
|
1129
|
+
eventFilter: debounceFilter(debounce, { maxWait })
|
|
1128
1130
|
}));
|
|
1129
1131
|
}
|
|
1130
1132
|
|
|
@@ -1351,6 +1353,7 @@ exports.isClient = isClient;
|
|
|
1351
1353
|
exports.isDef = isDef;
|
|
1352
1354
|
exports.isDefined = isDefined;
|
|
1353
1355
|
exports.isFunction = isFunction;
|
|
1356
|
+
exports.isIOS = isIOS;
|
|
1354
1357
|
exports.isNumber = isNumber;
|
|
1355
1358
|
exports.isObject = isObject;
|
|
1356
1359
|
exports.isString = isString;
|
package/index.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ declare const timestamp: () => number;
|
|
|
94
94
|
declare const clamp: (n: number, min: number, max: number) => number;
|
|
95
95
|
declare const noop: () => void;
|
|
96
96
|
declare const rand: (min: number, max: number) => number;
|
|
97
|
+
declare const isIOS: boolean | "";
|
|
97
98
|
|
|
98
99
|
/**
|
|
99
100
|
* Any function
|
|
@@ -784,7 +785,7 @@ declare function watchAtMost<T extends Readonly<WatchSource<unknown>[]>, Immedia
|
|
|
784
785
|
declare function watchAtMost<T extends Readonly<WatchSource<unknown>[]>, Immediate extends Readonly<boolean> = false>(source: T, cb: WatchCallback<MapSources<T>, MapOldSources<T, Immediate>>, options: WatchAtMostOptions<Immediate>): WatchAtMostReturn;
|
|
785
786
|
declare function watchAtMost<T, Immediate extends Readonly<boolean> = false>(sources: WatchSource<T>, cb: WatchCallback<T, Immediate extends true ? T | undefined : T>, options: WatchAtMostOptions<Immediate>): WatchAtMostReturn;
|
|
786
787
|
|
|
787
|
-
interface WatchDebouncedOptions<Immediate> extends WatchOptions<Immediate
|
|
788
|
+
interface WatchDebouncedOptions<Immediate> extends WatchOptions<Immediate>, DebounceFilterOptions {
|
|
788
789
|
debounce?: MaybeRef<number>;
|
|
789
790
|
}
|
|
790
791
|
declare function watchDebounced<T extends Readonly<WatchSource<unknown>[]>, Immediate extends Readonly<boolean> = false>(sources: T, cb: WatchCallback<MapSources<T>, MapOldSources<T, Immediate>>, options?: WatchDebouncedOptions<Immediate>): WatchStopHandle;
|
|
@@ -828,4 +829,4 @@ declare function watchThrottled<T extends object, Immediate extends Readonly<boo
|
|
|
828
829
|
*/
|
|
829
830
|
declare function whenever<T>(source: WatchSource<T | false | null | undefined>, cb: WatchCallback<T>, options?: WatchOptions): vue_demi.WatchStopHandle;
|
|
830
831
|
|
|
831
|
-
export { Awaitable, ConfigurableEventFilter, ConfigurableFlush, ConfigurableFlushSync, ControlledRefOptions, CreateGlobalStateReturn, DateLike, DebounceFilterOptions, DeepMaybeRef, ElementOf, EventFilter, EventHook, EventHookOff, EventHookOn, EventHookTrigger, ExtendRefOptions, Fn, FunctionArgs, FunctionWrapperOptions, IgnoredUpdater, IntervalFnOptions, IntervalOptions, MapOldSources, MapSources, MaybeRef, Pausable, Reactify, ReactifyNested, ReactifyObjectOptions, RemovableRef, RemoveableRef, ShallowUnwrapRef, SingletonPromiseReturn, Stopable, Stoppable, SyncRefOptions, SyncRefsOptions, TimeoutFnOptions, TimeoutOptions, UntilArrayInstance, UntilBaseInstance, UntilToMatchOptions, UntilValueInstance, UseCounterOptions, UseDateFormatReturn, UseLastChangedOptions, UseToggleOptions, WatchAtMostOptions, WatchAtMostReturn, WatchDebouncedOptions, WatchIgnorableReturn, WatchPausableReturn, WatchThrottledOptions, WatchWithFilterOptions, __onlyVue3, logicAnd as and, assert, refAutoReset as autoResetRef, bypassFilter, clamp, computedEager, computedWithControl, containsProp, computedWithControl as controlledComputed, controlledRef, createEventHook, createFilterWrapper, createGlobalState, createInjectionState, reactify as createReactiveFn, createSharedComposable, createSingletonPromise, debounceFilter, refDebounced as debouncedRef, watchDebounced as debouncedWatch, directiveHooks, computedEager as eagerComputed, extendRef, formatDate, get, identity, watchIgnorable as ignorableWatch, increaseWithUnit, invoke, isBoolean, isClient, isDef, isDefined, isFunction, isNumber, isObject, isString, isWindow, logicAnd, logicNot, logicOr, makeDestructurable, noop, normalizeDate, logicNot as not, now, objectPick, logicOr as or, pausableFilter, watchPausable as pausableWatch, promiseTimeout, rand, reactify, reactifyObject, reactiveComputed, reactiveOmit, reactivePick, refAutoReset, refDebounced, refDefault, refThrottled, refWithControl, set, syncRef, syncRefs, throttleFilter, refThrottled as throttledRef, watchThrottled as throttledWatch, timestamp, toReactive, toRefs, tryOnBeforeMount, tryOnBeforeUnmount, tryOnMounted, tryOnScopeDispose, tryOnUnmounted, until, useCounter, useDateFormat, refDebounced as useDebounce, useDebounceFn, useInterval, useIntervalFn, useLastChanged, refThrottled as useThrottle, useThrottleFn, useTimeout, useTimeoutFn, useToggle, watchAtMost, watchDebounced, watchIgnorable, watchOnce, watchPausable, watchThrottled, watchWithFilter, whenever };
|
|
832
|
+
export { Awaitable, ConfigurableEventFilter, ConfigurableFlush, ConfigurableFlushSync, ControlledRefOptions, CreateGlobalStateReturn, DateLike, DebounceFilterOptions, DeepMaybeRef, ElementOf, EventFilter, EventHook, EventHookOff, EventHookOn, EventHookTrigger, ExtendRefOptions, Fn, FunctionArgs, FunctionWrapperOptions, IgnoredUpdater, IntervalFnOptions, IntervalOptions, MapOldSources, MapSources, MaybeRef, Pausable, Reactify, ReactifyNested, ReactifyObjectOptions, RemovableRef, RemoveableRef, ShallowUnwrapRef, SingletonPromiseReturn, Stopable, Stoppable, SyncRefOptions, SyncRefsOptions, TimeoutFnOptions, TimeoutOptions, UntilArrayInstance, UntilBaseInstance, UntilToMatchOptions, UntilValueInstance, UseCounterOptions, UseDateFormatReturn, UseLastChangedOptions, UseToggleOptions, WatchAtMostOptions, WatchAtMostReturn, WatchDebouncedOptions, WatchIgnorableReturn, WatchPausableReturn, WatchThrottledOptions, WatchWithFilterOptions, __onlyVue3, logicAnd as and, assert, refAutoReset as autoResetRef, bypassFilter, clamp, computedEager, computedWithControl, containsProp, computedWithControl as controlledComputed, controlledRef, createEventHook, createFilterWrapper, createGlobalState, createInjectionState, reactify as createReactiveFn, createSharedComposable, createSingletonPromise, debounceFilter, refDebounced as debouncedRef, watchDebounced as debouncedWatch, directiveHooks, computedEager as eagerComputed, extendRef, formatDate, get, identity, watchIgnorable as ignorableWatch, increaseWithUnit, invoke, isBoolean, isClient, isDef, isDefined, isFunction, isIOS, isNumber, isObject, isString, isWindow, logicAnd, logicNot, logicOr, makeDestructurable, noop, normalizeDate, logicNot as not, now, objectPick, logicOr as or, pausableFilter, watchPausable as pausableWatch, promiseTimeout, rand, reactify, reactifyObject, reactiveComputed, reactiveOmit, reactivePick, refAutoReset, refDebounced, refDefault, refThrottled, refWithControl, set, syncRef, syncRefs, throttleFilter, refThrottled as throttledRef, watchThrottled as throttledWatch, timestamp, toReactive, toRefs, tryOnBeforeMount, tryOnBeforeUnmount, tryOnMounted, tryOnScopeDispose, tryOnUnmounted, until, useCounter, useDateFormat, refDebounced as useDebounce, useDebounceFn, useInterval, useIntervalFn, useLastChanged, refThrottled as useThrottle, useThrottleFn, useTimeout, useTimeoutFn, useToggle, watchAtMost, watchDebounced, watchIgnorable, watchOnce, watchPausable, watchThrottled, watchWithFilter, whenever };
|
package/index.iife.js
CHANGED
|
@@ -3,7 +3,34 @@
|
|
|
3
3
|
return VueDemi
|
|
4
4
|
}
|
|
5
5
|
if (Vue) {
|
|
6
|
-
if (Vue.version.slice(0,
|
|
6
|
+
if (Vue.version.slice(0, 4) === '2.7.') {
|
|
7
|
+
for (var key in Vue) {
|
|
8
|
+
VueDemi[key] = Vue[key]
|
|
9
|
+
}
|
|
10
|
+
VueDemi.isVue2 = true
|
|
11
|
+
VueDemi.isVue3 = false
|
|
12
|
+
VueDemi.install = function (){}
|
|
13
|
+
VueDemi.Vue = Vue
|
|
14
|
+
VueDemi.Vue2 = Vue
|
|
15
|
+
VueDemi.version = Vue.version
|
|
16
|
+
VueDemi.set = function(target, key, val) {
|
|
17
|
+
if (Array.isArray(target)) {
|
|
18
|
+
target.length = Math.max(target.length, key)
|
|
19
|
+
target.splice(key, 1, val)
|
|
20
|
+
return val
|
|
21
|
+
}
|
|
22
|
+
Vue.set(target, key, val)
|
|
23
|
+
return val
|
|
24
|
+
}
|
|
25
|
+
VueDemi.del = function(target, key) {
|
|
26
|
+
if (Array.isArray(target)) {
|
|
27
|
+
target.splice(key, 1)
|
|
28
|
+
return
|
|
29
|
+
}
|
|
30
|
+
Vue.delete(target, key)
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
else if (Vue.version.slice(0, 2) === '2.') {
|
|
7
34
|
if (VueCompositionAPI) {
|
|
8
35
|
for (var key in VueCompositionAPI) {
|
|
9
36
|
VueDemi[key] = VueCompositionAPI[key]
|
|
@@ -384,6 +411,7 @@
|
|
|
384
411
|
});
|
|
385
412
|
}
|
|
386
413
|
|
|
414
|
+
var _a;
|
|
387
415
|
const isClient = typeof window !== "undefined";
|
|
388
416
|
const isDef = (val) => typeof val !== "undefined";
|
|
389
417
|
const assert = (condition, ...infos) => {
|
|
@@ -407,6 +435,7 @@
|
|
|
407
435
|
max = Math.floor(max);
|
|
408
436
|
return Math.floor(Math.random() * (max - min + 1)) + min;
|
|
409
437
|
};
|
|
438
|
+
const isIOS = isClient && ((_a = window == null ? void 0 : window.navigator) == null ? void 0 : _a.userAgent) && /iP(ad|hone|od)/.test(window.navigator.userAgent);
|
|
410
439
|
|
|
411
440
|
function createFilterWrapper(filter, fn) {
|
|
412
441
|
function wrapper(...args) {
|
|
@@ -452,7 +481,7 @@
|
|
|
452
481
|
function throttleFilter(ms, trailing = true, leading = true) {
|
|
453
482
|
let lastExec = 0;
|
|
454
483
|
let timer;
|
|
455
|
-
let
|
|
484
|
+
let isLeading = true;
|
|
456
485
|
const clear = () => {
|
|
457
486
|
if (timer) {
|
|
458
487
|
clearTimeout(timer);
|
|
@@ -467,24 +496,20 @@
|
|
|
467
496
|
lastExec = Date.now();
|
|
468
497
|
return invoke();
|
|
469
498
|
}
|
|
470
|
-
if (elapsed > duration) {
|
|
499
|
+
if (elapsed > duration && (leading || !isLeading)) {
|
|
471
500
|
lastExec = Date.now();
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
else
|
|
475
|
-
invoke();
|
|
476
|
-
}
|
|
477
|
-
if (trailing) {
|
|
501
|
+
invoke();
|
|
502
|
+
} else if (trailing) {
|
|
478
503
|
timer = setTimeout(() => {
|
|
479
504
|
lastExec = Date.now();
|
|
480
|
-
|
|
481
|
-
preventLeading = true;
|
|
505
|
+
isLeading = true;
|
|
482
506
|
clear();
|
|
483
507
|
invoke();
|
|
484
508
|
}, duration);
|
|
485
509
|
}
|
|
486
510
|
if (!leading && !timer)
|
|
487
|
-
timer = setTimeout(() =>
|
|
511
|
+
timer = setTimeout(() => isLeading = true, duration);
|
|
512
|
+
isLeading = false;
|
|
488
513
|
};
|
|
489
514
|
return filter;
|
|
490
515
|
}
|
|
@@ -549,7 +574,7 @@
|
|
|
549
574
|
function objectPick(obj, keys, omitUndefined = false) {
|
|
550
575
|
return keys.reduce((n, k) => {
|
|
551
576
|
if (k in obj) {
|
|
552
|
-
if (!omitUndefined ||
|
|
577
|
+
if (!omitUndefined || obj[k] !== void 0)
|
|
553
578
|
n[k] = obj[k];
|
|
554
579
|
}
|
|
555
580
|
return n;
|
|
@@ -726,7 +751,9 @@
|
|
|
726
751
|
copy[key] = v;
|
|
727
752
|
objectRef.value = copy;
|
|
728
753
|
} else {
|
|
729
|
-
|
|
754
|
+
const newObject = __spreadProps$4(__spreadValues$6({}, objectRef.value), { [key]: v });
|
|
755
|
+
Object.setPrototypeOf(newObject, objectRef.value);
|
|
756
|
+
objectRef.value = newObject;
|
|
730
757
|
}
|
|
731
758
|
}
|
|
732
759
|
}));
|
|
@@ -935,7 +962,7 @@
|
|
|
935
962
|
clean();
|
|
936
963
|
}
|
|
937
964
|
function resume() {
|
|
938
|
-
if (interval <= 0)
|
|
965
|
+
if (vueDemi.unref(interval) <= 0)
|
|
939
966
|
return;
|
|
940
967
|
isActive.value = true;
|
|
941
968
|
if (immediateCallback)
|
|
@@ -1178,12 +1205,14 @@
|
|
|
1178
1205
|
};
|
|
1179
1206
|
function watchDebounced(source, cb, options = {}) {
|
|
1180
1207
|
const _a = options, {
|
|
1181
|
-
debounce = 0
|
|
1208
|
+
debounce = 0,
|
|
1209
|
+
maxWait = void 0
|
|
1182
1210
|
} = _a, watchOptions = __objRest$3(_a, [
|
|
1183
|
-
"debounce"
|
|
1211
|
+
"debounce",
|
|
1212
|
+
"maxWait"
|
|
1184
1213
|
]);
|
|
1185
1214
|
return watchWithFilter(source, cb, __spreadProps$3(__spreadValues$3({}, watchOptions), {
|
|
1186
|
-
eventFilter: debounceFilter(debounce)
|
|
1215
|
+
eventFilter: debounceFilter(debounce, { maxWait })
|
|
1187
1216
|
}));
|
|
1188
1217
|
}
|
|
1189
1218
|
|
|
@@ -1410,6 +1439,7 @@
|
|
|
1410
1439
|
exports.isDef = isDef;
|
|
1411
1440
|
exports.isDefined = isDefined;
|
|
1412
1441
|
exports.isFunction = isFunction;
|
|
1442
|
+
exports.isIOS = isIOS;
|
|
1413
1443
|
exports.isNumber = isNumber;
|
|
1414
1444
|
exports.isObject = isObject;
|
|
1415
1445
|
exports.isString = isString;
|
package/index.iife.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var VueDemi=function(o,a,m){if(o.install)return o;if(a)if(a.version.slice(0,2)==="2.")if(m){for(var P in m)o[P]=m[P];o.isVue2=!0,o.isVue3=!1,o.install=function(){},o.Vue=a,o.Vue2=a,o.version=a.version}else console.error("[vue-demi] no VueCompositionAPI instance found, please be sure to import `@vue/composition-api` before `vue-demi`.");else if(a.version.slice(0,2)==="3."){for(var P in a)o[P]=a[P];o.isVue2=!1,o.isVue3=!0,o.install=function(){},o.Vue=a,o.Vue2=void 0,o.version=a.version,o.set=function(h,v,g){return Array.isArray(h)?(h.length=Math.max(h.length,v),h.splice(v,1,g),g):(h[v]=g,g)},o.del=function(h,v){if(Array.isArray(h)){h.splice(v,1);return}delete h[v]}}else console.error("[vue-demi] Vue version "+a.version+" is unsupported.");else console.error("[vue-demi] no Vue instance found, please be sure to import `vue` before `vue-demi`.");return o}(this.VueDemi=this.VueDemi||(typeof VueDemi!="undefined"?VueDemi:{}),this.Vue||(typeof Vue!="undefined"?Vue:void 0),this.VueCompositionAPI||(typeof VueCompositionAPI!="undefined"?VueCompositionAPI:void 0));(function(o,a){"use strict";var m=Object.defineProperty,P=Object.defineProperties,h=Object.getOwnPropertyDescriptors,v=Object.getOwnPropertySymbols,g=Object.prototype.hasOwnProperty,Mt=Object.prototype.propertyIsEnumerable,U=(t,e,r)=>e in t?m(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,Nt=(t,e)=>{for(var r in e||(e={}))g.call(e,r)&&U(t,r,e[r]);if(v)for(var r of v(e))Mt.call(e,r)&&U(t,r,e[r]);return t},Wt=(t,e)=>P(t,h(e));function H(t,e){var r;const n=a.shallowRef();return a.watchEffect(()=>{n.value=t()},Wt(Nt({},e),{flush:(r=e==null?void 0:e.flush)!=null?r:"sync"})),a.readonly(n)}function V(t,e){let r,n,i;const u=a.ref(!0);return a.watch(t,()=>{u.value=!0,i()},{flush:"sync"}),a.customRef((l,c)=>(n=l,i=c,{get(){return u.value&&(r=e(),u.value=!1),n(),r},set(){}}))}function Bt(){const t=[],e=i=>{const u=t.indexOf(i);u!==-1&&t.splice(u,1)};return{on:i=>(t.push(i),{off:()=>e(i)}),off:e,trigger:i=>{t.forEach(u=>u(i))}}}function Ut(t){let e=!1,r;const n=a.effectScope(!0);return()=>(e||(r=n.run(t),e=!0),r)}function Ht(t){const e=Symbol("InjectionState");return[(...i)=>{a.provide(e,t(...i))},()=>a.inject(e)]}function b(t){return a.getCurrentScope()?(a.onScopeDispose(t),!0):!1}function Vt(t){let e=0,r,n;const i=()=>{e-=1,n&&e<=0&&(n.stop(),r=void 0,n=void 0)};return(...u)=>(e+=1,r||(n=a.effectScope(!0),r=n.run(()=>t(...u))),b(i),r)}function Y(t="this function"){if(!a.isVue3)throw new Error(`[VueUse] ${t} is only works on Vue 3.`)}const Yt={mounted:a.isVue3?"mounted":"inserted",updated:a.isVue3?"updated":"componentUpdated",unmounted:a.isVue3?"unmounted":"unbind"};function G(t,e,{enumerable:r=!1,unwrap:n=!0}={}){Y();for(const[i,u]of Object.entries(e))i!=="value"&&(a.isRef(u)&&n?Object.defineProperty(t,i,{get(){return u.value},set(l){u.value=l},enumerable:r}):Object.defineProperty(t,i,{value:u,enumerable:r}));return t}function Gt(t,e){return e==null?a.unref(t):a.unref(t)[e]}function zt(t){return a.unref(t)!=null}function z(...t){return a.computed(()=>t.every(e=>a.unref(e)))}function L(t){return a.computed(()=>!a.unref(t))}function X(...t){return a.computed(()=>t.some(e=>a.unref(e)))}var Lt=Object.defineProperty,Z=Object.getOwnPropertySymbols,Xt=Object.prototype.hasOwnProperty,Zt=Object.prototype.propertyIsEnumerable,k=(t,e,r)=>e in t?Lt(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,kt=(t,e)=>{for(var r in e||(e={}))Xt.call(e,r)&&k(t,r,e[r]);if(Z)for(var r of Z(e))Zt.call(e,r)&&k(t,r,e[r]);return t};function qt(t,e){if(typeof Symbol!="undefined"){const r=kt({},t);return Object.defineProperty(r,Symbol.iterator,{enumerable:!1,value(){let n=0;return{next:()=>({value:e[n++],done:n>e.length})}}}),r}else return Object.assign([...e],t)}function R(t){return function(...e){return a.computed(()=>t.apply(this,e.map(r=>a.unref(r))))}}function Jt(t,e={}){let r=[];if(Array.isArray(e))r=e;else{const{includeOwnProperties:n=!0}=e;r.push(...Object.keys(t)),n&&r.push(...Object.getOwnPropertyNames(t))}return Object.fromEntries(r.map(n=>{const i=t[n];return[n,typeof i=="function"?R(i.bind(t)):i]}))}function q(t){if(!a.isRef(t))return a.reactive(t);const e=new Proxy({},{get(r,n,i){return a.unref(Reflect.get(t.value,n,i))},set(r,n,i){return a.isRef(t.value[n])&&!a.isRef(i)?t.value[n].value=i:t.value[n]=i,!0},deleteProperty(r,n){return Reflect.deleteProperty(t.value,n)},has(r,n){return Reflect.has(t.value,n)},ownKeys(){return Object.keys(t.value)},getOwnPropertyDescriptor(){return{enumerable:!0,configurable:!0}}});return a.reactive(e)}function J(t){return q(a.computed(t))}function Qt(t,...e){return J(()=>Object.fromEntries(Object.entries(a.toRefs(t)).filter(r=>!e.includes(r[0]))))}function Kt(t,...e){return a.reactive(Object.fromEntries(e.map(r=>[r,a.toRef(t,r)])))}function Q(t,e=1e4){return a.customRef((r,n)=>{let i=t,u;const l=()=>setTimeout(()=>{i=t,n()},a.unref(e));return b(()=>{clearTimeout(u)}),{get(){return r(),i},set(c){i=c,n(),clearTimeout(u),u=l()}}})}const j=typeof window!="undefined",Dt=t=>typeof t!="undefined",xt=(t,...e)=>{t||console.warn(...e)},K=Object.prototype.toString,te=t=>typeof t=="boolean",ee=t=>typeof t=="function",re=t=>typeof t=="number",ne=t=>typeof t=="string",oe=t=>K.call(t)==="[object Object]",ae=t=>typeof window!="undefined"&&K.call(t)==="[object Window]",ie=()=>Date.now(),D=()=>+Date.now(),ue=(t,e,r)=>Math.min(r,Math.max(e,t)),x=()=>{},le=(t,e)=>(t=Math.ceil(t),e=Math.floor(e),Math.floor(Math.random()*(e-t+1))+t);function $(t,e){function r(...n){t(()=>e.apply(this,n),{fn:e,thisArg:this,args:n})}return r}const I=t=>t();function M(t,e={}){let r,n;return u=>{const l=a.unref(t),c=a.unref(e.maxWait);if(r&&clearTimeout(r),l<=0||c!==void 0&&c<=0)return n&&(clearTimeout(n),n=null),u();c&&!n&&(n=setTimeout(()=>{r&&clearTimeout(r),n=null,u()},c)),r=setTimeout(()=>{n&&clearTimeout(n),n=null,u()},l)}}function N(t,e=!0,r=!0){let n=0,i,u=!r;const l=()=>{i&&(clearTimeout(i),i=void 0)};return d=>{const _=a.unref(t),p=Date.now()-n;if(l(),_<=0)return n=Date.now(),d();p>_&&(n=Date.now(),u?u=!1:d()),e&&(i=setTimeout(()=>{n=Date.now(),r||(u=!0),l(),d()},_)),!r&&!i&&(i=setTimeout(()=>u=!0,_))}}function tt(t=I){const e=a.ref(!0);function r(){e.value=!1}function n(){e.value=!0}return{isActive:e,pause:r,resume:n,eventFilter:(...u)=>{e.value&&t(...u)}}}function et(t,e=!1,r="Timeout"){return new Promise((n,i)=>{setTimeout(e?()=>i(r):n,t)})}function ce(t){return t}function se(t){let e;function r(){return e||(e=t()),e}return r.reset=async()=>{const n=e;e=void 0,n&&await n},r}function fe(t){return t()}function de(t,...e){return e.some(r=>r in t)}function pe(t,e){var r;if(typeof t=="number")return t+e;const n=((r=t.match(/^-?[0-9]+\.?[0-9]*/))==null?void 0:r[0])||"",i=t.slice(n.length),u=parseFloat(n)+e;return Number.isNaN(u)?t:u+i}function _e(t,e,r=!1){return e.reduce((n,i)=>(i in t&&(!r||!t[i]===void 0)&&(n[i]=t[i]),n),{})}function rt(t,e=200,r={}){return $(M(e,r),t)}function W(t,e=200,r={}){if(e<=0)return t;const n=a.ref(t.value),i=rt(()=>{n.value=t.value},e,r);return a.watch(t,()=>i()),n}function ye(t,e){return a.computed({get(){var r;return(r=t.value)!=null?r:e},set(r){t.value=r}})}function nt(t,e=200,r=!0,n=!0){return $(N(e,r,n),t)}function B(t,e=200,r=!0,n=!0){if(e<=0)return t;const i=a.ref(t.value),u=nt(()=>{i.value=t.value},e,r,n);return a.watch(t,()=>u()),i}function ot(t,e={}){let r=t,n,i;const u=a.customRef((f,y)=>(n=f,i=y,{get(){return l()},set(O){c(O)}}));function l(f=!0){return f&&n(),r}function c(f,y=!0){var O,C;if(f===r)return;const w=r;((O=e.onBeforeChange)==null?void 0:O.call(e,f,w))!==!1&&(r=f,(C=e.onChanged)==null||C.call(e,f,w),y&&i())}return G(u,{get:l,set:c,untrackedGet:()=>l(!1),silentSet:f=>c(f,!1),peek:()=>l(!1),lay:f=>c(f,!1)},{enumerable:!0})}const Oe=ot;function he(...t){if(t.length===2){const[e,r]=t;e.value=r}if(t.length===3)if(a.isVue2)a.set(...t);else{const[e,r,n]=t;e[r]=n}}function ve(t,e,r={}){const{flush:n="sync",deep:i=!1,immediate:u=!0,direction:l="both"}=r;let c,d;return(l==="both"||l==="ltr")&&(c=a.watch(t,_=>e.value=_,{flush:n,deep:i,immediate:u})),(l==="both"||l==="rtl")&&(d=a.watch(e,_=>t.value=_,{flush:n,deep:i,immediate:u})),()=>{c==null||c(),d==null||d()}}function we(t,e,r={}){const{flush:n="sync",deep:i=!1,immediate:u=!0}=r;return Array.isArray(e)||(e=[e]),a.watch(t,l=>e.forEach(c=>c.value=l),{flush:n,deep:i,immediate:u})}var Pe=Object.defineProperty,ge=Object.defineProperties,be=Object.getOwnPropertyDescriptors,at=Object.getOwnPropertySymbols,me=Object.prototype.hasOwnProperty,$e=Object.prototype.propertyIsEnumerable,it=(t,e,r)=>e in t?Pe(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,Se=(t,e)=>{for(var r in e||(e={}))me.call(e,r)&&it(t,r,e[r]);if(at)for(var r of at(e))$e.call(e,r)&&it(t,r,e[r]);return t},je=(t,e)=>ge(t,be(e));function Ie(t){if(!a.isRef(t))return a.toRefs(t);const e=Array.isArray(t.value)?new Array(t.value.length):{};for(const r in t.value)e[r]=a.customRef(()=>({get(){return t.value[r]},set(n){if(Array.isArray(t.value)){const i=[...t.value];i[r]=n,t.value=i}else t.value=je(Se({},t.value),{[r]:n})}}));return e}function Te(t,e=!0){a.getCurrentInstance()?a.onBeforeMount(t):e?t():a.nextTick(t)}function Ee(t){a.getCurrentInstance()&&a.onBeforeUnmount(t)}function Fe(t,e=!0){a.getCurrentInstance()?a.onMounted(t):e?t():a.nextTick(t)}function Ae(t){a.getCurrentInstance()&&a.onUnmounted(t)}function Ce(t){let e=!1;function r(s,{flush:f="sync",deep:y=!1,timeout:O,throwOnTimeout:C}={}){let w=null;const Rt=[new Promise(Tr=>{w=a.watch(t,Er=>{s(Er)===!e&&(w==null||w(),Tr())},{flush:f,deep:y,immediate:!0})})];return O&&Rt.push(et(O,C).finally(()=>{w==null||w()})),Promise.race(Rt)}function n(s,f){return r(y=>y===a.unref(s),f)}function i(s){return r(f=>Boolean(f),s)}function u(s){return n(null,s)}function l(s){return n(void 0,s)}function c(s){return r(Number.isNaN,s)}function d(s,f){return r(y=>{const O=Array.from(y);return O.includes(s)||O.includes(a.unref(s))},f)}function _(s){return p(1,s)}function p(s=1,f){let y=-1;return r(()=>(y+=1,y>=s),f)}return Array.isArray(a.unref(t))?{toMatch:r,toContains:d,changed:_,changedTimes:p,get not(){return e=!e,this}}:{toMatch:r,toBe:n,toBeTruthy:i,toBeNull:u,toBeNaN:c,toBeUndefined:l,changed:_,changedTimes:p,get not(){return e=!e,this}}}function Re(t=0,e={}){const r=a.ref(t),{max:n=1/0,min:i=-1/0}=e,u=(p=1)=>r.value=Math.min(n,r.value+p),l=(p=1)=>r.value=Math.max(i,r.value-p),c=()=>r.value,d=p=>r.value=p;return{count:r,inc:u,dec:l,get:c,set:d,reset:(p=t)=>(t=p,d(p))}}const Me=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,Ne=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,ut=(t,e)=>{const r=t.getFullYear(),n=t.getMonth(),i=t.getDate(),u=t.getHours(),l=t.getMinutes(),c=t.getSeconds(),d=t.getMilliseconds(),_=t.getDay(),p={YY:String(r).slice(-2),YYYY:r,M:n+1,MM:`${n+1}`.padStart(2,"0"),D:String(i),DD:`${i}`.padStart(2,"0"),H:String(u),HH:`${u}`.padStart(2,"0"),h:`${u%12||12}`.padStart(1,"0"),hh:`${u%12||12}`.padStart(2,"0"),m:String(l),mm:`${l}`.padStart(2,"0"),s:String(c),ss:`${c}`.padStart(2,"0"),SSS:`${d}`.padStart(3,"0"),d:_};return e.replace(Ne,(s,f)=>f||p[s])},lt=t=>{if(t===null)return new Date(NaN);if(t===void 0)return new Date;if(t instanceof Date)return new Date(t);if(typeof t=="string"&&!/Z$/i.test(t)){const e=t.match(Me);if(e){const r=e[2]-1||0,n=(e[7]||"0").substring(0,3);return new Date(e[1],r,e[3]||1,e[4]||0,e[5]||0,e[6]||0,n)}}return new Date(t)};function We(t,e="HH:mm:ss"){return a.computed(()=>ut(lt(a.unref(t)),a.unref(e)))}function ct(t,e=1e3,r={}){const{immediate:n=!0,immediateCallback:i=!1}=r;let u=null;const l=a.ref(!1);function c(){u&&(clearInterval(u),u=null)}function d(){l.value=!1,c()}function _(){e<=0||(l.value=!0,i&&t(),c(),u=setInterval(t,a.unref(e)))}if(n&&j&&_(),a.isRef(e)){const p=a.watch(e,()=>{n&&j&&_()});b(p)}return b(d),{isActive:l,pause:d,resume:_}}var Be=Object.defineProperty,st=Object.getOwnPropertySymbols,Ue=Object.prototype.hasOwnProperty,He=Object.prototype.propertyIsEnumerable,ft=(t,e,r)=>e in t?Be(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,Ve=(t,e)=>{for(var r in e||(e={}))Ue.call(e,r)&&ft(t,r,e[r]);if(st)for(var r of st(e))He.call(e,r)&&ft(t,r,e[r]);return t};function Ye(t=1e3,e={}){const{controls:r=!1,immediate:n=!0}=e,i=a.ref(0),u=ct(()=>i.value+=1,t,{immediate:n});return r?Ve({counter:i},u):i}function Ge(t,e={}){var r;const n=a.ref((r=e.initialValue)!=null?r:null);return a.watch(t,()=>n.value=D(),e),n}function dt(t,e,r={}){const{immediate:n=!0}=r,i=a.ref(!1);let u=null;function l(){u&&(clearTimeout(u),u=null)}function c(){i.value=!1,l()}function d(..._){l(),i.value=!0,u=setTimeout(()=>{i.value=!1,u=null,t(..._)},a.unref(e))}return n&&(i.value=!0,j&&d()),b(c),{isPending:i,start:d,stop:c}}var ze=Object.defineProperty,pt=Object.getOwnPropertySymbols,Le=Object.prototype.hasOwnProperty,Xe=Object.prototype.propertyIsEnumerable,_t=(t,e,r)=>e in t?ze(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,Ze=(t,e)=>{for(var r in e||(e={}))Le.call(e,r)&&_t(t,r,e[r]);if(pt)for(var r of pt(e))Xe.call(e,r)&&_t(t,r,e[r]);return t};function ke(t=1e3,e={}){const{controls:r=!1}=e,n=dt(x,t,e),i=a.computed(()=>!n.isPending.value);return r?Ze({ready:i},n):i}function qe(t=!1,e={}){const{truthyValue:r=!0,falsyValue:n=!1}=e,i=a.isRef(t),u=a.ref(t);function l(c){return arguments.length?(u.value=c,u.value):(u.value=u.value===a.unref(r)?a.unref(n):a.unref(r),u.value)}return i?l:[u,l]}var yt=Object.getOwnPropertySymbols,Je=Object.prototype.hasOwnProperty,Qe=Object.prototype.propertyIsEnumerable,Ke=(t,e)=>{var r={};for(var n in t)Je.call(t,n)&&e.indexOf(n)<0&&(r[n]=t[n]);if(t!=null&&yt)for(var n of yt(t))e.indexOf(n)<0&&Qe.call(t,n)&&(r[n]=t[n]);return r};function S(t,e,r={}){const n=r,{eventFilter:i=I}=n,u=Ke(n,["eventFilter"]);return a.watch(t,$(i,e),u)}var Ot=Object.getOwnPropertySymbols,De=Object.prototype.hasOwnProperty,xe=Object.prototype.propertyIsEnumerable,tr=(t,e)=>{var r={};for(var n in t)De.call(t,n)&&e.indexOf(n)<0&&(r[n]=t[n]);if(t!=null&&Ot)for(var n of Ot(t))e.indexOf(n)<0&&xe.call(t,n)&&(r[n]=t[n]);return r};function er(t,e,r){const n=r,{count:i}=n,u=tr(n,["count"]),l=a.ref(0),c=S(t,(...d)=>{l.value+=1,l.value>=a.unref(i)&&a.nextTick(()=>c()),e(...d)},u);return{count:l,stop:c}}var rr=Object.defineProperty,nr=Object.defineProperties,or=Object.getOwnPropertyDescriptors,T=Object.getOwnPropertySymbols,ht=Object.prototype.hasOwnProperty,vt=Object.prototype.propertyIsEnumerable,wt=(t,e,r)=>e in t?rr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,ar=(t,e)=>{for(var r in e||(e={}))ht.call(e,r)&&wt(t,r,e[r]);if(T)for(var r of T(e))vt.call(e,r)&&wt(t,r,e[r]);return t},ir=(t,e)=>nr(t,or(e)),ur=(t,e)=>{var r={};for(var n in t)ht.call(t,n)&&e.indexOf(n)<0&&(r[n]=t[n]);if(t!=null&&T)for(var n of T(t))e.indexOf(n)<0&&vt.call(t,n)&&(r[n]=t[n]);return r};function Pt(t,e,r={}){const n=r,{debounce:i=0}=n,u=ur(n,["debounce"]);return S(t,e,ir(ar({},u),{eventFilter:M(i)}))}var lr=Object.defineProperty,cr=Object.defineProperties,sr=Object.getOwnPropertyDescriptors,E=Object.getOwnPropertySymbols,gt=Object.prototype.hasOwnProperty,bt=Object.prototype.propertyIsEnumerable,mt=(t,e,r)=>e in t?lr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,fr=(t,e)=>{for(var r in e||(e={}))gt.call(e,r)&&mt(t,r,e[r]);if(E)for(var r of E(e))bt.call(e,r)&&mt(t,r,e[r]);return t},dr=(t,e)=>cr(t,sr(e)),pr=(t,e)=>{var r={};for(var n in t)gt.call(t,n)&&e.indexOf(n)<0&&(r[n]=t[n]);if(t!=null&&E)for(var n of E(t))e.indexOf(n)<0&&bt.call(t,n)&&(r[n]=t[n]);return r};function $t(t,e,r={}){const n=r,{eventFilter:i=I}=n,u=pr(n,["eventFilter"]),l=$(i,e);let c,d,_;if(u.flush==="sync"){const p=a.ref(!1);d=()=>{},c=s=>{p.value=!0,s(),p.value=!1},_=a.watch(t,(...s)=>{p.value||l(...s)},u)}else{const p=[],s=a.ref(0),f=a.ref(0);d=()=>{s.value=f.value},p.push(a.watch(t,()=>{f.value++},dr(fr({},u),{flush:"sync"}))),c=y=>{const O=f.value;y(),s.value+=f.value-O},p.push(a.watch(t,(...y)=>{const O=s.value>0&&s.value===f.value;s.value=0,f.value=0,!O&&l(...y)},u)),_=()=>{p.forEach(y=>y())}}return{stop:_,ignoreUpdates:c,ignorePrevAsyncUpdates:d}}function _r(t,e,r){const n=a.watch(t,(...i)=>(a.nextTick(()=>n()),e(...i)),r)}var yr=Object.defineProperty,Or=Object.defineProperties,hr=Object.getOwnPropertyDescriptors,F=Object.getOwnPropertySymbols,St=Object.prototype.hasOwnProperty,jt=Object.prototype.propertyIsEnumerable,It=(t,e,r)=>e in t?yr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,vr=(t,e)=>{for(var r in e||(e={}))St.call(e,r)&&It(t,r,e[r]);if(F)for(var r of F(e))jt.call(e,r)&&It(t,r,e[r]);return t},wr=(t,e)=>Or(t,hr(e)),Pr=(t,e)=>{var r={};for(var n in t)St.call(t,n)&&e.indexOf(n)<0&&(r[n]=t[n]);if(t!=null&&F)for(var n of F(t))e.indexOf(n)<0&&jt.call(t,n)&&(r[n]=t[n]);return r};function Tt(t,e,r={}){const n=r,{eventFilter:i}=n,u=Pr(n,["eventFilter"]),{eventFilter:l,pause:c,resume:d,isActive:_}=tt(i);return{stop:S(t,e,wr(vr({},u),{eventFilter:l})),pause:c,resume:d,isActive:_}}var gr=Object.defineProperty,br=Object.defineProperties,mr=Object.getOwnPropertyDescriptors,A=Object.getOwnPropertySymbols,Et=Object.prototype.hasOwnProperty,Ft=Object.prototype.propertyIsEnumerable,At=(t,e,r)=>e in t?gr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,$r=(t,e)=>{for(var r in e||(e={}))Et.call(e,r)&&At(t,r,e[r]);if(A)for(var r of A(e))Ft.call(e,r)&&At(t,r,e[r]);return t},Sr=(t,e)=>br(t,mr(e)),jr=(t,e)=>{var r={};for(var n in t)Et.call(t,n)&&e.indexOf(n)<0&&(r[n]=t[n]);if(t!=null&&A)for(var n of A(t))e.indexOf(n)<0&&Ft.call(t,n)&&(r[n]=t[n]);return r};function Ct(t,e,r={}){const n=r,{throttle:i=0,trailing:u=!0,leading:l=!0}=n,c=jr(n,["throttle","trailing","leading"]);return S(t,e,Sr($r({},c),{eventFilter:N(i,u,l)}))}function Ir(t,e,r){return a.watch(t,(n,i,u)=>{n&&e(n,i,u)},r)}o.__onlyVue3=Y,o.and=z,o.assert=xt,o.autoResetRef=Q,o.bypassFilter=I,o.clamp=ue,o.computedEager=H,o.computedWithControl=V,o.containsProp=de,o.controlledComputed=V,o.controlledRef=Oe,o.createEventHook=Bt,o.createFilterWrapper=$,o.createGlobalState=Ut,o.createInjectionState=Ht,o.createReactiveFn=R,o.createSharedComposable=Vt,o.createSingletonPromise=se,o.debounceFilter=M,o.debouncedRef=W,o.debouncedWatch=Pt,o.directiveHooks=Yt,o.eagerComputed=H,o.extendRef=G,o.formatDate=ut,o.get=Gt,o.identity=ce,o.ignorableWatch=$t,o.increaseWithUnit=pe,o.invoke=fe,o.isBoolean=te,o.isClient=j,o.isDef=Dt,o.isDefined=zt,o.isFunction=ee,o.isNumber=re,o.isObject=oe,o.isString=ne,o.isWindow=ae,o.logicAnd=z,o.logicNot=L,o.logicOr=X,o.makeDestructurable=qt,o.noop=x,o.normalizeDate=lt,o.not=L,o.now=ie,o.objectPick=_e,o.or=X,o.pausableFilter=tt,o.pausableWatch=Tt,o.promiseTimeout=et,o.rand=le,o.reactify=R,o.reactifyObject=Jt,o.reactiveComputed=J,o.reactiveOmit=Qt,o.reactivePick=Kt,o.refAutoReset=Q,o.refDebounced=W,o.refDefault=ye,o.refThrottled=B,o.refWithControl=ot,o.set=he,o.syncRef=ve,o.syncRefs=we,o.throttleFilter=N,o.throttledRef=B,o.throttledWatch=Ct,o.timestamp=D,o.toReactive=q,o.toRefs=Ie,o.tryOnBeforeMount=Te,o.tryOnBeforeUnmount=Ee,o.tryOnMounted=Fe,o.tryOnScopeDispose=b,o.tryOnUnmounted=Ae,o.until=Ce,o.useCounter=Re,o.useDateFormat=We,o.useDebounce=W,o.useDebounceFn=rt,o.useInterval=Ye,o.useIntervalFn=ct,o.useLastChanged=Ge,o.useThrottle=B,o.useThrottleFn=nt,o.useTimeout=ke,o.useTimeoutFn=dt,o.useToggle=qe,o.watchAtMost=er,o.watchDebounced=Pt,o.watchIgnorable=$t,o.watchOnce=_r,o.watchPausable=Tt,o.watchThrottled=Ct,o.watchWithFilter=S,o.whenever=Ir,Object.defineProperty(o,"__esModule",{value:!0})})(this.VueUse=this.VueUse||{},VueDemi);
|
|
1
|
+
var VueDemi=function(o,a,m){if(o.install)return o;if(a)if(a.version.slice(0,4)==="2.7."){for(var P in a)o[P]=a[P];o.isVue2=!0,o.isVue3=!1,o.install=function(){},o.Vue=a,o.Vue2=a,o.version=a.version,o.set=function(y,h,w){return Array.isArray(y)?(y.length=Math.max(y.length,h),y.splice(h,1,w),w):(a.set(y,h,w),w)},o.del=function(y,h){if(Array.isArray(y)){y.splice(h,1);return}a.delete(y,h)}}else if(a.version.slice(0,2)==="2.")if(m){for(var P in m)o[P]=m[P];o.isVue2=!0,o.isVue3=!1,o.install=function(){},o.Vue=a,o.Vue2=a,o.version=a.version}else console.error("[vue-demi] no VueCompositionAPI instance found, please be sure to import `@vue/composition-api` before `vue-demi`.");else if(a.version.slice(0,2)==="3."){for(var P in a)o[P]=a[P];o.isVue2=!1,o.isVue3=!0,o.install=function(){},o.Vue=a,o.Vue2=void 0,o.version=a.version,o.set=function(y,h,w){return Array.isArray(y)?(y.length=Math.max(y.length,h),y.splice(h,1,w),w):(y[h]=w,w)},o.del=function(y,h){if(Array.isArray(y)){y.splice(h,1);return}delete y[h]}}else console.error("[vue-demi] Vue version "+a.version+" is unsupported.");else console.error("[vue-demi] no Vue instance found, please be sure to import `vue` before `vue-demi`.");return o}(this.VueDemi=this.VueDemi||(typeof VueDemi!="undefined"?VueDemi:{}),this.Vue||(typeof Vue!="undefined"?Vue:void 0),this.VueCompositionAPI||(typeof VueCompositionAPI!="undefined"?VueCompositionAPI:void 0));(function(o,a){"use strict";var m=Object.defineProperty,P=Object.defineProperties,y=Object.getOwnPropertyDescriptors,h=Object.getOwnPropertySymbols,w=Object.prototype.hasOwnProperty,Nt=Object.prototype.propertyIsEnumerable,U=(t,e,n)=>e in t?m(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,Wt=(t,e)=>{for(var n in e||(e={}))w.call(e,n)&&U(t,n,e[n]);if(h)for(var n of h(e))Nt.call(e,n)&&U(t,n,e[n]);return t},Bt=(t,e)=>P(t,y(e));function H(t,e){var n;const r=a.shallowRef();return a.watchEffect(()=>{r.value=t()},Bt(Wt({},e),{flush:(n=e==null?void 0:e.flush)!=null?n:"sync"})),a.readonly(r)}function Y(t,e){let n,r,i;const l=a.ref(!0);return a.watch(t,()=>{l.value=!0,i()},{flush:"sync"}),a.customRef((c,u)=>(r=c,i=u,{get(){return l.value&&(n=e(),l.value=!1),r(),n},set(){}}))}function Ut(){const t=[],e=i=>{const l=t.indexOf(i);l!==-1&&t.splice(l,1)};return{on:i=>(t.push(i),{off:()=>e(i)}),off:e,trigger:i=>{t.forEach(l=>l(i))}}}function Ht(t){let e=!1,n;const r=a.effectScope(!0);return()=>(e||(n=r.run(t),e=!0),n)}function Yt(t){const e=Symbol("InjectionState");return[(...i)=>{a.provide(e,t(...i))},()=>a.inject(e)]}function b(t){return a.getCurrentScope()?(a.onScopeDispose(t),!0):!1}function Gt(t){let e=0,n,r;const i=()=>{e-=1,r&&e<=0&&(r.stop(),n=void 0,r=void 0)};return(...l)=>(e+=1,n||(r=a.effectScope(!0),n=r.run(()=>t(...l))),b(i),n)}function G(t="this function"){if(!a.isVue3)throw new Error(`[VueUse] ${t} is only works on Vue 3.`)}const zt={mounted:a.isVue3?"mounted":"inserted",updated:a.isVue3?"updated":"componentUpdated",unmounted:a.isVue3?"unmounted":"unbind"};function z(t,e,{enumerable:n=!1,unwrap:r=!0}={}){G();for(const[i,l]of Object.entries(e))i!=="value"&&(a.isRef(l)&&r?Object.defineProperty(t,i,{get(){return l.value},set(c){l.value=c},enumerable:n}):Object.defineProperty(t,i,{value:l,enumerable:n}));return t}function Lt(t,e){return e==null?a.unref(t):a.unref(t)[e]}function Xt(t){return a.unref(t)!=null}function L(...t){return a.computed(()=>t.every(e=>a.unref(e)))}function X(t){return a.computed(()=>!a.unref(t))}function Z(...t){return a.computed(()=>t.some(e=>a.unref(e)))}var Zt=Object.defineProperty,q=Object.getOwnPropertySymbols,qt=Object.prototype.hasOwnProperty,Jt=Object.prototype.propertyIsEnumerable,J=(t,e,n)=>e in t?Zt(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,Qt=(t,e)=>{for(var n in e||(e={}))qt.call(e,n)&&J(t,n,e[n]);if(q)for(var n of q(e))Jt.call(e,n)&&J(t,n,e[n]);return t};function Kt(t,e){if(typeof Symbol!="undefined"){const n=Qt({},t);return Object.defineProperty(n,Symbol.iterator,{enumerable:!1,value(){let r=0;return{next:()=>({value:e[r++],done:r>e.length})}}}),n}else return Object.assign([...e],t)}function R(t){return function(...e){return a.computed(()=>t.apply(this,e.map(n=>a.unref(n))))}}function kt(t,e={}){let n=[];if(Array.isArray(e))n=e;else{const{includeOwnProperties:r=!0}=e;n.push(...Object.keys(t)),r&&n.push(...Object.getOwnPropertyNames(t))}return Object.fromEntries(n.map(r=>{const i=t[r];return[r,typeof i=="function"?R(i.bind(t)):i]}))}function Q(t){if(!a.isRef(t))return a.reactive(t);const e=new Proxy({},{get(n,r,i){return a.unref(Reflect.get(t.value,r,i))},set(n,r,i){return a.isRef(t.value[r])&&!a.isRef(i)?t.value[r].value=i:t.value[r]=i,!0},deleteProperty(n,r){return Reflect.deleteProperty(t.value,r)},has(n,r){return Reflect.has(t.value,r)},ownKeys(){return Object.keys(t.value)},getOwnPropertyDescriptor(){return{enumerable:!0,configurable:!0}}});return a.reactive(e)}function K(t){return Q(a.computed(t))}function Vt(t,...e){return K(()=>Object.fromEntries(Object.entries(a.toRefs(t)).filter(n=>!e.includes(n[0]))))}function xt(t,...e){return a.reactive(Object.fromEntries(e.map(n=>[n,a.toRef(t,n)])))}function k(t,e=1e4){return a.customRef((n,r)=>{let i=t,l;const c=()=>setTimeout(()=>{i=t,r()},a.unref(e));return b(()=>{clearTimeout(l)}),{get(){return n(),i},set(u){i=u,r(),clearTimeout(l),l=c()}}})}var V;const $=typeof window!="undefined",Dt=t=>typeof t!="undefined",te=(t,...e)=>{t||console.warn(...e)},x=Object.prototype.toString,ee=t=>typeof t=="boolean",ne=t=>typeof t=="function",re=t=>typeof t=="number",oe=t=>typeof t=="string",ae=t=>x.call(t)==="[object Object]",ie=t=>typeof window!="undefined"&&x.call(t)==="[object Window]",le=()=>Date.now(),D=()=>+Date.now(),ce=(t,e,n)=>Math.min(n,Math.max(e,t)),tt=()=>{},ue=(t,e)=>(t=Math.ceil(t),e=Math.floor(e),Math.floor(Math.random()*(e-t+1))+t),se=$&&((V=window==null?void 0:window.navigator)==null?void 0:V.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function S(t,e){function n(...r){t(()=>e.apply(this,r),{fn:e,thisArg:this,args:r})}return n}const I=t=>t();function M(t,e={}){let n,r;return l=>{const c=a.unref(t),u=a.unref(e.maxWait);if(n&&clearTimeout(n),c<=0||u!==void 0&&u<=0)return r&&(clearTimeout(r),r=null),l();u&&!r&&(r=setTimeout(()=>{n&&clearTimeout(n),r=null,l()},u)),n=setTimeout(()=>{r&&clearTimeout(r),r=null,l()},c)}}function N(t,e=!0,n=!0){let r=0,i,l=!0;const c=()=>{i&&(clearTimeout(i),i=void 0)};return d=>{const _=a.unref(t),p=Date.now()-r;if(c(),_<=0)return r=Date.now(),d();p>_&&(n||!l)?(r=Date.now(),d()):e&&(i=setTimeout(()=>{r=Date.now(),l=!0,c(),d()},_)),!n&&!i&&(i=setTimeout(()=>l=!0,_)),l=!1}}function et(t=I){const e=a.ref(!0);function n(){e.value=!1}function r(){e.value=!0}return{isActive:e,pause:n,resume:r,eventFilter:(...l)=>{e.value&&t(...l)}}}function nt(t,e=!1,n="Timeout"){return new Promise((r,i)=>{setTimeout(e?()=>i(n):r,t)})}function fe(t){return t}function de(t){let e;function n(){return e||(e=t()),e}return n.reset=async()=>{const r=e;e=void 0,r&&await r},n}function pe(t){return t()}function _e(t,...e){return e.some(n=>n in t)}function ye(t,e){var n;if(typeof t=="number")return t+e;const r=((n=t.match(/^-?[0-9]+\.?[0-9]*/))==null?void 0:n[0])||"",i=t.slice(r.length),l=parseFloat(r)+e;return Number.isNaN(l)?t:l+i}function Oe(t,e,n=!1){return e.reduce((r,i)=>(i in t&&(!n||t[i]!==void 0)&&(r[i]=t[i]),r),{})}function rt(t,e=200,n={}){return S(M(e,n),t)}function W(t,e=200,n={}){if(e<=0)return t;const r=a.ref(t.value),i=rt(()=>{r.value=t.value},e,n);return a.watch(t,()=>i()),r}function he(t,e){return a.computed({get(){var n;return(n=t.value)!=null?n:e},set(n){t.value=n}})}function ot(t,e=200,n=!0,r=!0){return S(N(e,n,r),t)}function B(t,e=200,n=!0,r=!0){if(e<=0)return t;const i=a.ref(t.value),l=ot(()=>{i.value=t.value},e,n,r);return a.watch(t,()=>l()),i}function at(t,e={}){let n=t,r,i;const l=a.customRef((f,O)=>(r=f,i=O,{get(){return c()},set(v){u(v)}}));function c(f=!0){return f&&r(),n}function u(f,O=!0){var v,C;if(f===n)return;const g=n;((v=e.onBeforeChange)==null?void 0:v.call(e,f,g))!==!1&&(n=f,(C=e.onChanged)==null||C.call(e,f,g),O&&i())}return z(l,{get:c,set:u,untrackedGet:()=>c(!1),silentSet:f=>u(f,!1),peek:()=>c(!1),lay:f=>u(f,!1)},{enumerable:!0})}const ve=at;function we(...t){if(t.length===2){const[e,n]=t;e.value=n}if(t.length===3)if(a.isVue2)a.set(...t);else{const[e,n,r]=t;e[n]=r}}function Pe(t,e,n={}){const{flush:r="sync",deep:i=!1,immediate:l=!0,direction:c="both"}=n;let u,d;return(c==="both"||c==="ltr")&&(u=a.watch(t,_=>e.value=_,{flush:r,deep:i,immediate:l})),(c==="both"||c==="rtl")&&(d=a.watch(e,_=>t.value=_,{flush:r,deep:i,immediate:l})),()=>{u==null||u(),d==null||d()}}function ge(t,e,n={}){const{flush:r="sync",deep:i=!1,immediate:l=!0}=n;return Array.isArray(e)||(e=[e]),a.watch(t,c=>e.forEach(u=>u.value=c),{flush:r,deep:i,immediate:l})}var be=Object.defineProperty,me=Object.defineProperties,$e=Object.getOwnPropertyDescriptors,it=Object.getOwnPropertySymbols,Se=Object.prototype.hasOwnProperty,je=Object.prototype.propertyIsEnumerable,lt=(t,e,n)=>e in t?be(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,Ie=(t,e)=>{for(var n in e||(e={}))Se.call(e,n)&<(t,n,e[n]);if(it)for(var n of it(e))je.call(e,n)&<(t,n,e[n]);return t},Te=(t,e)=>me(t,$e(e));function Ee(t){if(!a.isRef(t))return a.toRefs(t);const e=Array.isArray(t.value)?new Array(t.value.length):{};for(const n in t.value)e[n]=a.customRef(()=>({get(){return t.value[n]},set(r){if(Array.isArray(t.value)){const i=[...t.value];i[n]=r,t.value=i}else{const i=Te(Ie({},t.value),{[n]:r});Object.setPrototypeOf(i,t.value),t.value=i}}}));return e}function Ae(t,e=!0){a.getCurrentInstance()?a.onBeforeMount(t):e?t():a.nextTick(t)}function Fe(t){a.getCurrentInstance()&&a.onBeforeUnmount(t)}function Ce(t,e=!0){a.getCurrentInstance()?a.onMounted(t):e?t():a.nextTick(t)}function Re(t){a.getCurrentInstance()&&a.onUnmounted(t)}function Me(t){let e=!1;function n(s,{flush:f="sync",deep:O=!1,timeout:v,throwOnTimeout:C}={}){let g=null;const Mt=[new Promise(Fn=>{g=a.watch(t,Cn=>{s(Cn)===!e&&(g==null||g(),Fn())},{flush:f,deep:O,immediate:!0})})];return v&&Mt.push(nt(v,C).finally(()=>{g==null||g()})),Promise.race(Mt)}function r(s,f){return n(O=>O===a.unref(s),f)}function i(s){return n(f=>Boolean(f),s)}function l(s){return r(null,s)}function c(s){return r(void 0,s)}function u(s){return n(Number.isNaN,s)}function d(s,f){return n(O=>{const v=Array.from(O);return v.includes(s)||v.includes(a.unref(s))},f)}function _(s){return p(1,s)}function p(s=1,f){let O=-1;return n(()=>(O+=1,O>=s),f)}return Array.isArray(a.unref(t))?{toMatch:n,toContains:d,changed:_,changedTimes:p,get not(){return e=!e,this}}:{toMatch:n,toBe:r,toBeTruthy:i,toBeNull:l,toBeNaN:u,toBeUndefined:c,changed:_,changedTimes:p,get not(){return e=!e,this}}}function Ne(t=0,e={}){const n=a.ref(t),{max:r=1/0,min:i=-1/0}=e,l=(p=1)=>n.value=Math.min(r,n.value+p),c=(p=1)=>n.value=Math.max(i,n.value-p),u=()=>n.value,d=p=>n.value=p;return{count:n,inc:l,dec:c,get:u,set:d,reset:(p=t)=>(t=p,d(p))}}const We=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,Be=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,ct=(t,e)=>{const n=t.getFullYear(),r=t.getMonth(),i=t.getDate(),l=t.getHours(),c=t.getMinutes(),u=t.getSeconds(),d=t.getMilliseconds(),_=t.getDay(),p={YY:String(n).slice(-2),YYYY:n,M:r+1,MM:`${r+1}`.padStart(2,"0"),D:String(i),DD:`${i}`.padStart(2,"0"),H:String(l),HH:`${l}`.padStart(2,"0"),h:`${l%12||12}`.padStart(1,"0"),hh:`${l%12||12}`.padStart(2,"0"),m:String(c),mm:`${c}`.padStart(2,"0"),s:String(u),ss:`${u}`.padStart(2,"0"),SSS:`${d}`.padStart(3,"0"),d:_};return e.replace(Be,(s,f)=>f||p[s])},ut=t=>{if(t===null)return new Date(NaN);if(t===void 0)return new Date;if(t instanceof Date)return new Date(t);if(typeof t=="string"&&!/Z$/i.test(t)){const e=t.match(We);if(e){const n=e[2]-1||0,r=(e[7]||"0").substring(0,3);return new Date(e[1],n,e[3]||1,e[4]||0,e[5]||0,e[6]||0,r)}}return new Date(t)};function Ue(t,e="HH:mm:ss"){return a.computed(()=>ct(ut(a.unref(t)),a.unref(e)))}function st(t,e=1e3,n={}){const{immediate:r=!0,immediateCallback:i=!1}=n;let l=null;const c=a.ref(!1);function u(){l&&(clearInterval(l),l=null)}function d(){c.value=!1,u()}function _(){a.unref(e)<=0||(c.value=!0,i&&t(),u(),l=setInterval(t,a.unref(e)))}if(r&&$&&_(),a.isRef(e)){const p=a.watch(e,()=>{r&&$&&_()});b(p)}return b(d),{isActive:c,pause:d,resume:_}}var He=Object.defineProperty,ft=Object.getOwnPropertySymbols,Ye=Object.prototype.hasOwnProperty,Ge=Object.prototype.propertyIsEnumerable,dt=(t,e,n)=>e in t?He(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,ze=(t,e)=>{for(var n in e||(e={}))Ye.call(e,n)&&dt(t,n,e[n]);if(ft)for(var n of ft(e))Ge.call(e,n)&&dt(t,n,e[n]);return t};function Le(t=1e3,e={}){const{controls:n=!1,immediate:r=!0}=e,i=a.ref(0),l=st(()=>i.value+=1,t,{immediate:r});return n?ze({counter:i},l):i}function Xe(t,e={}){var n;const r=a.ref((n=e.initialValue)!=null?n:null);return a.watch(t,()=>r.value=D(),e),r}function pt(t,e,n={}){const{immediate:r=!0}=n,i=a.ref(!1);let l=null;function c(){l&&(clearTimeout(l),l=null)}function u(){i.value=!1,c()}function d(..._){c(),i.value=!0,l=setTimeout(()=>{i.value=!1,l=null,t(..._)},a.unref(e))}return r&&(i.value=!0,$&&d()),b(u),{isPending:i,start:d,stop:u}}var Ze=Object.defineProperty,_t=Object.getOwnPropertySymbols,qe=Object.prototype.hasOwnProperty,Je=Object.prototype.propertyIsEnumerable,yt=(t,e,n)=>e in t?Ze(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,Qe=(t,e)=>{for(var n in e||(e={}))qe.call(e,n)&&yt(t,n,e[n]);if(_t)for(var n of _t(e))Je.call(e,n)&&yt(t,n,e[n]);return t};function Ke(t=1e3,e={}){const{controls:n=!1}=e,r=pt(tt,t,e),i=a.computed(()=>!r.isPending.value);return n?Qe({ready:i},r):i}function ke(t=!1,e={}){const{truthyValue:n=!0,falsyValue:r=!1}=e,i=a.isRef(t),l=a.ref(t);function c(u){return arguments.length?(l.value=u,l.value):(l.value=l.value===a.unref(n)?a.unref(r):a.unref(n),l.value)}return i?c:[l,c]}var Ot=Object.getOwnPropertySymbols,Ve=Object.prototype.hasOwnProperty,xe=Object.prototype.propertyIsEnumerable,De=(t,e)=>{var n={};for(var r in t)Ve.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(t!=null&&Ot)for(var r of Ot(t))e.indexOf(r)<0&&xe.call(t,r)&&(n[r]=t[r]);return n};function j(t,e,n={}){const r=n,{eventFilter:i=I}=r,l=De(r,["eventFilter"]);return a.watch(t,S(i,e),l)}var ht=Object.getOwnPropertySymbols,tn=Object.prototype.hasOwnProperty,en=Object.prototype.propertyIsEnumerable,nn=(t,e)=>{var n={};for(var r in t)tn.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(t!=null&&ht)for(var r of ht(t))e.indexOf(r)<0&&en.call(t,r)&&(n[r]=t[r]);return n};function rn(t,e,n){const r=n,{count:i}=r,l=nn(r,["count"]),c=a.ref(0),u=j(t,(...d)=>{c.value+=1,c.value>=a.unref(i)&&a.nextTick(()=>u()),e(...d)},l);return{count:c,stop:u}}var on=Object.defineProperty,an=Object.defineProperties,ln=Object.getOwnPropertyDescriptors,T=Object.getOwnPropertySymbols,vt=Object.prototype.hasOwnProperty,wt=Object.prototype.propertyIsEnumerable,Pt=(t,e,n)=>e in t?on(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,cn=(t,e)=>{for(var n in e||(e={}))vt.call(e,n)&&Pt(t,n,e[n]);if(T)for(var n of T(e))wt.call(e,n)&&Pt(t,n,e[n]);return t},un=(t,e)=>an(t,ln(e)),sn=(t,e)=>{var n={};for(var r in t)vt.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(t!=null&&T)for(var r of T(t))e.indexOf(r)<0&&wt.call(t,r)&&(n[r]=t[r]);return n};function gt(t,e,n={}){const r=n,{debounce:i=0,maxWait:l=void 0}=r,c=sn(r,["debounce","maxWait"]);return j(t,e,un(cn({},c),{eventFilter:M(i,{maxWait:l})}))}var fn=Object.defineProperty,dn=Object.defineProperties,pn=Object.getOwnPropertyDescriptors,E=Object.getOwnPropertySymbols,bt=Object.prototype.hasOwnProperty,mt=Object.prototype.propertyIsEnumerable,$t=(t,e,n)=>e in t?fn(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,_n=(t,e)=>{for(var n in e||(e={}))bt.call(e,n)&&$t(t,n,e[n]);if(E)for(var n of E(e))mt.call(e,n)&&$t(t,n,e[n]);return t},yn=(t,e)=>dn(t,pn(e)),On=(t,e)=>{var n={};for(var r in t)bt.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(t!=null&&E)for(var r of E(t))e.indexOf(r)<0&&mt.call(t,r)&&(n[r]=t[r]);return n};function St(t,e,n={}){const r=n,{eventFilter:i=I}=r,l=On(r,["eventFilter"]),c=S(i,e);let u,d,_;if(l.flush==="sync"){const p=a.ref(!1);d=()=>{},u=s=>{p.value=!0,s(),p.value=!1},_=a.watch(t,(...s)=>{p.value||c(...s)},l)}else{const p=[],s=a.ref(0),f=a.ref(0);d=()=>{s.value=f.value},p.push(a.watch(t,()=>{f.value++},yn(_n({},l),{flush:"sync"}))),u=O=>{const v=f.value;O(),s.value+=f.value-v},p.push(a.watch(t,(...O)=>{const v=s.value>0&&s.value===f.value;s.value=0,f.value=0,!v&&c(...O)},l)),_=()=>{p.forEach(O=>O())}}return{stop:_,ignoreUpdates:u,ignorePrevAsyncUpdates:d}}function hn(t,e,n){const r=a.watch(t,(...i)=>(a.nextTick(()=>r()),e(...i)),n)}var vn=Object.defineProperty,wn=Object.defineProperties,Pn=Object.getOwnPropertyDescriptors,A=Object.getOwnPropertySymbols,jt=Object.prototype.hasOwnProperty,It=Object.prototype.propertyIsEnumerable,Tt=(t,e,n)=>e in t?vn(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,gn=(t,e)=>{for(var n in e||(e={}))jt.call(e,n)&&Tt(t,n,e[n]);if(A)for(var n of A(e))It.call(e,n)&&Tt(t,n,e[n]);return t},bn=(t,e)=>wn(t,Pn(e)),mn=(t,e)=>{var n={};for(var r in t)jt.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(t!=null&&A)for(var r of A(t))e.indexOf(r)<0&&It.call(t,r)&&(n[r]=t[r]);return n};function Et(t,e,n={}){const r=n,{eventFilter:i}=r,l=mn(r,["eventFilter"]),{eventFilter:c,pause:u,resume:d,isActive:_}=et(i);return{stop:j(t,e,bn(gn({},l),{eventFilter:c})),pause:u,resume:d,isActive:_}}var $n=Object.defineProperty,Sn=Object.defineProperties,jn=Object.getOwnPropertyDescriptors,F=Object.getOwnPropertySymbols,At=Object.prototype.hasOwnProperty,Ft=Object.prototype.propertyIsEnumerable,Ct=(t,e,n)=>e in t?$n(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,In=(t,e)=>{for(var n in e||(e={}))At.call(e,n)&&Ct(t,n,e[n]);if(F)for(var n of F(e))Ft.call(e,n)&&Ct(t,n,e[n]);return t},Tn=(t,e)=>Sn(t,jn(e)),En=(t,e)=>{var n={};for(var r in t)At.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(t!=null&&F)for(var r of F(t))e.indexOf(r)<0&&Ft.call(t,r)&&(n[r]=t[r]);return n};function Rt(t,e,n={}){const r=n,{throttle:i=0,trailing:l=!0,leading:c=!0}=r,u=En(r,["throttle","trailing","leading"]);return j(t,e,Tn(In({},u),{eventFilter:N(i,l,c)}))}function An(t,e,n){return a.watch(t,(r,i,l)=>{r&&e(r,i,l)},n)}o.__onlyVue3=G,o.and=L,o.assert=te,o.autoResetRef=k,o.bypassFilter=I,o.clamp=ce,o.computedEager=H,o.computedWithControl=Y,o.containsProp=_e,o.controlledComputed=Y,o.controlledRef=ve,o.createEventHook=Ut,o.createFilterWrapper=S,o.createGlobalState=Ht,o.createInjectionState=Yt,o.createReactiveFn=R,o.createSharedComposable=Gt,o.createSingletonPromise=de,o.debounceFilter=M,o.debouncedRef=W,o.debouncedWatch=gt,o.directiveHooks=zt,o.eagerComputed=H,o.extendRef=z,o.formatDate=ct,o.get=Lt,o.identity=fe,o.ignorableWatch=St,o.increaseWithUnit=ye,o.invoke=pe,o.isBoolean=ee,o.isClient=$,o.isDef=Dt,o.isDefined=Xt,o.isFunction=ne,o.isIOS=se,o.isNumber=re,o.isObject=ae,o.isString=oe,o.isWindow=ie,o.logicAnd=L,o.logicNot=X,o.logicOr=Z,o.makeDestructurable=Kt,o.noop=tt,o.normalizeDate=ut,o.not=X,o.now=le,o.objectPick=Oe,o.or=Z,o.pausableFilter=et,o.pausableWatch=Et,o.promiseTimeout=nt,o.rand=ue,o.reactify=R,o.reactifyObject=kt,o.reactiveComputed=K,o.reactiveOmit=Vt,o.reactivePick=xt,o.refAutoReset=k,o.refDebounced=W,o.refDefault=he,o.refThrottled=B,o.refWithControl=at,o.set=we,o.syncRef=Pe,o.syncRefs=ge,o.throttleFilter=N,o.throttledRef=B,o.throttledWatch=Rt,o.timestamp=D,o.toReactive=Q,o.toRefs=Ee,o.tryOnBeforeMount=Ae,o.tryOnBeforeUnmount=Fe,o.tryOnMounted=Ce,o.tryOnScopeDispose=b,o.tryOnUnmounted=Re,o.until=Me,o.useCounter=Ne,o.useDateFormat=Ue,o.useDebounce=W,o.useDebounceFn=rt,o.useInterval=Le,o.useIntervalFn=st,o.useLastChanged=Xe,o.useThrottle=B,o.useThrottleFn=ot,o.useTimeout=Ke,o.useTimeoutFn=pt,o.useToggle=ke,o.watchAtMost=rn,o.watchDebounced=gt,o.watchIgnorable=St,o.watchOnce=hn,o.watchPausable=Et,o.watchThrottled=Rt,o.watchWithFilter=j,o.whenever=An,Object.defineProperty(o,"__esModule",{value:!0})})(this.VueUse=this.VueUse||{},VueDemi);
|
package/index.mjs
CHANGED
|
@@ -321,6 +321,7 @@ function refAutoReset(defaultValue, afterMs = 1e4) {
|
|
|
321
321
|
});
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
+
var _a;
|
|
324
325
|
const isClient = typeof window !== "undefined";
|
|
325
326
|
const isDef = (val) => typeof val !== "undefined";
|
|
326
327
|
const assert = (condition, ...infos) => {
|
|
@@ -344,6 +345,7 @@ const rand = (min, max) => {
|
|
|
344
345
|
max = Math.floor(max);
|
|
345
346
|
return Math.floor(Math.random() * (max - min + 1)) + min;
|
|
346
347
|
};
|
|
348
|
+
const isIOS = isClient && ((_a = window == null ? void 0 : window.navigator) == null ? void 0 : _a.userAgent) && /iP(ad|hone|od)/.test(window.navigator.userAgent);
|
|
347
349
|
|
|
348
350
|
function createFilterWrapper(filter, fn) {
|
|
349
351
|
function wrapper(...args) {
|
|
@@ -389,7 +391,7 @@ function debounceFilter(ms, options = {}) {
|
|
|
389
391
|
function throttleFilter(ms, trailing = true, leading = true) {
|
|
390
392
|
let lastExec = 0;
|
|
391
393
|
let timer;
|
|
392
|
-
let
|
|
394
|
+
let isLeading = true;
|
|
393
395
|
const clear = () => {
|
|
394
396
|
if (timer) {
|
|
395
397
|
clearTimeout(timer);
|
|
@@ -404,24 +406,20 @@ function throttleFilter(ms, trailing = true, leading = true) {
|
|
|
404
406
|
lastExec = Date.now();
|
|
405
407
|
return invoke();
|
|
406
408
|
}
|
|
407
|
-
if (elapsed > duration) {
|
|
409
|
+
if (elapsed > duration && (leading || !isLeading)) {
|
|
408
410
|
lastExec = Date.now();
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
else
|
|
412
|
-
invoke();
|
|
413
|
-
}
|
|
414
|
-
if (trailing) {
|
|
411
|
+
invoke();
|
|
412
|
+
} else if (trailing) {
|
|
415
413
|
timer = setTimeout(() => {
|
|
416
414
|
lastExec = Date.now();
|
|
417
|
-
|
|
418
|
-
preventLeading = true;
|
|
415
|
+
isLeading = true;
|
|
419
416
|
clear();
|
|
420
417
|
invoke();
|
|
421
418
|
}, duration);
|
|
422
419
|
}
|
|
423
420
|
if (!leading && !timer)
|
|
424
|
-
timer = setTimeout(() =>
|
|
421
|
+
timer = setTimeout(() => isLeading = true, duration);
|
|
422
|
+
isLeading = false;
|
|
425
423
|
};
|
|
426
424
|
return filter;
|
|
427
425
|
}
|
|
@@ -486,7 +484,7 @@ function increaseWithUnit(target, delta) {
|
|
|
486
484
|
function objectPick(obj, keys, omitUndefined = false) {
|
|
487
485
|
return keys.reduce((n, k) => {
|
|
488
486
|
if (k in obj) {
|
|
489
|
-
if (!omitUndefined ||
|
|
487
|
+
if (!omitUndefined || obj[k] !== void 0)
|
|
490
488
|
n[k] = obj[k];
|
|
491
489
|
}
|
|
492
490
|
return n;
|
|
@@ -663,7 +661,9 @@ function toRefs(objectRef) {
|
|
|
663
661
|
copy[key] = v;
|
|
664
662
|
objectRef.value = copy;
|
|
665
663
|
} else {
|
|
666
|
-
|
|
664
|
+
const newObject = __spreadProps$4(__spreadValues$6({}, objectRef.value), { [key]: v });
|
|
665
|
+
Object.setPrototypeOf(newObject, objectRef.value);
|
|
666
|
+
objectRef.value = newObject;
|
|
667
667
|
}
|
|
668
668
|
}
|
|
669
669
|
}));
|
|
@@ -872,7 +872,7 @@ function useIntervalFn(cb, interval = 1e3, options = {}) {
|
|
|
872
872
|
clean();
|
|
873
873
|
}
|
|
874
874
|
function resume() {
|
|
875
|
-
if (interval <= 0)
|
|
875
|
+
if (unref(interval) <= 0)
|
|
876
876
|
return;
|
|
877
877
|
isActive.value = true;
|
|
878
878
|
if (immediateCallback)
|
|
@@ -1115,12 +1115,14 @@ var __objRest$3 = (source, exclude) => {
|
|
|
1115
1115
|
};
|
|
1116
1116
|
function watchDebounced(source, cb, options = {}) {
|
|
1117
1117
|
const _a = options, {
|
|
1118
|
-
debounce = 0
|
|
1118
|
+
debounce = 0,
|
|
1119
|
+
maxWait = void 0
|
|
1119
1120
|
} = _a, watchOptions = __objRest$3(_a, [
|
|
1120
|
-
"debounce"
|
|
1121
|
+
"debounce",
|
|
1122
|
+
"maxWait"
|
|
1121
1123
|
]);
|
|
1122
1124
|
return watchWithFilter(source, cb, __spreadProps$3(__spreadValues$3({}, watchOptions), {
|
|
1123
|
-
eventFilter: debounceFilter(debounce)
|
|
1125
|
+
eventFilter: debounceFilter(debounce, { maxWait })
|
|
1124
1126
|
}));
|
|
1125
1127
|
}
|
|
1126
1128
|
|
|
@@ -1312,4 +1314,4 @@ function whenever(source, cb, options) {
|
|
|
1312
1314
|
}, options);
|
|
1313
1315
|
}
|
|
1314
1316
|
|
|
1315
|
-
export { __onlyVue3, logicAnd as and, assert, refAutoReset as autoResetRef, bypassFilter, clamp, computedEager, computedWithControl, containsProp, computedWithControl as controlledComputed, controlledRef, createEventHook, createFilterWrapper, createGlobalState, createInjectionState, reactify as createReactiveFn, createSharedComposable, createSingletonPromise, debounceFilter, refDebounced as debouncedRef, watchDebounced as debouncedWatch, directiveHooks, computedEager as eagerComputed, extendRef, formatDate, get, identity, watchIgnorable as ignorableWatch, increaseWithUnit, invoke, isBoolean, isClient, isDef, isDefined, isFunction, isNumber, isObject, isString, isWindow, logicAnd, logicNot, logicOr, makeDestructurable, noop, normalizeDate, logicNot as not, now, objectPick, logicOr as or, pausableFilter, watchPausable as pausableWatch, promiseTimeout, rand, reactify, reactifyObject, reactiveComputed, reactiveOmit, reactivePick, refAutoReset, refDebounced, refDefault, refThrottled, refWithControl, set, syncRef, syncRefs, throttleFilter, refThrottled as throttledRef, watchThrottled as throttledWatch, timestamp, toReactive, toRefs, tryOnBeforeMount, tryOnBeforeUnmount, tryOnMounted, tryOnScopeDispose, tryOnUnmounted, until, useCounter, useDateFormat, refDebounced as useDebounce, useDebounceFn, useInterval, useIntervalFn, useLastChanged, refThrottled as useThrottle, useThrottleFn, useTimeout, useTimeoutFn, useToggle, watchAtMost, watchDebounced, watchIgnorable, watchOnce, watchPausable, watchThrottled, watchWithFilter, whenever };
|
|
1317
|
+
export { __onlyVue3, logicAnd as and, assert, refAutoReset as autoResetRef, bypassFilter, clamp, computedEager, computedWithControl, containsProp, computedWithControl as controlledComputed, controlledRef, createEventHook, createFilterWrapper, createGlobalState, createInjectionState, reactify as createReactiveFn, createSharedComposable, createSingletonPromise, debounceFilter, refDebounced as debouncedRef, watchDebounced as debouncedWatch, directiveHooks, computedEager as eagerComputed, extendRef, formatDate, get, identity, watchIgnorable as ignorableWatch, increaseWithUnit, invoke, isBoolean, isClient, isDef, isDefined, isFunction, isIOS, isNumber, isObject, isString, isWindow, logicAnd, logicNot, logicOr, makeDestructurable, noop, normalizeDate, logicNot as not, now, objectPick, logicOr as or, pausableFilter, watchPausable as pausableWatch, promiseTimeout, rand, reactify, reactifyObject, reactiveComputed, reactiveOmit, reactivePick, refAutoReset, refDebounced, refDefault, refThrottled, refWithControl, set, syncRef, syncRefs, throttleFilter, refThrottled as throttledRef, watchThrottled as throttledWatch, timestamp, toReactive, toRefs, tryOnBeforeMount, tryOnBeforeUnmount, tryOnMounted, tryOnScopeDispose, tryOnUnmounted, until, useCounter, useDateFormat, refDebounced as useDebounce, useDebounceFn, useInterval, useIntervalFn, useLastChanged, refThrottled as useThrottle, useThrottleFn, useTimeout, useTimeoutFn, useToggle, watchAtMost, watchDebounced, watchIgnorable, watchOnce, watchPausable, watchThrottled, watchWithFilter, whenever };
|
package/package.json
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vueuse/shared",
|
|
3
|
-
"version": "8.
|
|
4
|
-
"keywords": [
|
|
5
|
-
"vue",
|
|
6
|
-
"vue-use",
|
|
7
|
-
"utils"
|
|
8
|
-
],
|
|
9
|
-
"license": "MIT",
|
|
3
|
+
"version": "8.6.0",
|
|
10
4
|
"author": "Anthony Fu <https://github.com/antfu>",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"funding": "https://github.com/sponsors/antfu",
|
|
7
|
+
"homepage": "https://github.com/vueuse/vueuse/tree/main/packages/shared#readme",
|
|
11
8
|
"repository": {
|
|
12
9
|
"type": "git",
|
|
13
10
|
"url": "git+https://github.com/vueuse/vueuse.git",
|
|
14
11
|
"directory": "packages/shared"
|
|
15
12
|
},
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/vueuse/vueuse/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"vue",
|
|
18
|
+
"vue-use",
|
|
19
|
+
"utils"
|
|
20
|
+
],
|
|
21
|
+
"sideEffects": false,
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
+
"types": "./index.d.ts",
|
|
24
25
|
"import": "./index.mjs",
|
|
25
|
-
"require": "./index.cjs"
|
|
26
|
-
"types": "./index.d.ts"
|
|
26
|
+
"require": "./index.cjs"
|
|
27
27
|
},
|
|
28
28
|
"./*": "./*"
|
|
29
29
|
},
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
30
|
+
"main": "./index.cjs",
|
|
31
|
+
"module": "./index.mjs",
|
|
32
|
+
"unpkg": "./index.iife.min.js",
|
|
33
|
+
"jsdelivr": "./index.iife.min.js",
|
|
34
|
+
"types": "./index.d.ts",
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@vue/composition-api": "^1.1.0",
|
|
37
37
|
"vue": "^2.6.0 || ^3.2.0"
|