@vueuse/components 13.9.0 → 14.0.0-alpha.1
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/dist/index.d.ts +585 -0
- package/dist/index.iife.js +1144 -0
- package/dist/index.iife.min.js +1 -0
- package/dist/index.js +1059 -0
- package/package.json +12 -14
- package/index.d.mts +0 -906
- package/index.iife.js +0 -2710
- package/index.iife.min.js +0 -1
- package/index.mjs +0 -2650
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,585 @@
|
|
|
1
|
+
import { BasicColorMode, ColorSchemeType, ConfigurableDocument, ConfigurableNavigator, ConfigurableWindow, ContrastType, DeviceMotionOptions, ElementSize, MouseInElementOptions, MousePressedOptions, OnClickOutsideHandler, OnClickOutsideOptions, OnKeyStrokeOptions, OnLongPressOptions, ReducedMotionType, RenderableComponent, ResizeObserverCallback, UseActiveElementOptions, UseActiveElementReturn, UseBatteryReturn, UseBrowserLocationReturn, UseClipboardOptions, UseClipboardReturn, UseColorModeOptions, UseColorModeReturn, UseDarkOptions, UseDarkReturn, UseDeviceMotionReturn, UseDeviceOrientationReturn, UseDevicePixelRatioReturn, UseDevicesListOptions, UseDevicesListReturn, UseDocumentVisibilityReturn, UseDraggableOptions, UseElementBoundingOptions, UseElementBoundingReturn, UseElementHoverOptions, UseElementSizeReturn, UseElementVisibilityOptions, UseElementVisibilityReturn, UseEyeDropperOptions, UseEyeDropperReturn, UseFullscreenOptions, UseFullscreenReturn, UseGeolocationOptions, UseGeolocationReturn, UseIdleOptions, UseIdleReturn, UseImageOptions, UseImageReturn, UseInfiniteScrollOptions, UseIntersectionObserverOptions, UseMouseInElementReturn, UseMouseOptions, UseMousePressedReturn, UseMouseReturn, UseNetworkReturn, UseNowOptions, UseNowReturn, UseOffsetPaginationOptions, UseOffsetPaginationReturn, UseOnLongPressReturn, UsePageLeaveReturn, UsePointerLockOptions, UsePointerLockReturn, UsePointerOptions, UsePointerReturn, UseResizeObserverOptions, UseScreenSafeAreaReturn, UseScrollOptions, UseScrollReturn, UseTimeAgoOptions, UseTimeAgoReturn, UseTimestampOptions, UseTimestampReturn, UseVirtualListOptions, UseWindowSizeOptions, UseWindowSizeReturn, useElementSize, useInfiniteScroll } from "@vueuse/core";
|
|
2
|
+
import * as vue0 from "vue";
|
|
3
|
+
import { ComputedRef, FunctionDirective, MaybeRef, ObjectDirective, Reactive, Ref, ShallowRef, SlotsType, UnwrapRef } from "vue";
|
|
4
|
+
import { ToggleFn } from "@vueuse/shared";
|
|
5
|
+
|
|
6
|
+
//#region ../core/onClickOutside/component.d.ts
|
|
7
|
+
interface OnClickOutsideProps extends RenderableComponent {
|
|
8
|
+
options?: Omit<OnClickOutsideOptions, 'controls'>;
|
|
9
|
+
}
|
|
10
|
+
type OnClickOutsideEmits = {
|
|
11
|
+
trigger: (event: Event) => void;
|
|
12
|
+
};
|
|
13
|
+
declare const OnClickOutside: vue0.DefineSetupFnComponent<OnClickOutsideProps, OnClickOutsideEmits, {}, OnClickOutsideProps & {
|
|
14
|
+
onTrigger?: ((event: Event) => any) | undefined;
|
|
15
|
+
}, vue0.PublicProps>;
|
|
16
|
+
//#endregion
|
|
17
|
+
//#region ../core/onClickOutside/directive.d.ts
|
|
18
|
+
declare const vOnClickOutside: ObjectDirective<HTMLElement, OnClickOutsideHandler | [(evt: any) => void, Omit<OnClickOutsideOptions, 'controls'>]>;
|
|
19
|
+
//#endregion
|
|
20
|
+
//#region ../core/onKeyStroke/directive.d.ts
|
|
21
|
+
type BindingValueFunction$10 = (event: KeyboardEvent) => void;
|
|
22
|
+
type BindingValueArray$9 = [BindingValueFunction$10, OnKeyStrokeOptions];
|
|
23
|
+
declare const vOnKeyStroke: ObjectDirective<HTMLElement, BindingValueFunction$10 | BindingValueArray$9>;
|
|
24
|
+
//#endregion
|
|
25
|
+
//#region ../core/onLongPress/component.d.ts
|
|
26
|
+
interface OnLongPressProps extends RenderableComponent {
|
|
27
|
+
options?: OnLongPressOptions;
|
|
28
|
+
}
|
|
29
|
+
type OnLongPressEmits = {
|
|
30
|
+
trigger: (event: PointerEvent) => void;
|
|
31
|
+
};
|
|
32
|
+
interface OnLongPressSlots {
|
|
33
|
+
default: (data: UseOnLongPressReturn) => any;
|
|
34
|
+
}
|
|
35
|
+
declare const OnLongPress: vue0.DefineSetupFnComponent<OnLongPressProps, OnLongPressEmits, SlotsType<OnLongPressSlots>, OnLongPressProps & {
|
|
36
|
+
onTrigger?: ((event: PointerEvent) => any) | undefined;
|
|
37
|
+
}, vue0.PublicProps>;
|
|
38
|
+
//#endregion
|
|
39
|
+
//#region ../core/onLongPress/directive.d.ts
|
|
40
|
+
type BindingValueFunction$9 = (evt: PointerEvent) => void;
|
|
41
|
+
type BindingValueArray$8 = [BindingValueFunction$9, OnLongPressOptions];
|
|
42
|
+
declare const vOnLongPress: ObjectDirective<HTMLElement, BindingValueFunction$9 | BindingValueArray$8>;
|
|
43
|
+
//#endregion
|
|
44
|
+
//#region ../core/useActiveElement/component.d.ts
|
|
45
|
+
interface UseActiveElementProps extends UseActiveElementOptions {}
|
|
46
|
+
interface UseActiveElementSlots {
|
|
47
|
+
default: (data: Reactive<{
|
|
48
|
+
element: UseActiveElementReturn;
|
|
49
|
+
}>) => any;
|
|
50
|
+
}
|
|
51
|
+
declare const UseActiveElement: vue0.DefineSetupFnComponent<UseActiveElementProps, Record<string, never>, SlotsType<UseActiveElementSlots>, UseActiveElementProps & {
|
|
52
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
53
|
+
}, vue0.PublicProps>;
|
|
54
|
+
//#endregion
|
|
55
|
+
//#region ../core/useBattery/component.d.ts
|
|
56
|
+
interface UseBatteryProps extends ConfigurableNavigator {}
|
|
57
|
+
interface UseBatterySlots {
|
|
58
|
+
default: (data: Reactive<UseBatteryReturn>) => any;
|
|
59
|
+
}
|
|
60
|
+
declare const UseBattery: vue0.DefineSetupFnComponent<UseBatteryProps, Record<string, never>, SlotsType<UseBatterySlots>, UseBatteryProps & {
|
|
61
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
62
|
+
}, vue0.PublicProps>;
|
|
63
|
+
//#endregion
|
|
64
|
+
//#region ../core/useBrowserLocation/component.d.ts
|
|
65
|
+
interface UseBrowserLocationProps extends ConfigurableWindow {}
|
|
66
|
+
interface UseBrowserLocationSlots {
|
|
67
|
+
default: (data: Reactive<UseBrowserLocationReturn>) => any;
|
|
68
|
+
}
|
|
69
|
+
declare const UseBrowserLocation: vue0.DefineSetupFnComponent<UseBrowserLocationProps, Record<string, never>, SlotsType<UseBrowserLocationSlots>, UseBrowserLocationProps & {
|
|
70
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
71
|
+
}, vue0.PublicProps>;
|
|
72
|
+
//#endregion
|
|
73
|
+
//#region ../core/useClipboard/component.d.ts
|
|
74
|
+
interface UseClipboardProps<Source = string> extends UseClipboardOptions<Source> {}
|
|
75
|
+
interface UseClipboardSlots {
|
|
76
|
+
default: (data: Reactive<UseClipboardReturn<true>>) => any;
|
|
77
|
+
}
|
|
78
|
+
declare const UseClipboard: vue0.DefineSetupFnComponent<UseClipboardProps<string>, Record<string, never>, SlotsType<UseClipboardSlots>, UseClipboardProps<string> & {
|
|
79
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
80
|
+
}, vue0.PublicProps>;
|
|
81
|
+
//#endregion
|
|
82
|
+
//#region ../core/useColorMode/component.d.ts
|
|
83
|
+
interface UseColorModeProps extends UseColorModeOptions {}
|
|
84
|
+
interface UseColorModeSlots {
|
|
85
|
+
default: (data: Reactive<{
|
|
86
|
+
mode: UseColorModeReturn<BasicColorMode>;
|
|
87
|
+
system: UseColorModeReturn['system'];
|
|
88
|
+
store: UseColorModeReturn['store'];
|
|
89
|
+
}>) => any;
|
|
90
|
+
}
|
|
91
|
+
declare const UseColorMode: vue0.DefineSetupFnComponent<UseColorModeProps, Record<string, never>, SlotsType<UseColorModeSlots>, UseColorModeProps & {
|
|
92
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
93
|
+
}, vue0.PublicProps>;
|
|
94
|
+
//#endregion
|
|
95
|
+
//#region ../core/useDark/component.d.ts
|
|
96
|
+
interface UseDarkProps extends UseDarkOptions {}
|
|
97
|
+
interface UseDarkSlots {
|
|
98
|
+
default: (data: Reactive<{
|
|
99
|
+
isDark: UseDarkReturn;
|
|
100
|
+
toggleDark: ToggleFn;
|
|
101
|
+
}>) => any;
|
|
102
|
+
}
|
|
103
|
+
declare const UseDark: vue0.DefineSetupFnComponent<UseDarkProps, Record<string, never>, SlotsType<UseDarkSlots>, UseDarkProps & {
|
|
104
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
105
|
+
}, vue0.PublicProps>;
|
|
106
|
+
//#endregion
|
|
107
|
+
//#region ../core/useDeviceMotion/component.d.ts
|
|
108
|
+
interface UseDeviceMotionProps extends DeviceMotionOptions {}
|
|
109
|
+
interface UseDeviceMotionSlots {
|
|
110
|
+
default: (data: UseDeviceMotionReturn) => any;
|
|
111
|
+
}
|
|
112
|
+
declare const UseDeviceMotion: vue0.DefineSetupFnComponent<UseDeviceMotionProps, Record<string, never>, SlotsType<UseDeviceMotionSlots>, UseDeviceMotionProps & {
|
|
113
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
114
|
+
}, vue0.PublicProps>;
|
|
115
|
+
//#endregion
|
|
116
|
+
//#region ../core/useDeviceOrientation/component.d.ts
|
|
117
|
+
interface UseDeviceOrientationProps extends ConfigurableWindow {}
|
|
118
|
+
interface UseDeviceOrientationSlots {
|
|
119
|
+
default: (data: Reactive<UseDeviceOrientationReturn>) => any;
|
|
120
|
+
}
|
|
121
|
+
declare const UseDeviceOrientation: vue0.DefineSetupFnComponent<UseDeviceOrientationProps, Record<string, never>, SlotsType<UseDeviceOrientationSlots>, UseDeviceOrientationProps & {
|
|
122
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
123
|
+
}, vue0.PublicProps>;
|
|
124
|
+
//#endregion
|
|
125
|
+
//#region ../core/useDevicePixelRatio/component.d.ts
|
|
126
|
+
interface UseDevicePixelRatioProps extends ConfigurableWindow {}
|
|
127
|
+
interface UseDevicePixelRatioSlots {
|
|
128
|
+
default: (data: Reactive<UseDevicePixelRatioReturn>) => any;
|
|
129
|
+
}
|
|
130
|
+
declare const UseDevicePixelRatio: vue0.DefineSetupFnComponent<UseDevicePixelRatioProps, Record<string, never>, SlotsType<UseDevicePixelRatioSlots>, UseDevicePixelRatioProps & {
|
|
131
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
132
|
+
}, vue0.PublicProps>;
|
|
133
|
+
//#endregion
|
|
134
|
+
//#region ../core/useDevicesList/component.d.ts
|
|
135
|
+
interface UseDevicesListProps extends UseDevicesListOptions {}
|
|
136
|
+
interface UseDevicesListSlots {
|
|
137
|
+
default: (data: Reactive<UseDevicesListReturn>) => any;
|
|
138
|
+
}
|
|
139
|
+
declare const UseDevicesList: vue0.DefineSetupFnComponent<UseDevicesListProps, Record<string, never>, SlotsType<UseDevicesListSlots>, UseDevicesListProps & {
|
|
140
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
141
|
+
}, vue0.PublicProps>;
|
|
142
|
+
//#endregion
|
|
143
|
+
//#region ../core/useDocumentVisibility/component.d.ts
|
|
144
|
+
interface UseDocumentVisibilityProps extends ConfigurableDocument {}
|
|
145
|
+
interface UseDocumentVisibilitySlots {
|
|
146
|
+
default: (data: Reactive<{
|
|
147
|
+
visibility: UseDocumentVisibilityReturn;
|
|
148
|
+
}>) => any;
|
|
149
|
+
}
|
|
150
|
+
declare const UseDocumentVisibility: vue0.DefineSetupFnComponent<UseDocumentVisibilityProps, Record<string, never>, SlotsType<UseDocumentVisibilitySlots>, UseDocumentVisibilityProps & {
|
|
151
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
152
|
+
}, vue0.PublicProps>;
|
|
153
|
+
//#endregion
|
|
154
|
+
//#region ../core/useDraggable/component.d.ts
|
|
155
|
+
interface UseDraggableProps extends UseDraggableOptions, RenderableComponent {
|
|
156
|
+
/**
|
|
157
|
+
* When provided, use `useStorage` to preserve element's position
|
|
158
|
+
*/
|
|
159
|
+
storageKey?: string;
|
|
160
|
+
/**
|
|
161
|
+
* Storage type
|
|
162
|
+
*
|
|
163
|
+
* @default 'local'
|
|
164
|
+
*/
|
|
165
|
+
storageType?: 'local' | 'session';
|
|
166
|
+
}
|
|
167
|
+
declare const UseDraggable: vue0.DefineSetupFnComponent<UseDraggableProps, Record<string, never>, SlotsType<any>, UseDraggableProps & {
|
|
168
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
169
|
+
}, vue0.PublicProps>;
|
|
170
|
+
//#endregion
|
|
171
|
+
//#region ../core/useElementBounding/component.d.ts
|
|
172
|
+
interface UseElementBoundingProps extends UseElementBoundingOptions, RenderableComponent {}
|
|
173
|
+
interface UseElementBoundingSlots {
|
|
174
|
+
default: (data: Reactive<UseElementBoundingReturn>) => any;
|
|
175
|
+
}
|
|
176
|
+
declare const UseElementBounding: vue0.DefineSetupFnComponent<UseElementBoundingProps, Record<string, never>, SlotsType<UseElementBoundingSlots>, UseElementBoundingProps & {
|
|
177
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
178
|
+
}, vue0.PublicProps>;
|
|
179
|
+
//#endregion
|
|
180
|
+
//#region ../core/useElementBounding/directive.d.ts
|
|
181
|
+
type ElementBounding = Omit<UseElementBoundingReturn, 'update'>;
|
|
182
|
+
type BindingValueFunction$8 = (bounding: ElementBounding) => void;
|
|
183
|
+
type BindingValueArray$7 = [BindingValueFunction$8, UseElementBoundingOptions];
|
|
184
|
+
declare const vElementBounding: ObjectDirective<HTMLElement, BindingValueFunction$8 | BindingValueArray$7>;
|
|
185
|
+
//#endregion
|
|
186
|
+
//#region ../core/useElementHover/directive.d.ts
|
|
187
|
+
type BindingValueFunction$7 = (state: boolean) => void;
|
|
188
|
+
declare const vElementHover: ObjectDirective<HTMLElement, BindingValueFunction$7 | [handler: BindingValueFunction$7, options: UseElementHoverOptions]>;
|
|
189
|
+
//#endregion
|
|
190
|
+
//#region ../core/useElementSize/component.d.ts
|
|
191
|
+
interface UseElementSizeProps extends Partial<ElementSize>, UseResizeObserverOptions, RenderableComponent {}
|
|
192
|
+
interface UseElementSizeSlots {
|
|
193
|
+
default: (data: Reactive<UseElementSizeReturn>) => any;
|
|
194
|
+
}
|
|
195
|
+
declare const UseElementSize: vue0.DefineSetupFnComponent<UseElementSizeProps, Record<string, never>, SlotsType<UseElementSizeSlots>, UseElementSizeProps & {
|
|
196
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
197
|
+
}, vue0.PublicProps>;
|
|
198
|
+
//#endregion
|
|
199
|
+
//#region ../core/useElementSize/directive.d.ts
|
|
200
|
+
type RemoveFirstFromTuple<T extends any[]> = T['length'] extends 0 ? undefined : (((...b: T) => void) extends ((a: any, ...b: infer I) => void) ? I : []);
|
|
201
|
+
type BindingValueFunction$6 = (size: ElementSize) => void;
|
|
202
|
+
type VElementSizeOptions = RemoveFirstFromTuple<Parameters<typeof useElementSize>>;
|
|
203
|
+
type BindingValueArray$6 = [BindingValueFunction$6, ...VElementSizeOptions];
|
|
204
|
+
declare const vElementSize: ObjectDirective<HTMLElement, BindingValueFunction$6 | BindingValueArray$6>;
|
|
205
|
+
//#endregion
|
|
206
|
+
//#region ../core/useElementVisibility/component.d.ts
|
|
207
|
+
interface UseElementVisibilityProps extends UseElementVisibilityOptions, RenderableComponent {}
|
|
208
|
+
interface UseElementVisibilitySlots {
|
|
209
|
+
default: (data: Reactive<{
|
|
210
|
+
isVisible: UseElementVisibilityReturn;
|
|
211
|
+
}>) => any;
|
|
212
|
+
}
|
|
213
|
+
declare const UseElementVisibility: vue0.DefineSetupFnComponent<UseElementVisibilityProps, Record<string, never>, SlotsType<UseElementVisibilitySlots>, UseElementVisibilityProps & {
|
|
214
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
215
|
+
}, vue0.PublicProps>;
|
|
216
|
+
//#endregion
|
|
217
|
+
//#region ../core/useElementVisibility/directive.d.ts
|
|
218
|
+
type BindingValueFunction$5 = (state: boolean) => void;
|
|
219
|
+
type BindingValueArray$5 = [BindingValueFunction$5, UseElementVisibilityOptions];
|
|
220
|
+
declare const vElementVisibility: ObjectDirective<HTMLElement, BindingValueFunction$5 | BindingValueArray$5>;
|
|
221
|
+
//#endregion
|
|
222
|
+
//#region ../core/useEyeDropper/component.d.ts
|
|
223
|
+
interface UseEyeDropperProps extends UseEyeDropperOptions {}
|
|
224
|
+
interface UseEyeDropperSlots {
|
|
225
|
+
default: (data: Reactive<UseEyeDropperReturn>) => any;
|
|
226
|
+
}
|
|
227
|
+
declare const UseEyeDropper: vue0.DefineSetupFnComponent<UseEyeDropperProps, Record<string, never>, SlotsType<UseEyeDropperSlots>, UseEyeDropperProps & {
|
|
228
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
229
|
+
}, vue0.PublicProps>;
|
|
230
|
+
//#endregion
|
|
231
|
+
//#region ../core/useFullscreen/component.d.ts
|
|
232
|
+
interface UseFullscreenProps extends UseFullscreenOptions, RenderableComponent {}
|
|
233
|
+
interface UseFullscreenSlots {
|
|
234
|
+
default: (data: Reactive<UseFullscreenReturn>) => any;
|
|
235
|
+
}
|
|
236
|
+
declare const UseFullscreen: vue0.DefineSetupFnComponent<UseFullscreenProps, Record<string, never>, SlotsType<UseFullscreenSlots>, UseFullscreenProps & {
|
|
237
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
238
|
+
}, vue0.PublicProps>;
|
|
239
|
+
//#endregion
|
|
240
|
+
//#region ../core/useGeolocation/component.d.ts
|
|
241
|
+
interface UseGeolocationProps extends UseGeolocationOptions {}
|
|
242
|
+
interface UseGeolocationSlots {
|
|
243
|
+
default: (data: Reactive<UseGeolocationReturn>) => any;
|
|
244
|
+
}
|
|
245
|
+
declare const UseGeolocation: vue0.DefineSetupFnComponent<UseGeolocationProps, Record<string, never>, SlotsType<UseGeolocationSlots>, UseGeolocationProps & {
|
|
246
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
247
|
+
}, vue0.PublicProps>;
|
|
248
|
+
//#endregion
|
|
249
|
+
//#region ../core/useIdle/component.d.ts
|
|
250
|
+
interface UseIdleProps extends UseIdleOptions {
|
|
251
|
+
timeout: number;
|
|
252
|
+
}
|
|
253
|
+
interface UseIdleSlots {
|
|
254
|
+
default: (data: Reactive<UseIdleReturn>) => any;
|
|
255
|
+
}
|
|
256
|
+
declare const UseIdle: vue0.DefineSetupFnComponent<UseIdleProps, Record<string, never>, SlotsType<UseIdleSlots>, UseIdleProps & {
|
|
257
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
258
|
+
}, vue0.PublicProps>;
|
|
259
|
+
//#endregion
|
|
260
|
+
//#region ../core/types.d.ts
|
|
261
|
+
interface RenderableComponent$1 {
|
|
262
|
+
/**
|
|
263
|
+
* The element that the component should be rendered as
|
|
264
|
+
*
|
|
265
|
+
* @default 'div'
|
|
266
|
+
*/
|
|
267
|
+
as?: object | string;
|
|
268
|
+
}
|
|
269
|
+
//#endregion
|
|
270
|
+
//#region ../core/useImage/component.d.ts
|
|
271
|
+
interface UseImageProps extends UseImageOptions, RenderableComponent$1 {}
|
|
272
|
+
interface UseImageSlots {
|
|
273
|
+
default: (data: Reactive<UseImageReturn>) => any;
|
|
274
|
+
loading: (data: Reactive<UseImageReturn>) => any;
|
|
275
|
+
error: (data: UnwrapRef<UseImageReturn['error']>) => any;
|
|
276
|
+
}
|
|
277
|
+
declare const UseImage: vue0.DefineSetupFnComponent<UseImageProps, Record<string, never>, SlotsType<UseImageSlots>, UseImageProps & {
|
|
278
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
279
|
+
}, vue0.PublicProps>;
|
|
280
|
+
//#endregion
|
|
281
|
+
//#region ../core/useInfiniteScroll/directive.d.ts
|
|
282
|
+
type BindingValueFunction$4 = Parameters<typeof useInfiniteScroll>[1];
|
|
283
|
+
type BindingValueArray$4 = [BindingValueFunction$4, UseInfiniteScrollOptions];
|
|
284
|
+
declare const vInfiniteScroll: ObjectDirective<HTMLElement, BindingValueFunction$4 | BindingValueArray$4>;
|
|
285
|
+
//#endregion
|
|
286
|
+
//#region ../core/useIntersectionObserver/directive.d.ts
|
|
287
|
+
type BindingValueFunction$3 = IntersectionObserverCallback;
|
|
288
|
+
type BindingValueArray$3 = [BindingValueFunction$3, UseIntersectionObserverOptions];
|
|
289
|
+
declare const vIntersectionObserver: ObjectDirective<HTMLElement, BindingValueFunction$3 | BindingValueArray$3>;
|
|
290
|
+
//#endregion
|
|
291
|
+
//#region ../core/useMouse/component.d.ts
|
|
292
|
+
interface UseMouseProps extends UseMouseOptions {}
|
|
293
|
+
interface UseMouseSlots {
|
|
294
|
+
default: (data: Reactive<UseMouseReturn>) => any;
|
|
295
|
+
}
|
|
296
|
+
declare const UseMouse: vue0.DefineSetupFnComponent<UseMouseProps, Record<string, never>, SlotsType<UseMouseSlots>, UseMouseProps & {
|
|
297
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
298
|
+
}, vue0.PublicProps>;
|
|
299
|
+
//#endregion
|
|
300
|
+
//#region ../core/useMouseInElement/component.d.ts
|
|
301
|
+
interface UseMouseInElementProps extends MouseInElementOptions, RenderableComponent {}
|
|
302
|
+
interface UseMouseInElementSlots {
|
|
303
|
+
default: (data: Reactive<UseMouseInElementReturn>) => any;
|
|
304
|
+
}
|
|
305
|
+
declare const UseMouseInElement: vue0.DefineSetupFnComponent<UseMouseInElementProps, Record<string, never>, SlotsType<UseMouseInElementSlots>, UseMouseInElementProps & {
|
|
306
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
307
|
+
}, vue0.PublicProps>;
|
|
308
|
+
//#endregion
|
|
309
|
+
//#region ../core/useMouseInElement/directive.d.ts
|
|
310
|
+
type MouseInElement = Omit<UseMouseInElementReturn, 'stop'>;
|
|
311
|
+
type BindingValueFunction$2 = (mouse: Reactive<MouseInElement>) => void;
|
|
312
|
+
type BindingValueArray$2 = [BindingValueFunction$2, MouseInElementOptions];
|
|
313
|
+
declare const vMouseInElement: ObjectDirective<HTMLElement, BindingValueFunction$2 | BindingValueArray$2>;
|
|
314
|
+
//#endregion
|
|
315
|
+
//#region ../core/useMousePressed/component.d.ts
|
|
316
|
+
interface UseMousePressedProps extends Omit<MousePressedOptions, 'target'>, RenderableComponent {}
|
|
317
|
+
interface UseMousePressedSlots {
|
|
318
|
+
default: (data: Reactive<UseMousePressedReturn>) => any;
|
|
319
|
+
}
|
|
320
|
+
declare const UseMousePressed: vue0.DefineSetupFnComponent<UseMousePressedProps, Record<string, never>, SlotsType<UseMousePressedSlots>, UseMousePressedProps & {
|
|
321
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
322
|
+
}, vue0.PublicProps>;
|
|
323
|
+
//#endregion
|
|
324
|
+
//#region ../core/useNetwork/component.d.ts
|
|
325
|
+
interface UseNetworkProps extends ConfigurableWindow {}
|
|
326
|
+
interface UseNetworkSlots {
|
|
327
|
+
default: (data: Reactive<UseNetworkReturn>) => any;
|
|
328
|
+
}
|
|
329
|
+
declare const UseNetwork: vue0.DefineSetupFnComponent<UseNetworkProps, Record<string, never>, SlotsType<UseNetworkSlots>, UseNetworkProps & {
|
|
330
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
331
|
+
}, vue0.PublicProps>;
|
|
332
|
+
//#endregion
|
|
333
|
+
//#region ../core/useNow/component.d.ts
|
|
334
|
+
interface UseNowProps extends Omit<UseNowOptions<true>, 'controls'> {}
|
|
335
|
+
interface UseNowSlots {
|
|
336
|
+
default: (data: Reactive<UseNowReturn>) => any;
|
|
337
|
+
}
|
|
338
|
+
declare const UseNow: vue0.DefineSetupFnComponent<UseNowProps, Record<string, never>, SlotsType<UseNowSlots>, UseNowProps & {
|
|
339
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
340
|
+
}, vue0.PublicProps>;
|
|
341
|
+
//#endregion
|
|
342
|
+
//#region ../core/useObjectUrl/component.d.ts
|
|
343
|
+
interface UseObjectUrlProps {
|
|
344
|
+
object: Blob | MediaSource | undefined;
|
|
345
|
+
}
|
|
346
|
+
interface UseObjectUrlSlots {
|
|
347
|
+
default: (data: Readonly<string | undefined>) => any;
|
|
348
|
+
}
|
|
349
|
+
declare const UseObjectUrl: vue0.DefineSetupFnComponent<UseObjectUrlProps, Record<string, never>, SlotsType<UseObjectUrlSlots>, UseObjectUrlProps & {
|
|
350
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
351
|
+
}, vue0.PublicProps>;
|
|
352
|
+
//#endregion
|
|
353
|
+
//#region ../core/useOffsetPagination/component.d.ts
|
|
354
|
+
interface UseOffsetPaginationProps extends UseOffsetPaginationOptions {}
|
|
355
|
+
type UseOffsetPaginationEmits = {
|
|
356
|
+
'page-change': (...args: Parameters<NonNullable<UseOffsetPaginationOptions['onPageChange']>>) => void;
|
|
357
|
+
'page-size-change': (...args: Parameters<NonNullable<UseOffsetPaginationOptions['onPageSizeChange']>>) => void;
|
|
358
|
+
'page-count-change': (...args: Parameters<NonNullable<UseOffsetPaginationOptions['onPageCountChange']>>) => void;
|
|
359
|
+
};
|
|
360
|
+
interface UseOffsetPaginationSlots {
|
|
361
|
+
default: (data: Reactive<UseOffsetPaginationReturn>) => any;
|
|
362
|
+
}
|
|
363
|
+
declare const UseOffsetPagination: vue0.DefineSetupFnComponent<UseOffsetPaginationProps, UseOffsetPaginationEmits, SlotsType<UseOffsetPaginationSlots>, UseOffsetPaginationProps & {
|
|
364
|
+
"onPage-change"?: ((returnValue: {
|
|
365
|
+
currentPage: number;
|
|
366
|
+
currentPageSize: number;
|
|
367
|
+
pageCount: number;
|
|
368
|
+
isFirstPage: boolean;
|
|
369
|
+
isLastPage: boolean;
|
|
370
|
+
prev: () => void;
|
|
371
|
+
next: () => void;
|
|
372
|
+
}) => any) | undefined;
|
|
373
|
+
"onPage-size-change"?: ((returnValue: {
|
|
374
|
+
currentPage: number;
|
|
375
|
+
currentPageSize: number;
|
|
376
|
+
pageCount: number;
|
|
377
|
+
isFirstPage: boolean;
|
|
378
|
+
isLastPage: boolean;
|
|
379
|
+
prev: () => void;
|
|
380
|
+
next: () => void;
|
|
381
|
+
}) => any) | undefined;
|
|
382
|
+
"onPage-count-change"?: ((returnValue: {
|
|
383
|
+
currentPage: number;
|
|
384
|
+
currentPageSize: number;
|
|
385
|
+
pageCount: number;
|
|
386
|
+
isFirstPage: boolean;
|
|
387
|
+
isLastPage: boolean;
|
|
388
|
+
prev: () => void;
|
|
389
|
+
next: () => void;
|
|
390
|
+
}) => any) | undefined;
|
|
391
|
+
}, vue0.PublicProps>;
|
|
392
|
+
//#endregion
|
|
393
|
+
//#region ../core/useOnline/component.d.ts
|
|
394
|
+
interface UseOnlineProps extends ConfigurableWindow {}
|
|
395
|
+
interface UseOnlineSlots {
|
|
396
|
+
default: (data: Reactive<{
|
|
397
|
+
isOnline: UseNetworkReturn['isOnline'];
|
|
398
|
+
}>) => any;
|
|
399
|
+
}
|
|
400
|
+
declare const UseOnline: vue0.DefineSetupFnComponent<UseOnlineProps, Record<string, never>, SlotsType<UseOnlineSlots>, UseOnlineProps & {
|
|
401
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
402
|
+
}, vue0.PublicProps>;
|
|
403
|
+
//#endregion
|
|
404
|
+
//#region ../core/usePageLeave/component.d.ts
|
|
405
|
+
interface UsePageLeaveProps extends ConfigurableWindow {}
|
|
406
|
+
interface UsePageLeaveSlots {
|
|
407
|
+
default: (data: Reactive<{
|
|
408
|
+
isLeft: UsePageLeaveReturn;
|
|
409
|
+
}>) => any;
|
|
410
|
+
}
|
|
411
|
+
declare const UsePageLeave: vue0.DefineSetupFnComponent<UsePageLeaveProps, Record<string, never>, SlotsType<UsePageLeaveSlots>, UsePageLeaveProps & {
|
|
412
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
413
|
+
}, vue0.PublicProps>;
|
|
414
|
+
//#endregion
|
|
415
|
+
//#region ../core/usePointer/component.d.ts
|
|
416
|
+
interface UsePointerProps extends Omit<UsePointerOptions, 'target'> {
|
|
417
|
+
target?: 'window' | 'self';
|
|
418
|
+
}
|
|
419
|
+
interface UsePointerSlots {
|
|
420
|
+
default: (data: Reactive<UsePointerReturn>) => any;
|
|
421
|
+
}
|
|
422
|
+
declare const UsePointer: vue0.DefineSetupFnComponent<UsePointerProps, Record<string, never>, SlotsType<UsePointerSlots>, UsePointerProps & {
|
|
423
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
424
|
+
}, vue0.PublicProps>;
|
|
425
|
+
//#endregion
|
|
426
|
+
//#region ../core/usePointerLock/component.d.ts
|
|
427
|
+
interface UsePointerLockProps extends RenderableComponent, UsePointerLockOptions {}
|
|
428
|
+
interface UsePointerLockSlots {
|
|
429
|
+
default: (data: Reactive<UsePointerLockReturn>) => any;
|
|
430
|
+
}
|
|
431
|
+
declare const UsePointerLock: vue0.DefineSetupFnComponent<UsePointerLockProps, Record<string, never>, SlotsType<UsePointerLockSlots>, UsePointerLockProps & {
|
|
432
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
433
|
+
}, vue0.PublicProps>;
|
|
434
|
+
//#endregion
|
|
435
|
+
//#region ../core/usePreferredColorScheme/component.d.ts
|
|
436
|
+
interface UsePreferredColorSchemeProps extends ConfigurableWindow {}
|
|
437
|
+
interface UsePreferredColorSchemeSlots {
|
|
438
|
+
default: (data: Reactive<{
|
|
439
|
+
colorScheme: ComputedRef<ColorSchemeType>;
|
|
440
|
+
}>) => any;
|
|
441
|
+
}
|
|
442
|
+
declare const UsePreferredColorScheme: vue0.DefineSetupFnComponent<UsePreferredColorSchemeProps, Record<string, never>, SlotsType<UsePreferredColorSchemeSlots>, UsePreferredColorSchemeProps & {
|
|
443
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
444
|
+
}, vue0.PublicProps>;
|
|
445
|
+
//#endregion
|
|
446
|
+
//#region ../core/usePreferredContrast/component.d.ts
|
|
447
|
+
interface UsePreferredContrastProps extends ConfigurableWindow {}
|
|
448
|
+
interface UsePreferredContrastSlots {
|
|
449
|
+
default: (data: Reactive<{
|
|
450
|
+
contrast: ComputedRef<ContrastType>;
|
|
451
|
+
}>) => any;
|
|
452
|
+
}
|
|
453
|
+
declare const UsePreferredContrast: vue0.DefineSetupFnComponent<UsePreferredContrastProps, Record<string, never>, SlotsType<UsePreferredContrastSlots>, UsePreferredContrastProps & {
|
|
454
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
455
|
+
}, vue0.PublicProps>;
|
|
456
|
+
//#endregion
|
|
457
|
+
//#region ../core/usePreferredDark/component.d.ts
|
|
458
|
+
interface UsePreferredDarkProps extends ConfigurableWindow {}
|
|
459
|
+
interface UsePreferredDarkSlots {
|
|
460
|
+
default: (data: Reactive<{
|
|
461
|
+
prefersDark: ComputedRef<boolean>;
|
|
462
|
+
}>) => any;
|
|
463
|
+
}
|
|
464
|
+
declare const UsePreferredDark: vue0.DefineSetupFnComponent<UsePreferredDarkProps, Record<string, never>, SlotsType<UsePreferredDarkSlots>, UsePreferredDarkProps & {
|
|
465
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
466
|
+
}, vue0.PublicProps>;
|
|
467
|
+
//#endregion
|
|
468
|
+
//#region ../core/usePreferredLanguages/component.d.ts
|
|
469
|
+
interface UsePreferredLanguagesProps extends ConfigurableWindow {}
|
|
470
|
+
interface UsePreferredLanguagesSlots {
|
|
471
|
+
default: (data: Reactive<{
|
|
472
|
+
languages: Ref<readonly string[]>;
|
|
473
|
+
}>) => any;
|
|
474
|
+
}
|
|
475
|
+
declare const UsePreferredLanguages: vue0.DefineSetupFnComponent<UsePreferredLanguagesProps, Record<string, never>, SlotsType<UsePreferredLanguagesSlots>, UsePreferredLanguagesProps & {
|
|
476
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
477
|
+
}, vue0.PublicProps>;
|
|
478
|
+
//#endregion
|
|
479
|
+
//#region ../core/usePreferredReducedMotion/component.d.ts
|
|
480
|
+
interface UsePreferredReducedMotionProps extends ConfigurableWindow {}
|
|
481
|
+
interface UsePreferredReducedMotionSlots {
|
|
482
|
+
default: (data: Reactive<{
|
|
483
|
+
motion: ComputedRef<ReducedMotionType>;
|
|
484
|
+
}>) => any;
|
|
485
|
+
}
|
|
486
|
+
declare const UsePreferredReducedMotion: vue0.DefineSetupFnComponent<UsePreferredReducedMotionProps, Record<string, never>, SlotsType<UsePreferredReducedMotionSlots>, UsePreferredReducedMotionProps & {
|
|
487
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
488
|
+
}, vue0.PublicProps>;
|
|
489
|
+
//#endregion
|
|
490
|
+
//#region ../core/usePreferredReducedTransparency/component.d.ts
|
|
491
|
+
declare const UsePreferredReducedTransparency: vue0.DefineComponent<{}, () => vue0.VNode<vue0.RendererNode, vue0.RendererElement, {
|
|
492
|
+
[key: string]: any;
|
|
493
|
+
}>[] | undefined, {}, {}, {}, vue0.ComponentOptionsMixin, vue0.ComponentOptionsMixin, {}, string, vue0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue0.ComponentProvideOptions, true, {}, any>;
|
|
494
|
+
//#endregion
|
|
495
|
+
//#region ../core/useResizeObserver/directive.d.ts
|
|
496
|
+
type BindingValueFunction$1 = ResizeObserverCallback;
|
|
497
|
+
type BindingValueArray$1 = [BindingValueFunction$1, UseResizeObserverOptions];
|
|
498
|
+
declare const vResizeObserver: ObjectDirective<HTMLElement, BindingValueFunction$1 | BindingValueArray$1>;
|
|
499
|
+
//#endregion
|
|
500
|
+
//#region ../core/useScreenSafeArea/component.d.ts
|
|
501
|
+
interface UseScreenSafeAreaProps extends RenderableComponent {
|
|
502
|
+
top?: boolean;
|
|
503
|
+
right?: boolean;
|
|
504
|
+
bottom?: boolean;
|
|
505
|
+
left?: boolean;
|
|
506
|
+
}
|
|
507
|
+
interface UseScreenSafeAreaSlots {
|
|
508
|
+
default: (data: Reactive<UseScreenSafeAreaReturn>) => any;
|
|
509
|
+
}
|
|
510
|
+
declare const UseScreenSafeArea: vue0.DefineSetupFnComponent<UseScreenSafeAreaProps, Record<string, never>, SlotsType<UseScreenSafeAreaSlots>, UseScreenSafeAreaProps & {
|
|
511
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
512
|
+
}, vue0.PublicProps>;
|
|
513
|
+
//#endregion
|
|
514
|
+
//#region ../core/useScroll/directive.d.ts
|
|
515
|
+
type BindingValueFunction = (state: UseScrollReturn) => void;
|
|
516
|
+
type BindingValueArray = [BindingValueFunction, UseScrollOptions];
|
|
517
|
+
declare const vScroll: ObjectDirective<HTMLElement, BindingValueFunction | BindingValueArray>;
|
|
518
|
+
//#endregion
|
|
519
|
+
//#region ../core/useScrollLock/directive.d.ts
|
|
520
|
+
declare const vScrollLock: FunctionDirective<HTMLElement, boolean>;
|
|
521
|
+
//#endregion
|
|
522
|
+
//#region ../core/useTimeAgo/component.d.ts
|
|
523
|
+
interface UseTimeAgoProps extends Omit<UseTimeAgoOptions<true>, 'controls'> {
|
|
524
|
+
time: MaybeRef<Date | number | string>;
|
|
525
|
+
}
|
|
526
|
+
interface UseTimeAgoSlots {
|
|
527
|
+
default: (data: Reactive<UseTimeAgoReturn<true>>) => any;
|
|
528
|
+
}
|
|
529
|
+
declare const UseTimeAgo: vue0.DefineSetupFnComponent<UseTimeAgoProps, Record<string, never>, SlotsType<UseTimeAgoSlots>, UseTimeAgoProps & {
|
|
530
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
531
|
+
}, vue0.PublicProps>;
|
|
532
|
+
//#endregion
|
|
533
|
+
//#region ../core/useTimestamp/component.d.ts
|
|
534
|
+
interface UseTimestampProps extends Omit<UseTimestampOptions<true>, 'controls'> {}
|
|
535
|
+
interface UseTimestampSlots {
|
|
536
|
+
default: (data: Reactive<UseTimestampReturn>) => any;
|
|
537
|
+
}
|
|
538
|
+
declare const UseTimestamp: vue0.DefineSetupFnComponent<UseTimestampProps, Record<string, never>, SlotsType<UseTimestampSlots>, UseTimestampProps & {
|
|
539
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
540
|
+
}, vue0.PublicProps>;
|
|
541
|
+
//#endregion
|
|
542
|
+
//#region ../core/useVirtualList/component.d.ts
|
|
543
|
+
interface UseVirtualListProps {
|
|
544
|
+
/**
|
|
545
|
+
* data of scrollable list
|
|
546
|
+
*
|
|
547
|
+
* @default []
|
|
548
|
+
*/
|
|
549
|
+
list: Array<any>;
|
|
550
|
+
/**
|
|
551
|
+
* useVirtualList's options
|
|
552
|
+
*
|
|
553
|
+
* @default {}
|
|
554
|
+
*/
|
|
555
|
+
options: UseVirtualListOptions;
|
|
556
|
+
/**
|
|
557
|
+
* virtualList's height
|
|
558
|
+
*
|
|
559
|
+
* @default 300px
|
|
560
|
+
*/
|
|
561
|
+
height: string;
|
|
562
|
+
}
|
|
563
|
+
declare const UseVirtualList: vue0.DefineSetupFnComponent<UseVirtualListProps, {}, {}, UseVirtualListProps & {}, vue0.PublicProps>;
|
|
564
|
+
//#endregion
|
|
565
|
+
//#region ../core/useWindowFocus/component.d.ts
|
|
566
|
+
interface UseWindowFocusProps extends ConfigurableWindow {}
|
|
567
|
+
interface UseWindowFocusSlots {
|
|
568
|
+
default: (data: Reactive<{
|
|
569
|
+
focused: ShallowRef<boolean>;
|
|
570
|
+
}>) => any;
|
|
571
|
+
}
|
|
572
|
+
declare const UseWindowFocus: vue0.DefineSetupFnComponent<UseWindowFocusProps, Record<string, never>, SlotsType<UseWindowFocusSlots>, UseWindowFocusProps & {
|
|
573
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
574
|
+
}, vue0.PublicProps>;
|
|
575
|
+
//#endregion
|
|
576
|
+
//#region ../core/useWindowSize/component.d.ts
|
|
577
|
+
interface UseWindowSizeProps extends UseWindowSizeOptions {}
|
|
578
|
+
interface UseWindowSizeSlots {
|
|
579
|
+
default: (data: Reactive<UseWindowSizeReturn>) => any;
|
|
580
|
+
}
|
|
581
|
+
declare const UseWindowSize: vue0.DefineSetupFnComponent<UseWindowSizeProps, Record<string, never>, SlotsType<UseWindowSizeSlots>, UseWindowSizeProps & {
|
|
582
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
583
|
+
}, vue0.PublicProps>;
|
|
584
|
+
//#endregion
|
|
585
|
+
export { OnClickOutside, OnClickOutsideEmits, OnClickOutsideProps, OnLongPress, OnLongPressEmits, OnLongPressProps, UseActiveElement, UseActiveElementProps, UseBattery, UseBatteryProps, UseBrowserLocation, UseClipboard, UseClipboardProps, UseColorMode, UseColorModeProps, UseDark, UseDarkProps, UseDeviceMotion, UseDeviceMotionProps, UseDeviceOrientation, UseDeviceOrientationProps, UseDevicePixelRatio, UseDevicePixelRatioProps, UseDevicesList, UseDevicesListProps, UseDocumentVisibility, UseDocumentVisibilityProps, UseDraggable, UseDraggableProps, UseElementBounding, UseElementBoundingProps, UseElementSize, UseElementSizeProps, UseElementVisibility, UseElementVisibilityProps, UseEyeDropper, UseEyeDropperProps, UseFullscreen, UseFullscreenProps, UseGeolocation, UseGeolocationProps, UseIdle, UseIdleProps, UseImage, UseImageProps, UseMouse, UseMouseInElement, UseMouseInElementProps, UseMousePressed, UseMousePressedProps, UseMouseProps, UseNetwork, UseNetworkProps, UseNow, UseNowProps, UseObjectUrl, UseObjectUrlProps, UseOffsetPagination, UseOffsetPaginationEmits, UseOffsetPaginationProps, UseOnline, UseOnlineProps, UsePageLeave, UsePageLeaveProps, UsePointer, UsePointerLock, UsePointerLockProps, UsePointerProps, UsePreferredColorScheme, UsePreferredColorSchemeProps, UsePreferredContrast, UsePreferredContrastProps, UsePreferredDark, UsePreferredDarkProps, UsePreferredLanguages, UsePreferredLanguagesProps, UsePreferredReducedMotion, UsePreferredReducedMotionProps, UsePreferredReducedTransparency, UseScreenSafeArea, UseScreenSafeAreaProps, UseTimeAgo, UseTimeAgoProps, UseTimestamp, UseTimestampProps, UseVirtualList, UseVirtualListProps, UseWindowFocus, UseWindowFocusProps, UseWindowSize, UseWindowSizeProps, vOnClickOutside as VOnClickOutside, vOnClickOutside, vOnLongPress as VOnLongPress, vOnLongPress, vElementBounding, vElementHover, vElementSize, vElementVisibility, vInfiniteScroll, vIntersectionObserver, vMouseInElement, vOnKeyStroke, vResizeObserver, vScroll, vScrollLock };
|