import { MaybeRefOrGetter, MaybeRef, ConfigurableFlush, RemovableRef } from '@vueuse/shared'; import { ValidateError, ValidateOption, Rules } from 'async-validator'; import * as vue from 'vue'; import { Ref, ShallowRef, WritableComputedRef, ComputedRef } from 'vue'; import { AxiosResponse, AxiosRequestConfig, AxiosInstance } from 'axios'; import * as changeCase from 'change-case'; import { Options } from 'change-case'; import * as universal_cookie from 'universal-cookie'; import universal_cookie__default from 'universal-cookie'; import { IncomingMessage } from 'node:http'; import { EventHookOn, MaybeComputedElementRef, Fn, Arrayable, ConfigurableDocument, MaybeRefOrGetter as MaybeRefOrGetter$1 } from '@vueuse/core'; import { Options as Options$1, Drauu, Brush } from 'drauu'; import { Options as Options$2, ActivateOptions, DeactivateOptions } from 'focus-trap'; import * as fuse_js from 'fuse.js'; import fuse_js__default, { IFuseOptions, FuseResult } from 'fuse.js'; import { JwtPayload, JwtHeader } from 'jwt-decode'; import nprogress, { NProgressOptions } from 'nprogress'; import QRCode from 'qrcode'; import Sortable, { Options as Options$3 } from 'sortablejs'; type AsyncValidatorError = Error & { errors: ValidateError[]; fields: Record; }; interface UseAsyncValidatorExecuteReturn { pass: boolean; errors: AsyncValidatorError['errors'] | undefined; errorInfo: AsyncValidatorError | null; errorFields: AsyncValidatorError['fields'] | undefined; } interface UseAsyncValidatorReturn { pass: Ref; isFinished: Ref; errors: Ref; errorInfo: Ref; errorFields: Ref; execute: () => Promise; } interface UseAsyncValidatorOptions { /** * @see https://github.com/yiminghe/async-validator#options */ validateOption?: ValidateOption; /** * The validation will be triggered right away for the first time. * Only works when `manual` is not set to true. * * @default true */ immediate?: boolean; /** * If set to true, the validation will not be triggered automatically. */ manual?: boolean; } /** * Wrapper for async-validator. * * @see https://vueuse.org/useAsyncValidator * @see https://github.com/yiminghe/async-validator */ declare function useAsyncValidator(value: MaybeRefOrGetter>, rules: MaybeRefOrGetter, options?: UseAsyncValidatorOptions): UseAsyncValidatorReturn & PromiseLike; interface UseAxiosReturn, _D = any, O extends UseAxiosOptions = UseAxiosOptions> { /** * Axios Response */ response: ShallowRef; /** * Axios response data */ data: O extends UseAxiosOptionsWithInitialData ? Ref : Ref; /** * Indicates if the request has finished */ isFinished: Ref; /** * Indicates if the request is currently loading */ isLoading: Ref; /** * Indicates if the request was canceled */ isAborted: Ref; /** * Any errors that may have occurred */ error: ShallowRef; /** * Aborts the current request */ abort: (message?: string | undefined) => void; /** * Alias to `abort` */ cancel: (message?: string | undefined) => void; /** * Alias to `isAborted` */ isCanceled: Ref; } interface StrictUseAxiosReturn> extends UseAxiosReturn { /** * Manually call the axios request */ execute: (url?: string | AxiosRequestConfig, config?: AxiosRequestConfig) => Promise>; } interface EasyUseAxiosReturn extends UseAxiosReturn { /** * Manually call the axios request */ execute: (url: string, config?: AxiosRequestConfig) => Promise>; } interface UseAxiosOptionsBase { /** * Will automatically run axios request when `useAxios` is used * */ immediate?: boolean; /** * Use shallowRef. * * @default true */ shallow?: boolean; /** * Abort previous request when a new request is made. * * @default true */ abortPrevious?: boolean; /** * Callback when error is caught. */ onError?: (e: unknown) => void; /** * Callback when success is caught. */ onSuccess?: (data: T) => void; /** * Sets the state to initialState before executing the promise. */ resetOnExecute?: boolean; /** * Callback when request is finished. */ onFinish?: () => void; } interface UseAxiosOptionsWithInitialData extends UseAxiosOptionsBase { /** * Initial data */ initialData: T; } type UseAxiosOptions = UseAxiosOptionsBase | UseAxiosOptionsWithInitialData; declare function useAxios, D = any, O extends UseAxiosOptionsWithInitialData = UseAxiosOptionsWithInitialData>(url: string, config?: AxiosRequestConfig, options?: O): StrictUseAxiosReturn & Promise>; declare function useAxios, D = any, O extends UseAxiosOptionsWithInitialData = UseAxiosOptionsWithInitialData>(url: string, instance?: AxiosInstance, options?: O): StrictUseAxiosReturn & Promise>; declare function useAxios, D = any, O extends UseAxiosOptionsWithInitialData = UseAxiosOptionsWithInitialData>(url: string, config: AxiosRequestConfig, instance: AxiosInstance, options?: O): StrictUseAxiosReturn & Promise>; declare function useAxios, D = any, O extends UseAxiosOptionsBase = UseAxiosOptionsBase>(url: string, config?: AxiosRequestConfig, options?: O): StrictUseAxiosReturn & Promise>; declare function useAxios, D = any, O extends UseAxiosOptionsBase = UseAxiosOptionsBase>(url: string, instance?: AxiosInstance, options?: O): StrictUseAxiosReturn & Promise>; declare function useAxios, D = any, O extends UseAxiosOptionsBase = UseAxiosOptionsBase>(url: string, config: AxiosRequestConfig, instance: AxiosInstance, options?: O): StrictUseAxiosReturn & Promise>; declare function useAxios, D = any>(config?: AxiosRequestConfig): EasyUseAxiosReturn & Promise>; declare function useAxios, D = any>(instance?: AxiosInstance): EasyUseAxiosReturn & Promise>; declare function useAxios, D = any>(config?: AxiosRequestConfig, instance?: AxiosInstance): EasyUseAxiosReturn & Promise>; type EndsWithCase = T extends `${infer _}Case` ? T : never; type FilterKeys = { [K in keyof T as K extends string ? K : never]: EndsWithCase; }; type ChangeCaseKeys = FilterKeys; type ChangeCaseType = ChangeCaseKeys[keyof ChangeCaseKeys]; declare function useChangeCase(input: MaybeRef, type: MaybeRefOrGetter, options?: MaybeRefOrGetter | undefined): WritableComputedRef; declare function useChangeCase(input: MaybeRefOrGetter, type: MaybeRefOrGetter, options?: MaybeRefOrGetter | undefined): ComputedRef; /** * Creates a new {@link useCookies} function * @param req - incoming http request (for SSR) * @see https://github.com/reactivestack/cookies/tree/master/packages/universal-cookie universal-cookie * @description Creates universal-cookie instance using request (default is window.document.cookie) and returns {@link useCookies} function with provided universal-cookie instance */ declare function createCookies(req?: IncomingMessage): (dependencies?: string[] | null, { doNotParse, autoUpdateDependencies }?: { doNotParse?: boolean | undefined; autoUpdateDependencies?: boolean | undefined; }) => { /** * Reactive get cookie by name. If **autoUpdateDependencies = true** then it will update watching dependencies */ get: (name: string, options?: universal_cookie.CookieGetOptions | undefined) => T; /** * Reactive get all cookies */ getAll: (options?: universal_cookie.CookieGetOptions | undefined) => T; set: (name: string, value: any, options?: universal_cookie.CookieSetOptions | undefined) => void; remove: (name: string, options?: universal_cookie.CookieSetOptions | undefined) => void; addChangeListener: (callback: universal_cookie.CookieChangeListener) => void; removeChangeListener: (callback: universal_cookie.CookieChangeListener) => void; }; /** * Reactive methods to work with cookies (use {@link createCookies} method instead if you are using SSR) * @param dependencies - array of watching cookie's names. Pass empty array if don't want to watch cookies changes. * @param options * @param options.doNotParse - don't try parse value as JSON * @param options.autoUpdateDependencies - automatically update watching dependencies * @param cookies - universal-cookie instance */ declare function useCookies(dependencies?: string[] | null, { doNotParse, autoUpdateDependencies }?: { doNotParse?: boolean | undefined; autoUpdateDependencies?: boolean | undefined; }, cookies?: universal_cookie__default): { /** * Reactive get cookie by name. If **autoUpdateDependencies = true** then it will update watching dependencies */ get: (name: string, options?: universal_cookie.CookieGetOptions | undefined) => T; /** * Reactive get all cookies */ getAll: (options?: universal_cookie.CookieGetOptions | undefined) => T; set: (name: string, value: any, options?: universal_cookie.CookieSetOptions | undefined) => void; remove: (name: string, options?: universal_cookie.CookieSetOptions | undefined) => void; addChangeListener: (callback: universal_cookie.CookieChangeListener) => void; removeChangeListener: (callback: universal_cookie.CookieChangeListener) => void; }; type UseDrauuOptions = Omit; interface UseDrauuReturn { drauuInstance: Ref; load: (svg: string) => void; dump: () => string | undefined; clear: () => void; cancel: () => void; undo: () => boolean | undefined; redo: () => boolean | undefined; canUndo: Ref; canRedo: Ref; brush: Ref; onChanged: EventHookOn; onCommitted: EventHookOn; onStart: EventHookOn; onEnd: EventHookOn; onCanceled: EventHookOn; } /** * Reactive drauu * * @see https://vueuse.org/useDrauu * @param target The target svg element * @param options Drauu Options */ declare function useDrauu(target: MaybeComputedElementRef, options?: UseDrauuOptions): UseDrauuReturn; interface UseFocusTrapOptions extends Options$2 { /** * Immediately activate the trap */ immediate?: boolean; } interface UseFocusTrapReturn { /** * Indicates if the focus trap is currently active */ hasFocus: Ref; /** * Indicates if the focus trap is currently paused */ isPaused: Ref; /** * Activate the focus trap * * @see https://github.com/focus-trap/focus-trap#trapactivateactivateoptions * @param opts Activate focus trap options */ activate: (opts?: ActivateOptions) => void; /** * Deactivate the focus trap * * @see https://github.com/focus-trap/focus-trap#trapdeactivatedeactivateoptions * @param opts Deactivate focus trap options */ deactivate: (opts?: DeactivateOptions) => void; /** * Pause the focus trap * * @see https://github.com/focus-trap/focus-trap#trappause */ pause: Fn; /** * Unpauses the focus trap * * @see https://github.com/focus-trap/focus-trap#trapunpause */ unpause: Fn; } /** * Reactive focus-trap * * @see https://vueuse.org/useFocusTrap */ declare function useFocusTrap(target: Arrayable | MaybeComputedElementRef>, options?: UseFocusTrapOptions): UseFocusTrapReturn; type FuseOptions = IFuseOptions; interface UseFuseOptions { fuseOptions?: FuseOptions; resultLimit?: number; matchAllWhenSearchEmpty?: boolean; } declare function useFuse(search: MaybeRefOrGetter, data: MaybeRefOrGetter, options?: MaybeRefOrGetter>): { fuse: vue.Ref<{ search: (pattern: string | fuse_js.Expression, options?: fuse_js.FuseSearchOptions) => FuseResult[]; setCollection: (docs: readonly DataItem[], index?: fuse_js.FuseIndex | undefined) => void; add: (doc: DataItem) => void; remove: (predicate: (doc: DataItem, idx: number) => boolean) => DataItem[]; removeAt: (idx: number) => void; getIndex: () => fuse_js.FuseIndex; }, fuse_js__default | { search: (pattern: string | fuse_js.Expression, options?: fuse_js.FuseSearchOptions) => FuseResult[]; setCollection: (docs: readonly DataItem[], index?: fuse_js.FuseIndex | undefined) => void; add: (doc: DataItem) => void; remove: (predicate: (doc: DataItem, idx: number) => boolean) => DataItem[]; removeAt: (idx: number) => void; getIndex: () => fuse_js.FuseIndex; }>; results: ComputedRef[]>; }; type UseFuseReturn = ReturnType; interface UseIDBOptions extends ConfigurableFlush { /** * Watch for deep changes * * @default true */ deep?: boolean; /** * On error callback * * Default log error to `console.error` */ onError?: (error: unknown) => void; /** * Use shallow ref as reference * * @default false */ shallow?: boolean; /** * Write the default value to the storage when it does not exist * * @default true */ writeDefaults?: boolean; } interface UseIDBKeyvalReturn { data: RemovableRef; isFinished: Ref; set: (value: T) => Promise; } /** * * @param key * @param initialValue * @param options */ declare function useIDBKeyval(key: IDBValidKey, initialValue: MaybeRefOrGetter, options?: UseIDBOptions): UseIDBKeyvalReturn; interface UseJwtOptions { /** * Value returned when encounter error on decoding * * @default null */ fallbackValue?: Fallback; /** * Error callback for decoding */ onError?: (error: unknown) => void; } interface UseJwtReturn { header: ComputedRef
; payload: ComputedRef; } /** * Reactive decoded jwt token. * * @see https://vueuse.org/useJwt */ declare function useJwt(encodedJwt: MaybeRefOrGetter, options?: UseJwtOptions): UseJwtReturn; type UseNProgressOptions = Partial; /** * Reactive progress bar. * * @see https://vueuse.org/useNProgress */ declare function useNProgress(currentProgress?: MaybeRefOrGetter, options?: UseNProgressOptions): { isLoading: vue.WritableComputedRef; progress: vue.Ref; start: () => nprogress.NProgress; done: (force?: boolean) => nprogress.NProgress; remove: () => void; }; type UseNProgressReturn = ReturnType; /** * Wrapper for qrcode. * * @see https://vueuse.org/useQRCode * @param text * @param options */ declare function useQRCode(text: MaybeRefOrGetter, options?: QRCode.QRCodeToDataURLOptions): vue.ShallowRef; interface UseSortableReturn { /** * start sortable instance */ start: () => void; /** * destroy sortable instance */ stop: () => void; /** * Options getter/setter * @param name a Sortable.Options property. * @param value a value. */ option: ((name: K, value: Sortable.Options[K]) => void) & ((name: K) => Sortable.Options[K]); } type UseSortableOptions = Options$3 & ConfigurableDocument; declare function useSortable(selector: string, list: MaybeRefOrGetter$1, options?: UseSortableOptions): UseSortableReturn; declare function useSortable(el: MaybeRefOrGetter$1, list: MaybeRefOrGetter$1, options?: UseSortableOptions): UseSortableReturn; /** * Inserts a element into the DOM at a given index. * @param parentElement * @param element * @param {number} index * @see https://github.com/Alfred-Skyblue/vue-draggable-plus/blob/a3829222095e1949bf2c9a20979d7b5930e66f14/src/utils/index.ts#L81C1-L94C2 */ declare function insertNodeAt(parentElement: Element, element: Element, index: number): void; /** * Removes a node from the DOM. * @param {Node} node * @see https://github.com/Alfred-Skyblue/vue-draggable-plus/blob/a3829222095e1949bf2c9a20979d7b5930e66f14/src/utils/index.ts#L96C1-L102C2 */ declare function removeNode(node: Node): void; declare function moveArrayElement(list: MaybeRefOrGetter$1, from: number, to: number, e?: Sortable.SortableEvent | null): void; 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 };