@vueuse/integrations 12.6.1 → 12.8.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.
Files changed (72) hide show
  1. package/index.cjs +14 -14
  2. package/index.d.cts +17 -17
  3. package/index.d.mts +17 -17
  4. package/index.d.ts +17 -17
  5. package/index.iife.js +14 -14
  6. package/index.iife.min.js +1 -1
  7. package/index.mjs +15 -15
  8. package/package.json +5 -5
  9. package/useAsyncValidator/component.cjs +3 -3
  10. package/useAsyncValidator/component.mjs +4 -4
  11. package/useAsyncValidator.cjs +2 -2
  12. package/useAsyncValidator.d.cts +6 -7
  13. package/useAsyncValidator.d.mts +6 -7
  14. package/useAsyncValidator.d.ts +6 -7
  15. package/useAsyncValidator.iife.js +2 -2
  16. package/useAsyncValidator.iife.min.js +1 -1
  17. package/useAsyncValidator.mjs +3 -3
  18. package/useAxios.cjs +3 -3
  19. package/useAxios.iife.js +3 -3
  20. package/useAxios.iife.min.js +1 -1
  21. package/useAxios.mjs +3 -3
  22. package/useChangeCase.d.cts +1 -2
  23. package/useChangeCase.d.mts +1 -2
  24. package/useChangeCase.d.ts +1 -2
  25. package/useCookies.cjs +1 -1
  26. package/useCookies.iife.js +1 -1
  27. package/useCookies.iife.min.js +1 -1
  28. package/useCookies.mjs +2 -2
  29. package/useDrauu.cjs +4 -4
  30. package/useDrauu.d.cts +3 -3
  31. package/useDrauu.d.mts +3 -3
  32. package/useDrauu.d.ts +3 -3
  33. package/useDrauu.iife.js +4 -4
  34. package/useDrauu.iife.min.js +1 -1
  35. package/useDrauu.mjs +5 -5
  36. package/useFocusTrap/component.cjs +1 -1
  37. package/useFocusTrap/component.mjs +1 -1
  38. package/useFocusTrap.cjs +2 -2
  39. package/useFocusTrap.d.cts +3 -4
  40. package/useFocusTrap.d.mts +3 -4
  41. package/useFocusTrap.d.ts +3 -4
  42. package/useFocusTrap.iife.js +2 -2
  43. package/useFocusTrap.iife.min.js +1 -1
  44. package/useFocusTrap.mjs +3 -3
  45. package/useFuse.d.cts +1 -2
  46. package/useFuse.d.mts +1 -2
  47. package/useFuse.d.ts +1 -2
  48. package/useIDBKeyval.cjs +1 -1
  49. package/useIDBKeyval.d.cts +3 -3
  50. package/useIDBKeyval.d.mts +3 -3
  51. package/useIDBKeyval.d.ts +3 -3
  52. package/useIDBKeyval.iife.js +1 -1
  53. package/useIDBKeyval.iife.min.js +1 -1
  54. package/useIDBKeyval.mjs +2 -2
  55. package/useJwt.d.cts +1 -2
  56. package/useJwt.d.mts +1 -2
  57. package/useJwt.d.ts +1 -2
  58. package/useNProgress.d.cts +1 -1
  59. package/useNProgress.d.mts +1 -1
  60. package/useNProgress.d.ts +1 -1
  61. package/useQRCode.cjs +1 -1
  62. package/useQRCode.d.cts +2 -2
  63. package/useQRCode.d.mts +2 -2
  64. package/useQRCode.d.ts +2 -2
  65. package/useQRCode.iife.js +1 -1
  66. package/useQRCode.iife.min.js +1 -1
  67. package/useQRCode.mjs +2 -2
  68. package/useSortable/component.cjs +1 -1
  69. package/useSortable/component.mjs +1 -1
  70. package/useSortable.d.cts +2 -1
  71. package/useSortable.d.mts +2 -1
  72. package/useSortable.d.ts +2 -1
package/index.cjs CHANGED
@@ -44,8 +44,8 @@ function useAsyncValidator(value, rules, options = {}) {
44
44
  } = options;
45
45
  const valueRef = shared.toRef(value);
46
46
  const errorInfo = vue.shallowRef(null);
47
- const isFinished = vue.ref(true);
48
- const pass = vue.ref(!immediate || manual);
47
+ const isFinished = vue.shallowRef(true);
48
+ const pass = vue.shallowRef(!immediate || manual);
49
49
  const errors = vue.computed(() => {
50
50
  var _a;
51
51
  return ((_a = errorInfo.value) == null ? void 0 : _a.errors) || [];
@@ -137,9 +137,9 @@ function useAxios(...args) {
137
137
  const initialData = options.initialData;
138
138
  const response = vue.shallowRef();
139
139
  const data = (shallow ? vue.shallowRef : vue.ref)(initialData);
140
- const isFinished = vue.ref(false);
141
- const isLoading = vue.ref(false);
142
- const isAborted = vue.ref(false);
140
+ const isFinished = vue.shallowRef(false);
141
+ const isLoading = vue.shallowRef(false);
142
+ const isAborted = vue.shallowRef(false);
143
143
  const error = vue.shallowRef();
144
144
  let abortController = new AbortController();
145
145
  const abort = (message) => {
@@ -251,7 +251,7 @@ function createCookies(req) {
251
251
  function useCookies(dependencies, { doNotParse = false, autoUpdateDependencies = false } = {}, cookies = new Cookie()) {
252
252
  const watchingDependencies = autoUpdateDependencies ? [...dependencies || []] : dependencies;
253
253
  let previousCookies = cookies.getAll({ doNotParse: true });
254
- const touches = vue.ref(0);
254
+ const touches = vue.shallowRef(0);
255
255
  const onChange = () => {
256
256
  const newCookies = cookies.getAll({ doNotParse: true });
257
257
  if (shouldUpdate(
@@ -308,10 +308,10 @@ function useDrauu(target, options) {
308
308
  const onCommittedHook = core.createEventHook();
309
309
  const onStartHook = core.createEventHook();
310
310
  const onEndHook = core.createEventHook();
311
- const canUndo = vue.ref(false);
312
- const canRedo = vue.ref(false);
313
- const altPressed = vue.ref(false);
314
- const shiftPressed = vue.ref(false);
311
+ const canUndo = vue.shallowRef(false);
312
+ const canRedo = vue.shallowRef(false);
313
+ const altPressed = vue.shallowRef(false);
314
+ const shiftPressed = vue.shallowRef(false);
315
315
  const brush = vue.ref({
316
316
  color: "black",
317
317
  size: 3,
@@ -411,8 +411,8 @@ function useDrauu(target, options) {
411
411
  function useFocusTrap(target, options = {}) {
412
412
  let trap;
413
413
  const { immediate, ...focusTrapOptions } = options;
414
- const hasFocus = vue.ref(false);
415
- const isPaused = vue.ref(false);
414
+ const hasFocus = vue.shallowRef(false);
415
+ const isPaused = vue.shallowRef(false);
416
416
  const activate = (opts) => trap && trap.activate(opts);
417
417
  const deactivate = (opts) => trap && trap.deactivate(opts);
418
418
  const pause = () => {
@@ -517,7 +517,7 @@ function useIDBKeyval(key, initialValue, options = {}) {
517
517
  },
518
518
  writeDefaults = true
519
519
  } = options;
520
- const isFinished = vue.ref(false);
520
+ const isFinished = vue.shallowRef(false);
521
521
  const data = (shallow ? vue.shallowRef : vue.ref)(initialValue);
522
522
  const rawInit = vue.toValue(initialValue);
523
523
  async function read() {
@@ -616,7 +616,7 @@ function useNProgress(currentProgress = null, options) {
616
616
 
617
617
  function useQRCode(text, options) {
618
618
  const src = shared.toRef(text);
619
- const result = vue.ref("");
619
+ const result = vue.shallowRef("");
620
620
  vue.watch(
621
621
  src,
622
622
  async (value) => {
package/index.d.cts CHANGED
@@ -1,18 +1,18 @@
1
- import { MaybeRefOrGetter, MaybeRef, ConfigurableFlush, RemovableRef } from '@vueuse/shared';
2
1
  import { ValidateError, ValidateOption, Rules } from 'async-validator';
3
2
  import * as vue from 'vue';
4
- import { Ref, ShallowRef, WritableComputedRef, ComputedRef } from 'vue';
3
+ import { ShallowRef, ComputedRef, MaybeRefOrGetter, Ref, MaybeRef, WritableComputedRef } from 'vue';
5
4
  import { AxiosResponse, AxiosRequestConfig, AxiosInstance } from 'axios';
6
5
  import * as changeCase from 'change-case';
7
6
  import { Options } from 'change-case';
8
7
  import * as universal_cookie from 'universal-cookie';
9
8
  import universal_cookie__default from 'universal-cookie';
10
9
  import { IncomingMessage } from 'node:http';
11
- import { EventHookOn, MaybeComputedElementRef, Fn, Arrayable, ConfigurableDocument, MaybeRefOrGetter as MaybeRefOrGetter$1 } from '@vueuse/core';
10
+ import { EventHookOn, MaybeComputedElementRef, Fn, Arrayable, ConfigurableDocument } from '@vueuse/core';
12
11
  import { Options as Options$1, Drauu, Brush } from 'drauu';
13
12
  import { Options as Options$2, ActivateOptions, DeactivateOptions } from 'focus-trap';
14
13
  import * as fuse_js from 'fuse.js';
15
14
  import fuse_js__default, { IFuseOptions, FuseResult } from 'fuse.js';
15
+ import { ConfigurableFlush, RemovableRef } from '@vueuse/shared';
16
16
  import { JwtPayload, JwtHeader } from 'jwt-decode';
17
17
  import nprogress, { NProgressOptions } from 'nprogress';
18
18
  import QRCode from 'qrcode';
@@ -29,11 +29,11 @@ interface UseAsyncValidatorExecuteReturn {
29
29
  errorFields: AsyncValidatorError['fields'] | undefined;
30
30
  }
31
31
  interface UseAsyncValidatorReturn {
32
- pass: Ref<boolean>;
33
- isFinished: Ref<boolean>;
34
- errors: Ref<AsyncValidatorError['errors'] | undefined>;
35
- errorInfo: Ref<AsyncValidatorError | null>;
36
- errorFields: Ref<AsyncValidatorError['fields'] | undefined>;
32
+ pass: ShallowRef<boolean>;
33
+ isFinished: ShallowRef<boolean>;
34
+ errors: ComputedRef<AsyncValidatorError['errors'] | undefined>;
35
+ errorInfo: ShallowRef<AsyncValidatorError | null>;
36
+ errorFields: ComputedRef<AsyncValidatorError['fields'] | undefined>;
37
37
  execute: () => Promise<UseAsyncValidatorExecuteReturn>;
38
38
  }
39
39
  interface UseAsyncValidatorOptions {
@@ -230,8 +230,8 @@ interface UseDrauuReturn {
230
230
  cancel: () => void;
231
231
  undo: () => boolean | undefined;
232
232
  redo: () => boolean | undefined;
233
- canUndo: Ref<boolean>;
234
- canRedo: Ref<boolean>;
233
+ canUndo: ShallowRef<boolean>;
234
+ canRedo: ShallowRef<boolean>;
235
235
  brush: Ref<Brush>;
236
236
  onChanged: EventHookOn;
237
237
  onCommitted: EventHookOn;
@@ -258,11 +258,11 @@ interface UseFocusTrapReturn {
258
258
  /**
259
259
  * Indicates if the focus trap is currently active
260
260
  */
261
- hasFocus: Ref<boolean>;
261
+ hasFocus: ShallowRef<boolean>;
262
262
  /**
263
263
  * Indicates if the focus trap is currently paused
264
264
  */
265
- isPaused: Ref<boolean>;
265
+ isPaused: ShallowRef<boolean>;
266
266
  /**
267
267
  * Activate the focus trap
268
268
  *
@@ -351,7 +351,7 @@ interface UseIDBOptions extends ConfigurableFlush {
351
351
  }
352
352
  interface UseIDBKeyvalReturn<T> {
353
353
  data: RemovableRef<T>;
354
- isFinished: Ref<boolean>;
354
+ isFinished: ShallowRef<boolean>;
355
355
  set: (value: T) => Promise<void>;
356
356
  }
357
357
  /**
@@ -407,7 +407,7 @@ type UseNProgressReturn = ReturnType<typeof useNProgress>;
407
407
  * @param text
408
408
  * @param options
409
409
  */
410
- declare function useQRCode(text: MaybeRefOrGetter<string>, options?: QRCode.QRCodeToDataURLOptions): vue.Ref<string, string>;
410
+ declare function useQRCode(text: MaybeRefOrGetter<string>, options?: QRCode.QRCodeToDataURLOptions): vue.ShallowRef<string, string>;
411
411
 
412
412
  interface UseSortableReturn {
413
413
  /**
@@ -426,8 +426,8 @@ interface UseSortableReturn {
426
426
  option: (<K extends keyof Sortable.Options>(name: K, value: Sortable.Options[K]) => void) & (<K extends keyof Sortable.Options>(name: K) => Sortable.Options[K]);
427
427
  }
428
428
  type UseSortableOptions = Options$3 & ConfigurableDocument;
429
- declare function useSortable<T>(selector: string, list: MaybeRefOrGetter$1<T[]>, options?: UseSortableOptions): UseSortableReturn;
430
- declare function useSortable<T>(el: MaybeRefOrGetter$1<HTMLElement | null | undefined>, list: MaybeRefOrGetter$1<T[]>, options?: UseSortableOptions): UseSortableReturn;
429
+ declare function useSortable<T>(selector: string, list: MaybeRefOrGetter<T[]>, options?: UseSortableOptions): UseSortableReturn;
430
+ declare function useSortable<T>(el: MaybeRefOrGetter<HTMLElement | null | undefined>, list: MaybeRefOrGetter<T[]>, options?: UseSortableOptions): UseSortableReturn;
431
431
  /**
432
432
  * Inserts a element into the DOM at a given index.
433
433
  * @param parentElement
@@ -442,6 +442,6 @@ declare function insertNodeAt(parentElement: Element, element: Element, index: n
442
442
  * @see https://github.com/Alfred-Skyblue/vue-draggable-plus/blob/a3829222095e1949bf2c9a20979d7b5930e66f14/src/utils/index.ts#L96C1-L102C2
443
443
  */
444
444
  declare function removeNode(node: Node): void;
445
- declare function moveArrayElement<T>(list: MaybeRefOrGetter$1<T[]>, from: number, to: number, e?: Sortable.SortableEvent | null): void;
445
+ declare function moveArrayElement<T>(list: MaybeRefOrGetter<T[]>, from: number, to: number, e?: Sortable.SortableEvent | null): void;
446
446
 
447
447
  export { type AsyncValidatorError, type ChangeCaseType, type EasyUseAxiosReturn, type FuseOptions, type StrictUseAxiosReturn, type UseAsyncValidatorExecuteReturn, type UseAsyncValidatorOptions, type UseAsyncValidatorReturn, type UseAxiosOptions, type UseAxiosOptionsBase, type UseAxiosOptionsWithInitialData, type UseAxiosReturn, type UseDrauuOptions, type UseDrauuReturn, type UseFocusTrapOptions, type UseFocusTrapReturn, type UseFuseOptions, type UseFuseReturn, type UseIDBKeyvalReturn, type UseIDBOptions, type UseJwtOptions, type UseJwtReturn, type UseNProgressOptions, type UseNProgressReturn, type UseSortableOptions, type UseSortableReturn, createCookies, insertNodeAt, moveArrayElement, removeNode, useAsyncValidator, useAxios, useChangeCase, useCookies, useDrauu, useFocusTrap, useFuse, useIDBKeyval, useJwt, useNProgress, useQRCode, useSortable };
package/index.d.mts CHANGED
@@ -1,18 +1,18 @@
1
- import { MaybeRefOrGetter, MaybeRef, ConfigurableFlush, RemovableRef } from '@vueuse/shared';
2
1
  import { ValidateError, ValidateOption, Rules } from 'async-validator';
3
2
  import * as vue from 'vue';
4
- import { Ref, ShallowRef, WritableComputedRef, ComputedRef } from 'vue';
3
+ import { ShallowRef, ComputedRef, MaybeRefOrGetter, Ref, MaybeRef, WritableComputedRef } from 'vue';
5
4
  import { AxiosResponse, AxiosRequestConfig, AxiosInstance } from 'axios';
6
5
  import * as changeCase from 'change-case';
7
6
  import { Options } from 'change-case';
8
7
  import * as universal_cookie from 'universal-cookie';
9
8
  import universal_cookie__default from 'universal-cookie';
10
9
  import { IncomingMessage } from 'node:http';
11
- import { EventHookOn, MaybeComputedElementRef, Fn, Arrayable, ConfigurableDocument, MaybeRefOrGetter as MaybeRefOrGetter$1 } from '@vueuse/core';
10
+ import { EventHookOn, MaybeComputedElementRef, Fn, Arrayable, ConfigurableDocument } from '@vueuse/core';
12
11
  import { Options as Options$1, Drauu, Brush } from 'drauu';
13
12
  import { Options as Options$2, ActivateOptions, DeactivateOptions } from 'focus-trap';
14
13
  import * as fuse_js from 'fuse.js';
15
14
  import fuse_js__default, { IFuseOptions, FuseResult } from 'fuse.js';
15
+ import { ConfigurableFlush, RemovableRef } from '@vueuse/shared';
16
16
  import { JwtPayload, JwtHeader } from 'jwt-decode';
17
17
  import nprogress, { NProgressOptions } from 'nprogress';
18
18
  import QRCode from 'qrcode';
@@ -29,11 +29,11 @@ interface UseAsyncValidatorExecuteReturn {
29
29
  errorFields: AsyncValidatorError['fields'] | undefined;
30
30
  }
31
31
  interface UseAsyncValidatorReturn {
32
- pass: Ref<boolean>;
33
- isFinished: Ref<boolean>;
34
- errors: Ref<AsyncValidatorError['errors'] | undefined>;
35
- errorInfo: Ref<AsyncValidatorError | null>;
36
- errorFields: Ref<AsyncValidatorError['fields'] | undefined>;
32
+ pass: ShallowRef<boolean>;
33
+ isFinished: ShallowRef<boolean>;
34
+ errors: ComputedRef<AsyncValidatorError['errors'] | undefined>;
35
+ errorInfo: ShallowRef<AsyncValidatorError | null>;
36
+ errorFields: ComputedRef<AsyncValidatorError['fields'] | undefined>;
37
37
  execute: () => Promise<UseAsyncValidatorExecuteReturn>;
38
38
  }
39
39
  interface UseAsyncValidatorOptions {
@@ -230,8 +230,8 @@ interface UseDrauuReturn {
230
230
  cancel: () => void;
231
231
  undo: () => boolean | undefined;
232
232
  redo: () => boolean | undefined;
233
- canUndo: Ref<boolean>;
234
- canRedo: Ref<boolean>;
233
+ canUndo: ShallowRef<boolean>;
234
+ canRedo: ShallowRef<boolean>;
235
235
  brush: Ref<Brush>;
236
236
  onChanged: EventHookOn;
237
237
  onCommitted: EventHookOn;
@@ -258,11 +258,11 @@ interface UseFocusTrapReturn {
258
258
  /**
259
259
  * Indicates if the focus trap is currently active
260
260
  */
261
- hasFocus: Ref<boolean>;
261
+ hasFocus: ShallowRef<boolean>;
262
262
  /**
263
263
  * Indicates if the focus trap is currently paused
264
264
  */
265
- isPaused: Ref<boolean>;
265
+ isPaused: ShallowRef<boolean>;
266
266
  /**
267
267
  * Activate the focus trap
268
268
  *
@@ -351,7 +351,7 @@ interface UseIDBOptions extends ConfigurableFlush {
351
351
  }
352
352
  interface UseIDBKeyvalReturn<T> {
353
353
  data: RemovableRef<T>;
354
- isFinished: Ref<boolean>;
354
+ isFinished: ShallowRef<boolean>;
355
355
  set: (value: T) => Promise<void>;
356
356
  }
357
357
  /**
@@ -407,7 +407,7 @@ type UseNProgressReturn = ReturnType<typeof useNProgress>;
407
407
  * @param text
408
408
  * @param options
409
409
  */
410
- declare function useQRCode(text: MaybeRefOrGetter<string>, options?: QRCode.QRCodeToDataURLOptions): vue.Ref<string, string>;
410
+ declare function useQRCode(text: MaybeRefOrGetter<string>, options?: QRCode.QRCodeToDataURLOptions): vue.ShallowRef<string, string>;
411
411
 
412
412
  interface UseSortableReturn {
413
413
  /**
@@ -426,8 +426,8 @@ interface UseSortableReturn {
426
426
  option: (<K extends keyof Sortable.Options>(name: K, value: Sortable.Options[K]) => void) & (<K extends keyof Sortable.Options>(name: K) => Sortable.Options[K]);
427
427
  }
428
428
  type UseSortableOptions = Options$3 & ConfigurableDocument;
429
- declare function useSortable<T>(selector: string, list: MaybeRefOrGetter$1<T[]>, options?: UseSortableOptions): UseSortableReturn;
430
- declare function useSortable<T>(el: MaybeRefOrGetter$1<HTMLElement | null | undefined>, list: MaybeRefOrGetter$1<T[]>, options?: UseSortableOptions): UseSortableReturn;
429
+ declare function useSortable<T>(selector: string, list: MaybeRefOrGetter<T[]>, options?: UseSortableOptions): UseSortableReturn;
430
+ declare function useSortable<T>(el: MaybeRefOrGetter<HTMLElement | null | undefined>, list: MaybeRefOrGetter<T[]>, options?: UseSortableOptions): UseSortableReturn;
431
431
  /**
432
432
  * Inserts a element into the DOM at a given index.
433
433
  * @param parentElement
@@ -442,6 +442,6 @@ declare function insertNodeAt(parentElement: Element, element: Element, index: n
442
442
  * @see https://github.com/Alfred-Skyblue/vue-draggable-plus/blob/a3829222095e1949bf2c9a20979d7b5930e66f14/src/utils/index.ts#L96C1-L102C2
443
443
  */
444
444
  declare function removeNode(node: Node): void;
445
- declare function moveArrayElement<T>(list: MaybeRefOrGetter$1<T[]>, from: number, to: number, e?: Sortable.SortableEvent | null): void;
445
+ declare function moveArrayElement<T>(list: MaybeRefOrGetter<T[]>, from: number, to: number, e?: Sortable.SortableEvent | null): void;
446
446
 
447
447
  export { type AsyncValidatorError, type ChangeCaseType, type EasyUseAxiosReturn, type FuseOptions, type StrictUseAxiosReturn, type UseAsyncValidatorExecuteReturn, type UseAsyncValidatorOptions, type UseAsyncValidatorReturn, type UseAxiosOptions, type UseAxiosOptionsBase, type UseAxiosOptionsWithInitialData, type UseAxiosReturn, type UseDrauuOptions, type UseDrauuReturn, type UseFocusTrapOptions, type UseFocusTrapReturn, type UseFuseOptions, type UseFuseReturn, type UseIDBKeyvalReturn, type UseIDBOptions, type UseJwtOptions, type UseJwtReturn, type UseNProgressOptions, type UseNProgressReturn, type UseSortableOptions, type UseSortableReturn, createCookies, insertNodeAt, moveArrayElement, removeNode, useAsyncValidator, useAxios, useChangeCase, useCookies, useDrauu, useFocusTrap, useFuse, useIDBKeyval, useJwt, useNProgress, useQRCode, useSortable };
package/index.d.ts CHANGED
@@ -1,18 +1,18 @@
1
- import { MaybeRefOrGetter, MaybeRef, ConfigurableFlush, RemovableRef } from '@vueuse/shared';
2
1
  import { ValidateError, ValidateOption, Rules } from 'async-validator';
3
2
  import * as vue from 'vue';
4
- import { Ref, ShallowRef, WritableComputedRef, ComputedRef } from 'vue';
3
+ import { ShallowRef, ComputedRef, MaybeRefOrGetter, Ref, MaybeRef, WritableComputedRef } from 'vue';
5
4
  import { AxiosResponse, AxiosRequestConfig, AxiosInstance } from 'axios';
6
5
  import * as changeCase from 'change-case';
7
6
  import { Options } from 'change-case';
8
7
  import * as universal_cookie from 'universal-cookie';
9
8
  import universal_cookie__default from 'universal-cookie';
10
9
  import { IncomingMessage } from 'node:http';
11
- import { EventHookOn, MaybeComputedElementRef, Fn, Arrayable, ConfigurableDocument, MaybeRefOrGetter as MaybeRefOrGetter$1 } from '@vueuse/core';
10
+ import { EventHookOn, MaybeComputedElementRef, Fn, Arrayable, ConfigurableDocument } from '@vueuse/core';
12
11
  import { Options as Options$1, Drauu, Brush } from 'drauu';
13
12
  import { Options as Options$2, ActivateOptions, DeactivateOptions } from 'focus-trap';
14
13
  import * as fuse_js from 'fuse.js';
15
14
  import fuse_js__default, { IFuseOptions, FuseResult } from 'fuse.js';
15
+ import { ConfigurableFlush, RemovableRef } from '@vueuse/shared';
16
16
  import { JwtPayload, JwtHeader } from 'jwt-decode';
17
17
  import nprogress, { NProgressOptions } from 'nprogress';
18
18
  import QRCode from 'qrcode';
@@ -29,11 +29,11 @@ interface UseAsyncValidatorExecuteReturn {
29
29
  errorFields: AsyncValidatorError['fields'] | undefined;
30
30
  }
31
31
  interface UseAsyncValidatorReturn {
32
- pass: Ref<boolean>;
33
- isFinished: Ref<boolean>;
34
- errors: Ref<AsyncValidatorError['errors'] | undefined>;
35
- errorInfo: Ref<AsyncValidatorError | null>;
36
- errorFields: Ref<AsyncValidatorError['fields'] | undefined>;
32
+ pass: ShallowRef<boolean>;
33
+ isFinished: ShallowRef<boolean>;
34
+ errors: ComputedRef<AsyncValidatorError['errors'] | undefined>;
35
+ errorInfo: ShallowRef<AsyncValidatorError | null>;
36
+ errorFields: ComputedRef<AsyncValidatorError['fields'] | undefined>;
37
37
  execute: () => Promise<UseAsyncValidatorExecuteReturn>;
38
38
  }
39
39
  interface UseAsyncValidatorOptions {
@@ -230,8 +230,8 @@ interface UseDrauuReturn {
230
230
  cancel: () => void;
231
231
  undo: () => boolean | undefined;
232
232
  redo: () => boolean | undefined;
233
- canUndo: Ref<boolean>;
234
- canRedo: Ref<boolean>;
233
+ canUndo: ShallowRef<boolean>;
234
+ canRedo: ShallowRef<boolean>;
235
235
  brush: Ref<Brush>;
236
236
  onChanged: EventHookOn;
237
237
  onCommitted: EventHookOn;
@@ -258,11 +258,11 @@ interface UseFocusTrapReturn {
258
258
  /**
259
259
  * Indicates if the focus trap is currently active
260
260
  */
261
- hasFocus: Ref<boolean>;
261
+ hasFocus: ShallowRef<boolean>;
262
262
  /**
263
263
  * Indicates if the focus trap is currently paused
264
264
  */
265
- isPaused: Ref<boolean>;
265
+ isPaused: ShallowRef<boolean>;
266
266
  /**
267
267
  * Activate the focus trap
268
268
  *
@@ -351,7 +351,7 @@ interface UseIDBOptions extends ConfigurableFlush {
351
351
  }
352
352
  interface UseIDBKeyvalReturn<T> {
353
353
  data: RemovableRef<T>;
354
- isFinished: Ref<boolean>;
354
+ isFinished: ShallowRef<boolean>;
355
355
  set: (value: T) => Promise<void>;
356
356
  }
357
357
  /**
@@ -407,7 +407,7 @@ type UseNProgressReturn = ReturnType<typeof useNProgress>;
407
407
  * @param text
408
408
  * @param options
409
409
  */
410
- declare function useQRCode(text: MaybeRefOrGetter<string>, options?: QRCode.QRCodeToDataURLOptions): vue.Ref<string, string>;
410
+ declare function useQRCode(text: MaybeRefOrGetter<string>, options?: QRCode.QRCodeToDataURLOptions): vue.ShallowRef<string, string>;
411
411
 
412
412
  interface UseSortableReturn {
413
413
  /**
@@ -426,8 +426,8 @@ interface UseSortableReturn {
426
426
  option: (<K extends keyof Sortable.Options>(name: K, value: Sortable.Options[K]) => void) & (<K extends keyof Sortable.Options>(name: K) => Sortable.Options[K]);
427
427
  }
428
428
  type UseSortableOptions = Options$3 & ConfigurableDocument;
429
- declare function useSortable<T>(selector: string, list: MaybeRefOrGetter$1<T[]>, options?: UseSortableOptions): UseSortableReturn;
430
- declare function useSortable<T>(el: MaybeRefOrGetter$1<HTMLElement | null | undefined>, list: MaybeRefOrGetter$1<T[]>, options?: UseSortableOptions): UseSortableReturn;
429
+ declare function useSortable<T>(selector: string, list: MaybeRefOrGetter<T[]>, options?: UseSortableOptions): UseSortableReturn;
430
+ declare function useSortable<T>(el: MaybeRefOrGetter<HTMLElement | null | undefined>, list: MaybeRefOrGetter<T[]>, options?: UseSortableOptions): UseSortableReturn;
431
431
  /**
432
432
  * Inserts a element into the DOM at a given index.
433
433
  * @param parentElement
@@ -442,6 +442,6 @@ declare function insertNodeAt(parentElement: Element, element: Element, index: n
442
442
  * @see https://github.com/Alfred-Skyblue/vue-draggable-plus/blob/a3829222095e1949bf2c9a20979d7b5930e66f14/src/utils/index.ts#L96C1-L102C2
443
443
  */
444
444
  declare function removeNode(node: Node): void;
445
- declare function moveArrayElement<T>(list: MaybeRefOrGetter$1<T[]>, from: number, to: number, e?: Sortable.SortableEvent | null): void;
445
+ declare function moveArrayElement<T>(list: MaybeRefOrGetter<T[]>, from: number, to: number, e?: Sortable.SortableEvent | null): void;
446
446
 
447
447
  export { type AsyncValidatorError, type ChangeCaseType, type EasyUseAxiosReturn, type FuseOptions, type StrictUseAxiosReturn, type UseAsyncValidatorExecuteReturn, type UseAsyncValidatorOptions, type UseAsyncValidatorReturn, type UseAxiosOptions, type UseAxiosOptionsBase, type UseAxiosOptionsWithInitialData, type UseAxiosReturn, type UseDrauuOptions, type UseDrauuReturn, type UseFocusTrapOptions, type UseFocusTrapReturn, type UseFuseOptions, type UseFuseReturn, type UseIDBKeyvalReturn, type UseIDBOptions, type UseJwtOptions, type UseJwtReturn, type UseNProgressOptions, type UseNProgressReturn, type UseSortableOptions, type UseSortableReturn, createCookies, insertNodeAt, moveArrayElement, removeNode, useAsyncValidator, useAxios, useChangeCase, useCookies, useDrauu, useFocusTrap, useFuse, useIDBKeyval, useJwt, useNProgress, useQRCode, useSortable };
package/index.iife.js CHANGED
@@ -29,8 +29,8 @@
29
29
  } = options;
30
30
  const valueRef = shared.toRef(value);
31
31
  const errorInfo = vue.shallowRef(null);
32
- const isFinished = vue.ref(true);
33
- const pass = vue.ref(!immediate || manual);
32
+ const isFinished = vue.shallowRef(true);
33
+ const pass = vue.shallowRef(!immediate || manual);
34
34
  const errors = vue.computed(() => {
35
35
  var _a;
36
36
  return ((_a = errorInfo.value) == null ? void 0 : _a.errors) || [];
@@ -122,9 +122,9 @@
122
122
  const initialData = options.initialData;
123
123
  const response = vue.shallowRef();
124
124
  const data = (shallow ? vue.shallowRef : vue.ref)(initialData);
125
- const isFinished = vue.ref(false);
126
- const isLoading = vue.ref(false);
127
- const isAborted = vue.ref(false);
125
+ const isFinished = vue.shallowRef(false);
126
+ const isLoading = vue.shallowRef(false);
127
+ const isAborted = vue.shallowRef(false);
128
128
  const error = vue.shallowRef();
129
129
  let abortController = new AbortController();
130
130
  const abort = (message) => {
@@ -236,7 +236,7 @@
236
236
  function useCookies(dependencies, { doNotParse = false, autoUpdateDependencies = false } = {}, cookies = new Cookie()) {
237
237
  const watchingDependencies = autoUpdateDependencies ? [...dependencies || []] : dependencies;
238
238
  let previousCookies = cookies.getAll({ doNotParse: true });
239
- const touches = vue.ref(0);
239
+ const touches = vue.shallowRef(0);
240
240
  const onChange = () => {
241
241
  const newCookies = cookies.getAll({ doNotParse: true });
242
242
  if (shouldUpdate(
@@ -293,10 +293,10 @@
293
293
  const onCommittedHook = core.createEventHook();
294
294
  const onStartHook = core.createEventHook();
295
295
  const onEndHook = core.createEventHook();
296
- const canUndo = vue.ref(false);
297
- const canRedo = vue.ref(false);
298
- const altPressed = vue.ref(false);
299
- const shiftPressed = vue.ref(false);
296
+ const canUndo = vue.shallowRef(false);
297
+ const canRedo = vue.shallowRef(false);
298
+ const altPressed = vue.shallowRef(false);
299
+ const shiftPressed = vue.shallowRef(false);
300
300
  const brush = vue.ref({
301
301
  color: "black",
302
302
  size: 3,
@@ -396,8 +396,8 @@
396
396
  function useFocusTrap(target, options = {}) {
397
397
  let trap;
398
398
  const { immediate, ...focusTrapOptions } = options;
399
- const hasFocus = vue.ref(false);
400
- const isPaused = vue.ref(false);
399
+ const hasFocus = vue.shallowRef(false);
400
+ const isPaused = vue.shallowRef(false);
401
401
  const activate = (opts) => trap && trap.activate(opts);
402
402
  const deactivate = (opts) => trap && trap.deactivate(opts);
403
403
  const pause = () => {
@@ -502,7 +502,7 @@
502
502
  },
503
503
  writeDefaults = true
504
504
  } = options;
505
- const isFinished = vue.ref(false);
505
+ const isFinished = vue.shallowRef(false);
506
506
  const data = (shallow ? vue.shallowRef : vue.ref)(initialValue);
507
507
  const rawInit = vue.toValue(initialValue);
508
508
  async function read() {
@@ -601,7 +601,7 @@
601
601
 
602
602
  function useQRCode(text, options) {
603
603
  const src = shared.toRef(text);
604
- const result = vue.ref("");
604
+ const result = vue.shallowRef("");
605
605
  vue.watch(
606
606
  src,
607
607
  async (value) => {
package/index.iife.min.js CHANGED
@@ -1 +1 @@
1
- (function(p,C,U,n,L,$,k,w,K,X,Y,P,Z,b,x,ee){"use strict";function te(t){var o=Object.create(null);return t&&Object.keys(t).forEach(function(e){if(e!=="default"){var a=Object.getOwnPropertyDescriptor(t,e);Object.defineProperty(o,e,a.get?a:{enumerable:!0,get:function(){return t[e]}})}}),o.default=t,Object.freeze(o)}var ne=te($);const ae=U.default||U;function oe(t,o,e={}){const{validateOption:a={},immediate:r=!0,manual:u=!1}=e,l=C.toRef(t),c=n.shallowRef(null),s=n.ref(!0),d=n.ref(!r||u),v=n.computed(()=>{var i;return((i=c.value)==null?void 0:i.errors)||[]}),g=n.computed(()=>{var i;return((i=c.value)==null?void 0:i.fields)||{}}),h=n.computed(()=>new ae(n.toValue(o))),y=async()=>{s.value=!1,d.value=!1;try{await h.value.validate(l.value,a),d.value=!0,c.value=null}catch(i){c.value=i}finally{s.value=!0}return{pass:d.value,errorInfo:c.value,errors:v.value,errorFields:g.value}};u||n.watch([l,h],()=>y(),{immediate:r,deep:!0});const V={isFinished:s,pass:d,errors:v,errorInfo:c,errorFields:g,execute:y};function A(){return new Promise((i,E)=>{C.until(s).toBe(!0).then(()=>i(V)).catch(D=>E(D))})}return{...V,then(i,E){return A().then(i,E)}}}function le(...t){const o=typeof t[0]=="string"?t[0]:void 0,e=typeof o=="string"?1:0,a={immediate:!!e,shallow:!0,abortPrevious:!0};let r={},u=L,l=a;const c=m=>!!m?.request;t.length>0+e&&(c(t[0+e])?u=t[0+e]:r=t[0+e]),t.length>1+e&&c(t[1+e])&&(u=t[1+e]),(t.length===2+e&&!c(t[1+e])||t.length===3+e)&&(l=t[t.length-1]||a);const{shallow:s,onSuccess:d=C.noop,onError:v=C.noop,immediate:g,resetOnExecute:h=!1}=l,y=l.initialData,V=n.shallowRef(),A=(s?n.shallowRef:n.ref)(y),i=n.ref(!1),E=n.ref(!1),D=n.ref(!1),R=n.shallowRef();let S=new AbortController;const F=m=>{i.value||!E.value||(S.abort(m),S=new AbortController,D.value=!0,E.value=!1,i.value=!1)},f=m=>{E.value=m,i.value=!m},_=()=>{h&&(A.value=y)},Q=()=>new Promise((m,I)=>{C.until(i).toBe(!0).then(()=>R.value?I(R.value):m(q))}),H={then:(...m)=>Q().then(...m),catch:(...m)=>Q().catch(...m)};let j=0;const z=(m=o,I={})=>{R.value=void 0;const J=typeof m=="string"?m:o??I.url;if(J===void 0)return R.value=new L.AxiosError(L.AxiosError.ERR_INVALID_URL),i.value=!0,H;_(),l.abortPrevious!==!1&&F(),f(!0),j+=1;const we=j;return D.value=!1,u(J,{...r,...typeof m=="object"?m:I,signal:S.signal}).then(O=>{if(D.value)return;V.value=O;const M=O.data;A.value=M,d(M)}).catch(O=>{R.value=O,v(O)}).finally(()=>{var O;(O=l.onFinish)==null||O.call(l),we===j&&f(!1)}),H};g&&o&&z();const q={response:V,data:A,error:R,isFinished:i,isLoading:E,cancel:F,isAborted:D,isCanceled:D,abort:F,execute:z};return{...q,...H}}const N=Object.entries(ne).filter(([t,o])=>typeof o=="function"&&t.endsWith("Case")).reduce((t,[o,e])=>(t[o]=e,t),{});function re(t,o,e){const a=n.computed(()=>{const u=n.toValue(o);if(!N[u])throw new Error(`Invalid change case type "${u}"`);return u});if(typeof t=="function")return n.computed(()=>N[a.value](n.toValue(t),n.toValue(e)));const r=n.ref(t);return n.computed({get(){return N[a.value](r.value,n.toValue(e))},set(u){r.value=u}})}function ue(t){const o=new k(t?t.headers.cookie:null);return(e,{doNotParse:a=!1,autoUpdateDependencies:r=!1}={})=>T(e,{doNotParse:a,autoUpdateDependencies:r},o)}function T(t,{doNotParse:o=!1,autoUpdateDependencies:e=!1}={},a=new k){const r=e?[...t||[]]:t;let u=a.getAll({doNotParse:!0});const l=n.ref(0),c=()=>{const s=a.getAll({doNotParse:!0});se(r||null,s,u)&&l.value++,u=s};return a.addChangeListener(c),C.tryOnScopeDispose(()=>{a.removeChangeListener(c)}),{get:(...s)=>(e&&r&&!r.includes(s[0])&&r.push(s[0]),l.value,a.get(s[0],{doNotParse:o,...s[1]})),getAll:(...s)=>(l.value,a.getAll({doNotParse:o,...s[0]})),set:(...s)=>a.set(...s),remove:(...s)=>a.remove(...s),addChangeListener:(...s)=>a.addChangeListener(...s),removeChangeListener:(...s)=>a.removeChangeListener(...s)}}function se(t,o,e){if(!t)return!0;for(const a of t)if(o[a]!==e[a])return!0;return!1}function ce(t,o){const e=n.ref();let a=[];const r=w.createEventHook(),u=w.createEventHook(),l=w.createEventHook(),c=w.createEventHook(),s=w.createEventHook(),d=n.ref(!1),v=n.ref(!1),g=n.ref(!1),h=n.ref(!1),y=n.ref({color:"black",size:3,arrowEnd:!1,cornerRadius:0,dasharray:void 0,fill:"transparent",mode:"draw",...o?.brush});n.watch(y,()=>{const f=e.value;f&&(f.brush=y.value,f.mode=y.value.mode)},{deep:!0});const V=()=>{var f;return(f=e.value)==null?void 0:f.undo()},A=()=>{var f;return(f=e.value)==null?void 0:f.redo()},i=()=>{var f;return(f=e.value)==null?void 0:f.clear()},E=()=>{var f;return(f=e.value)==null?void 0:f.cancel()},D=f=>{var _;return(_=e.value)==null?void 0:_.load(f)},R=()=>{var f;return(f=e.value)==null?void 0:f.dump()},S=()=>{var f;a.forEach(_=>_()),(f=e.value)==null||f.unmount()},F=()=>{e.value&&(d.value=e.value.canUndo(),v.value=e.value.canRedo(),g.value=e.value.altPressed,h.value=e.value.shiftPressed)};return n.watch(()=>w.unrefElement(t),f=>{!f||typeof SVGSVGElement>"u"||!(f instanceof SVGSVGElement)||(e.value&&S(),e.value=K.createDrauu({el:f,...o}),F(),a=[e.value.on("canceled",()=>u.trigger()),e.value.on("committed",_=>l.trigger(_)),e.value.on("start",()=>c.trigger()),e.value.on("end",()=>s.trigger()),e.value.on("changed",()=>{F(),r.trigger()})])},{flush:"post"}),C.tryOnScopeDispose(()=>S()),{drauuInstance:e,load:D,dump:R,clear:i,cancel:E,undo:V,redo:A,canUndo:d,canRedo:v,brush:y,onChanged:r.on,onCommitted:l.on,onStart:c.on,onEnd:s.on,onCanceled:u.on}}function ie(t,o={}){let e;const{immediate:a,...r}=o,u=n.ref(!1),l=n.ref(!1),c=h=>e&&e.activate(h),s=h=>e&&e.deactivate(h),d=()=>{e&&(e.pause(),l.value=!0)},v=()=>{e&&(e.unpause(),l.value=!1)},g=n.computed(()=>{const h=n.toValue(t);return w.toArray(h).map(y=>{const V=n.toValue(y);return typeof V=="string"?V:w.unrefElement(V)}).filter(C.notNullish)});return n.watch(g,h=>{h.length&&(e=X.createFocusTrap(h,{...r,onActivate(){u.value=!0,o.onActivate&&o.onActivate()},onDeactivate(){u.value=!1,o.onDeactivate&&o.onDeactivate()}}),a&&c())},{flush:"post"}),w.tryOnScopeDispose(()=>s()),{hasFocus:u,isPaused:l,activate:c,deactivate:s,pause:d,unpause:v}}function fe(t,o,e){const a=()=>{var l,c;return new Y((l=n.toValue(o))!=null?l:[],(c=n.toValue(e))==null?void 0:c.fuseOptions)},r=n.ref(a());n.watch(()=>{var l;return(l=n.toValue(e))==null?void 0:l.fuseOptions},()=>{r.value=a()},{deep:!0}),n.watch(()=>n.toValue(o),l=>{r.value.setCollection(l)},{deep:!0});const u=n.computed(()=>{const l=n.toValue(e);if(l?.matchAllWhenSearchEmpty&&!n.toValue(t))return n.toValue(o).map((s,d)=>({item:s,refIndex:d}));const c=l?.resultLimit;return r.value.search(n.toValue(t),c?{limit:c}:void 0)});return{fuse:r,results:u}}function de(t,o,e={}){const{flush:a="pre",deep:r=!0,shallow:u=!1,onError:l=i=>{console.error(i)},writeDefaults:c=!0}=e,s=n.ref(!1),d=(u?n.shallowRef:n.ref)(o),v=n.toValue(o);async function g(){try{const i=await P.get(t);i===void 0?v!=null&&c&&await P.set(t,v):d.value=i}catch(i){l(i)}s.value=!0}g();async function h(){try{d.value==null?await P.del(t):await P.update(t,()=>n.toRaw(d.value))}catch(i){l(i)}}const{pause:y,resume:V}=w.watchPausable(d,()=>h(),{flush:a,deep:r});async function A(i){y(),d.value=i,await h(),V()}return{set:A,isFinished:s,data:d}}function ve(t,o={}){const{onError:e,fallbackValue:a=null}=o,r=(c,s)=>{try{return Z.jwtDecode(c,s)}catch(d){return e?.(d),a}},u=n.computed(()=>r(n.toValue(t),{header:!0})),l=n.computed(()=>r(n.toValue(t)));return{header:u,payload:l}}function he(t=null,o){const e=C.toRef(t),a=n.computed({set:u=>u?b.start():b.done(),get:()=>typeof e.value=="number"&&e.value<1});o&&b.configure(o);const r=b.set;return b.set=u=>(e.value=u,r.call(b,u)),n.watchEffect(()=>{typeof e.value=="number"&&C.isClient&&r.call(b,e.value)}),C.tryOnScopeDispose(b.remove),{isLoading:a,progress:e,start:b.start,done:b.done,remove:()=>{e.value=null,b.remove()}}}function me(t,o){const e=C.toRef(t),a=n.ref("");return n.watch(e,async r=>{e.value&&C.isClient&&(a.value=await x.toDataURL(r,o))},{immediate:!0}),a}function pe(t,o,e={}){let a;const{document:r=w.defaultDocument,...u}=e,l={onUpdate:v=>{G(o,v.oldIndex,v.newIndex,v)}},c=()=>{const v=typeof t=="string"?r?.querySelector(t):w.unrefElement(t);!v||a!==void 0||(a=new ee(v,{...l,...u}))},s=()=>{a?.destroy(),a=void 0},d=(v,g)=>{if(g!==void 0)a?.option(v,g);else return a?.option(v)};return w.tryOnMounted(c),w.tryOnScopeDispose(s),{stop:s,start:c,option:d}}function B(t,o,e){const a=t.children[e];t.insertBefore(o,a)}function W(t){t.parentNode&&t.parentNode.removeChild(t)}function G(t,o,e,a=null){a!=null&&(W(a.item),B(a.from,a.item,o));const r=n.isRef(t),u=r?[...n.toValue(t)]:n.toValue(t);if(e>=0&&e<u.length){const l=u.splice(o,1)[0];n.nextTick(()=>{u.splice(e,0,l),r&&(t.value=u)})}}p.createCookies=ue,p.insertNodeAt=B,p.moveArrayElement=G,p.removeNode=W,p.useAsyncValidator=oe,p.useAxios=le,p.useChangeCase=re,p.useCookies=T,p.useDrauu=ce,p.useFocusTrap=ie,p.useFuse=fe,p.useIDBKeyval=de,p.useJwt=ve,p.useNProgress=he,p.useQRCode=me,p.useSortable=pe})(this.VueUse=this.VueUse||{},VueUse,AsyncValidator,Vue,axios,changeCase,UniversalCookie,VueUse,Drauu,focusTrap,Fuse,idbKeyval,jwt_decode,nprogress,QRCode,Sortable);
1
+ (function(w,C,U,n,L,$,k,p,K,X,Y,P,Z,V,x,ee){"use strict";function te(t){var o=Object.create(null);return t&&Object.keys(t).forEach(function(e){if(e!=="default"){var a=Object.getOwnPropertyDescriptor(t,e);Object.defineProperty(o,e,a.get?a:{enumerable:!0,get:function(){return t[e]}})}}),o.default=t,Object.freeze(o)}var ne=te($);const ae=U.default||U;function oe(t,o,e={}){const{validateOption:a={},immediate:r=!0,manual:s=!1}=e,l=C.toRef(t),c=n.shallowRef(null),u=n.shallowRef(!0),d=n.shallowRef(!r||s),v=n.computed(()=>{var i;return((i=c.value)==null?void 0:i.errors)||[]}),g=n.computed(()=>{var i;return((i=c.value)==null?void 0:i.fields)||{}}),h=n.computed(()=>new ae(n.toValue(o))),y=async()=>{u.value=!1,d.value=!1;try{await h.value.validate(l.value,a),d.value=!0,c.value=null}catch(i){c.value=i}finally{u.value=!0}return{pass:d.value,errorInfo:c.value,errors:v.value,errorFields:g.value}};s||n.watch([l,h],()=>y(),{immediate:r,deep:!0});const R={isFinished:u,pass:d,errors:v,errorInfo:c,errorFields:g,execute:y};function E(){return new Promise((i,b)=>{C.until(u).toBe(!0).then(()=>i(R)).catch(A=>b(A))})}return{...R,then(i,b){return E().then(i,b)}}}function le(...t){const o=typeof t[0]=="string"?t[0]:void 0,e=typeof o=="string"?1:0,a={immediate:!!e,shallow:!0,abortPrevious:!0};let r={},s=L,l=a;const c=m=>!!m?.request;t.length>0+e&&(c(t[0+e])?s=t[0+e]:r=t[0+e]),t.length>1+e&&c(t[1+e])&&(s=t[1+e]),(t.length===2+e&&!c(t[1+e])||t.length===3+e)&&(l=t[t.length-1]||a);const{shallow:u,onSuccess:d=C.noop,onError:v=C.noop,immediate:g,resetOnExecute:h=!1}=l,y=l.initialData,R=n.shallowRef(),E=(u?n.shallowRef:n.ref)(y),i=n.shallowRef(!1),b=n.shallowRef(!1),A=n.shallowRef(!1),D=n.shallowRef();let S=new AbortController;const F=m=>{i.value||!b.value||(S.abort(m),S=new AbortController,A.value=!0,b.value=!1,i.value=!1)},f=m=>{b.value=m,i.value=!m},_=()=>{h&&(E.value=y)},Q=()=>new Promise((m,I)=>{C.until(i).toBe(!0).then(()=>D.value?I(D.value):m(q))}),H={then:(...m)=>Q().then(...m),catch:(...m)=>Q().catch(...m)};let j=0;const z=(m=o,I={})=>{D.value=void 0;const J=typeof m=="string"?m:o??I.url;if(J===void 0)return D.value=new L.AxiosError(L.AxiosError.ERR_INVALID_URL),i.value=!0,H;_(),l.abortPrevious!==!1&&F(),f(!0),j+=1;const pe=j;return A.value=!1,s(J,{...r,...typeof m=="object"?m:I,signal:S.signal}).then(O=>{if(A.value)return;R.value=O;const M=O.data;E.value=M,d(M)}).catch(O=>{D.value=O,v(O)}).finally(()=>{var O;(O=l.onFinish)==null||O.call(l),pe===j&&f(!1)}),H};g&&o&&z();const q={response:R,data:E,error:D,isFinished:i,isLoading:b,cancel:F,isAborted:A,isCanceled:A,abort:F,execute:z};return{...q,...H}}const N=Object.entries(ne).filter(([t,o])=>typeof o=="function"&&t.endsWith("Case")).reduce((t,[o,e])=>(t[o]=e,t),{});function re(t,o,e){const a=n.computed(()=>{const s=n.toValue(o);if(!N[s])throw new Error(`Invalid change case type "${s}"`);return s});if(typeof t=="function")return n.computed(()=>N[a.value](n.toValue(t),n.toValue(e)));const r=n.ref(t);return n.computed({get(){return N[a.value](r.value,n.toValue(e))},set(s){r.value=s}})}function se(t){const o=new k(t?t.headers.cookie:null);return(e,{doNotParse:a=!1,autoUpdateDependencies:r=!1}={})=>T(e,{doNotParse:a,autoUpdateDependencies:r},o)}function T(t,{doNotParse:o=!1,autoUpdateDependencies:e=!1}={},a=new k){const r=e?[...t||[]]:t;let s=a.getAll({doNotParse:!0});const l=n.shallowRef(0),c=()=>{const u=a.getAll({doNotParse:!0});ue(r||null,u,s)&&l.value++,s=u};return a.addChangeListener(c),C.tryOnScopeDispose(()=>{a.removeChangeListener(c)}),{get:(...u)=>(e&&r&&!r.includes(u[0])&&r.push(u[0]),l.value,a.get(u[0],{doNotParse:o,...u[1]})),getAll:(...u)=>(l.value,a.getAll({doNotParse:o,...u[0]})),set:(...u)=>a.set(...u),remove:(...u)=>a.remove(...u),addChangeListener:(...u)=>a.addChangeListener(...u),removeChangeListener:(...u)=>a.removeChangeListener(...u)}}function ue(t,o,e){if(!t)return!0;for(const a of t)if(o[a]!==e[a])return!0;return!1}function ce(t,o){const e=n.ref();let a=[];const r=p.createEventHook(),s=p.createEventHook(),l=p.createEventHook(),c=p.createEventHook(),u=p.createEventHook(),d=n.shallowRef(!1),v=n.shallowRef(!1),g=n.shallowRef(!1),h=n.shallowRef(!1),y=n.ref({color:"black",size:3,arrowEnd:!1,cornerRadius:0,dasharray:void 0,fill:"transparent",mode:"draw",...o?.brush});n.watch(y,()=>{const f=e.value;f&&(f.brush=y.value,f.mode=y.value.mode)},{deep:!0});const R=()=>{var f;return(f=e.value)==null?void 0:f.undo()},E=()=>{var f;return(f=e.value)==null?void 0:f.redo()},i=()=>{var f;return(f=e.value)==null?void 0:f.clear()},b=()=>{var f;return(f=e.value)==null?void 0:f.cancel()},A=f=>{var _;return(_=e.value)==null?void 0:_.load(f)},D=()=>{var f;return(f=e.value)==null?void 0:f.dump()},S=()=>{var f;a.forEach(_=>_()),(f=e.value)==null||f.unmount()},F=()=>{e.value&&(d.value=e.value.canUndo(),v.value=e.value.canRedo(),g.value=e.value.altPressed,h.value=e.value.shiftPressed)};return n.watch(()=>p.unrefElement(t),f=>{!f||typeof SVGSVGElement>"u"||!(f instanceof SVGSVGElement)||(e.value&&S(),e.value=K.createDrauu({el:f,...o}),F(),a=[e.value.on("canceled",()=>s.trigger()),e.value.on("committed",_=>l.trigger(_)),e.value.on("start",()=>c.trigger()),e.value.on("end",()=>u.trigger()),e.value.on("changed",()=>{F(),r.trigger()})])},{flush:"post"}),C.tryOnScopeDispose(()=>S()),{drauuInstance:e,load:A,dump:D,clear:i,cancel:b,undo:R,redo:E,canUndo:d,canRedo:v,brush:y,onChanged:r.on,onCommitted:l.on,onStart:c.on,onEnd:u.on,onCanceled:s.on}}function ie(t,o={}){let e;const{immediate:a,...r}=o,s=n.shallowRef(!1),l=n.shallowRef(!1),c=h=>e&&e.activate(h),u=h=>e&&e.deactivate(h),d=()=>{e&&(e.pause(),l.value=!0)},v=()=>{e&&(e.unpause(),l.value=!1)},g=n.computed(()=>{const h=n.toValue(t);return p.toArray(h).map(y=>{const R=n.toValue(y);return typeof R=="string"?R:p.unrefElement(R)}).filter(C.notNullish)});return n.watch(g,h=>{h.length&&(e=X.createFocusTrap(h,{...r,onActivate(){s.value=!0,o.onActivate&&o.onActivate()},onDeactivate(){s.value=!1,o.onDeactivate&&o.onDeactivate()}}),a&&c())},{flush:"post"}),p.tryOnScopeDispose(()=>u()),{hasFocus:s,isPaused:l,activate:c,deactivate:u,pause:d,unpause:v}}function fe(t,o,e){const a=()=>{var l,c;return new Y((l=n.toValue(o))!=null?l:[],(c=n.toValue(e))==null?void 0:c.fuseOptions)},r=n.ref(a());n.watch(()=>{var l;return(l=n.toValue(e))==null?void 0:l.fuseOptions},()=>{r.value=a()},{deep:!0}),n.watch(()=>n.toValue(o),l=>{r.value.setCollection(l)},{deep:!0});const s=n.computed(()=>{const l=n.toValue(e);if(l?.matchAllWhenSearchEmpty&&!n.toValue(t))return n.toValue(o).map((u,d)=>({item:u,refIndex:d}));const c=l?.resultLimit;return r.value.search(n.toValue(t),c?{limit:c}:void 0)});return{fuse:r,results:s}}function de(t,o,e={}){const{flush:a="pre",deep:r=!0,shallow:s=!1,onError:l=i=>{console.error(i)},writeDefaults:c=!0}=e,u=n.shallowRef(!1),d=(s?n.shallowRef:n.ref)(o),v=n.toValue(o);async function g(){try{const i=await P.get(t);i===void 0?v!=null&&c&&await P.set(t,v):d.value=i}catch(i){l(i)}u.value=!0}g();async function h(){try{d.value==null?await P.del(t):await P.update(t,()=>n.toRaw(d.value))}catch(i){l(i)}}const{pause:y,resume:R}=p.watchPausable(d,()=>h(),{flush:a,deep:r});async function E(i){y(),d.value=i,await h(),R()}return{set:E,isFinished:u,data:d}}function ve(t,o={}){const{onError:e,fallbackValue:a=null}=o,r=(c,u)=>{try{return Z.jwtDecode(c,u)}catch(d){return e?.(d),a}},s=n.computed(()=>r(n.toValue(t),{header:!0})),l=n.computed(()=>r(n.toValue(t)));return{header:s,payload:l}}function he(t=null,o){const e=C.toRef(t),a=n.computed({set:s=>s?V.start():V.done(),get:()=>typeof e.value=="number"&&e.value<1});o&&V.configure(o);const r=V.set;return V.set=s=>(e.value=s,r.call(V,s)),n.watchEffect(()=>{typeof e.value=="number"&&C.isClient&&r.call(V,e.value)}),C.tryOnScopeDispose(V.remove),{isLoading:a,progress:e,start:V.start,done:V.done,remove:()=>{e.value=null,V.remove()}}}function me(t,o){const e=C.toRef(t),a=n.shallowRef("");return n.watch(e,async r=>{e.value&&C.isClient&&(a.value=await x.toDataURL(r,o))},{immediate:!0}),a}function we(t,o,e={}){let a;const{document:r=p.defaultDocument,...s}=e,l={onUpdate:v=>{G(o,v.oldIndex,v.newIndex,v)}},c=()=>{const v=typeof t=="string"?r?.querySelector(t):p.unrefElement(t);!v||a!==void 0||(a=new ee(v,{...l,...s}))},u=()=>{a?.destroy(),a=void 0},d=(v,g)=>{if(g!==void 0)a?.option(v,g);else return a?.option(v)};return p.tryOnMounted(c),p.tryOnScopeDispose(u),{stop:u,start:c,option:d}}function B(t,o,e){const a=t.children[e];t.insertBefore(o,a)}function W(t){t.parentNode&&t.parentNode.removeChild(t)}function G(t,o,e,a=null){a!=null&&(W(a.item),B(a.from,a.item,o));const r=n.isRef(t),s=r?[...n.toValue(t)]:n.toValue(t);if(e>=0&&e<s.length){const l=s.splice(o,1)[0];n.nextTick(()=>{s.splice(e,0,l),r&&(t.value=s)})}}w.createCookies=se,w.insertNodeAt=B,w.moveArrayElement=G,w.removeNode=W,w.useAsyncValidator=oe,w.useAxios=le,w.useChangeCase=re,w.useCookies=T,w.useDrauu=ce,w.useFocusTrap=ie,w.useFuse=fe,w.useIDBKeyval=de,w.useJwt=ve,w.useNProgress=he,w.useQRCode=me,w.useSortable=we})(this.VueUse=this.VueUse||{},VueUse,AsyncValidator,Vue,axios,changeCase,UniversalCookie,VueUse,Drauu,focusTrap,Fuse,idbKeyval,jwt_decode,nprogress,QRCode,Sortable);
package/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import { toRef, until, noop, tryOnScopeDispose, notNullish, isClient } from '@vueuse/shared';
2
2
  import Schema from 'async-validator';
3
- import { shallowRef, ref, computed, toValue, watch, toRaw, watchEffect, isRef, nextTick } from 'vue';
3
+ import { shallowRef, computed, toValue, watch, ref, toRaw, watchEffect, isRef, nextTick } from 'vue';
4
4
  import axios, { AxiosError } from 'axios';
5
5
  import * as changeCase from 'change-case';
6
6
  import Cookie from 'universal-cookie';
@@ -23,8 +23,8 @@ function useAsyncValidator(value, rules, options = {}) {
23
23
  } = options;
24
24
  const valueRef = toRef(value);
25
25
  const errorInfo = shallowRef(null);
26
- const isFinished = ref(true);
27
- const pass = ref(!immediate || manual);
26
+ const isFinished = shallowRef(true);
27
+ const pass = shallowRef(!immediate || manual);
28
28
  const errors = computed(() => {
29
29
  var _a;
30
30
  return ((_a = errorInfo.value) == null ? void 0 : _a.errors) || [];
@@ -116,9 +116,9 @@ function useAxios(...args) {
116
116
  const initialData = options.initialData;
117
117
  const response = shallowRef();
118
118
  const data = (shallow ? shallowRef : ref)(initialData);
119
- const isFinished = ref(false);
120
- const isLoading = ref(false);
121
- const isAborted = ref(false);
119
+ const isFinished = shallowRef(false);
120
+ const isLoading = shallowRef(false);
121
+ const isAborted = shallowRef(false);
122
122
  const error = shallowRef();
123
123
  let abortController = new AbortController();
124
124
  const abort = (message) => {
@@ -230,7 +230,7 @@ function createCookies(req) {
230
230
  function useCookies(dependencies, { doNotParse = false, autoUpdateDependencies = false } = {}, cookies = new Cookie()) {
231
231
  const watchingDependencies = autoUpdateDependencies ? [...dependencies || []] : dependencies;
232
232
  let previousCookies = cookies.getAll({ doNotParse: true });
233
- const touches = ref(0);
233
+ const touches = shallowRef(0);
234
234
  const onChange = () => {
235
235
  const newCookies = cookies.getAll({ doNotParse: true });
236
236
  if (shouldUpdate(
@@ -287,10 +287,10 @@ function useDrauu(target, options) {
287
287
  const onCommittedHook = createEventHook();
288
288
  const onStartHook = createEventHook();
289
289
  const onEndHook = createEventHook();
290
- const canUndo = ref(false);
291
- const canRedo = ref(false);
292
- const altPressed = ref(false);
293
- const shiftPressed = ref(false);
290
+ const canUndo = shallowRef(false);
291
+ const canRedo = shallowRef(false);
292
+ const altPressed = shallowRef(false);
293
+ const shiftPressed = shallowRef(false);
294
294
  const brush = ref({
295
295
  color: "black",
296
296
  size: 3,
@@ -390,8 +390,8 @@ function useDrauu(target, options) {
390
390
  function useFocusTrap(target, options = {}) {
391
391
  let trap;
392
392
  const { immediate, ...focusTrapOptions } = options;
393
- const hasFocus = ref(false);
394
- const isPaused = ref(false);
393
+ const hasFocus = shallowRef(false);
394
+ const isPaused = shallowRef(false);
395
395
  const activate = (opts) => trap && trap.activate(opts);
396
396
  const deactivate = (opts) => trap && trap.deactivate(opts);
397
397
  const pause = () => {
@@ -496,7 +496,7 @@ function useIDBKeyval(key, initialValue, options = {}) {
496
496
  },
497
497
  writeDefaults = true
498
498
  } = options;
499
- const isFinished = ref(false);
499
+ const isFinished = shallowRef(false);
500
500
  const data = (shallow ? shallowRef : ref)(initialValue);
501
501
  const rawInit = toValue(initialValue);
502
502
  async function read() {
@@ -595,7 +595,7 @@ function useNProgress(currentProgress = null, options) {
595
595
 
596
596
  function useQRCode(text, options) {
597
597
  const src = toRef(text);
598
- const result = ref("");
598
+ const result = shallowRef("");
599
599
  watch(
600
600
  src,
601
601
  async (value) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vueuse/integrations",
3
3
  "type": "module",
4
- "version": "12.6.1",
4
+ "version": "12.8.0",
5
5
  "description": "Integration wrappers for utility libraries",
6
6
  "author": "Anthony Fu <https://github.com/antfu>",
7
7
  "license": "MIT",
@@ -155,17 +155,17 @@
155
155
  },
156
156
  "dependencies": {
157
157
  "vue": "^3.5.13",
158
- "@vueuse/core": "12.6.1",
159
- "@vueuse/shared": "12.6.1"
158
+ "@vueuse/core": "12.8.0",
159
+ "@vueuse/shared": "12.8.0"
160
160
  },
161
161
  "devDependencies": {
162
162
  "@types/nprogress": "^0.2.3",
163
163
  "@types/qrcode": "^1.5.5",
164
164
  "@types/sortablejs": "^1.15.8",
165
165
  "async-validator": "^4.2.5",
166
- "axios": "^1.7.9",
166
+ "axios": "^1.8.1",
167
167
  "change-case": "^5.4.4",
168
- "drauu": "^0.4.2",
168
+ "drauu": "^0.4.3",
169
169
  "focus-trap": "^7.6.4",
170
170
  "fuse.js": "^7.1.0",
171
171
  "idb-keyval": "^6.2.1",
@@ -13,8 +13,8 @@ function useAsyncValidator(value, rules, options = {}) {
13
13
  } = options;
14
14
  const valueRef = shared.toRef(value);
15
15
  const errorInfo = vue.shallowRef(null);
16
- const isFinished = vue.ref(true);
17
- const pass = vue.ref(!immediate || manual);
16
+ const isFinished = vue.shallowRef(true);
17
+ const pass = vue.shallowRef(!immediate || manual);
18
18
  const errors = vue.computed(() => errorInfo.value?.errors || []);
19
19
  const errorFields = vue.computed(() => errorInfo.value?.fields || {});
20
20
  const validator = vue.computed(() => new AsyncValidatorSchema(vue.toValue(rules)));
@@ -65,7 +65,7 @@ function useAsyncValidator(value, rules, options = {}) {
65
65
  };
66
66
  }
67
67
 
68
- const UseAsyncValidator = /* @__PURE__ */ /* #__PURE__ */ vue.defineComponent({
68
+ const UseAsyncValidator = /* @__PURE__ */ /*@__PURE__*/ vue.defineComponent({
69
69
  name: "UseAsyncValidator",
70
70
  props: {
71
71
  form: {