@reause/metadata 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/index.d.ts +72 -0
- package/dist/index.js +4587 -0
- package/package.json +22 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,4587 @@
|
|
|
1
|
+
//#region ../../meta/packages.ts
|
|
2
|
+
const packages = [
|
|
3
|
+
{
|
|
4
|
+
name: "shared",
|
|
5
|
+
display: "@reause/shared",
|
|
6
|
+
description: "Shared utilities for reause — 1:1 React port of @vueuse/shared"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
name: "core",
|
|
10
|
+
display: "@reause/core",
|
|
11
|
+
description: "Core React hooks — 1:1 React port of @vueuse/core"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: "integrations",
|
|
15
|
+
display: "@reause/integrations",
|
|
16
|
+
description: "Integration wrappers for reause — 1:1 React port of @vueuse/integrations",
|
|
17
|
+
addon: true,
|
|
18
|
+
submodules: true,
|
|
19
|
+
external: [
|
|
20
|
+
"async-validator",
|
|
21
|
+
"axios",
|
|
22
|
+
"change-case",
|
|
23
|
+
"drauu",
|
|
24
|
+
"focus-trap",
|
|
25
|
+
"fuse.js",
|
|
26
|
+
"idb-keyval",
|
|
27
|
+
"jwt-decode",
|
|
28
|
+
"nprogress",
|
|
29
|
+
"qrcode",
|
|
30
|
+
"sortablejs",
|
|
31
|
+
"universal-cookie",
|
|
32
|
+
"node:http"
|
|
33
|
+
],
|
|
34
|
+
globals: {
|
|
35
|
+
"axios": "axios",
|
|
36
|
+
"universal-cookie": "UniversalCookie",
|
|
37
|
+
"qrcode": "QRCode",
|
|
38
|
+
"nprogress": "nprogress",
|
|
39
|
+
"jwt-decode": "jwt_decode",
|
|
40
|
+
"focus-trap": "focusTrap",
|
|
41
|
+
"drauu": "Drauu",
|
|
42
|
+
"fuse.js": "Fuse",
|
|
43
|
+
"change-case": "changeCase",
|
|
44
|
+
"async-validator": "AsyncValidator",
|
|
45
|
+
"idb-keyval": "idbKeyval",
|
|
46
|
+
"sortablejs": "Sortable"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
name: "math",
|
|
51
|
+
display: "@reause/math",
|
|
52
|
+
description: "Math functions for reause — 1:1 React port of @vueuse/math",
|
|
53
|
+
addon: true
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
name: "rxjs",
|
|
57
|
+
display: "@reause/rxjs",
|
|
58
|
+
description: "RxJS reactive functions for reause — React port of @vueuse/rxjs",
|
|
59
|
+
addon: true,
|
|
60
|
+
external: ["rxjs", "rxjs/operators"],
|
|
61
|
+
globals: {
|
|
62
|
+
"rxjs": "rxjs",
|
|
63
|
+
"rxjs/operators": "rxjs.operator"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "firebase",
|
|
68
|
+
display: "@reause/firebase",
|
|
69
|
+
description: "Realtime bindings for Firebase — React port of @vueuse/firebase",
|
|
70
|
+
addon: true,
|
|
71
|
+
submodules: true,
|
|
72
|
+
external: [
|
|
73
|
+
"firebase",
|
|
74
|
+
"firebase/auth",
|
|
75
|
+
"firebase/database"
|
|
76
|
+
],
|
|
77
|
+
globals: {
|
|
78
|
+
"firebase": "firebase",
|
|
79
|
+
"firebase/auth": "firebase",
|
|
80
|
+
"firebase/database": "firebase"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
name: "electron",
|
|
85
|
+
display: "@reause/electron",
|
|
86
|
+
description: "Electron renderer process modules — React port of @vueuse/electron",
|
|
87
|
+
addon: true,
|
|
88
|
+
external: ["electron"],
|
|
89
|
+
iife: false
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
name: "metadata",
|
|
93
|
+
display: "@reause/metadata",
|
|
94
|
+
description: "Metadata for reause functions — 1:1 React port of @vueuse/metadata",
|
|
95
|
+
manualImport: true,
|
|
96
|
+
iife: false,
|
|
97
|
+
utils: true,
|
|
98
|
+
target: "node14"
|
|
99
|
+
}
|
|
100
|
+
];
|
|
101
|
+
//#endregion
|
|
102
|
+
//#region src/functions.ts
|
|
103
|
+
const functions = [
|
|
104
|
+
{
|
|
105
|
+
name: "assert",
|
|
106
|
+
file: "packages/shared/utils/index.tsx",
|
|
107
|
+
pkg: "shared",
|
|
108
|
+
dir: "utils",
|
|
109
|
+
category: "Utilities",
|
|
110
|
+
lastUpdated: 1789147565e3
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name: "breakpointsAntDesign",
|
|
114
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
115
|
+
pkg: "core",
|
|
116
|
+
dir: "useBreakpoints",
|
|
117
|
+
category: "Browser",
|
|
118
|
+
lastUpdated: 1789147565e3
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
name: "breakpointsBootstrapV5",
|
|
122
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
123
|
+
pkg: "core",
|
|
124
|
+
dir: "useBreakpoints",
|
|
125
|
+
category: "Browser",
|
|
126
|
+
lastUpdated: 1789147565e3
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
name: "breakpointsElement",
|
|
130
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
131
|
+
pkg: "core",
|
|
132
|
+
dir: "useBreakpoints",
|
|
133
|
+
category: "Browser",
|
|
134
|
+
lastUpdated: 1789147565e3
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
name: "breakpointsMasterCss",
|
|
138
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
139
|
+
pkg: "core",
|
|
140
|
+
dir: "useBreakpoints",
|
|
141
|
+
category: "Browser",
|
|
142
|
+
lastUpdated: 1789147565e3
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
name: "breakpointsPrimeFlex",
|
|
146
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
147
|
+
pkg: "core",
|
|
148
|
+
dir: "useBreakpoints",
|
|
149
|
+
category: "Browser",
|
|
150
|
+
lastUpdated: 1789147565e3
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
name: "breakpointsQuasar",
|
|
154
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
155
|
+
pkg: "core",
|
|
156
|
+
dir: "useBreakpoints",
|
|
157
|
+
category: "Browser",
|
|
158
|
+
lastUpdated: 1789147565e3
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
name: "breakpointsSematic",
|
|
162
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
163
|
+
pkg: "core",
|
|
164
|
+
dir: "useBreakpoints",
|
|
165
|
+
category: "Browser",
|
|
166
|
+
lastUpdated: 1789147565e3
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
name: "breakpointsTailwind",
|
|
170
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
171
|
+
pkg: "core",
|
|
172
|
+
dir: "useBreakpoints",
|
|
173
|
+
category: "Browser",
|
|
174
|
+
lastUpdated: 1789147565e3
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
name: "breakpointsVuetify",
|
|
178
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
179
|
+
pkg: "core",
|
|
180
|
+
dir: "useBreakpoints",
|
|
181
|
+
category: "Browser",
|
|
182
|
+
lastUpdated: 1789147565e3
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
name: "breakpointsVuetifyV2",
|
|
186
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
187
|
+
pkg: "core",
|
|
188
|
+
dir: "useBreakpoints",
|
|
189
|
+
category: "Browser",
|
|
190
|
+
lastUpdated: 1789147565e3
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
name: "breakpointsVuetifyV3",
|
|
194
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
195
|
+
pkg: "core",
|
|
196
|
+
dir: "useBreakpoints",
|
|
197
|
+
category: "Browser",
|
|
198
|
+
lastUpdated: 1789147565e3
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
name: "clamp",
|
|
202
|
+
file: "packages/shared/utils/index.tsx",
|
|
203
|
+
pkg: "shared",
|
|
204
|
+
dir: "utils",
|
|
205
|
+
category: "Utilities",
|
|
206
|
+
lastUpdated: 1789147565e3
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
name: "cloneFnJSON",
|
|
210
|
+
file: "packages/core/useCloned/index.tsx",
|
|
211
|
+
pkg: "core",
|
|
212
|
+
dir: "useCloned",
|
|
213
|
+
category: "Utilities",
|
|
214
|
+
lastUpdated: 1789147565e3
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
name: "createCookies",
|
|
218
|
+
file: "packages/integrations/useCookies/index.tsx",
|
|
219
|
+
pkg: "integrations",
|
|
220
|
+
dir: "useCookies",
|
|
221
|
+
category: "@Integrations",
|
|
222
|
+
lastUpdated: 1788976915e3
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
name: "createEventHook",
|
|
226
|
+
file: "packages/shared/createEventHook/index.tsx",
|
|
227
|
+
pkg: "shared",
|
|
228
|
+
dir: "createEventHook",
|
|
229
|
+
category: "Utilities",
|
|
230
|
+
lastUpdated: 17889921e5
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
name: "createFetch",
|
|
234
|
+
file: "packages/core/useFetch/index.tsx",
|
|
235
|
+
pkg: "core",
|
|
236
|
+
dir: "useFetch",
|
|
237
|
+
category: "Network",
|
|
238
|
+
lastUpdated: 1789147565e3
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
name: "createGenericProjection",
|
|
242
|
+
file: "packages/math/createGenericProjection/index.tsx",
|
|
243
|
+
pkg: "math",
|
|
244
|
+
dir: "createGenericProjection",
|
|
245
|
+
category: "@Math",
|
|
246
|
+
lastUpdated: 1788958332e3
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
name: "createGlobalState",
|
|
250
|
+
file: "packages/shared/createGlobalState/index.tsx",
|
|
251
|
+
pkg: "shared",
|
|
252
|
+
dir: "createGlobalState",
|
|
253
|
+
category: "State",
|
|
254
|
+
lastUpdated: 1789010295e3
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
name: "createInjectionState",
|
|
258
|
+
file: "packages/shared/createInjectionState/index.tsx",
|
|
259
|
+
pkg: "shared",
|
|
260
|
+
dir: "createInjectionState",
|
|
261
|
+
category: "State",
|
|
262
|
+
lastUpdated: 1788958778e3
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
name: "createPortalSlot",
|
|
266
|
+
file: "packages/core/createPortalSlot/index.tsx",
|
|
267
|
+
pkg: "core",
|
|
268
|
+
dir: "createPortalSlot",
|
|
269
|
+
category: "Component",
|
|
270
|
+
lastUpdated: 1789147565e3
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
name: "createProjection",
|
|
274
|
+
file: "packages/math/createProjection/index.tsx",
|
|
275
|
+
pkg: "math",
|
|
276
|
+
dir: "createProjection",
|
|
277
|
+
category: "@Math",
|
|
278
|
+
lastUpdated: 1788958332e3
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
name: "createPromisifiedComponent",
|
|
282
|
+
file: "packages/core/createPromisifiedComponent/index.tsx",
|
|
283
|
+
pkg: "core",
|
|
284
|
+
dir: "createPromisifiedComponent",
|
|
285
|
+
category: "Component",
|
|
286
|
+
lastUpdated: 1789024203e3
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
name: "createSharedHook",
|
|
290
|
+
file: "packages/shared/createSharedHook/index.tsx",
|
|
291
|
+
pkg: "shared",
|
|
292
|
+
dir: "createSharedHook",
|
|
293
|
+
category: "State",
|
|
294
|
+
lastUpdated: 178902221e4
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
name: "createSingletonPromise",
|
|
298
|
+
file: "packages/shared/utils/index.tsx",
|
|
299
|
+
pkg: "shared",
|
|
300
|
+
dir: "utils",
|
|
301
|
+
category: "Utilities",
|
|
302
|
+
lastUpdated: 1789147565e3
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
name: "customStorageEventName",
|
|
306
|
+
file: "packages/core/useStorage/index.tsx",
|
|
307
|
+
pkg: "core",
|
|
308
|
+
dir: "useStorage",
|
|
309
|
+
category: "State",
|
|
310
|
+
lastUpdated: 1789147565e3
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
name: "debounceFilter",
|
|
314
|
+
file: "packages/shared/useWatchWithFilter/index.tsx",
|
|
315
|
+
pkg: "shared",
|
|
316
|
+
dir: "useWatchWithFilter",
|
|
317
|
+
category: "Watch",
|
|
318
|
+
lastUpdated: 1788994784e3
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
name: "deepClone",
|
|
322
|
+
file: "packages/shared/useWatchDeep/index.tsx",
|
|
323
|
+
pkg: "shared",
|
|
324
|
+
dir: "useWatchDeep",
|
|
325
|
+
category: "Watch",
|
|
326
|
+
lastUpdated: 1789147565e3
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
name: "deepEqual",
|
|
330
|
+
file: "packages/shared/useWatchDeep/index.tsx",
|
|
331
|
+
pkg: "shared",
|
|
332
|
+
dir: "useWatchDeep",
|
|
333
|
+
category: "Watch",
|
|
334
|
+
lastUpdated: 1789147565e3
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
name: "events",
|
|
338
|
+
file: "packages/core/useEventBus/index.tsx",
|
|
339
|
+
pkg: "core",
|
|
340
|
+
dir: "useEventBus",
|
|
341
|
+
category: "Utilities",
|
|
342
|
+
lastUpdated: 1788942682e3
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
name: "formatDate",
|
|
346
|
+
file: "packages/shared/useDateFormat/index.tsx",
|
|
347
|
+
pkg: "shared",
|
|
348
|
+
dir: "useDateFormat",
|
|
349
|
+
category: "Time",
|
|
350
|
+
lastUpdated: 178895833e4
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
name: "formatTimeAgo",
|
|
354
|
+
file: "packages/core/useTimeAgo/index.tsx",
|
|
355
|
+
pkg: "core",
|
|
356
|
+
dir: "useTimeAgo",
|
|
357
|
+
category: "Time",
|
|
358
|
+
lastUpdated: 1789147565e3
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
name: "formatTimeAgoIntl",
|
|
362
|
+
file: "packages/core/useTimeAgoIntl/index.tsx",
|
|
363
|
+
pkg: "core",
|
|
364
|
+
dir: "useTimeAgoIntl",
|
|
365
|
+
category: "Time",
|
|
366
|
+
lastUpdated: 1789147565e3
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
name: "formatTimeAgoIntlParts",
|
|
370
|
+
file: "packages/core/useTimeAgoIntl/index.tsx",
|
|
371
|
+
pkg: "core",
|
|
372
|
+
dir: "useTimeAgoIntl",
|
|
373
|
+
category: "Time",
|
|
374
|
+
lastUpdated: 1789147565e3
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
name: "guessSerializerType",
|
|
378
|
+
file: "packages/core/useStorage/index.tsx",
|
|
379
|
+
pkg: "core",
|
|
380
|
+
dir: "useStorage",
|
|
381
|
+
category: "State",
|
|
382
|
+
lastUpdated: 1789147565e3
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
name: "hasOwn",
|
|
386
|
+
file: "packages/shared/utils/index.tsx",
|
|
387
|
+
pkg: "shared",
|
|
388
|
+
dir: "utils",
|
|
389
|
+
category: "Utilities",
|
|
390
|
+
lastUpdated: 1789147565e3
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
name: "hyphenate",
|
|
394
|
+
file: "packages/shared/utils/index.tsx",
|
|
395
|
+
pkg: "shared",
|
|
396
|
+
dir: "utils",
|
|
397
|
+
category: "Utilities",
|
|
398
|
+
lastUpdated: 1789147565e3
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
name: "increaseWithUnit",
|
|
402
|
+
file: "packages/shared/utils/index.tsx",
|
|
403
|
+
pkg: "shared",
|
|
404
|
+
dir: "utils",
|
|
405
|
+
category: "Utilities",
|
|
406
|
+
lastUpdated: 1789147565e3
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
name: "insertNodeAt",
|
|
410
|
+
file: "packages/integrations/useSortable/index.tsx",
|
|
411
|
+
pkg: "integrations",
|
|
412
|
+
dir: "useSortable",
|
|
413
|
+
category: "@Integrations",
|
|
414
|
+
lastUpdated: 1789147565e3
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
name: "isClient",
|
|
418
|
+
file: "packages/shared/utils/index.tsx",
|
|
419
|
+
pkg: "shared",
|
|
420
|
+
dir: "utils",
|
|
421
|
+
category: "Utilities",
|
|
422
|
+
lastUpdated: 1789147565e3
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
name: "isDef",
|
|
426
|
+
file: "packages/shared/utils/index.tsx",
|
|
427
|
+
pkg: "shared",
|
|
428
|
+
dir: "utils",
|
|
429
|
+
category: "Utilities",
|
|
430
|
+
lastUpdated: 1789147565e3
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
name: "isDefined",
|
|
434
|
+
file: "packages/shared/isDefined/index.tsx",
|
|
435
|
+
pkg: "shared",
|
|
436
|
+
dir: "isDefined",
|
|
437
|
+
category: "Utilities",
|
|
438
|
+
lastUpdated: 1788999327e3
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
name: "isFocusedElementEditable",
|
|
442
|
+
file: "packages/core/useStartTyping/index.tsx",
|
|
443
|
+
pkg: "core",
|
|
444
|
+
dir: "useStartTyping",
|
|
445
|
+
category: "Sensors",
|
|
446
|
+
lastUpdated: 1789147565e3
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
name: "isIOS",
|
|
450
|
+
file: "packages/shared/utils/index.tsx",
|
|
451
|
+
pkg: "shared",
|
|
452
|
+
dir: "utils",
|
|
453
|
+
category: "Utilities",
|
|
454
|
+
lastUpdated: 1789147565e3
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
name: "isObject",
|
|
458
|
+
file: "packages/shared/utils/index.tsx",
|
|
459
|
+
pkg: "shared",
|
|
460
|
+
dir: "utils",
|
|
461
|
+
category: "Utilities",
|
|
462
|
+
lastUpdated: 1789147565e3
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
name: "isRefLike",
|
|
466
|
+
file: "packages/shared/utils/index.tsx",
|
|
467
|
+
pkg: "shared",
|
|
468
|
+
dir: "utils",
|
|
469
|
+
category: "Utilities",
|
|
470
|
+
lastUpdated: 1789147565e3
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
name: "isTypedCharValid",
|
|
474
|
+
file: "packages/core/useStartTyping/index.tsx",
|
|
475
|
+
pkg: "core",
|
|
476
|
+
dir: "useStartTyping",
|
|
477
|
+
category: "Sensors",
|
|
478
|
+
lastUpdated: 1789147565e3
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
name: "logicAnd",
|
|
482
|
+
file: "packages/math/logicAnd/index.tsx",
|
|
483
|
+
pkg: "math",
|
|
484
|
+
dir: "logicAnd",
|
|
485
|
+
category: "@Math",
|
|
486
|
+
lastUpdated: 1789147565e3
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
name: "logicNot",
|
|
490
|
+
file: "packages/math/logicNot/index.tsx",
|
|
491
|
+
pkg: "math",
|
|
492
|
+
dir: "logicNot",
|
|
493
|
+
category: "@Math",
|
|
494
|
+
lastUpdated: 1789147565e3
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
name: "logicOr",
|
|
498
|
+
file: "packages/math/logicOr/index.tsx",
|
|
499
|
+
pkg: "math",
|
|
500
|
+
dir: "logicOr",
|
|
501
|
+
category: "@Math",
|
|
502
|
+
lastUpdated: 1789147565e3
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
name: "makeDestructurable",
|
|
506
|
+
file: "packages/shared/makeDestructurable/index.tsx",
|
|
507
|
+
pkg: "shared",
|
|
508
|
+
dir: "makeDestructurable",
|
|
509
|
+
category: "Utilities",
|
|
510
|
+
lastUpdated: 1788999468e3
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
name: "mapGamepadToXbox360Controller",
|
|
514
|
+
file: "packages/core/useGamepad/index.tsx",
|
|
515
|
+
pkg: "core",
|
|
516
|
+
dir: "useGamepad",
|
|
517
|
+
category: "Browser",
|
|
518
|
+
lastUpdated: 1789147565e3
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
name: "moveArrayElement",
|
|
522
|
+
file: "packages/integrations/useSortable/index.tsx",
|
|
523
|
+
pkg: "integrations",
|
|
524
|
+
dir: "useSortable",
|
|
525
|
+
category: "@Integrations",
|
|
526
|
+
lastUpdated: 1789147565e3
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
name: "noop",
|
|
530
|
+
file: "packages/shared/utils/index.tsx",
|
|
531
|
+
pkg: "shared",
|
|
532
|
+
dir: "utils",
|
|
533
|
+
category: "Utilities",
|
|
534
|
+
lastUpdated: 1789147565e3
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
name: "normalizeDate",
|
|
538
|
+
file: "packages/shared/useDateFormat/index.tsx",
|
|
539
|
+
pkg: "shared",
|
|
540
|
+
dir: "useDateFormat",
|
|
541
|
+
category: "Time",
|
|
542
|
+
lastUpdated: 178895833e4
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
name: "now",
|
|
546
|
+
file: "packages/shared/utils/index.tsx",
|
|
547
|
+
pkg: "shared",
|
|
548
|
+
dir: "utils",
|
|
549
|
+
category: "Utilities",
|
|
550
|
+
lastUpdated: 1789147565e3
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
name: "objectOmit",
|
|
554
|
+
file: "packages/shared/utils/index.tsx",
|
|
555
|
+
pkg: "shared",
|
|
556
|
+
dir: "utils",
|
|
557
|
+
category: "Utilities",
|
|
558
|
+
lastUpdated: 1789147565e3
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
name: "objectPick",
|
|
562
|
+
file: "packages/shared/utils/index.tsx",
|
|
563
|
+
pkg: "shared",
|
|
564
|
+
dir: "utils",
|
|
565
|
+
category: "Utilities",
|
|
566
|
+
lastUpdated: 1789147565e3
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
name: "promiseTimeout",
|
|
570
|
+
file: "packages/shared/utils/index.tsx",
|
|
571
|
+
pkg: "shared",
|
|
572
|
+
dir: "utils",
|
|
573
|
+
category: "Utilities",
|
|
574
|
+
lastUpdated: 1789147565e3
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
name: "pxValue",
|
|
578
|
+
file: "packages/shared/utils/index.tsx",
|
|
579
|
+
pkg: "shared",
|
|
580
|
+
dir: "utils",
|
|
581
|
+
category: "Utilities",
|
|
582
|
+
lastUpdated: 1789147565e3
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
name: "rand",
|
|
586
|
+
file: "packages/shared/utils/index.tsx",
|
|
587
|
+
pkg: "shared",
|
|
588
|
+
dir: "utils",
|
|
589
|
+
category: "Utilities",
|
|
590
|
+
lastUpdated: 1789147565e3
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
name: "removeNode",
|
|
594
|
+
file: "packages/integrations/useSortable/index.tsx",
|
|
595
|
+
pkg: "integrations",
|
|
596
|
+
dir: "useSortable",
|
|
597
|
+
category: "@Integrations",
|
|
598
|
+
lastUpdated: 1789147565e3
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
name: "resolveIpcRenderer",
|
|
602
|
+
file: "packages/electron/_resolve/index.tsx",
|
|
603
|
+
pkg: "electron",
|
|
604
|
+
dir: "_resolve",
|
|
605
|
+
category: "@Electron",
|
|
606
|
+
lastUpdated: 1788942682e3
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
name: "resolveWebFrame",
|
|
610
|
+
file: "packages/electron/_resolve/index.tsx",
|
|
611
|
+
pkg: "electron",
|
|
612
|
+
dir: "_resolve",
|
|
613
|
+
category: "@Electron",
|
|
614
|
+
lastUpdated: 1788942682e3
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
name: "SSRWidthProvider",
|
|
618
|
+
file: "packages/core/useSSRWidth/index.tsx",
|
|
619
|
+
pkg: "core",
|
|
620
|
+
dir: "useSSRWidth",
|
|
621
|
+
category: "Browser",
|
|
622
|
+
lastUpdated: 1789147565e3
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
name: "syncState",
|
|
626
|
+
file: "packages/shared/syncState/index.tsx",
|
|
627
|
+
pkg: "shared",
|
|
628
|
+
dir: "syncState",
|
|
629
|
+
category: "Reactivity",
|
|
630
|
+
lastUpdated: 1789147565e3
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
name: "syncStates",
|
|
634
|
+
file: "packages/shared/syncStates/index.tsx",
|
|
635
|
+
pkg: "shared",
|
|
636
|
+
dir: "syncStates",
|
|
637
|
+
category: "Reactivity",
|
|
638
|
+
lastUpdated: 1789147565e3
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
name: "throttleFilter",
|
|
642
|
+
file: "packages/shared/useWatchWithFilter/index.tsx",
|
|
643
|
+
pkg: "shared",
|
|
644
|
+
dir: "useWatchWithFilter",
|
|
645
|
+
category: "Watch",
|
|
646
|
+
lastUpdated: 1788994784e3
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
name: "timestamp",
|
|
650
|
+
file: "packages/shared/utils/index.tsx",
|
|
651
|
+
pkg: "shared",
|
|
652
|
+
dir: "utils",
|
|
653
|
+
category: "Utilities",
|
|
654
|
+
lastUpdated: 1789147565e3
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
name: "toArray",
|
|
658
|
+
file: "packages/shared/utils/index.tsx",
|
|
659
|
+
pkg: "shared",
|
|
660
|
+
dir: "utils",
|
|
661
|
+
category: "Utilities",
|
|
662
|
+
lastUpdated: 1789147565e3
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
name: "toObserver",
|
|
666
|
+
file: "packages/rxjs/toObserver/index.tsx",
|
|
667
|
+
pkg: "rxjs",
|
|
668
|
+
dir: "toObserver",
|
|
669
|
+
category: "@RxJS",
|
|
670
|
+
lastUpdated: 1789147565e3
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
name: "toValue",
|
|
674
|
+
file: "packages/shared/utils/index.tsx",
|
|
675
|
+
pkg: "shared",
|
|
676
|
+
dir: "utils",
|
|
677
|
+
category: "Utilities",
|
|
678
|
+
lastUpdated: 1789147565e3
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
name: "TransitionPresets",
|
|
682
|
+
file: "packages/core/useTransition/index.tsx",
|
|
683
|
+
pkg: "core",
|
|
684
|
+
dir: "useTransition",
|
|
685
|
+
category: "Animation",
|
|
686
|
+
lastUpdated: 1788994691e3
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
name: "unrefElement",
|
|
690
|
+
file: "packages/core/unrefElement/index.tsx",
|
|
691
|
+
pkg: "core",
|
|
692
|
+
dir: "unrefElement",
|
|
693
|
+
category: "Component",
|
|
694
|
+
lastUpdated: 1789147565e3
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
name: "until",
|
|
698
|
+
file: "packages/shared/until/index.tsx",
|
|
699
|
+
pkg: "shared",
|
|
700
|
+
dir: "until",
|
|
701
|
+
category: "Watch",
|
|
702
|
+
lastUpdated: 1789000817e3
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
name: "useAbs",
|
|
706
|
+
file: "packages/math/useAbs/index.tsx",
|
|
707
|
+
pkg: "math",
|
|
708
|
+
dir: "useAbs",
|
|
709
|
+
category: "@Math",
|
|
710
|
+
lastUpdated: 1789147565e3
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
name: "useActiveElement",
|
|
714
|
+
file: "packages/core/useActiveElement/index.tsx",
|
|
715
|
+
pkg: "core",
|
|
716
|
+
dir: "useActiveElement",
|
|
717
|
+
category: "Elements",
|
|
718
|
+
lastUpdated: 1789147565e3
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
name: "useAnimate",
|
|
722
|
+
file: "packages/core/useAnimate/index.tsx",
|
|
723
|
+
pkg: "core",
|
|
724
|
+
dir: "useAnimate",
|
|
725
|
+
category: "Animation",
|
|
726
|
+
lastUpdated: 1789147565e3
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
name: "useArrayDifference",
|
|
730
|
+
file: "packages/shared/useArrayDifference/index.tsx",
|
|
731
|
+
pkg: "shared",
|
|
732
|
+
dir: "useArrayDifference",
|
|
733
|
+
category: "Array",
|
|
734
|
+
lastUpdated: 178895833e4
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
name: "useArrayEvery",
|
|
738
|
+
file: "packages/shared/useArrayEvery/index.tsx",
|
|
739
|
+
pkg: "shared",
|
|
740
|
+
dir: "useArrayEvery",
|
|
741
|
+
category: "Array",
|
|
742
|
+
lastUpdated: 178895833e4
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
name: "useArrayFilter",
|
|
746
|
+
file: "packages/shared/useArrayFilter/index.tsx",
|
|
747
|
+
pkg: "shared",
|
|
748
|
+
dir: "useArrayFilter",
|
|
749
|
+
category: "Array",
|
|
750
|
+
lastUpdated: 1789000901e3
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
name: "useArrayFind",
|
|
754
|
+
file: "packages/shared/useArrayFind/index.tsx",
|
|
755
|
+
pkg: "shared",
|
|
756
|
+
dir: "useArrayFind",
|
|
757
|
+
category: "Array",
|
|
758
|
+
lastUpdated: 178895833e4
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
name: "useArrayFindIndex",
|
|
762
|
+
file: "packages/shared/useArrayFindIndex/index.tsx",
|
|
763
|
+
pkg: "shared",
|
|
764
|
+
dir: "useArrayFindIndex",
|
|
765
|
+
category: "Array",
|
|
766
|
+
lastUpdated: 1788942682e3
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
name: "useArrayFindLast",
|
|
770
|
+
file: "packages/shared/useArrayFindLast/index.tsx",
|
|
771
|
+
pkg: "shared",
|
|
772
|
+
dir: "useArrayFindLast",
|
|
773
|
+
category: "Array",
|
|
774
|
+
lastUpdated: 178895833e4
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
name: "useArrayIncludes",
|
|
778
|
+
file: "packages/shared/useArrayIncludes/index.tsx",
|
|
779
|
+
pkg: "shared",
|
|
780
|
+
dir: "useArrayIncludes",
|
|
781
|
+
category: "Array",
|
|
782
|
+
lastUpdated: 178895833e4
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
name: "useArrayJoin",
|
|
786
|
+
file: "packages/shared/useArrayJoin/index.tsx",
|
|
787
|
+
pkg: "shared",
|
|
788
|
+
dir: "useArrayJoin",
|
|
789
|
+
category: "Array",
|
|
790
|
+
lastUpdated: 1789001105e3
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
name: "useArrayMap",
|
|
794
|
+
file: "packages/shared/useArrayMap/index.tsx",
|
|
795
|
+
pkg: "shared",
|
|
796
|
+
dir: "useArrayMap",
|
|
797
|
+
category: "Array",
|
|
798
|
+
lastUpdated: 1789000678e3
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
name: "useArrayReduce",
|
|
802
|
+
file: "packages/shared/useArrayReduce/index.tsx",
|
|
803
|
+
pkg: "shared",
|
|
804
|
+
dir: "useArrayReduce",
|
|
805
|
+
category: "Array",
|
|
806
|
+
lastUpdated: 178895833e4
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
name: "useArraySome",
|
|
810
|
+
file: "packages/shared/useArraySome/index.tsx",
|
|
811
|
+
pkg: "shared",
|
|
812
|
+
dir: "useArraySome",
|
|
813
|
+
category: "Array",
|
|
814
|
+
lastUpdated: 178895833e4
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
name: "useArrayUnique",
|
|
818
|
+
file: "packages/shared/useArrayUnique/index.tsx",
|
|
819
|
+
pkg: "shared",
|
|
820
|
+
dir: "useArrayUnique",
|
|
821
|
+
category: "Array",
|
|
822
|
+
lastUpdated: 178895833e4
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
name: "useAsync",
|
|
826
|
+
file: "packages/core/useAsync/index.tsx",
|
|
827
|
+
pkg: "core",
|
|
828
|
+
dir: "useAsync",
|
|
829
|
+
category: "Reactivity",
|
|
830
|
+
lastUpdated: 1789147565e3
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
name: "useAsyncQueue",
|
|
834
|
+
file: "packages/core/useAsyncQueue/index.tsx",
|
|
835
|
+
pkg: "core",
|
|
836
|
+
dir: "useAsyncQueue",
|
|
837
|
+
category: "Utilities",
|
|
838
|
+
lastUpdated: 1789147565e3
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
name: "useAsyncState",
|
|
842
|
+
file: "packages/core/useAsyncState/index.tsx",
|
|
843
|
+
pkg: "core",
|
|
844
|
+
dir: "useAsyncState",
|
|
845
|
+
category: "State",
|
|
846
|
+
lastUpdated: 1789147565e3
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
name: "useAsyncValidator",
|
|
850
|
+
file: "packages/integrations/useAsyncValidator/index.tsx",
|
|
851
|
+
pkg: "integrations",
|
|
852
|
+
dir: "useAsyncValidator",
|
|
853
|
+
category: "@Integrations",
|
|
854
|
+
lastUpdated: 1788994827e3
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
name: "useAuth",
|
|
858
|
+
file: "packages/firebase/useAuth/index.tsx",
|
|
859
|
+
pkg: "firebase",
|
|
860
|
+
dir: "useAuth",
|
|
861
|
+
category: "@Firebase",
|
|
862
|
+
lastUpdated: 1789017154e3
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
name: "useAverage",
|
|
866
|
+
file: "packages/math/useAverage/index.tsx",
|
|
867
|
+
pkg: "math",
|
|
868
|
+
dir: "useAverage",
|
|
869
|
+
category: "@Math",
|
|
870
|
+
lastUpdated: 1789147565e3
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
name: "useAxios",
|
|
874
|
+
file: "packages/integrations/useAxios/index.tsx",
|
|
875
|
+
pkg: "integrations",
|
|
876
|
+
dir: "useAxios",
|
|
877
|
+
category: "@Integrations",
|
|
878
|
+
lastUpdated: 1789147565e3
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
name: "useBase64",
|
|
882
|
+
file: "packages/core/useBase64/index.tsx",
|
|
883
|
+
pkg: "core",
|
|
884
|
+
dir: "useBase64",
|
|
885
|
+
category: "Utilities",
|
|
886
|
+
lastUpdated: 1789147565e3
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
name: "useBattery",
|
|
890
|
+
file: "packages/core/useBattery/index.tsx",
|
|
891
|
+
pkg: "core",
|
|
892
|
+
dir: "useBattery",
|
|
893
|
+
category: "Sensors",
|
|
894
|
+
lastUpdated: 1788942682e3
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
name: "useBluetooth",
|
|
898
|
+
file: "packages/core/useBluetooth/index.tsx",
|
|
899
|
+
pkg: "core",
|
|
900
|
+
dir: "useBluetooth",
|
|
901
|
+
category: "Browser",
|
|
902
|
+
lastUpdated: 1788953542e3
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
name: "useBreakpoints",
|
|
906
|
+
file: "packages/core/useBreakpoints/index.tsx",
|
|
907
|
+
pkg: "core",
|
|
908
|
+
dir: "useBreakpoints",
|
|
909
|
+
category: "Browser",
|
|
910
|
+
lastUpdated: 1789147565e3
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
name: "useBroadcastChannel",
|
|
914
|
+
file: "packages/core/useBroadcastChannel/index.tsx",
|
|
915
|
+
pkg: "core",
|
|
916
|
+
dir: "useBroadcastChannel",
|
|
917
|
+
category: "Browser",
|
|
918
|
+
lastUpdated: 1789147565e3
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
name: "useBrowserLocation",
|
|
922
|
+
file: "packages/core/useBrowserLocation/index.tsx",
|
|
923
|
+
pkg: "core",
|
|
924
|
+
dir: "useBrowserLocation",
|
|
925
|
+
category: "Browser",
|
|
926
|
+
lastUpdated: 1789147565e3
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
name: "useCached",
|
|
930
|
+
file: "packages/core/useCached/index.tsx",
|
|
931
|
+
pkg: "core",
|
|
932
|
+
dir: "useCached",
|
|
933
|
+
category: "Utilities",
|
|
934
|
+
lastUpdated: 1789147565e3
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
name: "useCeil",
|
|
938
|
+
file: "packages/math/useCeil/index.tsx",
|
|
939
|
+
pkg: "math",
|
|
940
|
+
dir: "useCeil",
|
|
941
|
+
category: "@Math",
|
|
942
|
+
lastUpdated: 1789147565e3
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
name: "useChangeCase",
|
|
946
|
+
file: "packages/integrations/useChangeCase/index.tsx",
|
|
947
|
+
pkg: "integrations",
|
|
948
|
+
dir: "useChangeCase",
|
|
949
|
+
category: "@Integrations",
|
|
950
|
+
lastUpdated: 1789147565e3
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
name: "useClamp",
|
|
954
|
+
file: "packages/math/useClamp/index.tsx",
|
|
955
|
+
pkg: "math",
|
|
956
|
+
dir: "useClamp",
|
|
957
|
+
category: "@Math",
|
|
958
|
+
lastUpdated: 1789147565e3
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
name: "useClickOutside",
|
|
962
|
+
file: "packages/core/useClickOutside/index.tsx",
|
|
963
|
+
pkg: "core",
|
|
964
|
+
dir: "useClickOutside",
|
|
965
|
+
category: "Sensors",
|
|
966
|
+
lastUpdated: 1789147565e3
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
name: "useClipboard",
|
|
970
|
+
file: "packages/core/useClipboard/index.tsx",
|
|
971
|
+
pkg: "core",
|
|
972
|
+
dir: "useClipboard",
|
|
973
|
+
category: "Browser",
|
|
974
|
+
lastUpdated: 1789147565e3
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
name: "useClipboardItems",
|
|
978
|
+
file: "packages/core/useClipboardItems/index.tsx",
|
|
979
|
+
pkg: "core",
|
|
980
|
+
dir: "useClipboardItems",
|
|
981
|
+
category: "Browser",
|
|
982
|
+
lastUpdated: 1789147565e3
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
name: "useCloned",
|
|
986
|
+
file: "packages/core/useCloned/index.tsx",
|
|
987
|
+
pkg: "core",
|
|
988
|
+
dir: "useCloned",
|
|
989
|
+
category: "Utilities",
|
|
990
|
+
lastUpdated: 1789147565e3
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
name: "useColorMode",
|
|
994
|
+
file: "packages/core/useColorMode/index.tsx",
|
|
995
|
+
pkg: "core",
|
|
996
|
+
dir: "useColorMode",
|
|
997
|
+
category: "Browser",
|
|
998
|
+
lastUpdated: 1789147565e3
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
name: "useConfirmDialog",
|
|
1002
|
+
file: "packages/core/useConfirmDialog/index.tsx",
|
|
1003
|
+
pkg: "core",
|
|
1004
|
+
dir: "useConfirmDialog",
|
|
1005
|
+
category: "Utilities",
|
|
1006
|
+
lastUpdated: 1789147565e3
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
name: "useControllableState",
|
|
1010
|
+
file: "packages/shared/useControllableState/index.tsx",
|
|
1011
|
+
pkg: "shared",
|
|
1012
|
+
dir: "useControllableState",
|
|
1013
|
+
category: "State",
|
|
1014
|
+
lastUpdated: 1788979068e3
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
name: "useCookies",
|
|
1018
|
+
file: "packages/integrations/useCookies/index.tsx",
|
|
1019
|
+
pkg: "integrations",
|
|
1020
|
+
dir: "useCookies",
|
|
1021
|
+
category: "@Integrations",
|
|
1022
|
+
lastUpdated: 1788976915e3
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
name: "useCountdown",
|
|
1026
|
+
file: "packages/core/useCountdown/index.tsx",
|
|
1027
|
+
pkg: "core",
|
|
1028
|
+
dir: "useCountdown",
|
|
1029
|
+
category: "Time",
|
|
1030
|
+
lastUpdated: 1789147565e3
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
name: "useCounter",
|
|
1034
|
+
file: "packages/shared/useCounter/index.tsx",
|
|
1035
|
+
pkg: "shared",
|
|
1036
|
+
dir: "useCounter",
|
|
1037
|
+
category: "State",
|
|
1038
|
+
lastUpdated: 1788996836e3
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
name: "useCssSupports",
|
|
1042
|
+
file: "packages/core/useCssSupports/index.tsx",
|
|
1043
|
+
pkg: "core",
|
|
1044
|
+
dir: "useCssSupports",
|
|
1045
|
+
category: "Browser",
|
|
1046
|
+
lastUpdated: 1789147565e3
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
name: "useCssVar",
|
|
1050
|
+
file: "packages/core/useCssVar/index.tsx",
|
|
1051
|
+
pkg: "core",
|
|
1052
|
+
dir: "useCssVar",
|
|
1053
|
+
category: "Browser",
|
|
1054
|
+
lastUpdated: 1789147565e3
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
name: "useCycleList",
|
|
1058
|
+
file: "packages/core/useCycleList/index.tsx",
|
|
1059
|
+
pkg: "core",
|
|
1060
|
+
dir: "useCycleList",
|
|
1061
|
+
category: "Utilities",
|
|
1062
|
+
lastUpdated: 1788958794e3
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
name: "useDark",
|
|
1066
|
+
file: "packages/core/useDark/index.tsx",
|
|
1067
|
+
pkg: "core",
|
|
1068
|
+
dir: "useDark",
|
|
1069
|
+
category: "Browser",
|
|
1070
|
+
lastUpdated: 1789147565e3
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
name: "useDateFormat",
|
|
1074
|
+
file: "packages/shared/useDateFormat/index.tsx",
|
|
1075
|
+
pkg: "shared",
|
|
1076
|
+
dir: "useDateFormat",
|
|
1077
|
+
category: "Time",
|
|
1078
|
+
lastUpdated: 178895833e4
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
name: "useDebounceFn",
|
|
1082
|
+
file: "packages/shared/useDebounceFn/index.tsx",
|
|
1083
|
+
pkg: "shared",
|
|
1084
|
+
dir: "useDebounceFn",
|
|
1085
|
+
category: "Utilities",
|
|
1086
|
+
lastUpdated: 1788984677e3
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
name: "useDeviceMotion",
|
|
1090
|
+
file: "packages/core/useDeviceMotion/index.tsx",
|
|
1091
|
+
pkg: "core",
|
|
1092
|
+
dir: "useDeviceMotion",
|
|
1093
|
+
category: "Sensors",
|
|
1094
|
+
lastUpdated: 1789147565e3
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
name: "useDeviceOrientation",
|
|
1098
|
+
file: "packages/core/useDeviceOrientation/index.tsx",
|
|
1099
|
+
pkg: "core",
|
|
1100
|
+
dir: "useDeviceOrientation",
|
|
1101
|
+
category: "Sensors",
|
|
1102
|
+
lastUpdated: 1789147565e3
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
name: "useDevicePixelRatio",
|
|
1106
|
+
file: "packages/core/useDevicePixelRatio/index.tsx",
|
|
1107
|
+
pkg: "core",
|
|
1108
|
+
dir: "useDevicePixelRatio",
|
|
1109
|
+
category: "Sensors",
|
|
1110
|
+
lastUpdated: 1789147565e3
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
name: "useDevicesList",
|
|
1114
|
+
file: "packages/core/useDevicesList/index.tsx",
|
|
1115
|
+
pkg: "core",
|
|
1116
|
+
dir: "useDevicesList",
|
|
1117
|
+
category: "Sensors",
|
|
1118
|
+
lastUpdated: 1788966944e3
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
name: "useDisplayMedia",
|
|
1122
|
+
file: "packages/core/useDisplayMedia/index.tsx",
|
|
1123
|
+
pkg: "core",
|
|
1124
|
+
dir: "useDisplayMedia",
|
|
1125
|
+
category: "Sensors",
|
|
1126
|
+
lastUpdated: 1788970689e3
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
name: "useDocumentVisibility",
|
|
1130
|
+
file: "packages/core/useDocumentVisibility/index.tsx",
|
|
1131
|
+
pkg: "core",
|
|
1132
|
+
dir: "useDocumentVisibility",
|
|
1133
|
+
category: "Elements",
|
|
1134
|
+
lastUpdated: 1789147565e3
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
name: "useDraggable",
|
|
1138
|
+
file: "packages/core/useDraggable/index.tsx",
|
|
1139
|
+
pkg: "core",
|
|
1140
|
+
dir: "useDraggable",
|
|
1141
|
+
category: "Elements",
|
|
1142
|
+
lastUpdated: 1789147565e3
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
name: "useDrauu",
|
|
1146
|
+
file: "packages/integrations/useDrauu/index.tsx",
|
|
1147
|
+
pkg: "integrations",
|
|
1148
|
+
dir: "useDrauu",
|
|
1149
|
+
category: "@Integrations",
|
|
1150
|
+
lastUpdated: 1789147565e3
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
name: "useDropZone",
|
|
1154
|
+
file: "packages/core/useDropZone/index.tsx",
|
|
1155
|
+
pkg: "core",
|
|
1156
|
+
dir: "useDropZone",
|
|
1157
|
+
category: "Elements",
|
|
1158
|
+
lastUpdated: 1789147565e3
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
name: "useElementBounding",
|
|
1162
|
+
file: "packages/core/useElementBounding/index.tsx",
|
|
1163
|
+
pkg: "core",
|
|
1164
|
+
dir: "useElementBounding",
|
|
1165
|
+
category: "Elements",
|
|
1166
|
+
lastUpdated: 1789147565e3
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
name: "useElementByPoint",
|
|
1170
|
+
file: "packages/core/useElementByPoint/index.tsx",
|
|
1171
|
+
pkg: "core",
|
|
1172
|
+
dir: "useElementByPoint",
|
|
1173
|
+
category: "Sensors",
|
|
1174
|
+
lastUpdated: 1789147565e3
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
name: "useElementHover",
|
|
1178
|
+
file: "packages/core/useElementHover/index.tsx",
|
|
1179
|
+
pkg: "core",
|
|
1180
|
+
dir: "useElementHover",
|
|
1181
|
+
category: "Sensors",
|
|
1182
|
+
lastUpdated: 1789147565e3
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
name: "useElementOverflow",
|
|
1186
|
+
file: "packages/core/useElementOverflow/index.tsx",
|
|
1187
|
+
pkg: "core",
|
|
1188
|
+
dir: "useElementOverflow",
|
|
1189
|
+
category: "Elements",
|
|
1190
|
+
lastUpdated: 1789147565e3
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
name: "useElementRemoval",
|
|
1194
|
+
file: "packages/core/useElementRemoval/index.tsx",
|
|
1195
|
+
pkg: "core",
|
|
1196
|
+
dir: "useElementRemoval",
|
|
1197
|
+
category: "Sensors",
|
|
1198
|
+
lastUpdated: 1789147565e3
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
name: "useElementSize",
|
|
1202
|
+
file: "packages/core/useElementSize/index.tsx",
|
|
1203
|
+
pkg: "core",
|
|
1204
|
+
dir: "useElementSize",
|
|
1205
|
+
category: "Elements",
|
|
1206
|
+
lastUpdated: 1789147565e3
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
name: "useElementVisibility",
|
|
1210
|
+
file: "packages/core/useElementVisibility/index.tsx",
|
|
1211
|
+
pkg: "core",
|
|
1212
|
+
dir: "useElementVisibility",
|
|
1213
|
+
category: "Elements",
|
|
1214
|
+
lastUpdated: 1789147565e3
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
name: "useEventBus",
|
|
1218
|
+
file: "packages/core/useEventBus/index.tsx",
|
|
1219
|
+
pkg: "core",
|
|
1220
|
+
dir: "useEventBus",
|
|
1221
|
+
category: "Utilities",
|
|
1222
|
+
lastUpdated: 1788942682e3
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
name: "useEventListener",
|
|
1226
|
+
file: "packages/core/useEventListener/index.tsx",
|
|
1227
|
+
pkg: "core",
|
|
1228
|
+
dir: "useEventListener",
|
|
1229
|
+
category: "Browser",
|
|
1230
|
+
lastUpdated: 1789147565e3
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
name: "useEventSource",
|
|
1234
|
+
file: "packages/core/useEventSource/index.tsx",
|
|
1235
|
+
pkg: "core",
|
|
1236
|
+
dir: "useEventSource",
|
|
1237
|
+
category: "Network",
|
|
1238
|
+
lastUpdated: 1788971998e3
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
name: "useExtractedObservable",
|
|
1242
|
+
file: "packages/rxjs/useExtractedObservable/index.tsx",
|
|
1243
|
+
pkg: "rxjs",
|
|
1244
|
+
dir: "useExtractedObservable",
|
|
1245
|
+
category: "@RxJS",
|
|
1246
|
+
lastUpdated: 1789020143e3
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
name: "useEyeDropper",
|
|
1250
|
+
file: "packages/core/useEyeDropper/index.tsx",
|
|
1251
|
+
pkg: "core",
|
|
1252
|
+
dir: "useEyeDropper",
|
|
1253
|
+
category: "Browser",
|
|
1254
|
+
lastUpdated: 1788942682e3
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
name: "useFavicon",
|
|
1258
|
+
file: "packages/core/useFavicon/index.tsx",
|
|
1259
|
+
pkg: "core",
|
|
1260
|
+
dir: "useFavicon",
|
|
1261
|
+
category: "Browser",
|
|
1262
|
+
lastUpdated: 1789147565e3
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
name: "useFetch",
|
|
1266
|
+
file: "packages/core/useFetch/index.tsx",
|
|
1267
|
+
pkg: "core",
|
|
1268
|
+
dir: "useFetch",
|
|
1269
|
+
category: "Network",
|
|
1270
|
+
lastUpdated: 1789147565e3
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
name: "useFileDialog",
|
|
1274
|
+
file: "packages/core/useFileDialog/index.tsx",
|
|
1275
|
+
pkg: "core",
|
|
1276
|
+
dir: "useFileDialog",
|
|
1277
|
+
category: "Browser",
|
|
1278
|
+
lastUpdated: 1789147565e3
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
name: "useFileSystemAccess",
|
|
1282
|
+
file: "packages/core/useFileSystemAccess/index.tsx",
|
|
1283
|
+
pkg: "core",
|
|
1284
|
+
dir: "useFileSystemAccess",
|
|
1285
|
+
category: "Browser",
|
|
1286
|
+
lastUpdated: 1789147565e3
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
name: "useFirestore",
|
|
1290
|
+
file: "packages/firebase/useFirestore/index.tsx",
|
|
1291
|
+
pkg: "firebase",
|
|
1292
|
+
dir: "useFirestore",
|
|
1293
|
+
category: "@Firebase",
|
|
1294
|
+
lastUpdated: 1789147565e3
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
name: "useFloor",
|
|
1298
|
+
file: "packages/math/useFloor/index.tsx",
|
|
1299
|
+
pkg: "math",
|
|
1300
|
+
dir: "useFloor",
|
|
1301
|
+
category: "@Math",
|
|
1302
|
+
lastUpdated: 1789147565e3
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
name: "useFocus",
|
|
1306
|
+
file: "packages/core/useFocus/index.tsx",
|
|
1307
|
+
pkg: "core",
|
|
1308
|
+
dir: "useFocus",
|
|
1309
|
+
category: "Sensors",
|
|
1310
|
+
lastUpdated: 1789147565e3
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
name: "useFocusTrap",
|
|
1314
|
+
file: "packages/integrations/useFocusTrap/index.tsx",
|
|
1315
|
+
pkg: "integrations",
|
|
1316
|
+
dir: "useFocusTrap",
|
|
1317
|
+
category: "@Integrations",
|
|
1318
|
+
lastUpdated: 1789147565e3
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
name: "useFocusWithin",
|
|
1322
|
+
file: "packages/core/useFocusWithin/index.tsx",
|
|
1323
|
+
pkg: "core",
|
|
1324
|
+
dir: "useFocusWithin",
|
|
1325
|
+
category: "Sensors",
|
|
1326
|
+
lastUpdated: 1789147565e3
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
name: "useFps",
|
|
1330
|
+
file: "packages/core/useFps/index.tsx",
|
|
1331
|
+
pkg: "core",
|
|
1332
|
+
dir: "useFps",
|
|
1333
|
+
category: "Sensors",
|
|
1334
|
+
lastUpdated: 1788971997e3
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
name: "useFrom",
|
|
1338
|
+
file: "packages/rxjs/useFrom/index.tsx",
|
|
1339
|
+
pkg: "rxjs",
|
|
1340
|
+
dir: "useFrom",
|
|
1341
|
+
category: "@RxJS",
|
|
1342
|
+
lastUpdated: 1789031655e3
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
name: "useFullscreen",
|
|
1346
|
+
file: "packages/core/useFullscreen/index.tsx",
|
|
1347
|
+
pkg: "core",
|
|
1348
|
+
dir: "useFullscreen",
|
|
1349
|
+
category: "Browser",
|
|
1350
|
+
lastUpdated: 1789147565e3
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
name: "useFuse",
|
|
1354
|
+
file: "packages/integrations/useFuse/index.tsx",
|
|
1355
|
+
pkg: "integrations",
|
|
1356
|
+
dir: "useFuse",
|
|
1357
|
+
category: "@Integrations",
|
|
1358
|
+
lastUpdated: 1789147565e3
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
name: "useGamepad",
|
|
1362
|
+
file: "packages/core/useGamepad/index.tsx",
|
|
1363
|
+
pkg: "core",
|
|
1364
|
+
dir: "useGamepad",
|
|
1365
|
+
category: "Browser",
|
|
1366
|
+
lastUpdated: 1789147565e3
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
name: "useGeolocation",
|
|
1370
|
+
file: "packages/core/useGeolocation/index.tsx",
|
|
1371
|
+
pkg: "core",
|
|
1372
|
+
dir: "useGeolocation",
|
|
1373
|
+
category: "Sensors",
|
|
1374
|
+
lastUpdated: 1788942682e3
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
name: "useHash",
|
|
1378
|
+
file: "packages/core/useHash/index.tsx",
|
|
1379
|
+
pkg: "core",
|
|
1380
|
+
dir: "useHash",
|
|
1381
|
+
category: "Browser",
|
|
1382
|
+
lastUpdated: 1789147565e3
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
name: "useIDBKeyval",
|
|
1386
|
+
file: "packages/integrations/useIDBKeyval/index.tsx",
|
|
1387
|
+
pkg: "integrations",
|
|
1388
|
+
dir: "useIDBKeyval",
|
|
1389
|
+
category: "@Integrations",
|
|
1390
|
+
lastUpdated: 1788991159e3
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
name: "useIdle",
|
|
1394
|
+
file: "packages/core/useIdle/index.tsx",
|
|
1395
|
+
pkg: "core",
|
|
1396
|
+
dir: "useIdle",
|
|
1397
|
+
category: "Sensors",
|
|
1398
|
+
lastUpdated: 1789147565e3
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
name: "useImage",
|
|
1402
|
+
file: "packages/core/useImage/index.tsx",
|
|
1403
|
+
pkg: "core",
|
|
1404
|
+
dir: "useImage",
|
|
1405
|
+
category: "Browser",
|
|
1406
|
+
lastUpdated: 1789147565e3
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
name: "useInfiniteScroll",
|
|
1410
|
+
file: "packages/core/useInfiniteScroll/index.tsx",
|
|
1411
|
+
pkg: "core",
|
|
1412
|
+
dir: "useInfiniteScroll",
|
|
1413
|
+
category: "Sensors",
|
|
1414
|
+
lastUpdated: 1789147565e3
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
name: "useIntersectionObserver",
|
|
1418
|
+
file: "packages/core/useIntersectionObserver/index.tsx",
|
|
1419
|
+
pkg: "core",
|
|
1420
|
+
dir: "useIntersectionObserver",
|
|
1421
|
+
category: "Elements",
|
|
1422
|
+
lastUpdated: 1789147565e3
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
name: "useInterval",
|
|
1426
|
+
file: "packages/shared/useInterval/index.tsx",
|
|
1427
|
+
pkg: "shared",
|
|
1428
|
+
dir: "useInterval",
|
|
1429
|
+
category: "Animation",
|
|
1430
|
+
lastUpdated: 1788985429e3
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
name: "useIntervalFn",
|
|
1434
|
+
file: "packages/shared/useIntervalFn/index.tsx",
|
|
1435
|
+
pkg: "shared",
|
|
1436
|
+
dir: "useIntervalFn",
|
|
1437
|
+
category: "Animation",
|
|
1438
|
+
lastUpdated: 1788999284e3
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
name: "useIpcRenderer",
|
|
1442
|
+
file: "packages/electron/useIpcRenderer/index.tsx",
|
|
1443
|
+
pkg: "electron",
|
|
1444
|
+
dir: "useIpcRenderer",
|
|
1445
|
+
category: "@Electron",
|
|
1446
|
+
lastUpdated: 1788988203e3
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
name: "useIpcRendererInvoke",
|
|
1450
|
+
file: "packages/electron/useIpcRendererInvoke/index.tsx",
|
|
1451
|
+
pkg: "electron",
|
|
1452
|
+
dir: "useIpcRendererInvoke",
|
|
1453
|
+
category: "@Electron",
|
|
1454
|
+
lastUpdated: 1788988307e3
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
name: "useIpcRendererOn",
|
|
1458
|
+
file: "packages/electron/useIpcRendererOn/index.tsx",
|
|
1459
|
+
pkg: "electron",
|
|
1460
|
+
dir: "useIpcRendererOn",
|
|
1461
|
+
category: "@Electron",
|
|
1462
|
+
lastUpdated: 1788942682e3
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
name: "useJwt",
|
|
1466
|
+
file: "packages/integrations/useJwt/index.tsx",
|
|
1467
|
+
pkg: "integrations",
|
|
1468
|
+
dir: "useJwt",
|
|
1469
|
+
category: "@Integrations",
|
|
1470
|
+
lastUpdated: 1788991529e3
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
name: "useKeyDown",
|
|
1474
|
+
file: "packages/core/useKeyStroke/index.tsx",
|
|
1475
|
+
pkg: "core",
|
|
1476
|
+
dir: "useKeyStroke",
|
|
1477
|
+
category: "Sensors",
|
|
1478
|
+
lastUpdated: 1789147565e3
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
name: "useKeyModifier",
|
|
1482
|
+
file: "packages/core/useKeyModifier/index.tsx",
|
|
1483
|
+
pkg: "core",
|
|
1484
|
+
dir: "useKeyModifier",
|
|
1485
|
+
category: "Sensors",
|
|
1486
|
+
lastUpdated: 178898437e4
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
name: "useKeyPressed",
|
|
1490
|
+
file: "packages/core/useKeyStroke/index.tsx",
|
|
1491
|
+
pkg: "core",
|
|
1492
|
+
dir: "useKeyStroke",
|
|
1493
|
+
category: "Sensors",
|
|
1494
|
+
lastUpdated: 1789147565e3
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
name: "useKeyStroke",
|
|
1498
|
+
file: "packages/core/useKeyStroke/index.tsx",
|
|
1499
|
+
pkg: "core",
|
|
1500
|
+
dir: "useKeyStroke",
|
|
1501
|
+
category: "Sensors",
|
|
1502
|
+
lastUpdated: 1789147565e3
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
name: "useKeyUp",
|
|
1506
|
+
file: "packages/core/useKeyStroke/index.tsx",
|
|
1507
|
+
pkg: "core",
|
|
1508
|
+
dir: "useKeyStroke",
|
|
1509
|
+
category: "Sensors",
|
|
1510
|
+
lastUpdated: 1789147565e3
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
name: "useLastChanged",
|
|
1514
|
+
file: "packages/shared/useLastChanged/index.tsx",
|
|
1515
|
+
pkg: "shared",
|
|
1516
|
+
dir: "useLastChanged",
|
|
1517
|
+
category: "State",
|
|
1518
|
+
lastUpdated: 1788942682e3
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
name: "useListener",
|
|
1522
|
+
file: "packages/shared/useListener/index.tsx",
|
|
1523
|
+
pkg: "shared",
|
|
1524
|
+
dir: "useListener",
|
|
1525
|
+
category: "State",
|
|
1526
|
+
lastUpdated: 1789147565e3
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
name: "useLiveAnnouncer",
|
|
1530
|
+
file: "packages/core/useLiveAnnouncer/index.tsx",
|
|
1531
|
+
pkg: "core",
|
|
1532
|
+
dir: "useLiveAnnouncer",
|
|
1533
|
+
category: "Browser",
|
|
1534
|
+
lastUpdated: 1789147565e3
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
name: "useLocalStorage",
|
|
1538
|
+
file: "packages/core/useLocalStorage/index.tsx",
|
|
1539
|
+
pkg: "core",
|
|
1540
|
+
dir: "useLocalStorage",
|
|
1541
|
+
category: "State",
|
|
1542
|
+
lastUpdated: 1788942682e3
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
name: "useLongPress",
|
|
1546
|
+
file: "packages/core/useLongPress/index.tsx",
|
|
1547
|
+
pkg: "core",
|
|
1548
|
+
dir: "useLongPress",
|
|
1549
|
+
category: "Sensors",
|
|
1550
|
+
lastUpdated: 1789147565e3
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
name: "useMagicKeys",
|
|
1554
|
+
file: "packages/core/useMagicKeys/index.tsx",
|
|
1555
|
+
pkg: "core",
|
|
1556
|
+
dir: "useMagicKeys",
|
|
1557
|
+
category: "Sensors",
|
|
1558
|
+
lastUpdated: 1789147565e3
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
name: "useMath",
|
|
1562
|
+
file: "packages/math/useMath/index.tsx",
|
|
1563
|
+
pkg: "math",
|
|
1564
|
+
dir: "useMath",
|
|
1565
|
+
category: "@Math",
|
|
1566
|
+
lastUpdated: 1789147565e3
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
name: "useMax",
|
|
1570
|
+
file: "packages/math/useMax/index.tsx",
|
|
1571
|
+
pkg: "math",
|
|
1572
|
+
dir: "useMax",
|
|
1573
|
+
category: "@Math",
|
|
1574
|
+
lastUpdated: 1789147565e3
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
name: "useMediaControls",
|
|
1578
|
+
file: "packages/core/useMediaControls/index.tsx",
|
|
1579
|
+
pkg: "core",
|
|
1580
|
+
dir: "useMediaControls",
|
|
1581
|
+
category: "Browser",
|
|
1582
|
+
lastUpdated: 1789147565e3
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
name: "useMediaQuery",
|
|
1586
|
+
file: "packages/core/useMediaQuery/index.tsx",
|
|
1587
|
+
pkg: "core",
|
|
1588
|
+
dir: "useMediaQuery",
|
|
1589
|
+
category: "Browser",
|
|
1590
|
+
lastUpdated: 1789147565e3
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
name: "useMemoize",
|
|
1594
|
+
file: "packages/core/useMemoize/index.tsx",
|
|
1595
|
+
pkg: "core",
|
|
1596
|
+
dir: "useMemoize",
|
|
1597
|
+
category: "Utilities",
|
|
1598
|
+
lastUpdated: 1788989746e3
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
name: "useMemory",
|
|
1602
|
+
file: "packages/core/useMemory/index.tsx",
|
|
1603
|
+
pkg: "core",
|
|
1604
|
+
dir: "useMemory",
|
|
1605
|
+
category: "Browser",
|
|
1606
|
+
lastUpdated: 1789147565e3
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
name: "useMin",
|
|
1610
|
+
file: "packages/math/useMin/index.tsx",
|
|
1611
|
+
pkg: "math",
|
|
1612
|
+
dir: "useMin",
|
|
1613
|
+
category: "@Math",
|
|
1614
|
+
lastUpdated: 1789147565e3
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
name: "useMount",
|
|
1618
|
+
file: "packages/shared/useMount/index.tsx",
|
|
1619
|
+
pkg: "shared",
|
|
1620
|
+
dir: "useMount",
|
|
1621
|
+
category: "Lifecycle",
|
|
1622
|
+
lastUpdated: 1788946165e3
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
name: "useMounted",
|
|
1626
|
+
file: "packages/core/useMounted/index.tsx",
|
|
1627
|
+
pkg: "core",
|
|
1628
|
+
dir: "useMounted",
|
|
1629
|
+
category: "Component",
|
|
1630
|
+
lastUpdated: 178899005e4
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
name: "useMouse",
|
|
1634
|
+
file: "packages/core/useMouse/index.tsx",
|
|
1635
|
+
pkg: "core",
|
|
1636
|
+
dir: "useMouse",
|
|
1637
|
+
category: "Sensors",
|
|
1638
|
+
lastUpdated: 1789147565e3
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
name: "useMouseInElement",
|
|
1642
|
+
file: "packages/core/useMouseInElement/index.tsx",
|
|
1643
|
+
pkg: "core",
|
|
1644
|
+
dir: "useMouseInElement",
|
|
1645
|
+
category: "Elements",
|
|
1646
|
+
lastUpdated: 1789147565e3
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
name: "useMousePressed",
|
|
1650
|
+
file: "packages/core/useMousePressed/index.tsx",
|
|
1651
|
+
pkg: "core",
|
|
1652
|
+
dir: "useMousePressed",
|
|
1653
|
+
category: "Sensors",
|
|
1654
|
+
lastUpdated: 1789147565e3
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
name: "useMutationObserver",
|
|
1658
|
+
file: "packages/core/useMutationObserver/index.tsx",
|
|
1659
|
+
pkg: "core",
|
|
1660
|
+
dir: "useMutationObserver",
|
|
1661
|
+
category: "Elements",
|
|
1662
|
+
lastUpdated: 1789147565e3
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
name: "useNavigatorLanguage",
|
|
1666
|
+
file: "packages/core/useNavigatorLanguage/index.tsx",
|
|
1667
|
+
pkg: "core",
|
|
1668
|
+
dir: "useNavigatorLanguage",
|
|
1669
|
+
category: "Sensors",
|
|
1670
|
+
lastUpdated: 1789147565e3
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
name: "useNetwork",
|
|
1674
|
+
file: "packages/core/useNetwork/index.tsx",
|
|
1675
|
+
pkg: "core",
|
|
1676
|
+
dir: "useNetwork",
|
|
1677
|
+
category: "Sensors",
|
|
1678
|
+
lastUpdated: 1789147565e3
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
name: "useNow",
|
|
1682
|
+
file: "packages/core/useNow/index.tsx",
|
|
1683
|
+
pkg: "core",
|
|
1684
|
+
dir: "useNow",
|
|
1685
|
+
category: "Animation",
|
|
1686
|
+
lastUpdated: 1789147565e3
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
name: "useNProgress",
|
|
1690
|
+
file: "packages/integrations/useNProgress/index.tsx",
|
|
1691
|
+
pkg: "integrations",
|
|
1692
|
+
dir: "useNProgress",
|
|
1693
|
+
category: "@Integrations",
|
|
1694
|
+
lastUpdated: 1789147565e3
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
name: "useObjectUrl",
|
|
1698
|
+
file: "packages/core/useObjectUrl/index.tsx",
|
|
1699
|
+
pkg: "core",
|
|
1700
|
+
dir: "useObjectUrl",
|
|
1701
|
+
category: "Browser",
|
|
1702
|
+
lastUpdated: 1788958794e3
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
name: "useObservable",
|
|
1706
|
+
file: "packages/rxjs/useObservable/index.tsx",
|
|
1707
|
+
pkg: "rxjs",
|
|
1708
|
+
dir: "useObservable",
|
|
1709
|
+
category: "@RxJS",
|
|
1710
|
+
lastUpdated: 1789147565e3
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
name: "useOffsetPagination",
|
|
1714
|
+
file: "packages/core/useOffsetPagination/index.tsx",
|
|
1715
|
+
pkg: "core",
|
|
1716
|
+
dir: "useOffsetPagination",
|
|
1717
|
+
category: "Utilities",
|
|
1718
|
+
lastUpdated: 1789147565e3
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
name: "useOnline",
|
|
1722
|
+
file: "packages/core/useOnline/index.tsx",
|
|
1723
|
+
pkg: "core",
|
|
1724
|
+
dir: "useOnline",
|
|
1725
|
+
category: "Sensors",
|
|
1726
|
+
lastUpdated: 1789147565e3
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
name: "usePageLeave",
|
|
1730
|
+
file: "packages/core/usePageLeave/index.tsx",
|
|
1731
|
+
pkg: "core",
|
|
1732
|
+
dir: "usePageLeave",
|
|
1733
|
+
category: "Sensors",
|
|
1734
|
+
lastUpdated: 1789147565e3
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
name: "useParallax",
|
|
1738
|
+
file: "packages/core/useParallax/index.tsx",
|
|
1739
|
+
pkg: "core",
|
|
1740
|
+
dir: "useParallax",
|
|
1741
|
+
category: "Sensors",
|
|
1742
|
+
lastUpdated: 1789147565e3
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
name: "useParams",
|
|
1746
|
+
file: "packages/core/useParams/index.tsx",
|
|
1747
|
+
pkg: "core",
|
|
1748
|
+
dir: "useParams",
|
|
1749
|
+
category: "Browser",
|
|
1750
|
+
lastUpdated: 1789147565e3
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
name: "useParentElement",
|
|
1754
|
+
file: "packages/core/useParentElement/index.tsx",
|
|
1755
|
+
pkg: "core",
|
|
1756
|
+
dir: "useParentElement",
|
|
1757
|
+
category: "Elements",
|
|
1758
|
+
lastUpdated: 1789147565e3
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
name: "usePerformanceObserver",
|
|
1762
|
+
file: "packages/core/usePerformanceObserver/index.tsx",
|
|
1763
|
+
pkg: "core",
|
|
1764
|
+
dir: "usePerformanceObserver",
|
|
1765
|
+
category: "Browser",
|
|
1766
|
+
lastUpdated: 1788991736e3
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
name: "usePermission",
|
|
1770
|
+
file: "packages/core/usePermission/index.tsx",
|
|
1771
|
+
pkg: "core",
|
|
1772
|
+
dir: "usePermission",
|
|
1773
|
+
category: "Browser",
|
|
1774
|
+
lastUpdated: 1788992388e3
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
name: "usePointer",
|
|
1778
|
+
file: "packages/core/usePointer/index.tsx",
|
|
1779
|
+
pkg: "core",
|
|
1780
|
+
dir: "usePointer",
|
|
1781
|
+
category: "Sensors",
|
|
1782
|
+
lastUpdated: 1789147565e3
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
name: "usePointerLock",
|
|
1786
|
+
file: "packages/core/usePointerLock/index.tsx",
|
|
1787
|
+
pkg: "core",
|
|
1788
|
+
dir: "usePointerLock",
|
|
1789
|
+
category: "Sensors",
|
|
1790
|
+
lastUpdated: 1789147565e3
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
name: "usePointerSwipe",
|
|
1794
|
+
file: "packages/core/usePointerSwipe/index.tsx",
|
|
1795
|
+
pkg: "core",
|
|
1796
|
+
dir: "usePointerSwipe",
|
|
1797
|
+
category: "Sensors",
|
|
1798
|
+
lastUpdated: 1789147565e3
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
name: "usePrecision",
|
|
1802
|
+
file: "packages/math/usePrecision/index.tsx",
|
|
1803
|
+
pkg: "math",
|
|
1804
|
+
dir: "usePrecision",
|
|
1805
|
+
category: "@Math",
|
|
1806
|
+
lastUpdated: 1789147565e3
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
name: "usePreferredColorScheme",
|
|
1810
|
+
file: "packages/core/usePreferredColorScheme/index.tsx",
|
|
1811
|
+
pkg: "core",
|
|
1812
|
+
dir: "usePreferredColorScheme",
|
|
1813
|
+
category: "Browser",
|
|
1814
|
+
lastUpdated: 1789147565e3
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
name: "usePreferredContrast",
|
|
1818
|
+
file: "packages/core/usePreferredContrast/index.tsx",
|
|
1819
|
+
pkg: "core",
|
|
1820
|
+
dir: "usePreferredContrast",
|
|
1821
|
+
category: "Browser",
|
|
1822
|
+
lastUpdated: 1789147565e3
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
name: "usePreferredDark",
|
|
1826
|
+
file: "packages/core/usePreferredDark/index.tsx",
|
|
1827
|
+
pkg: "core",
|
|
1828
|
+
dir: "usePreferredDark",
|
|
1829
|
+
category: "Browser",
|
|
1830
|
+
lastUpdated: 1789147565e3
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
name: "usePreferredLanguages",
|
|
1834
|
+
file: "packages/core/usePreferredLanguages/index.tsx",
|
|
1835
|
+
pkg: "core",
|
|
1836
|
+
dir: "usePreferredLanguages",
|
|
1837
|
+
category: "Browser",
|
|
1838
|
+
lastUpdated: 1789147565e3
|
|
1839
|
+
},
|
|
1840
|
+
{
|
|
1841
|
+
name: "usePreferredReducedMotion",
|
|
1842
|
+
file: "packages/core/usePreferredReducedMotion/index.tsx",
|
|
1843
|
+
pkg: "core",
|
|
1844
|
+
dir: "usePreferredReducedMotion",
|
|
1845
|
+
category: "Browser",
|
|
1846
|
+
lastUpdated: 1789147565e3
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
name: "usePreferredReducedTransparency",
|
|
1850
|
+
file: "packages/core/usePreferredReducedTransparency/index.tsx",
|
|
1851
|
+
pkg: "core",
|
|
1852
|
+
dir: "usePreferredReducedTransparency",
|
|
1853
|
+
category: "Browser",
|
|
1854
|
+
lastUpdated: 1789147565e3
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
name: "usePrevious",
|
|
1858
|
+
file: "packages/core/usePrevious/index.tsx",
|
|
1859
|
+
pkg: "core",
|
|
1860
|
+
dir: "usePrevious",
|
|
1861
|
+
category: "Utilities",
|
|
1862
|
+
lastUpdated: 1788964249e3
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
name: "useProjection",
|
|
1866
|
+
file: "packages/math/useProjection/index.tsx",
|
|
1867
|
+
pkg: "math",
|
|
1868
|
+
dir: "useProjection",
|
|
1869
|
+
category: "@Math",
|
|
1870
|
+
lastUpdated: 17889958e5
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
name: "useQRCode",
|
|
1874
|
+
file: "packages/integrations/useQRCode/index.tsx",
|
|
1875
|
+
pkg: "integrations",
|
|
1876
|
+
dir: "useQRCode",
|
|
1877
|
+
category: "@Integrations",
|
|
1878
|
+
lastUpdated: 1789147565e3
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
name: "useQuery",
|
|
1882
|
+
file: "packages/core/useQuery/index.tsx",
|
|
1883
|
+
pkg: "core",
|
|
1884
|
+
dir: "useQuery",
|
|
1885
|
+
category: "Browser",
|
|
1886
|
+
lastUpdated: 1789147565e3
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
name: "useRafFn",
|
|
1890
|
+
file: "packages/core/useRafFn/index.tsx",
|
|
1891
|
+
pkg: "core",
|
|
1892
|
+
dir: "useRafFn",
|
|
1893
|
+
category: "Animation",
|
|
1894
|
+
lastUpdated: 1789147565e3
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
name: "useRefsList",
|
|
1898
|
+
file: "packages/core/useRefsList/index.tsx",
|
|
1899
|
+
pkg: "core",
|
|
1900
|
+
dir: "useRefsList",
|
|
1901
|
+
category: "Component",
|
|
1902
|
+
lastUpdated: 1788963203e3
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
name: "useResizeObserver",
|
|
1906
|
+
file: "packages/core/useResizeObserver/index.tsx",
|
|
1907
|
+
pkg: "core",
|
|
1908
|
+
dir: "useResizeObserver",
|
|
1909
|
+
category: "Elements",
|
|
1910
|
+
lastUpdated: 1789147565e3
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
name: "useRound",
|
|
1914
|
+
file: "packages/math/useRound/index.tsx",
|
|
1915
|
+
pkg: "math",
|
|
1916
|
+
dir: "useRound",
|
|
1917
|
+
category: "@Math",
|
|
1918
|
+
lastUpdated: 1789147565e3
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
name: "useRTDB",
|
|
1922
|
+
file: "packages/firebase/useRTDB/index.tsx",
|
|
1923
|
+
pkg: "firebase",
|
|
1924
|
+
dir: "useRTDB",
|
|
1925
|
+
category: "@Firebase",
|
|
1926
|
+
lastUpdated: 1788942682e3
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
name: "useScreenOrientation",
|
|
1930
|
+
file: "packages/core/useScreenOrientation/index.tsx",
|
|
1931
|
+
pkg: "core",
|
|
1932
|
+
dir: "useScreenOrientation",
|
|
1933
|
+
category: "Browser",
|
|
1934
|
+
lastUpdated: 1788960166e3
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
name: "useScreenSafeArea",
|
|
1938
|
+
file: "packages/core/useScreenSafeArea/index.tsx",
|
|
1939
|
+
pkg: "core",
|
|
1940
|
+
dir: "useScreenSafeArea",
|
|
1941
|
+
category: "Browser",
|
|
1942
|
+
lastUpdated: 1788942682e3
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
name: "useScriptTag",
|
|
1946
|
+
file: "packages/core/useScriptTag/index.tsx",
|
|
1947
|
+
pkg: "core",
|
|
1948
|
+
dir: "useScriptTag",
|
|
1949
|
+
category: "Browser",
|
|
1950
|
+
lastUpdated: 1788963761e3
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
name: "useScroll",
|
|
1954
|
+
file: "packages/core/useScroll/index.tsx",
|
|
1955
|
+
pkg: "core",
|
|
1956
|
+
dir: "useScroll",
|
|
1957
|
+
category: "Sensors",
|
|
1958
|
+
lastUpdated: 1789147565e3
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
name: "useScrollLock",
|
|
1962
|
+
file: "packages/core/useScrollLock/index.tsx",
|
|
1963
|
+
pkg: "core",
|
|
1964
|
+
dir: "useScrollLock",
|
|
1965
|
+
category: "Sensors",
|
|
1966
|
+
lastUpdated: 1789147565e3
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
name: "useSessionStorage",
|
|
1970
|
+
file: "packages/core/useSessionStorage/index.tsx",
|
|
1971
|
+
pkg: "core",
|
|
1972
|
+
dir: "useSessionStorage",
|
|
1973
|
+
category: "State",
|
|
1974
|
+
lastUpdated: 1788960102e3
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
name: "useShare",
|
|
1978
|
+
file: "packages/core/useShare/index.tsx",
|
|
1979
|
+
pkg: "core",
|
|
1980
|
+
dir: "useShare",
|
|
1981
|
+
category: "Browser",
|
|
1982
|
+
lastUpdated: 1788963984e3
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
name: "useSortable",
|
|
1986
|
+
file: "packages/integrations/useSortable/index.tsx",
|
|
1987
|
+
pkg: "integrations",
|
|
1988
|
+
dir: "useSortable",
|
|
1989
|
+
category: "@Integrations",
|
|
1990
|
+
lastUpdated: 1789147565e3
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
name: "useSorted",
|
|
1994
|
+
file: "packages/core/useSorted/index.tsx",
|
|
1995
|
+
pkg: "core",
|
|
1996
|
+
dir: "useSorted",
|
|
1997
|
+
category: "Array",
|
|
1998
|
+
lastUpdated: 1788962909e3
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
name: "useSpeechRecognition",
|
|
2002
|
+
file: "packages/core/useSpeechRecognition/index.tsx",
|
|
2003
|
+
pkg: "core",
|
|
2004
|
+
dir: "useSpeechRecognition",
|
|
2005
|
+
category: "Sensors",
|
|
2006
|
+
lastUpdated: 1789147565e3
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
name: "useSpeechSynthesis",
|
|
2010
|
+
file: "packages/core/useSpeechSynthesis/index.tsx",
|
|
2011
|
+
pkg: "core",
|
|
2012
|
+
dir: "useSpeechSynthesis",
|
|
2013
|
+
category: "Sensors",
|
|
2014
|
+
lastUpdated: 1789147565e3
|
|
2015
|
+
},
|
|
2016
|
+
{
|
|
2017
|
+
name: "useSSRWidth",
|
|
2018
|
+
file: "packages/core/useSSRWidth/index.tsx",
|
|
2019
|
+
pkg: "core",
|
|
2020
|
+
dir: "useSSRWidth",
|
|
2021
|
+
category: "Browser",
|
|
2022
|
+
lastUpdated: 1789147565e3
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
name: "useStartTyping",
|
|
2026
|
+
file: "packages/core/useStartTyping/index.tsx",
|
|
2027
|
+
pkg: "core",
|
|
2028
|
+
dir: "useStartTyping",
|
|
2029
|
+
category: "Sensors",
|
|
2030
|
+
lastUpdated: 1789147565e3
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
name: "useStateAutoReset",
|
|
2034
|
+
file: "packages/shared/useStateAutoReset/index.tsx",
|
|
2035
|
+
pkg: "shared",
|
|
2036
|
+
dir: "useStateAutoReset",
|
|
2037
|
+
category: "Reactivity",
|
|
2038
|
+
lastUpdated: 1788977666e3
|
|
2039
|
+
},
|
|
2040
|
+
{
|
|
2041
|
+
name: "useStateDebounced",
|
|
2042
|
+
file: "packages/shared/useStateDebounced/index.tsx",
|
|
2043
|
+
pkg: "shared",
|
|
2044
|
+
dir: "useStateDebounced",
|
|
2045
|
+
category: "Reactivity",
|
|
2046
|
+
lastUpdated: 1789000838e3
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
name: "useStateDebouncedHistory",
|
|
2050
|
+
file: "packages/core/useStateDebouncedHistory/index.tsx",
|
|
2051
|
+
pkg: "core",
|
|
2052
|
+
dir: "useStateDebouncedHistory",
|
|
2053
|
+
category: "State",
|
|
2054
|
+
lastUpdated: 1789147565e3
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
name: "useStateDefault",
|
|
2058
|
+
file: "packages/shared/useStateDefault/index.tsx",
|
|
2059
|
+
pkg: "shared",
|
|
2060
|
+
dir: "useStateDefault",
|
|
2061
|
+
category: "Reactivity",
|
|
2062
|
+
lastUpdated: 1788998493e3
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
name: "useStateHistory",
|
|
2066
|
+
file: "packages/core/useStateHistory/index.tsx",
|
|
2067
|
+
pkg: "core",
|
|
2068
|
+
dir: "useStateHistory",
|
|
2069
|
+
category: "State",
|
|
2070
|
+
lastUpdated: 1789147565e3
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
name: "useStateManualHistory",
|
|
2074
|
+
file: "packages/core/useStateManualHistory/index.tsx",
|
|
2075
|
+
pkg: "core",
|
|
2076
|
+
dir: "useStateManualHistory",
|
|
2077
|
+
category: "State",
|
|
2078
|
+
lastUpdated: 1789147565e3
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
name: "useStateManualReset",
|
|
2082
|
+
file: "packages/shared/useStateManualReset/index.tsx",
|
|
2083
|
+
pkg: "shared",
|
|
2084
|
+
dir: "useStateManualReset",
|
|
2085
|
+
category: "Reactivity",
|
|
2086
|
+
lastUpdated: 1788997642e3
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
name: "useStateThrottled",
|
|
2090
|
+
file: "packages/shared/useStateThrottled/index.tsx",
|
|
2091
|
+
pkg: "shared",
|
|
2092
|
+
dir: "useStateThrottled",
|
|
2093
|
+
category: "Reactivity",
|
|
2094
|
+
lastUpdated: 1789000282e3
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
name: "useStateThrottledHistory",
|
|
2098
|
+
file: "packages/core/useStateThrottledHistory/index.tsx",
|
|
2099
|
+
pkg: "core",
|
|
2100
|
+
dir: "useStateThrottledHistory",
|
|
2101
|
+
category: "State",
|
|
2102
|
+
lastUpdated: 1789147565e3
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
name: "useStateWithControl",
|
|
2106
|
+
file: "packages/shared/useStateWithControl/index.tsx",
|
|
2107
|
+
pkg: "shared",
|
|
2108
|
+
dir: "useStateWithControl",
|
|
2109
|
+
category: "Reactivity",
|
|
2110
|
+
lastUpdated: 1788998206e3
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
name: "useStepper",
|
|
2114
|
+
file: "packages/core/useStepper/index.tsx",
|
|
2115
|
+
pkg: "core",
|
|
2116
|
+
dir: "useStepper",
|
|
2117
|
+
category: "Utilities",
|
|
2118
|
+
lastUpdated: 178896595e4
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
name: "useStorage",
|
|
2122
|
+
file: "packages/core/useStorage/index.tsx",
|
|
2123
|
+
pkg: "core",
|
|
2124
|
+
dir: "useStorage",
|
|
2125
|
+
category: "State",
|
|
2126
|
+
lastUpdated: 1789147565e3
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
name: "useStorageAsync",
|
|
2130
|
+
file: "packages/core/useStorageAsync/index.tsx",
|
|
2131
|
+
pkg: "core",
|
|
2132
|
+
dir: "useStorageAsync",
|
|
2133
|
+
category: "State",
|
|
2134
|
+
lastUpdated: 1788966005e3
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
name: "useStyleTag",
|
|
2138
|
+
file: "packages/core/useStyleTag/index.tsx",
|
|
2139
|
+
pkg: "core",
|
|
2140
|
+
dir: "useStyleTag",
|
|
2141
|
+
category: "Browser",
|
|
2142
|
+
lastUpdated: 1789147565e3
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
name: "useSubject",
|
|
2146
|
+
file: "packages/rxjs/useSubject/index.tsx",
|
|
2147
|
+
pkg: "rxjs",
|
|
2148
|
+
dir: "useSubject",
|
|
2149
|
+
category: "@RxJS",
|
|
2150
|
+
lastUpdated: 1789147565e3
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
name: "useSubscription",
|
|
2154
|
+
file: "packages/rxjs/useSubscription/index.tsx",
|
|
2155
|
+
pkg: "rxjs",
|
|
2156
|
+
dir: "useSubscription",
|
|
2157
|
+
category: "@RxJS",
|
|
2158
|
+
lastUpdated: 1789017877e3
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
name: "useSum",
|
|
2162
|
+
file: "packages/math/useSum/index.tsx",
|
|
2163
|
+
pkg: "math",
|
|
2164
|
+
dir: "useSum",
|
|
2165
|
+
category: "@Math",
|
|
2166
|
+
lastUpdated: 1789147565e3
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
name: "useSupported",
|
|
2170
|
+
file: "packages/core/useSupported/index.tsx",
|
|
2171
|
+
pkg: "core",
|
|
2172
|
+
dir: "useSupported",
|
|
2173
|
+
category: "Utilities",
|
|
2174
|
+
lastUpdated: 1789147565e3
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
name: "useSwipe",
|
|
2178
|
+
file: "packages/core/useSwipe/index.tsx",
|
|
2179
|
+
pkg: "core",
|
|
2180
|
+
dir: "useSwipe",
|
|
2181
|
+
category: "Sensors",
|
|
2182
|
+
lastUpdated: 1789147565e3
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
name: "useTemporalNow",
|
|
2186
|
+
file: "packages/core/useTemporalNow/index.tsx",
|
|
2187
|
+
pkg: "core",
|
|
2188
|
+
dir: "useTemporalNow",
|
|
2189
|
+
category: "Time",
|
|
2190
|
+
lastUpdated: 1789147565e3
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
name: "useTextareaAutosize",
|
|
2194
|
+
file: "packages/core/useTextareaAutosize/index.tsx",
|
|
2195
|
+
pkg: "core",
|
|
2196
|
+
dir: "useTextareaAutosize",
|
|
2197
|
+
category: "Browser",
|
|
2198
|
+
lastUpdated: 1789147565e3
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
name: "useTextDirection",
|
|
2202
|
+
file: "packages/core/useTextDirection/index.tsx",
|
|
2203
|
+
pkg: "core",
|
|
2204
|
+
dir: "useTextDirection",
|
|
2205
|
+
category: "Browser",
|
|
2206
|
+
lastUpdated: 1788996791e3
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
name: "useTextSelection",
|
|
2210
|
+
file: "packages/core/useTextSelection/index.tsx",
|
|
2211
|
+
pkg: "core",
|
|
2212
|
+
dir: "useTextSelection",
|
|
2213
|
+
category: "Sensors",
|
|
2214
|
+
lastUpdated: 1789147565e3
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
name: "useThrottleFn",
|
|
2218
|
+
file: "packages/shared/useThrottleFn/index.tsx",
|
|
2219
|
+
pkg: "shared",
|
|
2220
|
+
dir: "useThrottleFn",
|
|
2221
|
+
category: "Utilities",
|
|
2222
|
+
lastUpdated: 1788998912e3
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
name: "useTimeAgo",
|
|
2226
|
+
file: "packages/core/useTimeAgo/index.tsx",
|
|
2227
|
+
pkg: "core",
|
|
2228
|
+
dir: "useTimeAgo",
|
|
2229
|
+
category: "Time",
|
|
2230
|
+
lastUpdated: 1789147565e3
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
name: "useTimeAgoIntl",
|
|
2234
|
+
file: "packages/core/useTimeAgoIntl/index.tsx",
|
|
2235
|
+
pkg: "core",
|
|
2236
|
+
dir: "useTimeAgoIntl",
|
|
2237
|
+
category: "Time",
|
|
2238
|
+
lastUpdated: 1789147565e3
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
name: "useTimeout",
|
|
2242
|
+
file: "packages/shared/useTimeout/index.tsx",
|
|
2243
|
+
pkg: "shared",
|
|
2244
|
+
dir: "useTimeout",
|
|
2245
|
+
category: "Animation",
|
|
2246
|
+
lastUpdated: 1788981733e3
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
name: "useTimeoutFn",
|
|
2250
|
+
file: "packages/shared/useTimeoutFn/index.tsx",
|
|
2251
|
+
pkg: "shared",
|
|
2252
|
+
dir: "useTimeoutFn",
|
|
2253
|
+
category: "Animation",
|
|
2254
|
+
lastUpdated: 1788981739e3
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
name: "useTimeoutPoll",
|
|
2258
|
+
file: "packages/core/useTimeoutPoll/index.tsx",
|
|
2259
|
+
pkg: "core",
|
|
2260
|
+
dir: "useTimeoutPoll",
|
|
2261
|
+
category: "Utilities",
|
|
2262
|
+
lastUpdated: 1788994903e3
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
name: "useTimestamp",
|
|
2266
|
+
file: "packages/core/useTimestamp/index.tsx",
|
|
2267
|
+
pkg: "core",
|
|
2268
|
+
dir: "useTimestamp",
|
|
2269
|
+
category: "Animation",
|
|
2270
|
+
lastUpdated: 178899833e4
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
name: "useTitle",
|
|
2274
|
+
file: "packages/core/useTitle/index.tsx",
|
|
2275
|
+
pkg: "core",
|
|
2276
|
+
dir: "useTitle",
|
|
2277
|
+
category: "Browser",
|
|
2278
|
+
lastUpdated: 178899187e4
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
name: "useToggle",
|
|
2282
|
+
file: "packages/shared/useToggle/index.tsx",
|
|
2283
|
+
pkg: "shared",
|
|
2284
|
+
dir: "useToggle",
|
|
2285
|
+
category: "Utilities",
|
|
2286
|
+
lastUpdated: 1788981648e3
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
name: "useToNumber",
|
|
2290
|
+
file: "packages/shared/useToNumber/index.tsx",
|
|
2291
|
+
pkg: "shared",
|
|
2292
|
+
dir: "useToNumber",
|
|
2293
|
+
category: "Utilities",
|
|
2294
|
+
lastUpdated: 1788942682e3
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
name: "useToString",
|
|
2298
|
+
file: "packages/shared/useToString/index.tsx",
|
|
2299
|
+
pkg: "shared",
|
|
2300
|
+
dir: "useToString",
|
|
2301
|
+
category: "Utilities",
|
|
2302
|
+
lastUpdated: 1789001834e3
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
name: "useTransition",
|
|
2306
|
+
file: "packages/core/useTransition/index.tsx",
|
|
2307
|
+
pkg: "core",
|
|
2308
|
+
dir: "useTransition",
|
|
2309
|
+
category: "Animation",
|
|
2310
|
+
lastUpdated: 1788994691e3
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
name: "useTrunc",
|
|
2314
|
+
file: "packages/math/useTrunc/index.tsx",
|
|
2315
|
+
pkg: "math",
|
|
2316
|
+
dir: "useTrunc",
|
|
2317
|
+
category: "@Math",
|
|
2318
|
+
lastUpdated: 1789147565e3
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
name: "useUnmount",
|
|
2322
|
+
file: "packages/shared/useUnmount/index.tsx",
|
|
2323
|
+
pkg: "shared",
|
|
2324
|
+
dir: "useUnmount",
|
|
2325
|
+
category: "Lifecycle",
|
|
2326
|
+
lastUpdated: 1788942682e3
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
name: "useUpdate",
|
|
2330
|
+
file: "packages/shared/useUpdate/index.tsx",
|
|
2331
|
+
pkg: "shared",
|
|
2332
|
+
dir: "useUpdate",
|
|
2333
|
+
category: "Animation",
|
|
2334
|
+
lastUpdated: 1788942682e3
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
name: "useUrlSearchParams",
|
|
2338
|
+
file: "packages/core/useUrlSearchParams/index.tsx",
|
|
2339
|
+
pkg: "core",
|
|
2340
|
+
dir: "useUrlSearchParams",
|
|
2341
|
+
category: "Browser",
|
|
2342
|
+
lastUpdated: 1789147565e3
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
name: "useUserMedia",
|
|
2346
|
+
file: "packages/core/useUserMedia/index.tsx",
|
|
2347
|
+
pkg: "core",
|
|
2348
|
+
dir: "useUserMedia",
|
|
2349
|
+
category: "Sensors",
|
|
2350
|
+
lastUpdated: 1788997864e3
|
|
2351
|
+
},
|
|
2352
|
+
{
|
|
2353
|
+
name: "useVibrate",
|
|
2354
|
+
file: "packages/core/useVibrate/index.tsx",
|
|
2355
|
+
pkg: "core",
|
|
2356
|
+
dir: "useVibrate",
|
|
2357
|
+
category: "Browser",
|
|
2358
|
+
lastUpdated: 1789147565e3
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
name: "useVirtualList",
|
|
2362
|
+
file: "packages/core/useVirtualList/index.tsx",
|
|
2363
|
+
pkg: "core",
|
|
2364
|
+
dir: "useVirtualList",
|
|
2365
|
+
category: "Component",
|
|
2366
|
+
lastUpdated: 1788996627e3
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
name: "useWakeLock",
|
|
2370
|
+
file: "packages/core/useWakeLock/index.tsx",
|
|
2371
|
+
pkg: "core",
|
|
2372
|
+
dir: "useWakeLock",
|
|
2373
|
+
category: "Browser",
|
|
2374
|
+
lastUpdated: 1789147565e3
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
name: "useWatch",
|
|
2378
|
+
file: "packages/shared/useWatch/index.tsx",
|
|
2379
|
+
pkg: "shared",
|
|
2380
|
+
dir: "useWatch",
|
|
2381
|
+
category: "Watch",
|
|
2382
|
+
lastUpdated: 1789001849e3
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
name: "useWatchArray",
|
|
2386
|
+
file: "packages/shared/useWatchArray/index.tsx",
|
|
2387
|
+
pkg: "shared",
|
|
2388
|
+
dir: "useWatchArray",
|
|
2389
|
+
category: "Watch",
|
|
2390
|
+
lastUpdated: 1789001863e3
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
name: "useWatchAtMost",
|
|
2394
|
+
file: "packages/shared/useWatchAtMost/index.tsx",
|
|
2395
|
+
pkg: "shared",
|
|
2396
|
+
dir: "useWatchAtMost",
|
|
2397
|
+
category: "Watch",
|
|
2398
|
+
lastUpdated: 1788986162e3
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
name: "useWatchDebounced",
|
|
2402
|
+
file: "packages/shared/useWatchDebounced/index.tsx",
|
|
2403
|
+
pkg: "shared",
|
|
2404
|
+
dir: "useWatchDebounced",
|
|
2405
|
+
category: "Watch",
|
|
2406
|
+
lastUpdated: 1789001877e3
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
name: "useWatchDeep",
|
|
2410
|
+
file: "packages/shared/useWatchDeep/index.tsx",
|
|
2411
|
+
pkg: "shared",
|
|
2412
|
+
dir: "useWatchDeep",
|
|
2413
|
+
category: "Watch",
|
|
2414
|
+
lastUpdated: 1789147565e3
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
name: "useWatchExtractedObservable",
|
|
2418
|
+
file: "packages/rxjs/useWatchExtractedObservable/index.tsx",
|
|
2419
|
+
pkg: "rxjs",
|
|
2420
|
+
dir: "useWatchExtractedObservable",
|
|
2421
|
+
category: "@RxJS",
|
|
2422
|
+
lastUpdated: 178901019e4
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
name: "useWatchIgnorable",
|
|
2426
|
+
file: "packages/shared/useWatchIgnorable/index.tsx",
|
|
2427
|
+
pkg: "shared",
|
|
2428
|
+
dir: "useWatchIgnorable",
|
|
2429
|
+
category: "Watch",
|
|
2430
|
+
lastUpdated: 1788986154e3
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
name: "useWatchImmediate",
|
|
2434
|
+
file: "packages/shared/useWatchImmediate/index.tsx",
|
|
2435
|
+
pkg: "shared",
|
|
2436
|
+
dir: "useWatchImmediate",
|
|
2437
|
+
category: "Watch",
|
|
2438
|
+
lastUpdated: 1788942682e3
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
name: "useWatchOnce",
|
|
2442
|
+
file: "packages/shared/useWatchOnce/index.tsx",
|
|
2443
|
+
pkg: "shared",
|
|
2444
|
+
dir: "useWatchOnce",
|
|
2445
|
+
category: "Watch",
|
|
2446
|
+
lastUpdated: 1789001932e3
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
name: "useWatchPausable",
|
|
2450
|
+
file: "packages/shared/useWatchPausable/index.tsx",
|
|
2451
|
+
pkg: "shared",
|
|
2452
|
+
dir: "useWatchPausable",
|
|
2453
|
+
category: "Watch",
|
|
2454
|
+
lastUpdated: 1788994734e3
|
|
2455
|
+
},
|
|
2456
|
+
{
|
|
2457
|
+
name: "useWatchThrottled",
|
|
2458
|
+
file: "packages/shared/useWatchThrottled/index.tsx",
|
|
2459
|
+
pkg: "shared",
|
|
2460
|
+
dir: "useWatchThrottled",
|
|
2461
|
+
category: "Watch",
|
|
2462
|
+
lastUpdated: 1788994759e3
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
name: "useWatchTriggerable",
|
|
2466
|
+
file: "packages/shared/useWatchTriggerable/index.tsx",
|
|
2467
|
+
pkg: "shared",
|
|
2468
|
+
dir: "useWatchTriggerable",
|
|
2469
|
+
category: "Watch",
|
|
2470
|
+
lastUpdated: 1788988809e3
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
name: "useWatchWithFilter",
|
|
2474
|
+
file: "packages/shared/useWatchWithFilter/index.tsx",
|
|
2475
|
+
pkg: "shared",
|
|
2476
|
+
dir: "useWatchWithFilter",
|
|
2477
|
+
category: "Watch",
|
|
2478
|
+
lastUpdated: 1788994784e3
|
|
2479
|
+
},
|
|
2480
|
+
{
|
|
2481
|
+
name: "useWebNotification",
|
|
2482
|
+
file: "packages/core/useWebNotification/index.tsx",
|
|
2483
|
+
pkg: "core",
|
|
2484
|
+
dir: "useWebNotification",
|
|
2485
|
+
category: "Browser",
|
|
2486
|
+
lastUpdated: 1789147565e3
|
|
2487
|
+
},
|
|
2488
|
+
{
|
|
2489
|
+
name: "useWebSocket",
|
|
2490
|
+
file: "packages/core/useWebSocket/index.tsx",
|
|
2491
|
+
pkg: "core",
|
|
2492
|
+
dir: "useWebSocket",
|
|
2493
|
+
category: "Browser",
|
|
2494
|
+
lastUpdated: 1789147565e3
|
|
2495
|
+
},
|
|
2496
|
+
{
|
|
2497
|
+
name: "useWebWorker",
|
|
2498
|
+
file: "packages/core/useWebWorker/index.tsx",
|
|
2499
|
+
pkg: "core",
|
|
2500
|
+
dir: "useWebWorker",
|
|
2501
|
+
category: "Browser",
|
|
2502
|
+
lastUpdated: 1788998635e3
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
name: "useWebWorkerFn",
|
|
2506
|
+
file: "packages/core/useWebWorkerFn/index.tsx",
|
|
2507
|
+
pkg: "core",
|
|
2508
|
+
dir: "useWebWorkerFn",
|
|
2509
|
+
category: "Browser",
|
|
2510
|
+
lastUpdated: 1788999163e3
|
|
2511
|
+
},
|
|
2512
|
+
{
|
|
2513
|
+
name: "useWhenever",
|
|
2514
|
+
file: "packages/shared/useWhenever/index.tsx",
|
|
2515
|
+
pkg: "shared",
|
|
2516
|
+
dir: "useWhenever",
|
|
2517
|
+
category: "Watch",
|
|
2518
|
+
lastUpdated: 1788988828e3
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
name: "useWindowFocus",
|
|
2522
|
+
file: "packages/core/useWindowFocus/index.tsx",
|
|
2523
|
+
pkg: "core",
|
|
2524
|
+
dir: "useWindowFocus",
|
|
2525
|
+
category: "Elements",
|
|
2526
|
+
lastUpdated: 1789147565e3
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
name: "useWindowScroll",
|
|
2530
|
+
file: "packages/core/useWindowScroll/index.tsx",
|
|
2531
|
+
pkg: "core",
|
|
2532
|
+
dir: "useWindowScroll",
|
|
2533
|
+
category: "Elements",
|
|
2534
|
+
lastUpdated: 1788993907e3
|
|
2535
|
+
},
|
|
2536
|
+
{
|
|
2537
|
+
name: "useWindowSize",
|
|
2538
|
+
file: "packages/core/useWindowSize/index.tsx",
|
|
2539
|
+
pkg: "core",
|
|
2540
|
+
dir: "useWindowSize",
|
|
2541
|
+
category: "Elements",
|
|
2542
|
+
lastUpdated: 1789147565e3
|
|
2543
|
+
},
|
|
2544
|
+
{
|
|
2545
|
+
name: "useZoomFactor",
|
|
2546
|
+
file: "packages/electron/useZoomFactor/index.tsx",
|
|
2547
|
+
pkg: "electron",
|
|
2548
|
+
dir: "useZoomFactor",
|
|
2549
|
+
category: "@Electron",
|
|
2550
|
+
lastUpdated: 1789147565e3
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
name: "useZoomLevel",
|
|
2554
|
+
file: "packages/electron/useZoomLevel/index.tsx",
|
|
2555
|
+
pkg: "electron",
|
|
2556
|
+
dir: "useZoomLevel",
|
|
2557
|
+
category: "@Electron",
|
|
2558
|
+
lastUpdated: 1789147565e3
|
|
2559
|
+
},
|
|
2560
|
+
{
|
|
2561
|
+
name: "writeState",
|
|
2562
|
+
file: "packages/shared/utils/index.tsx",
|
|
2563
|
+
pkg: "shared",
|
|
2564
|
+
dir: "utils",
|
|
2565
|
+
category: "Utilities",
|
|
2566
|
+
lastUpdated: 1789147565e3
|
|
2567
|
+
}
|
|
2568
|
+
];
|
|
2569
|
+
const pages = [
|
|
2570
|
+
{
|
|
2571
|
+
name: "_resolve",
|
|
2572
|
+
pkg: "electron",
|
|
2573
|
+
doc: "packages/electron/_resolve/index.md",
|
|
2574
|
+
category: "@Electron",
|
|
2575
|
+
description: "internal helpers shared by the `@reause/electron` hooks",
|
|
2576
|
+
internal: true,
|
|
2577
|
+
lastUpdated: 1788942682e3
|
|
2578
|
+
},
|
|
2579
|
+
{
|
|
2580
|
+
name: "createEventHook",
|
|
2581
|
+
pkg: "shared",
|
|
2582
|
+
doc: "packages/shared/createEventHook/index.md",
|
|
2583
|
+
category: "Utilities",
|
|
2584
|
+
description: "utility for creating event hooks",
|
|
2585
|
+
lastUpdated: 17889921e5
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
name: "createGenericProjection",
|
|
2589
|
+
pkg: "math",
|
|
2590
|
+
doc: "packages/math/createGenericProjection/index.md",
|
|
2591
|
+
category: "@Math",
|
|
2592
|
+
description: "generic version of `createProjection`",
|
|
2593
|
+
lastUpdated: 1788958332e3
|
|
2594
|
+
},
|
|
2595
|
+
{
|
|
2596
|
+
name: "createGlobalState",
|
|
2597
|
+
pkg: "shared",
|
|
2598
|
+
doc: "packages/shared/createGlobalState/index.md",
|
|
2599
|
+
category: "State",
|
|
2600
|
+
description: "keep state in the global scope",
|
|
2601
|
+
lastUpdated: 1789010295e3
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
name: "createInjectionState",
|
|
2605
|
+
pkg: "shared",
|
|
2606
|
+
doc: "packages/shared/createInjectionState/index.md",
|
|
2607
|
+
category: "State",
|
|
2608
|
+
description: "create global state that can be injected into components",
|
|
2609
|
+
lastUpdated: 1788958778e3
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
name: "createPortalSlot",
|
|
2613
|
+
pkg: "core",
|
|
2614
|
+
doc: "packages/core/createPortalSlot/index.md",
|
|
2615
|
+
category: "Component",
|
|
2616
|
+
description: "define and reuse a template inside the component scope",
|
|
2617
|
+
lastUpdated: 1789147565e3
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
name: "createProjection",
|
|
2621
|
+
pkg: "math",
|
|
2622
|
+
doc: "packages/math/createProjection/index.md",
|
|
2623
|
+
category: "@Math",
|
|
2624
|
+
description: "reactive numeric projection from one domain to another",
|
|
2625
|
+
lastUpdated: 1788958332e3
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
name: "createPromisifiedComponent",
|
|
2629
|
+
pkg: "core",
|
|
2630
|
+
doc: "packages/core/createPromisifiedComponent/index.md",
|
|
2631
|
+
category: "Component",
|
|
2632
|
+
description: "template as Promise",
|
|
2633
|
+
lastUpdated: 1789024203e3
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
name: "createSharedHook",
|
|
2637
|
+
pkg: "shared",
|
|
2638
|
+
doc: "packages/shared/createSharedHook/index.md",
|
|
2639
|
+
category: "State",
|
|
2640
|
+
description: "make a composable function usable with multiple React components",
|
|
2641
|
+
lastUpdated: 178902221e4
|
|
2642
|
+
},
|
|
2643
|
+
{
|
|
2644
|
+
name: "isDefined",
|
|
2645
|
+
pkg: "shared",
|
|
2646
|
+
doc: "packages/shared/isDefined/index.md",
|
|
2647
|
+
category: "Utilities",
|
|
2648
|
+
description: "non-nullish checking type guard for ref-like objects",
|
|
2649
|
+
lastUpdated: 1788999327e3
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
name: "logicAnd",
|
|
2653
|
+
pkg: "math",
|
|
2654
|
+
doc: "packages/math/logicAnd/index.md",
|
|
2655
|
+
category: "@Math",
|
|
2656
|
+
description: "`AND` condition for values",
|
|
2657
|
+
lastUpdated: 1789147565e3
|
|
2658
|
+
},
|
|
2659
|
+
{
|
|
2660
|
+
name: "logicNot",
|
|
2661
|
+
pkg: "math",
|
|
2662
|
+
doc: "packages/math/logicNot/index.md",
|
|
2663
|
+
category: "@Math",
|
|
2664
|
+
description: "`NOT` condition for values",
|
|
2665
|
+
lastUpdated: 1789147565e3
|
|
2666
|
+
},
|
|
2667
|
+
{
|
|
2668
|
+
name: "logicOr",
|
|
2669
|
+
pkg: "math",
|
|
2670
|
+
doc: "packages/math/logicOr/index.md",
|
|
2671
|
+
category: "@Math",
|
|
2672
|
+
description: "`OR` conditions for values",
|
|
2673
|
+
lastUpdated: 1789147565e3
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
name: "makeDestructurable",
|
|
2677
|
+
pkg: "shared",
|
|
2678
|
+
doc: "packages/shared/makeDestructurable/index.md",
|
|
2679
|
+
category: "Utilities",
|
|
2680
|
+
description: "make isomorphic destructurable for object and array at the same time",
|
|
2681
|
+
lastUpdated: 1788999468e3
|
|
2682
|
+
},
|
|
2683
|
+
{
|
|
2684
|
+
name: "syncState",
|
|
2685
|
+
pkg: "shared",
|
|
2686
|
+
doc: "packages/shared/syncState/index.md",
|
|
2687
|
+
category: "Reactivity",
|
|
2688
|
+
description: "two-way state synchronization between two writable `State<T>` sources",
|
|
2689
|
+
lastUpdated: 1789147565e3
|
|
2690
|
+
},
|
|
2691
|
+
{
|
|
2692
|
+
name: "syncStates",
|
|
2693
|
+
pkg: "shared",
|
|
2694
|
+
doc: "packages/shared/syncStates/index.md",
|
|
2695
|
+
category: "Reactivity",
|
|
2696
|
+
description: "keep target state(s) in sync with a source value",
|
|
2697
|
+
lastUpdated: 1789147565e3
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
name: "toObserver",
|
|
2701
|
+
pkg: "rxjs",
|
|
2702
|
+
doc: "packages/rxjs/toObserver/index.md",
|
|
2703
|
+
category: "@RxJS",
|
|
2704
|
+
description: "sugar function to convert a ref-like object (`{ current }`) or a setter function into an RxJS [Observer](https://rxjs.dev/guide/observer) — a `useRef` write does not re-render",
|
|
2705
|
+
lastUpdated: 1789147565e3
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
name: "unrefElement",
|
|
2709
|
+
pkg: "core",
|
|
2710
|
+
doc: "packages/core/unrefElement/index.md",
|
|
2711
|
+
category: "Component",
|
|
2712
|
+
description: "get the DOM element of a React ref-like object or a plain element",
|
|
2713
|
+
lastUpdated: 1789147565e3
|
|
2714
|
+
},
|
|
2715
|
+
{
|
|
2716
|
+
name: "until",
|
|
2717
|
+
pkg: "shared",
|
|
2718
|
+
doc: "packages/shared/until/index.md",
|
|
2719
|
+
category: "Watch",
|
|
2720
|
+
description: "promised one-time watch for changes",
|
|
2721
|
+
lastUpdated: 1789000817e3
|
|
2722
|
+
},
|
|
2723
|
+
{
|
|
2724
|
+
name: "useAbs",
|
|
2725
|
+
pkg: "math",
|
|
2726
|
+
doc: "packages/math/useAbs/index.md",
|
|
2727
|
+
category: "@Math",
|
|
2728
|
+
description: "reactive `Math.abs`",
|
|
2729
|
+
lastUpdated: 1789147565e3
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
name: "useActiveElement",
|
|
2733
|
+
pkg: "core",
|
|
2734
|
+
doc: "packages/core/useActiveElement/index.md",
|
|
2735
|
+
category: "Elements",
|
|
2736
|
+
description: "reactive `document.activeElement`",
|
|
2737
|
+
lastUpdated: 1789147565e3
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
name: "useAnimate",
|
|
2741
|
+
pkg: "core",
|
|
2742
|
+
doc: "packages/core/useAnimate/index.md",
|
|
2743
|
+
category: "Animation",
|
|
2744
|
+
description: "reactive [Web Animations API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API)",
|
|
2745
|
+
lastUpdated: 1789147565e3
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
name: "useArrayDifference",
|
|
2749
|
+
pkg: "shared",
|
|
2750
|
+
doc: "packages/shared/useArrayDifference/index.md",
|
|
2751
|
+
category: "Array",
|
|
2752
|
+
description: "reactive get array difference of two arrays",
|
|
2753
|
+
lastUpdated: 178895833e4
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
name: "useArrayEvery",
|
|
2757
|
+
pkg: "shared",
|
|
2758
|
+
doc: "packages/shared/useArrayEvery/index.md",
|
|
2759
|
+
category: "Array",
|
|
2760
|
+
description: "reactive `Array.every`",
|
|
2761
|
+
lastUpdated: 178895833e4
|
|
2762
|
+
},
|
|
2763
|
+
{
|
|
2764
|
+
name: "useArrayFilter",
|
|
2765
|
+
pkg: "shared",
|
|
2766
|
+
doc: "packages/shared/useArrayFilter/index.md",
|
|
2767
|
+
category: "Array",
|
|
2768
|
+
description: "reactive `Array.filter`",
|
|
2769
|
+
lastUpdated: 1789000901e3
|
|
2770
|
+
},
|
|
2771
|
+
{
|
|
2772
|
+
name: "useArrayFind",
|
|
2773
|
+
pkg: "shared",
|
|
2774
|
+
doc: "packages/shared/useArrayFind/index.md",
|
|
2775
|
+
category: "Array",
|
|
2776
|
+
description: "reactive `Array.find`",
|
|
2777
|
+
lastUpdated: 178895833e4
|
|
2778
|
+
},
|
|
2779
|
+
{
|
|
2780
|
+
name: "useArrayFindIndex",
|
|
2781
|
+
pkg: "shared",
|
|
2782
|
+
doc: "packages/shared/useArrayFindIndex/index.md",
|
|
2783
|
+
category: "Array",
|
|
2784
|
+
description: "reactive `Array.findIndex`",
|
|
2785
|
+
lastUpdated: 1788942682e3
|
|
2786
|
+
},
|
|
2787
|
+
{
|
|
2788
|
+
name: "useArrayFindLast",
|
|
2789
|
+
pkg: "shared",
|
|
2790
|
+
doc: "packages/shared/useArrayFindLast/index.md",
|
|
2791
|
+
category: "Array",
|
|
2792
|
+
description: "reactive `Array.findLast`",
|
|
2793
|
+
lastUpdated: 178895833e4
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
name: "useArrayIncludes",
|
|
2797
|
+
pkg: "shared",
|
|
2798
|
+
doc: "packages/shared/useArrayIncludes/index.md",
|
|
2799
|
+
category: "Array",
|
|
2800
|
+
description: "reactive `Array.includes`",
|
|
2801
|
+
lastUpdated: 178895833e4
|
|
2802
|
+
},
|
|
2803
|
+
{
|
|
2804
|
+
name: "useArrayJoin",
|
|
2805
|
+
pkg: "shared",
|
|
2806
|
+
doc: "packages/shared/useArrayJoin/index.md",
|
|
2807
|
+
category: "Array",
|
|
2808
|
+
description: "reactive `Array.join`",
|
|
2809
|
+
lastUpdated: 1789001105e3
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
name: "useArrayMap",
|
|
2813
|
+
pkg: "shared",
|
|
2814
|
+
doc: "packages/shared/useArrayMap/index.md",
|
|
2815
|
+
category: "Array",
|
|
2816
|
+
description: "reactive `Array.map`",
|
|
2817
|
+
lastUpdated: 1789000678e3
|
|
2818
|
+
},
|
|
2819
|
+
{
|
|
2820
|
+
name: "useArrayReduce",
|
|
2821
|
+
pkg: "shared",
|
|
2822
|
+
doc: "packages/shared/useArrayReduce/index.md",
|
|
2823
|
+
category: "Array",
|
|
2824
|
+
description: "reactive `Array.reduce`",
|
|
2825
|
+
lastUpdated: 178895833e4
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
name: "useArraySome",
|
|
2829
|
+
pkg: "shared",
|
|
2830
|
+
doc: "packages/shared/useArraySome/index.md",
|
|
2831
|
+
category: "Array",
|
|
2832
|
+
description: "reactive `Array.some`",
|
|
2833
|
+
lastUpdated: 178895833e4
|
|
2834
|
+
},
|
|
2835
|
+
{
|
|
2836
|
+
name: "useArrayUnique",
|
|
2837
|
+
pkg: "shared",
|
|
2838
|
+
doc: "packages/shared/useArrayUnique/index.md",
|
|
2839
|
+
category: "Array",
|
|
2840
|
+
description: "reactive unique array",
|
|
2841
|
+
lastUpdated: 178895833e4
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
name: "useAsync",
|
|
2845
|
+
pkg: "core",
|
|
2846
|
+
doc: "packages/core/useAsync/index.md",
|
|
2847
|
+
category: "Reactivity",
|
|
2848
|
+
description: "derived value for async functions",
|
|
2849
|
+
lastUpdated: 1789147565e3
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
name: "useAsyncQueue",
|
|
2853
|
+
pkg: "core",
|
|
2854
|
+
doc: "packages/core/useAsyncQueue/index.md",
|
|
2855
|
+
category: "Utilities",
|
|
2856
|
+
description: "executes each asynchronous task sequentially and passes the current task result to the next task",
|
|
2857
|
+
lastUpdated: 1789147565e3
|
|
2858
|
+
},
|
|
2859
|
+
{
|
|
2860
|
+
name: "useAsyncState",
|
|
2861
|
+
pkg: "core",
|
|
2862
|
+
doc: "packages/core/useAsyncState/index.md",
|
|
2863
|
+
category: "State",
|
|
2864
|
+
description: "reactive async state",
|
|
2865
|
+
lastUpdated: 1789147565e3
|
|
2866
|
+
},
|
|
2867
|
+
{
|
|
2868
|
+
name: "useAsyncValidator",
|
|
2869
|
+
pkg: "integrations",
|
|
2870
|
+
doc: "packages/integrations/useAsyncValidator/index.md",
|
|
2871
|
+
category: "@Integrations",
|
|
2872
|
+
description: "wrapper for [`async-validator`](https://github.com/yiminghe/async-validator)",
|
|
2873
|
+
lastUpdated: 1788994827e3
|
|
2874
|
+
},
|
|
2875
|
+
{
|
|
2876
|
+
name: "useAuth",
|
|
2877
|
+
pkg: "firebase",
|
|
2878
|
+
doc: "packages/firebase/useAuth/index.md",
|
|
2879
|
+
category: "@Firebase",
|
|
2880
|
+
description: "reactive [Firebase Auth](https://firebase.google.com/docs/auth) binding",
|
|
2881
|
+
lastUpdated: 1789017154e3
|
|
2882
|
+
},
|
|
2883
|
+
{
|
|
2884
|
+
name: "useAverage",
|
|
2885
|
+
pkg: "math",
|
|
2886
|
+
doc: "packages/math/useAverage/index.md",
|
|
2887
|
+
category: "@Math",
|
|
2888
|
+
description: "get the average of an array reactively",
|
|
2889
|
+
lastUpdated: 1789147565e3
|
|
2890
|
+
},
|
|
2891
|
+
{
|
|
2892
|
+
name: "useAxios",
|
|
2893
|
+
pkg: "integrations",
|
|
2894
|
+
doc: "packages/integrations/useAxios/index.md",
|
|
2895
|
+
category: "@Integrations",
|
|
2896
|
+
description: "wrapper for [`axios`](https://github.com/axios/axios)",
|
|
2897
|
+
lastUpdated: 1789147565e3
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
name: "useBase64",
|
|
2901
|
+
pkg: "core",
|
|
2902
|
+
doc: "packages/core/useBase64/index.md",
|
|
2903
|
+
category: "Utilities",
|
|
2904
|
+
description: "reactive base64 transforming",
|
|
2905
|
+
lastUpdated: 1789147565e3
|
|
2906
|
+
},
|
|
2907
|
+
{
|
|
2908
|
+
name: "useBattery",
|
|
2909
|
+
pkg: "core",
|
|
2910
|
+
doc: "packages/core/useBattery/index.md",
|
|
2911
|
+
category: "Sensors",
|
|
2912
|
+
description: "reactive [Battery Status API](https://developer.mozilla.org/en-US/docs/Web/API/Battery_Status_API)",
|
|
2913
|
+
lastUpdated: 1788942682e3
|
|
2914
|
+
},
|
|
2915
|
+
{
|
|
2916
|
+
name: "useBluetooth",
|
|
2917
|
+
pkg: "core",
|
|
2918
|
+
doc: "packages/core/useBluetooth/index.md",
|
|
2919
|
+
category: "Browser",
|
|
2920
|
+
description: "reactive [Web Bluetooth API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Bluetooth_API)",
|
|
2921
|
+
lastUpdated: 1788953542e3
|
|
2922
|
+
},
|
|
2923
|
+
{
|
|
2924
|
+
name: "useBreakpoints",
|
|
2925
|
+
pkg: "core",
|
|
2926
|
+
doc: "packages/core/useBreakpoints/index.md",
|
|
2927
|
+
category: "Browser",
|
|
2928
|
+
description: "reactive viewport breakpoints",
|
|
2929
|
+
lastUpdated: 1789147565e3
|
|
2930
|
+
},
|
|
2931
|
+
{
|
|
2932
|
+
name: "useBroadcastChannel",
|
|
2933
|
+
pkg: "core",
|
|
2934
|
+
doc: "packages/core/useBroadcastChannel/index.md",
|
|
2935
|
+
category: "Browser",
|
|
2936
|
+
description: "reactive [BroadcastChannel API](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel)",
|
|
2937
|
+
lastUpdated: 1789147565e3
|
|
2938
|
+
},
|
|
2939
|
+
{
|
|
2940
|
+
name: "useBrowserLocation",
|
|
2941
|
+
pkg: "core",
|
|
2942
|
+
doc: "packages/core/useBrowserLocation/index.md",
|
|
2943
|
+
category: "Browser",
|
|
2944
|
+
description: "reactive browser location",
|
|
2945
|
+
lastUpdated: 1789147565e3
|
|
2946
|
+
},
|
|
2947
|
+
{
|
|
2948
|
+
name: "useCached",
|
|
2949
|
+
pkg: "core",
|
|
2950
|
+
doc: "packages/core/useCached/index.md",
|
|
2951
|
+
category: "Utilities",
|
|
2952
|
+
description: "cache a value with a custom comparator",
|
|
2953
|
+
lastUpdated: 1789147565e3
|
|
2954
|
+
},
|
|
2955
|
+
{
|
|
2956
|
+
name: "useCeil",
|
|
2957
|
+
pkg: "math",
|
|
2958
|
+
doc: "packages/math/useCeil/index.md",
|
|
2959
|
+
category: "@Math",
|
|
2960
|
+
description: "reactive `Math.ceil`",
|
|
2961
|
+
lastUpdated: 1789147565e3
|
|
2962
|
+
},
|
|
2963
|
+
{
|
|
2964
|
+
name: "useChangeCase",
|
|
2965
|
+
pkg: "integrations",
|
|
2966
|
+
doc: "packages/integrations/useChangeCase/index.md",
|
|
2967
|
+
category: "@Integrations",
|
|
2968
|
+
description: "reactive wrapper for [`change-case`](https://github.com/blakeembrey/change-case)",
|
|
2969
|
+
lastUpdated: 1789147565e3
|
|
2970
|
+
},
|
|
2971
|
+
{
|
|
2972
|
+
name: "useClamp",
|
|
2973
|
+
pkg: "math",
|
|
2974
|
+
doc: "packages/math/useClamp/index.md",
|
|
2975
|
+
category: "@Math",
|
|
2976
|
+
description: "reactively clamp a value between two other values",
|
|
2977
|
+
lastUpdated: 1789147565e3
|
|
2978
|
+
},
|
|
2979
|
+
{
|
|
2980
|
+
name: "useClickOutside",
|
|
2981
|
+
pkg: "core",
|
|
2982
|
+
doc: "packages/core/useClickOutside/index.md",
|
|
2983
|
+
category: "Sensors",
|
|
2984
|
+
description: "listen for clicks outside of an element",
|
|
2985
|
+
lastUpdated: 1789147565e3
|
|
2986
|
+
},
|
|
2987
|
+
{
|
|
2988
|
+
name: "useClipboard",
|
|
2989
|
+
pkg: "core",
|
|
2990
|
+
doc: "packages/core/useClipboard/index.md",
|
|
2991
|
+
category: "Browser",
|
|
2992
|
+
description: "reactive [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API)",
|
|
2993
|
+
lastUpdated: 1789147565e3
|
|
2994
|
+
},
|
|
2995
|
+
{
|
|
2996
|
+
name: "useClipboardItems",
|
|
2997
|
+
pkg: "core",
|
|
2998
|
+
doc: "packages/core/useClipboardItems/index.md",
|
|
2999
|
+
category: "Browser",
|
|
3000
|
+
description: "reactive [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API)",
|
|
3001
|
+
lastUpdated: 1789147565e3
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
name: "useCloned",
|
|
3005
|
+
pkg: "core",
|
|
3006
|
+
doc: "packages/core/useCloned/index.md",
|
|
3007
|
+
category: "Utilities",
|
|
3008
|
+
description: "reactive clone of a value",
|
|
3009
|
+
lastUpdated: 1789147565e3
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
name: "useColorMode",
|
|
3013
|
+
pkg: "core",
|
|
3014
|
+
doc: "packages/core/useColorMode/index.md",
|
|
3015
|
+
category: "Browser",
|
|
3016
|
+
description: "reactive color mode (dark / light / customs) with auto data persistence",
|
|
3017
|
+
lastUpdated: 1789147565e3
|
|
3018
|
+
},
|
|
3019
|
+
{
|
|
3020
|
+
name: "useConfirmDialog",
|
|
3021
|
+
pkg: "core",
|
|
3022
|
+
doc: "packages/core/useConfirmDialog/index.md",
|
|
3023
|
+
category: "Utilities",
|
|
3024
|
+
description: "creates event hooks to support modals and confirmation dialog chains",
|
|
3025
|
+
lastUpdated: 1789147565e3
|
|
3026
|
+
},
|
|
3027
|
+
{
|
|
3028
|
+
name: "useControllableState",
|
|
3029
|
+
pkg: "shared",
|
|
3030
|
+
doc: "packages/shared/useControllableState/index.md",
|
|
3031
|
+
category: "State",
|
|
3032
|
+
description: "a hook for combining controlled and uncontrolled state sources",
|
|
3033
|
+
lastUpdated: 1788979068e3
|
|
3034
|
+
},
|
|
3035
|
+
{
|
|
3036
|
+
name: "useCookies",
|
|
3037
|
+
pkg: "integrations",
|
|
3038
|
+
doc: "packages/integrations/useCookies/index.md",
|
|
3039
|
+
category: "@Integrations",
|
|
3040
|
+
description: "wrapper for [`universal-cookie`](https://www.npmjs.com/package/universal-cookie)",
|
|
3041
|
+
lastUpdated: 1788976915e3
|
|
3042
|
+
},
|
|
3043
|
+
{
|
|
3044
|
+
name: "useCountdown",
|
|
3045
|
+
pkg: "core",
|
|
3046
|
+
doc: "packages/core/useCountdown/index.md",
|
|
3047
|
+
category: "Time",
|
|
3048
|
+
description: "reactive countdown timer in seconds",
|
|
3049
|
+
lastUpdated: 1789147565e3
|
|
3050
|
+
},
|
|
3051
|
+
{
|
|
3052
|
+
name: "useCounter",
|
|
3053
|
+
pkg: "shared",
|
|
3054
|
+
doc: "packages/shared/useCounter/index.md",
|
|
3055
|
+
category: "State",
|
|
3056
|
+
description: "a basic counter with `inc` / `dec` / `set` / `reset` and optional `min` / `max` bounds",
|
|
3057
|
+
lastUpdated: 1788996836e3
|
|
3058
|
+
},
|
|
3059
|
+
{
|
|
3060
|
+
name: "useCssSupports",
|
|
3061
|
+
pkg: "core",
|
|
3062
|
+
doc: "packages/core/useCssSupports/index.md",
|
|
3063
|
+
category: "Browser",
|
|
3064
|
+
description: "SSR compatible and reactive [`CSS.supports`](https://developer.mozilla.org/docs/Web/API/CSS/supports_static)",
|
|
3065
|
+
lastUpdated: 1789147565e3
|
|
3066
|
+
},
|
|
3067
|
+
{
|
|
3068
|
+
name: "useCssVar",
|
|
3069
|
+
pkg: "core",
|
|
3070
|
+
doc: "packages/core/useCssVar/index.md",
|
|
3071
|
+
category: "Browser",
|
|
3072
|
+
description: "manipulate CSS variables",
|
|
3073
|
+
lastUpdated: 1789147565e3
|
|
3074
|
+
},
|
|
3075
|
+
{
|
|
3076
|
+
name: "useCycleList",
|
|
3077
|
+
pkg: "core",
|
|
3078
|
+
doc: "packages/core/useCycleList/index.md",
|
|
3079
|
+
category: "Utilities",
|
|
3080
|
+
description: "cycle through a list of items",
|
|
3081
|
+
lastUpdated: 1788958794e3
|
|
3082
|
+
},
|
|
3083
|
+
{
|
|
3084
|
+
name: "useDark",
|
|
3085
|
+
pkg: "core",
|
|
3086
|
+
doc: "packages/core/useDark/index.md",
|
|
3087
|
+
category: "Browser",
|
|
3088
|
+
description: "reactive dark mode with auto data persistence",
|
|
3089
|
+
lastUpdated: 1789147565e3
|
|
3090
|
+
},
|
|
3091
|
+
{
|
|
3092
|
+
name: "useDateFormat",
|
|
3093
|
+
pkg: "shared",
|
|
3094
|
+
doc: "packages/shared/useDateFormat/index.md",
|
|
3095
|
+
category: "Time",
|
|
3096
|
+
description: "get the formatted date according to the string of tokens passed in",
|
|
3097
|
+
lastUpdated: 178895833e4
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
name: "useDebounceFn",
|
|
3101
|
+
pkg: "shared",
|
|
3102
|
+
doc: "packages/shared/useDebounceFn/index.md",
|
|
3103
|
+
category: "Utilities",
|
|
3104
|
+
description: "debounce execution of a function",
|
|
3105
|
+
lastUpdated: 1788984677e3
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
name: "useDeviceMotion",
|
|
3109
|
+
pkg: "core",
|
|
3110
|
+
doc: "packages/core/useDeviceMotion/index.md",
|
|
3111
|
+
category: "Sensors",
|
|
3112
|
+
description: "reactive [DeviceMotionEvent](https://developer.mozilla.org/en-US/docs/Web/API/DeviceMotionEvent)",
|
|
3113
|
+
lastUpdated: 1789147565e3
|
|
3114
|
+
},
|
|
3115
|
+
{
|
|
3116
|
+
name: "useDeviceOrientation",
|
|
3117
|
+
pkg: "core",
|
|
3118
|
+
doc: "packages/core/useDeviceOrientation/index.md",
|
|
3119
|
+
category: "Sensors",
|
|
3120
|
+
description: "reactive [DeviceOrientationEvent](https://developer.mozilla.org/en-US/docs/Web/API/DeviceOrientationEvent)",
|
|
3121
|
+
lastUpdated: 1789147565e3
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
name: "useDevicePixelRatio",
|
|
3125
|
+
pkg: "core",
|
|
3126
|
+
doc: "packages/core/useDevicePixelRatio/index.md",
|
|
3127
|
+
category: "Sensors",
|
|
3128
|
+
description: "reactively track [`window.devicePixelRatio`](https://developer.mozilla.org/docs/Web/API/Window/devicePixelRatio)",
|
|
3129
|
+
lastUpdated: 1789147565e3
|
|
3130
|
+
},
|
|
3131
|
+
{
|
|
3132
|
+
name: "useDevicesList",
|
|
3133
|
+
pkg: "core",
|
|
3134
|
+
doc: "packages/core/useDevicesList/index.md",
|
|
3135
|
+
category: "Sensors",
|
|
3136
|
+
description: "reactive [`enumerateDevices`](https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/enumerateDevices) listing available input/output devices",
|
|
3137
|
+
lastUpdated: 1788966944e3
|
|
3138
|
+
},
|
|
3139
|
+
{
|
|
3140
|
+
name: "useDisplayMedia",
|
|
3141
|
+
pkg: "core",
|
|
3142
|
+
doc: "packages/core/useDisplayMedia/index.md",
|
|
3143
|
+
category: "Sensors",
|
|
3144
|
+
description: "reactive [`mediaDevices.getDisplayMedia`](https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getDisplayMedia) streaming",
|
|
3145
|
+
lastUpdated: 1788970689e3
|
|
3146
|
+
},
|
|
3147
|
+
{
|
|
3148
|
+
name: "useDocumentVisibility",
|
|
3149
|
+
pkg: "core",
|
|
3150
|
+
doc: "packages/core/useDocumentVisibility/index.md",
|
|
3151
|
+
category: "Elements",
|
|
3152
|
+
description: "reactively track [`document.visibilityState`](https://developer.mozilla.org/en-US/docs/Web/API/Document/visibilityState)",
|
|
3153
|
+
lastUpdated: 1789147565e3
|
|
3154
|
+
},
|
|
3155
|
+
{
|
|
3156
|
+
name: "useDraggable",
|
|
3157
|
+
pkg: "core",
|
|
3158
|
+
doc: "packages/core/useDraggable/index.md",
|
|
3159
|
+
category: "Elements",
|
|
3160
|
+
description: "make elements draggable",
|
|
3161
|
+
lastUpdated: 1789147565e3
|
|
3162
|
+
},
|
|
3163
|
+
{
|
|
3164
|
+
name: "useDrauu",
|
|
3165
|
+
pkg: "integrations",
|
|
3166
|
+
doc: "packages/integrations/useDrauu/index.md",
|
|
3167
|
+
category: "@Integrations",
|
|
3168
|
+
description: "reactive instance for [drauu](https://github.com/antfu/drauu)",
|
|
3169
|
+
lastUpdated: 1789147565e3
|
|
3170
|
+
},
|
|
3171
|
+
{
|
|
3172
|
+
name: "useDropZone",
|
|
3173
|
+
pkg: "core",
|
|
3174
|
+
doc: "packages/core/useDropZone/index.md",
|
|
3175
|
+
category: "Elements",
|
|
3176
|
+
description: "create a zone where files can be dropped",
|
|
3177
|
+
lastUpdated: 1789147565e3
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
name: "useElementBounding",
|
|
3181
|
+
pkg: "core",
|
|
3182
|
+
doc: "packages/core/useElementBounding/index.md",
|
|
3183
|
+
category: "Elements",
|
|
3184
|
+
description: "reactive [bounding box](https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect) of an HTML element",
|
|
3185
|
+
lastUpdated: 1789147565e3
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
name: "useElementByPoint",
|
|
3189
|
+
pkg: "core",
|
|
3190
|
+
doc: "packages/core/useElementByPoint/index.md",
|
|
3191
|
+
category: "Sensors",
|
|
3192
|
+
description: "reactive element by point",
|
|
3193
|
+
lastUpdated: 1789147565e3
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
name: "useElementHover",
|
|
3197
|
+
pkg: "core",
|
|
3198
|
+
doc: "packages/core/useElementHover/index.md",
|
|
3199
|
+
category: "Sensors",
|
|
3200
|
+
description: "reactive element's hover state",
|
|
3201
|
+
lastUpdated: 1789147565e3
|
|
3202
|
+
},
|
|
3203
|
+
{
|
|
3204
|
+
name: "useElementOverflow",
|
|
3205
|
+
pkg: "core",
|
|
3206
|
+
doc: "packages/core/useElementOverflow/index.md",
|
|
3207
|
+
category: "Elements",
|
|
3208
|
+
description: "reactive element's overflow state",
|
|
3209
|
+
lastUpdated: 1789147565e3
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
name: "useElementRemoval",
|
|
3213
|
+
pkg: "core",
|
|
3214
|
+
doc: "packages/core/useElementRemoval/index.md",
|
|
3215
|
+
category: "Sensors",
|
|
3216
|
+
description: "fires when the element or any element containing it is removed from the DOM",
|
|
3217
|
+
lastUpdated: 1789147565e3
|
|
3218
|
+
},
|
|
3219
|
+
{
|
|
3220
|
+
name: "useElementSize",
|
|
3221
|
+
pkg: "core",
|
|
3222
|
+
doc: "packages/core/useElementSize/index.md",
|
|
3223
|
+
category: "Elements",
|
|
3224
|
+
description: "reactive size of an HTML element",
|
|
3225
|
+
lastUpdated: 1789147565e3
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
name: "useElementVisibility",
|
|
3229
|
+
pkg: "core",
|
|
3230
|
+
doc: "packages/core/useElementVisibility/index.md",
|
|
3231
|
+
category: "Elements",
|
|
3232
|
+
description: "tracks the visibility of an element within the viewport",
|
|
3233
|
+
lastUpdated: 1789147565e3
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
name: "useEventBus",
|
|
3237
|
+
pkg: "core",
|
|
3238
|
+
doc: "packages/core/useEventBus/index.md",
|
|
3239
|
+
category: "Utilities",
|
|
3240
|
+
description: "a basic event bus",
|
|
3241
|
+
lastUpdated: 1788942682e3
|
|
3242
|
+
},
|
|
3243
|
+
{
|
|
3244
|
+
name: "useEventListener",
|
|
3245
|
+
pkg: "core",
|
|
3246
|
+
doc: "packages/core/useEventListener/index.md",
|
|
3247
|
+
category: "Browser",
|
|
3248
|
+
description: "use EventListener with ease",
|
|
3249
|
+
lastUpdated: 1789147565e3
|
|
3250
|
+
},
|
|
3251
|
+
{
|
|
3252
|
+
name: "useEventSource",
|
|
3253
|
+
pkg: "core",
|
|
3254
|
+
doc: "packages/core/useEventSource/index.md",
|
|
3255
|
+
category: "Network",
|
|
3256
|
+
description: "an [EventSource](https://developer.mozilla.org/en-US/docs/Web/API/EventSource) or [Server-Sent-Events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events) instance opens a persistent connection to an HTTP server",
|
|
3257
|
+
lastUpdated: 1788971998e3
|
|
3258
|
+
},
|
|
3259
|
+
{
|
|
3260
|
+
name: "useExtractedObservable",
|
|
3261
|
+
pkg: "rxjs",
|
|
3262
|
+
doc: "packages/rxjs/useExtractedObservable/index.md",
|
|
3263
|
+
category: "@RxJS",
|
|
3264
|
+
description: "use an RxJS [`Observable`](https://rxjs.dev/guide/observable) as extracted from one or more hooks",
|
|
3265
|
+
lastUpdated: 1789020143e3
|
|
3266
|
+
},
|
|
3267
|
+
{
|
|
3268
|
+
name: "useEyeDropper",
|
|
3269
|
+
pkg: "core",
|
|
3270
|
+
doc: "packages/core/useEyeDropper/index.md",
|
|
3271
|
+
category: "Browser",
|
|
3272
|
+
description: "reactive [EyeDropper API](https://developer.mozilla.org/en-US/docs/Web/API/EyeDropper_API)",
|
|
3273
|
+
lastUpdated: 1788942682e3
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
name: "useFavicon",
|
|
3277
|
+
pkg: "core",
|
|
3278
|
+
doc: "packages/core/useFavicon/index.md",
|
|
3279
|
+
category: "Browser",
|
|
3280
|
+
description: "reactive favicon",
|
|
3281
|
+
lastUpdated: 1789147565e3
|
|
3282
|
+
},
|
|
3283
|
+
{
|
|
3284
|
+
name: "useFetch",
|
|
3285
|
+
pkg: "core",
|
|
3286
|
+
doc: "packages/core/useFetch/index.md",
|
|
3287
|
+
category: "Network",
|
|
3288
|
+
description: "reactive [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) provides the ability to abort requests",
|
|
3289
|
+
lastUpdated: 1789147565e3
|
|
3290
|
+
},
|
|
3291
|
+
{
|
|
3292
|
+
name: "useFileDialog",
|
|
3293
|
+
pkg: "core",
|
|
3294
|
+
doc: "packages/core/useFileDialog/index.md",
|
|
3295
|
+
category: "Browser",
|
|
3296
|
+
description: "open file dialog with ease",
|
|
3297
|
+
lastUpdated: 1789147565e3
|
|
3298
|
+
},
|
|
3299
|
+
{
|
|
3300
|
+
name: "useFileSystemAccess",
|
|
3301
|
+
pkg: "core",
|
|
3302
|
+
doc: "packages/core/useFileSystemAccess/index.md",
|
|
3303
|
+
category: "Browser",
|
|
3304
|
+
description: "create and read and write local files with [FileSystemAccessAPI](https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API)",
|
|
3305
|
+
lastUpdated: 1789147565e3
|
|
3306
|
+
},
|
|
3307
|
+
{
|
|
3308
|
+
name: "useFirestore",
|
|
3309
|
+
pkg: "firebase",
|
|
3310
|
+
doc: "packages/firebase/useFirestore/index.md",
|
|
3311
|
+
category: "@Firebase",
|
|
3312
|
+
description: "reactive [Firestore](https://firebase.google.com/docs/firestore) binding",
|
|
3313
|
+
lastUpdated: 1789147565e3
|
|
3314
|
+
},
|
|
3315
|
+
{
|
|
3316
|
+
name: "useFloor",
|
|
3317
|
+
pkg: "math",
|
|
3318
|
+
doc: "packages/math/useFloor/index.md",
|
|
3319
|
+
category: "@Math",
|
|
3320
|
+
description: "reactive `Math.floor`",
|
|
3321
|
+
lastUpdated: 1789147565e3
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
name: "useFocus",
|
|
3325
|
+
pkg: "core",
|
|
3326
|
+
doc: "packages/core/useFocus/index.md",
|
|
3327
|
+
category: "Sensors",
|
|
3328
|
+
description: "reactive utility to track or set the focus state of a DOM element",
|
|
3329
|
+
lastUpdated: 1789147565e3
|
|
3330
|
+
},
|
|
3331
|
+
{
|
|
3332
|
+
name: "useFocusTrap",
|
|
3333
|
+
pkg: "integrations",
|
|
3334
|
+
doc: "packages/integrations/useFocusTrap/index.md",
|
|
3335
|
+
category: "@Integrations",
|
|
3336
|
+
description: "reactive wrapper for [`focus-trap`](https://github.com/focus-trap/focus-trap)",
|
|
3337
|
+
lastUpdated: 1789147565e3
|
|
3338
|
+
},
|
|
3339
|
+
{
|
|
3340
|
+
name: "useFocusWithin",
|
|
3341
|
+
pkg: "core",
|
|
3342
|
+
doc: "packages/core/useFocusWithin/index.md",
|
|
3343
|
+
category: "Sensors",
|
|
3344
|
+
description: "reactive utility to track if an element or one of its descendants has focus",
|
|
3345
|
+
lastUpdated: 1789147565e3
|
|
3346
|
+
},
|
|
3347
|
+
{
|
|
3348
|
+
name: "useFps",
|
|
3349
|
+
pkg: "core",
|
|
3350
|
+
doc: "packages/core/useFps/index.md",
|
|
3351
|
+
category: "Sensors",
|
|
3352
|
+
description: "reactive FPS (frames per second)",
|
|
3353
|
+
lastUpdated: 1788971997e3
|
|
3354
|
+
},
|
|
3355
|
+
{
|
|
3356
|
+
name: "useFrom",
|
|
3357
|
+
pkg: "rxjs",
|
|
3358
|
+
doc: "packages/rxjs/useFrom/index.md",
|
|
3359
|
+
category: "@RxJS",
|
|
3360
|
+
description: "create an [`Observable`](https://rxjs.dev/guide/observable) from an rxjs `ObservableInput` — passed straight to RxJS's [`from()`](https://rxjs.dev/api/index/function/from) — or from a plain value that re-emits whenever it changes across renders",
|
|
3361
|
+
lastUpdated: 1789031655e3
|
|
3362
|
+
},
|
|
3363
|
+
{
|
|
3364
|
+
name: "useFullscreen",
|
|
3365
|
+
pkg: "core",
|
|
3366
|
+
doc: "packages/core/useFullscreen/index.md",
|
|
3367
|
+
category: "Browser",
|
|
3368
|
+
description: "reactive [Fullscreen API](https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API)",
|
|
3369
|
+
lastUpdated: 1789147565e3
|
|
3370
|
+
},
|
|
3371
|
+
{
|
|
3372
|
+
name: "useFuse",
|
|
3373
|
+
pkg: "integrations",
|
|
3374
|
+
doc: "packages/integrations/useFuse/index.md",
|
|
3375
|
+
category: "@Integrations",
|
|
3376
|
+
description: "easily implement fuzzy search using a hook with [Fuse.js](https://github.com/krisk/fuse)",
|
|
3377
|
+
lastUpdated: 1789147565e3
|
|
3378
|
+
},
|
|
3379
|
+
{
|
|
3380
|
+
name: "useGamepad",
|
|
3381
|
+
pkg: "core",
|
|
3382
|
+
doc: "packages/core/useGamepad/index.md",
|
|
3383
|
+
category: "Browser",
|
|
3384
|
+
description: "provides reactive bindings for the [Gamepad API](https://developer.mozilla.org/en-US/docs/Web/API/Gamepad_API)",
|
|
3385
|
+
lastUpdated: 1789147565e3
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
name: "useGeolocation",
|
|
3389
|
+
pkg: "core",
|
|
3390
|
+
doc: "packages/core/useGeolocation/index.md",
|
|
3391
|
+
category: "Sensors",
|
|
3392
|
+
description: "reactive [Geolocation API](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API)",
|
|
3393
|
+
lastUpdated: 1788942682e3
|
|
3394
|
+
},
|
|
3395
|
+
{
|
|
3396
|
+
name: "useHash",
|
|
3397
|
+
pkg: "core",
|
|
3398
|
+
doc: "packages/core/useHash/index.md",
|
|
3399
|
+
category: "Browser",
|
|
3400
|
+
description: "shorthand for a reactive `window.location.hash`",
|
|
3401
|
+
lastUpdated: 1789147565e3
|
|
3402
|
+
},
|
|
3403
|
+
{
|
|
3404
|
+
name: "useIDBKeyval",
|
|
3405
|
+
pkg: "integrations",
|
|
3406
|
+
doc: "packages/integrations/useIDBKeyval/index.md",
|
|
3407
|
+
category: "@Integrations",
|
|
3408
|
+
description: "wrapper for [`idb-keyval`](https://www.npmjs.com/package/idb-keyval)",
|
|
3409
|
+
lastUpdated: 1788991159e3
|
|
3410
|
+
},
|
|
3411
|
+
{
|
|
3412
|
+
name: "useIdle",
|
|
3413
|
+
pkg: "core",
|
|
3414
|
+
doc: "packages/core/useIdle/index.md",
|
|
3415
|
+
category: "Sensors",
|
|
3416
|
+
description: "tracks whether the user is being inactive",
|
|
3417
|
+
lastUpdated: 1789147565e3
|
|
3418
|
+
},
|
|
3419
|
+
{
|
|
3420
|
+
name: "useImage",
|
|
3421
|
+
pkg: "core",
|
|
3422
|
+
doc: "packages/core/useImage/index.md",
|
|
3423
|
+
category: "Browser",
|
|
3424
|
+
description: "reactive load an image in the browser",
|
|
3425
|
+
lastUpdated: 1789147565e3
|
|
3426
|
+
},
|
|
3427
|
+
{
|
|
3428
|
+
name: "useInfiniteScroll",
|
|
3429
|
+
pkg: "core",
|
|
3430
|
+
doc: "packages/core/useInfiniteScroll/index.md",
|
|
3431
|
+
category: "Sensors",
|
|
3432
|
+
description: "infinite scrolling of the element",
|
|
3433
|
+
lastUpdated: 1789147565e3
|
|
3434
|
+
},
|
|
3435
|
+
{
|
|
3436
|
+
name: "useIntersectionObserver",
|
|
3437
|
+
pkg: "core",
|
|
3438
|
+
doc: "packages/core/useIntersectionObserver/index.md",
|
|
3439
|
+
category: "Elements",
|
|
3440
|
+
description: "detects changes to a target element's visibility",
|
|
3441
|
+
lastUpdated: 1789147565e3
|
|
3442
|
+
},
|
|
3443
|
+
{
|
|
3444
|
+
name: "useInterval",
|
|
3445
|
+
pkg: "shared",
|
|
3446
|
+
doc: "packages/shared/useInterval/index.md",
|
|
3447
|
+
category: "Animation",
|
|
3448
|
+
description: "reactive counter that increases on every interval",
|
|
3449
|
+
lastUpdated: 1788985429e3
|
|
3450
|
+
},
|
|
3451
|
+
{
|
|
3452
|
+
name: "useIntervalFn",
|
|
3453
|
+
pkg: "shared",
|
|
3454
|
+
doc: "packages/shared/useIntervalFn/index.md",
|
|
3455
|
+
category: "Animation",
|
|
3456
|
+
description: "wrapper for `setInterval` with controls",
|
|
3457
|
+
lastUpdated: 1788999284e3
|
|
3458
|
+
},
|
|
3459
|
+
{
|
|
3460
|
+
name: "useIpcRenderer",
|
|
3461
|
+
pkg: "electron",
|
|
3462
|
+
doc: "packages/electron/useIpcRenderer/index.md",
|
|
3463
|
+
category: "@Electron",
|
|
3464
|
+
description: "provides [ipcRenderer](https://www.electronjs.org/docs/api/ipc-renderer) and all of its APIs",
|
|
3465
|
+
lastUpdated: 1788988203e3
|
|
3466
|
+
},
|
|
3467
|
+
{
|
|
3468
|
+
name: "useIpcRendererInvoke",
|
|
3469
|
+
pkg: "electron",
|
|
3470
|
+
doc: "packages/electron/useIpcRendererInvoke/index.md",
|
|
3471
|
+
category: "@Electron",
|
|
3472
|
+
description: "reactive [ipcRenderer.invoke API](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererinvokechannel-args) result",
|
|
3473
|
+
lastUpdated: 1788988307e3
|
|
3474
|
+
},
|
|
3475
|
+
{
|
|
3476
|
+
name: "useIpcRendererOn",
|
|
3477
|
+
pkg: "electron",
|
|
3478
|
+
doc: "packages/electron/useIpcRendererOn/index.md",
|
|
3479
|
+
category: "@Electron",
|
|
3480
|
+
description: "use [ipcRenderer.on](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendereronchannel-listener) with ease and [ipcRenderer.removeListener](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererremovelistenerchannel-listener) automatically on unmounted",
|
|
3481
|
+
lastUpdated: 1788942682e3
|
|
3482
|
+
},
|
|
3483
|
+
{
|
|
3484
|
+
name: "useJwt",
|
|
3485
|
+
pkg: "integrations",
|
|
3486
|
+
doc: "packages/integrations/useJwt/index.md",
|
|
3487
|
+
category: "@Integrations",
|
|
3488
|
+
description: "wrapper for [`jwt-decode`](https://github.com/auth0/jwt-decode)",
|
|
3489
|
+
lastUpdated: 1788991529e3
|
|
3490
|
+
},
|
|
3491
|
+
{
|
|
3492
|
+
name: "useKeyModifier",
|
|
3493
|
+
pkg: "core",
|
|
3494
|
+
doc: "packages/core/useKeyModifier/index.md",
|
|
3495
|
+
category: "Sensors",
|
|
3496
|
+
description: "reactive [Modifier State](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifierState)",
|
|
3497
|
+
lastUpdated: 178898437e4
|
|
3498
|
+
},
|
|
3499
|
+
{
|
|
3500
|
+
name: "useKeyStroke",
|
|
3501
|
+
pkg: "core",
|
|
3502
|
+
doc: "packages/core/useKeyStroke/index.md",
|
|
3503
|
+
category: "Sensors",
|
|
3504
|
+
description: "listen for keyboard keystrokes",
|
|
3505
|
+
lastUpdated: 1789147565e3
|
|
3506
|
+
},
|
|
3507
|
+
{
|
|
3508
|
+
name: "useLastChanged",
|
|
3509
|
+
pkg: "shared",
|
|
3510
|
+
doc: "packages/shared/useLastChanged/index.md",
|
|
3511
|
+
category: "State",
|
|
3512
|
+
description: "records the timestamp of the last change",
|
|
3513
|
+
lastUpdated: 1788942682e3
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
name: "useListener",
|
|
3517
|
+
pkg: "shared",
|
|
3518
|
+
doc: "packages/shared/useListener/index.md",
|
|
3519
|
+
category: "State",
|
|
3520
|
+
description: "bind a callback to a listener registration function returned by a reause hook",
|
|
3521
|
+
lastUpdated: 1789147565e3
|
|
3522
|
+
},
|
|
3523
|
+
{
|
|
3524
|
+
name: "useLiveAnnouncer",
|
|
3525
|
+
pkg: "core",
|
|
3526
|
+
doc: "packages/core/useLiveAnnouncer/index.md",
|
|
3527
|
+
category: "Browser",
|
|
3528
|
+
description: "accessible way to announce messages to screen reader users (ARIA live regions)",
|
|
3529
|
+
lastUpdated: 1789147565e3
|
|
3530
|
+
},
|
|
3531
|
+
{
|
|
3532
|
+
name: "useLocalStorage",
|
|
3533
|
+
pkg: "core",
|
|
3534
|
+
doc: "packages/core/useLocalStorage/index.md",
|
|
3535
|
+
category: "State",
|
|
3536
|
+
description: "reactive [LocalStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)",
|
|
3537
|
+
lastUpdated: 1788942682e3
|
|
3538
|
+
},
|
|
3539
|
+
{
|
|
3540
|
+
name: "useLongPress",
|
|
3541
|
+
pkg: "core",
|
|
3542
|
+
doc: "packages/core/useLongPress/index.md",
|
|
3543
|
+
category: "Sensors",
|
|
3544
|
+
description: "listen for a long press on an element",
|
|
3545
|
+
lastUpdated: 1789147565e3
|
|
3546
|
+
},
|
|
3547
|
+
{
|
|
3548
|
+
name: "useMagicKeys",
|
|
3549
|
+
pkg: "core",
|
|
3550
|
+
doc: "packages/core/useMagicKeys/index.md",
|
|
3551
|
+
category: "Sensors",
|
|
3552
|
+
description: "reactive keys pressed state",
|
|
3553
|
+
lastUpdated: 1789147565e3
|
|
3554
|
+
},
|
|
3555
|
+
{
|
|
3556
|
+
name: "useMath",
|
|
3557
|
+
pkg: "math",
|
|
3558
|
+
doc: "packages/math/useMath/index.md",
|
|
3559
|
+
category: "@Math",
|
|
3560
|
+
description: "reactive `Math` methods",
|
|
3561
|
+
lastUpdated: 1789147565e3
|
|
3562
|
+
},
|
|
3563
|
+
{
|
|
3564
|
+
name: "useMax",
|
|
3565
|
+
pkg: "math",
|
|
3566
|
+
doc: "packages/math/useMax/index.md",
|
|
3567
|
+
category: "@Math",
|
|
3568
|
+
description: "reactive `Math.max`",
|
|
3569
|
+
lastUpdated: 1789147565e3
|
|
3570
|
+
},
|
|
3571
|
+
{
|
|
3572
|
+
name: "useMediaControls",
|
|
3573
|
+
pkg: "core",
|
|
3574
|
+
doc: "packages/core/useMediaControls/index.md",
|
|
3575
|
+
category: "Browser",
|
|
3576
|
+
description: "reactive media controls for both `audio` and `video` elements",
|
|
3577
|
+
lastUpdated: 1789147565e3
|
|
3578
|
+
},
|
|
3579
|
+
{
|
|
3580
|
+
name: "useMediaQuery",
|
|
3581
|
+
pkg: "core",
|
|
3582
|
+
doc: "packages/core/useMediaQuery/index.md",
|
|
3583
|
+
category: "Browser",
|
|
3584
|
+
description: "reactive [Media Query](https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Testing_media_queries)",
|
|
3585
|
+
lastUpdated: 1789147565e3
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
name: "useMemoize",
|
|
3589
|
+
pkg: "core",
|
|
3590
|
+
doc: "packages/core/useMemoize/index.md",
|
|
3591
|
+
category: "Utilities",
|
|
3592
|
+
description: "cache results of functions depending on arguments",
|
|
3593
|
+
lastUpdated: 1788989746e3
|
|
3594
|
+
},
|
|
3595
|
+
{
|
|
3596
|
+
name: "useMemory",
|
|
3597
|
+
pkg: "core",
|
|
3598
|
+
doc: "packages/core/useMemory/index.md",
|
|
3599
|
+
category: "Browser",
|
|
3600
|
+
description: "reactive Memory Info",
|
|
3601
|
+
lastUpdated: 1789147565e3
|
|
3602
|
+
},
|
|
3603
|
+
{
|
|
3604
|
+
name: "useMin",
|
|
3605
|
+
pkg: "math",
|
|
3606
|
+
doc: "packages/math/useMin/index.md",
|
|
3607
|
+
category: "@Math",
|
|
3608
|
+
description: "reactive `Math.min`",
|
|
3609
|
+
lastUpdated: 1789147565e3
|
|
3610
|
+
},
|
|
3611
|
+
{
|
|
3612
|
+
name: "useMount",
|
|
3613
|
+
pkg: "shared",
|
|
3614
|
+
doc: "packages/shared/useMount/index.md",
|
|
3615
|
+
category: "Lifecycle",
|
|
3616
|
+
description: "runs a callback once after the component mounts — React port of react-use's `useMount`",
|
|
3617
|
+
lastUpdated: 1788946165e3
|
|
3618
|
+
},
|
|
3619
|
+
{
|
|
3620
|
+
name: "useMounted",
|
|
3621
|
+
pkg: "core",
|
|
3622
|
+
doc: "packages/core/useMounted/index.md",
|
|
3623
|
+
category: "Component",
|
|
3624
|
+
description: "mounted state in ref",
|
|
3625
|
+
lastUpdated: 178899005e4
|
|
3626
|
+
},
|
|
3627
|
+
{
|
|
3628
|
+
name: "useMouse",
|
|
3629
|
+
pkg: "core",
|
|
3630
|
+
doc: "packages/core/useMouse/index.md",
|
|
3631
|
+
category: "Sensors",
|
|
3632
|
+
description: "reactive mouse position",
|
|
3633
|
+
lastUpdated: 1789147565e3
|
|
3634
|
+
},
|
|
3635
|
+
{
|
|
3636
|
+
name: "useMouseInElement",
|
|
3637
|
+
pkg: "core",
|
|
3638
|
+
doc: "packages/core/useMouseInElement/index.md",
|
|
3639
|
+
category: "Elements",
|
|
3640
|
+
description: "reactive mouse position related to an element",
|
|
3641
|
+
lastUpdated: 1789147565e3
|
|
3642
|
+
},
|
|
3643
|
+
{
|
|
3644
|
+
name: "useMousePressed",
|
|
3645
|
+
pkg: "core",
|
|
3646
|
+
doc: "packages/core/useMousePressed/index.md",
|
|
3647
|
+
category: "Sensors",
|
|
3648
|
+
description: "reactive mouse pressing state",
|
|
3649
|
+
lastUpdated: 1789147565e3
|
|
3650
|
+
},
|
|
3651
|
+
{
|
|
3652
|
+
name: "useMutationObserver",
|
|
3653
|
+
pkg: "core",
|
|
3654
|
+
doc: "packages/core/useMutationObserver/index.md",
|
|
3655
|
+
category: "Elements",
|
|
3656
|
+
description: "watch for changes being made to the DOM tree",
|
|
3657
|
+
lastUpdated: 1789147565e3
|
|
3658
|
+
},
|
|
3659
|
+
{
|
|
3660
|
+
name: "useNavigatorLanguage",
|
|
3661
|
+
pkg: "core",
|
|
3662
|
+
doc: "packages/core/useNavigatorLanguage/index.md",
|
|
3663
|
+
category: "Sensors",
|
|
3664
|
+
description: "reactive [navigator.language](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/language)",
|
|
3665
|
+
lastUpdated: 1789147565e3
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
name: "useNetwork",
|
|
3669
|
+
pkg: "core",
|
|
3670
|
+
doc: "packages/core/useNetwork/index.md",
|
|
3671
|
+
category: "Sensors",
|
|
3672
|
+
description: "reactive [Network status](https://developer.mozilla.org/en-US/docs/Web/API/Network_Information_API)",
|
|
3673
|
+
lastUpdated: 1789147565e3
|
|
3674
|
+
},
|
|
3675
|
+
{
|
|
3676
|
+
name: "useNow",
|
|
3677
|
+
pkg: "core",
|
|
3678
|
+
doc: "packages/core/useNow/index.md",
|
|
3679
|
+
category: "Animation",
|
|
3680
|
+
description: "reactive current Date instance",
|
|
3681
|
+
lastUpdated: 1789147565e3
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
name: "useNProgress",
|
|
3685
|
+
pkg: "integrations",
|
|
3686
|
+
doc: "packages/integrations/useNProgress/index.md",
|
|
3687
|
+
category: "@Integrations",
|
|
3688
|
+
description: "reactive wrapper for [`nprogress`](https://github.com/rstacruz/nprogress)",
|
|
3689
|
+
lastUpdated: 1789147565e3
|
|
3690
|
+
},
|
|
3691
|
+
{
|
|
3692
|
+
name: "useObjectUrl",
|
|
3693
|
+
pkg: "core",
|
|
3694
|
+
doc: "packages/core/useObjectUrl/index.md",
|
|
3695
|
+
category: "Browser",
|
|
3696
|
+
description: "reactive URL representing an object",
|
|
3697
|
+
lastUpdated: 1788958794e3
|
|
3698
|
+
},
|
|
3699
|
+
{
|
|
3700
|
+
name: "useObservable",
|
|
3701
|
+
pkg: "rxjs",
|
|
3702
|
+
doc: "packages/rxjs/useObservable/index.md",
|
|
3703
|
+
category: "@RxJS",
|
|
3704
|
+
description: "use an RxJS [`Observable`](https://rxjs.dev/guide/observable)",
|
|
3705
|
+
lastUpdated: 1789147565e3
|
|
3706
|
+
},
|
|
3707
|
+
{
|
|
3708
|
+
name: "useOffsetPagination",
|
|
3709
|
+
pkg: "core",
|
|
3710
|
+
doc: "packages/core/useOffsetPagination/index.md",
|
|
3711
|
+
category: "Utilities",
|
|
3712
|
+
description: "reactive offset pagination",
|
|
3713
|
+
lastUpdated: 1789147565e3
|
|
3714
|
+
},
|
|
3715
|
+
{
|
|
3716
|
+
name: "useOnline",
|
|
3717
|
+
pkg: "core",
|
|
3718
|
+
doc: "packages/core/useOnline/index.md",
|
|
3719
|
+
category: "Sensors",
|
|
3720
|
+
description: "reactive online state",
|
|
3721
|
+
lastUpdated: 1789147565e3
|
|
3722
|
+
},
|
|
3723
|
+
{
|
|
3724
|
+
name: "usePageLeave",
|
|
3725
|
+
pkg: "core",
|
|
3726
|
+
doc: "packages/core/usePageLeave/index.md",
|
|
3727
|
+
category: "Sensors",
|
|
3728
|
+
description: "reactive state to show whether the mouse leaves the page",
|
|
3729
|
+
lastUpdated: 1789147565e3
|
|
3730
|
+
},
|
|
3731
|
+
{
|
|
3732
|
+
name: "useParallax",
|
|
3733
|
+
pkg: "core",
|
|
3734
|
+
doc: "packages/core/useParallax/index.md",
|
|
3735
|
+
category: "Sensors",
|
|
3736
|
+
description: "create parallax effect easily",
|
|
3737
|
+
lastUpdated: 1789147565e3
|
|
3738
|
+
},
|
|
3739
|
+
{
|
|
3740
|
+
name: "useParams",
|
|
3741
|
+
pkg: "core",
|
|
3742
|
+
doc: "packages/core/useParams/index.md",
|
|
3743
|
+
category: "Browser",
|
|
3744
|
+
description: "shorthand for a reactive path parameter in `window.location.pathname`",
|
|
3745
|
+
lastUpdated: 1789147565e3
|
|
3746
|
+
},
|
|
3747
|
+
{
|
|
3748
|
+
name: "useParentElement",
|
|
3749
|
+
pkg: "core",
|
|
3750
|
+
doc: "packages/core/useParentElement/index.md",
|
|
3751
|
+
category: "Elements",
|
|
3752
|
+
description: "get parent element of the given element",
|
|
3753
|
+
lastUpdated: 1789147565e3
|
|
3754
|
+
},
|
|
3755
|
+
{
|
|
3756
|
+
name: "usePerformanceObserver",
|
|
3757
|
+
pkg: "core",
|
|
3758
|
+
doc: "packages/core/usePerformanceObserver/index.md",
|
|
3759
|
+
category: "Browser",
|
|
3760
|
+
description: "observe performance metrics",
|
|
3761
|
+
lastUpdated: 1788991736e3
|
|
3762
|
+
},
|
|
3763
|
+
{
|
|
3764
|
+
name: "usePermission",
|
|
3765
|
+
pkg: "core",
|
|
3766
|
+
doc: "packages/core/usePermission/index.md",
|
|
3767
|
+
category: "Browser",
|
|
3768
|
+
description: "reactive [Permissions API](https://developer.mozilla.org/en-US/docs/Web/API/Permissions_API) state",
|
|
3769
|
+
lastUpdated: 1788992388e3
|
|
3770
|
+
},
|
|
3771
|
+
{
|
|
3772
|
+
name: "usePointer",
|
|
3773
|
+
pkg: "core",
|
|
3774
|
+
doc: "packages/core/usePointer/index.md",
|
|
3775
|
+
category: "Sensors",
|
|
3776
|
+
description: "reactive pointer state",
|
|
3777
|
+
lastUpdated: 1789147565e3
|
|
3778
|
+
},
|
|
3779
|
+
{
|
|
3780
|
+
name: "usePointerLock",
|
|
3781
|
+
pkg: "core",
|
|
3782
|
+
doc: "packages/core/usePointerLock/index.md",
|
|
3783
|
+
category: "Sensors",
|
|
3784
|
+
description: "reactive [pointer lock](https://developer.mozilla.org/en-US/docs/Web/API/Pointer_Lock_API)",
|
|
3785
|
+
lastUpdated: 1789147565e3
|
|
3786
|
+
},
|
|
3787
|
+
{
|
|
3788
|
+
name: "usePointerSwipe",
|
|
3789
|
+
pkg: "core",
|
|
3790
|
+
doc: "packages/core/usePointerSwipe/index.md",
|
|
3791
|
+
category: "Sensors",
|
|
3792
|
+
description: "reactive swipe detection based on [PointerEvents](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent)",
|
|
3793
|
+
lastUpdated: 1789147565e3
|
|
3794
|
+
},
|
|
3795
|
+
{
|
|
3796
|
+
name: "usePrecision",
|
|
3797
|
+
pkg: "math",
|
|
3798
|
+
doc: "packages/math/usePrecision/index.md",
|
|
3799
|
+
category: "@Math",
|
|
3800
|
+
description: "reactively set the precision of a number",
|
|
3801
|
+
lastUpdated: 1789147565e3
|
|
3802
|
+
},
|
|
3803
|
+
{
|
|
3804
|
+
name: "usePreferredColorScheme",
|
|
3805
|
+
pkg: "core",
|
|
3806
|
+
doc: "packages/core/usePreferredColorScheme/index.md",
|
|
3807
|
+
category: "Browser",
|
|
3808
|
+
description: "reactive [`prefers-color-scheme`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) media query",
|
|
3809
|
+
lastUpdated: 1789147565e3
|
|
3810
|
+
},
|
|
3811
|
+
{
|
|
3812
|
+
name: "usePreferredContrast",
|
|
3813
|
+
pkg: "core",
|
|
3814
|
+
doc: "packages/core/usePreferredContrast/index.md",
|
|
3815
|
+
category: "Browser",
|
|
3816
|
+
description: "reactive [`prefers-contrast`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-contrast) media query",
|
|
3817
|
+
lastUpdated: 1789147565e3
|
|
3818
|
+
},
|
|
3819
|
+
{
|
|
3820
|
+
name: "usePreferredDark",
|
|
3821
|
+
pkg: "core",
|
|
3822
|
+
doc: "packages/core/usePreferredDark/index.md",
|
|
3823
|
+
category: "Browser",
|
|
3824
|
+
description: "reactive [`prefers-color-scheme: dark`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) media query",
|
|
3825
|
+
lastUpdated: 1789147565e3
|
|
3826
|
+
},
|
|
3827
|
+
{
|
|
3828
|
+
name: "usePreferredLanguages",
|
|
3829
|
+
pkg: "core",
|
|
3830
|
+
doc: "packages/core/usePreferredLanguages/index.md",
|
|
3831
|
+
category: "Browser",
|
|
3832
|
+
description: "reactive Navigator Languages",
|
|
3833
|
+
lastUpdated: 1789147565e3
|
|
3834
|
+
},
|
|
3835
|
+
{
|
|
3836
|
+
name: "usePreferredReducedMotion",
|
|
3837
|
+
pkg: "core",
|
|
3838
|
+
doc: "packages/core/usePreferredReducedMotion/index.md",
|
|
3839
|
+
category: "Browser",
|
|
3840
|
+
description: "reactive [`prefers-reduced-motion`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion) media query",
|
|
3841
|
+
lastUpdated: 1789147565e3
|
|
3842
|
+
},
|
|
3843
|
+
{
|
|
3844
|
+
name: "usePreferredReducedTransparency",
|
|
3845
|
+
pkg: "core",
|
|
3846
|
+
doc: "packages/core/usePreferredReducedTransparency/index.md",
|
|
3847
|
+
category: "Browser",
|
|
3848
|
+
description: "reactive [`prefers-reduced-transparency`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-transparency) media query",
|
|
3849
|
+
lastUpdated: 1789147565e3
|
|
3850
|
+
},
|
|
3851
|
+
{
|
|
3852
|
+
name: "usePrevious",
|
|
3853
|
+
pkg: "core",
|
|
3854
|
+
doc: "packages/core/usePrevious/index.md",
|
|
3855
|
+
category: "Utilities",
|
|
3856
|
+
description: "holds the previous value of a source",
|
|
3857
|
+
lastUpdated: 1788964249e3
|
|
3858
|
+
},
|
|
3859
|
+
{
|
|
3860
|
+
name: "useProjection",
|
|
3861
|
+
pkg: "math",
|
|
3862
|
+
doc: "packages/math/useProjection/index.md",
|
|
3863
|
+
category: "@Math",
|
|
3864
|
+
description: "reactive numeric projection from one domain to another",
|
|
3865
|
+
lastUpdated: 17889958e5
|
|
3866
|
+
},
|
|
3867
|
+
{
|
|
3868
|
+
name: "useQRCode",
|
|
3869
|
+
pkg: "integrations",
|
|
3870
|
+
doc: "packages/integrations/useQRCode/index.md",
|
|
3871
|
+
category: "@Integrations",
|
|
3872
|
+
description: "wrapper for [`qrcode`](https://github.com/soldair/node-qrcode)",
|
|
3873
|
+
lastUpdated: 1789147565e3
|
|
3874
|
+
},
|
|
3875
|
+
{
|
|
3876
|
+
name: "useQuery",
|
|
3877
|
+
pkg: "core",
|
|
3878
|
+
doc: "packages/core/useQuery/index.md",
|
|
3879
|
+
category: "Browser",
|
|
3880
|
+
description: "shorthand for a reactive query parameter in `window.location.search`",
|
|
3881
|
+
lastUpdated: 1789147565e3
|
|
3882
|
+
},
|
|
3883
|
+
{
|
|
3884
|
+
name: "useRafFn",
|
|
3885
|
+
pkg: "core",
|
|
3886
|
+
doc: "packages/core/useRafFn/index.md",
|
|
3887
|
+
category: "Animation",
|
|
3888
|
+
description: "call function on every `requestAnimationFrame`",
|
|
3889
|
+
lastUpdated: 1789147565e3
|
|
3890
|
+
},
|
|
3891
|
+
{
|
|
3892
|
+
name: "useRefsList",
|
|
3893
|
+
pkg: "core",
|
|
3894
|
+
doc: "packages/core/useRefsList/index.md",
|
|
3895
|
+
category: "Component",
|
|
3896
|
+
description: "shorthand for binding refs to elements rendered inside a list",
|
|
3897
|
+
lastUpdated: 1788963203e3
|
|
3898
|
+
},
|
|
3899
|
+
{
|
|
3900
|
+
name: "useResizeObserver",
|
|
3901
|
+
pkg: "core",
|
|
3902
|
+
doc: "packages/core/useResizeObserver/index.md",
|
|
3903
|
+
category: "Elements",
|
|
3904
|
+
description: "reports changes to the dimensions of an Element's content or the border-box",
|
|
3905
|
+
lastUpdated: 1789147565e3
|
|
3906
|
+
},
|
|
3907
|
+
{
|
|
3908
|
+
name: "useRound",
|
|
3909
|
+
pkg: "math",
|
|
3910
|
+
doc: "packages/math/useRound/index.md",
|
|
3911
|
+
category: "@Math",
|
|
3912
|
+
description: "reactive `Math.round`",
|
|
3913
|
+
lastUpdated: 1789147565e3
|
|
3914
|
+
},
|
|
3915
|
+
{
|
|
3916
|
+
name: "useRTDB",
|
|
3917
|
+
pkg: "firebase",
|
|
3918
|
+
doc: "packages/firebase/useRTDB/index.md",
|
|
3919
|
+
category: "@Firebase",
|
|
3920
|
+
description: "reactive [Firebase Realtime Database](https://firebase.google.com/docs/database) binding",
|
|
3921
|
+
lastUpdated: 1788942682e3
|
|
3922
|
+
},
|
|
3923
|
+
{
|
|
3924
|
+
name: "useScreenOrientation",
|
|
3925
|
+
pkg: "core",
|
|
3926
|
+
doc: "packages/core/useScreenOrientation/index.md",
|
|
3927
|
+
category: "Browser",
|
|
3928
|
+
description: "reactive [Screen Orientation API](https://developer.mozilla.org/en-US/docs/Web/API/Screen_Orientation_API)",
|
|
3929
|
+
lastUpdated: 1788960166e3
|
|
3930
|
+
},
|
|
3931
|
+
{
|
|
3932
|
+
name: "useScreenSafeArea",
|
|
3933
|
+
pkg: "core",
|
|
3934
|
+
doc: "packages/core/useScreenSafeArea/index.md",
|
|
3935
|
+
category: "Browser",
|
|
3936
|
+
description: "reactive `env(safe-area-inset-*)`",
|
|
3937
|
+
lastUpdated: 1788942682e3
|
|
3938
|
+
},
|
|
3939
|
+
{
|
|
3940
|
+
name: "useScriptTag",
|
|
3941
|
+
pkg: "core",
|
|
3942
|
+
doc: "packages/core/useScriptTag/index.md",
|
|
3943
|
+
category: "Browser",
|
|
3944
|
+
description: "creates a script tag",
|
|
3945
|
+
lastUpdated: 1788963761e3
|
|
3946
|
+
},
|
|
3947
|
+
{
|
|
3948
|
+
name: "useScroll",
|
|
3949
|
+
pkg: "core",
|
|
3950
|
+
doc: "packages/core/useScroll/index.md",
|
|
3951
|
+
category: "Sensors",
|
|
3952
|
+
description: "reactive scroll position and state",
|
|
3953
|
+
lastUpdated: 1789147565e3
|
|
3954
|
+
},
|
|
3955
|
+
{
|
|
3956
|
+
name: "useScrollLock",
|
|
3957
|
+
pkg: "core",
|
|
3958
|
+
doc: "packages/core/useScrollLock/index.md",
|
|
3959
|
+
category: "Sensors",
|
|
3960
|
+
description: "lock scrolling of the element",
|
|
3961
|
+
lastUpdated: 1789147565e3
|
|
3962
|
+
},
|
|
3963
|
+
{
|
|
3964
|
+
name: "useSessionStorage",
|
|
3965
|
+
pkg: "core",
|
|
3966
|
+
doc: "packages/core/useSessionStorage/index.md",
|
|
3967
|
+
category: "State",
|
|
3968
|
+
description: "reactive [SessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage)",
|
|
3969
|
+
lastUpdated: 1788960102e3
|
|
3970
|
+
},
|
|
3971
|
+
{
|
|
3972
|
+
name: "useShare",
|
|
3973
|
+
pkg: "core",
|
|
3974
|
+
doc: "packages/core/useShare/index.md",
|
|
3975
|
+
category: "Browser",
|
|
3976
|
+
description: "reactive [Web Share API](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share)",
|
|
3977
|
+
lastUpdated: 1788963984e3
|
|
3978
|
+
},
|
|
3979
|
+
{
|
|
3980
|
+
name: "useSortable",
|
|
3981
|
+
pkg: "integrations",
|
|
3982
|
+
doc: "packages/integrations/useSortable/index.md",
|
|
3983
|
+
category: "@Integrations",
|
|
3984
|
+
description: "wrapper for [`sortablejs`](https://github.com/SortableJS/Sortable)",
|
|
3985
|
+
lastUpdated: 1789147565e3
|
|
3986
|
+
},
|
|
3987
|
+
{
|
|
3988
|
+
name: "useSorted",
|
|
3989
|
+
pkg: "core",
|
|
3990
|
+
doc: "packages/core/useSorted/index.md",
|
|
3991
|
+
category: "Array",
|
|
3992
|
+
description: "reactive sorted array",
|
|
3993
|
+
lastUpdated: 1788962909e3
|
|
3994
|
+
},
|
|
3995
|
+
{
|
|
3996
|
+
name: "useSpeechRecognition",
|
|
3997
|
+
pkg: "core",
|
|
3998
|
+
doc: "packages/core/useSpeechRecognition/index.md",
|
|
3999
|
+
category: "Sensors",
|
|
4000
|
+
description: "reactive [SpeechRecognition](https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition)",
|
|
4001
|
+
lastUpdated: 1789147565e3
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
name: "useSpeechSynthesis",
|
|
4005
|
+
pkg: "core",
|
|
4006
|
+
doc: "packages/core/useSpeechSynthesis/index.md",
|
|
4007
|
+
category: "Sensors",
|
|
4008
|
+
description: "reactive [SpeechSynthesis](https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis)",
|
|
4009
|
+
lastUpdated: 1789147565e3
|
|
4010
|
+
},
|
|
4011
|
+
{
|
|
4012
|
+
name: "useSSRWidth",
|
|
4013
|
+
pkg: "core",
|
|
4014
|
+
doc: "packages/core/useSSRWidth/index.md",
|
|
4015
|
+
category: "Browser",
|
|
4016
|
+
description: "used to set a global viewport width which will be used when rendering SSR components that rely on the viewport width like `useMediaQuery` or `useBreakpoints`",
|
|
4017
|
+
lastUpdated: 1789147565e3
|
|
4018
|
+
},
|
|
4019
|
+
{
|
|
4020
|
+
name: "useStartTyping",
|
|
4021
|
+
pkg: "core",
|
|
4022
|
+
doc: "packages/core/useStartTyping/index.md",
|
|
4023
|
+
category: "Sensors",
|
|
4024
|
+
description: "fires when users start typing on non-editable elements",
|
|
4025
|
+
lastUpdated: 1789147565e3
|
|
4026
|
+
},
|
|
4027
|
+
{
|
|
4028
|
+
name: "useStateAutoReset",
|
|
4029
|
+
pkg: "shared",
|
|
4030
|
+
doc: "packages/shared/useStateAutoReset/index.md",
|
|
4031
|
+
category: "Reactivity",
|
|
4032
|
+
description: "a controllable state which will be reset to the default value after some time",
|
|
4033
|
+
lastUpdated: 1788977666e3
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
name: "useStateDebounced",
|
|
4037
|
+
pkg: "shared",
|
|
4038
|
+
doc: "packages/shared/useStateDebounced/index.md",
|
|
4039
|
+
category: "Reactivity",
|
|
4040
|
+
description: "a controllable state which will be debounced",
|
|
4041
|
+
lastUpdated: 1789000838e3
|
|
4042
|
+
},
|
|
4043
|
+
{
|
|
4044
|
+
name: "useStateDebouncedHistory",
|
|
4045
|
+
pkg: "core",
|
|
4046
|
+
doc: "packages/core/useStateDebouncedHistory/index.md",
|
|
4047
|
+
category: "State",
|
|
4048
|
+
description: "shorthand for `useStateHistory` with debounced filter",
|
|
4049
|
+
lastUpdated: 1789147565e3
|
|
4050
|
+
},
|
|
4051
|
+
{
|
|
4052
|
+
name: "useStateDefault",
|
|
4053
|
+
pkg: "shared",
|
|
4054
|
+
doc: "packages/shared/useStateDefault/index.md",
|
|
4055
|
+
category: "Reactivity",
|
|
4056
|
+
description: "apply default value to a ref",
|
|
4057
|
+
lastUpdated: 1788998493e3
|
|
4058
|
+
},
|
|
4059
|
+
{
|
|
4060
|
+
name: "useStateHistory",
|
|
4061
|
+
pkg: "core",
|
|
4062
|
+
doc: "packages/core/useStateHistory/index.md",
|
|
4063
|
+
category: "State",
|
|
4064
|
+
description: "track the change history of a state automatically — every change commits a history record — also provides undo and redo functionality",
|
|
4065
|
+
lastUpdated: 1789147565e3
|
|
4066
|
+
},
|
|
4067
|
+
{
|
|
4068
|
+
name: "useStateManualHistory",
|
|
4069
|
+
pkg: "core",
|
|
4070
|
+
doc: "packages/core/useStateManualHistory/index.md",
|
|
4071
|
+
category: "State",
|
|
4072
|
+
description: "manually track the change history of a state when the user calls `commit()`",
|
|
4073
|
+
lastUpdated: 1789147565e3
|
|
4074
|
+
},
|
|
4075
|
+
{
|
|
4076
|
+
name: "useStateManualReset",
|
|
4077
|
+
pkg: "shared",
|
|
4078
|
+
doc: "packages/shared/useStateManualReset/index.md",
|
|
4079
|
+
category: "Reactivity",
|
|
4080
|
+
description: "a state with manual reset functionality",
|
|
4081
|
+
lastUpdated: 1788997642e3
|
|
4082
|
+
},
|
|
4083
|
+
{
|
|
4084
|
+
name: "useStateThrottled",
|
|
4085
|
+
pkg: "shared",
|
|
4086
|
+
doc: "packages/shared/useStateThrottled/index.md",
|
|
4087
|
+
category: "Reactivity",
|
|
4088
|
+
description: "throttle changing of a state value",
|
|
4089
|
+
lastUpdated: 1789000282e3
|
|
4090
|
+
},
|
|
4091
|
+
{
|
|
4092
|
+
name: "useStateThrottledHistory",
|
|
4093
|
+
pkg: "core",
|
|
4094
|
+
doc: "packages/core/useStateThrottledHistory/index.md",
|
|
4095
|
+
category: "State",
|
|
4096
|
+
description: "shorthand for `useStateHistory` with throttled filter",
|
|
4097
|
+
lastUpdated: 1789147565e3
|
|
4098
|
+
},
|
|
4099
|
+
{
|
|
4100
|
+
name: "useStateWithControl",
|
|
4101
|
+
pkg: "shared",
|
|
4102
|
+
doc: "packages/shared/useStateWithControl/index.md",
|
|
4103
|
+
category: "Reactivity",
|
|
4104
|
+
description: "fine-grained controls over a state and its re-renders",
|
|
4105
|
+
lastUpdated: 1788998206e3
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
name: "useStepper",
|
|
4109
|
+
pkg: "core",
|
|
4110
|
+
doc: "packages/core/useStepper/index.md",
|
|
4111
|
+
category: "Utilities",
|
|
4112
|
+
description: "provides helpers for building a multi-step wizard interface",
|
|
4113
|
+
lastUpdated: 178896595e4
|
|
4114
|
+
},
|
|
4115
|
+
{
|
|
4116
|
+
name: "useStorage",
|
|
4117
|
+
pkg: "core",
|
|
4118
|
+
doc: "packages/core/useStorage/index.md",
|
|
4119
|
+
category: "State",
|
|
4120
|
+
description: "create a controllable state that can be used to access & modify [LocalStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) or [SessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage)",
|
|
4121
|
+
lastUpdated: 1789147565e3
|
|
4122
|
+
},
|
|
4123
|
+
{
|
|
4124
|
+
name: "useStorageAsync",
|
|
4125
|
+
pkg: "core",
|
|
4126
|
+
doc: "packages/core/useStorageAsync/index.md",
|
|
4127
|
+
category: "State",
|
|
4128
|
+
description: "reactive Storage with async support",
|
|
4129
|
+
lastUpdated: 1788966005e3
|
|
4130
|
+
},
|
|
4131
|
+
{
|
|
4132
|
+
name: "useStyleTag",
|
|
4133
|
+
pkg: "core",
|
|
4134
|
+
doc: "packages/core/useStyleTag/index.md",
|
|
4135
|
+
category: "Browser",
|
|
4136
|
+
description: "inject reactive `style` element in head",
|
|
4137
|
+
lastUpdated: 1789147565e3
|
|
4138
|
+
},
|
|
4139
|
+
{
|
|
4140
|
+
name: "useSubject",
|
|
4141
|
+
pkg: "rxjs",
|
|
4142
|
+
doc: "packages/rxjs/useSubject/index.md",
|
|
4143
|
+
category: "@RxJS",
|
|
4144
|
+
description: "bind an RxJS [`Subject`](https://rxjs.dev/guide/subject) to a controllable state and propagate value changes both ways",
|
|
4145
|
+
lastUpdated: 1789147565e3
|
|
4146
|
+
},
|
|
4147
|
+
{
|
|
4148
|
+
name: "useSubscription",
|
|
4149
|
+
pkg: "rxjs",
|
|
4150
|
+
doc: "packages/rxjs/useSubscription/index.md",
|
|
4151
|
+
category: "@RxJS",
|
|
4152
|
+
description: "use an RxJS [`Subscription`](https://rxjs.dev/guide/subscription) without worrying about unsubscribing from it or creating memory leaks",
|
|
4153
|
+
lastUpdated: 1789017877e3
|
|
4154
|
+
},
|
|
4155
|
+
{
|
|
4156
|
+
name: "useSum",
|
|
4157
|
+
pkg: "math",
|
|
4158
|
+
doc: "packages/math/useSum/index.md",
|
|
4159
|
+
category: "@Math",
|
|
4160
|
+
description: "get the sum of an array reactively",
|
|
4161
|
+
lastUpdated: 1789147565e3
|
|
4162
|
+
},
|
|
4163
|
+
{
|
|
4164
|
+
name: "useSupported",
|
|
4165
|
+
pkg: "core",
|
|
4166
|
+
doc: "packages/core/useSupported/index.md",
|
|
4167
|
+
category: "Utilities",
|
|
4168
|
+
description: "SSR compatibility `isSupported`",
|
|
4169
|
+
lastUpdated: 1789147565e3
|
|
4170
|
+
},
|
|
4171
|
+
{
|
|
4172
|
+
name: "useSwipe",
|
|
4173
|
+
pkg: "core",
|
|
4174
|
+
doc: "packages/core/useSwipe/index.md",
|
|
4175
|
+
category: "Sensors",
|
|
4176
|
+
description: "reactive swipe detection based on [`TouchEvents`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent)",
|
|
4177
|
+
lastUpdated: 1789147565e3
|
|
4178
|
+
},
|
|
4179
|
+
{
|
|
4180
|
+
name: "useTemporalNow",
|
|
4181
|
+
pkg: "core",
|
|
4182
|
+
doc: "packages/core/useTemporalNow/index.md",
|
|
4183
|
+
category: "Time",
|
|
4184
|
+
description: "reactive [Temporal API](https://tc39.es/proposal-temporal/docs/) with timezone conversion and calendar system support",
|
|
4185
|
+
lastUpdated: 1789147565e3
|
|
4186
|
+
},
|
|
4187
|
+
{
|
|
4188
|
+
name: "useTextareaAutosize",
|
|
4189
|
+
pkg: "core",
|
|
4190
|
+
doc: "packages/core/useTextareaAutosize/index.md",
|
|
4191
|
+
category: "Browser",
|
|
4192
|
+
description: "automatically update the height of a textarea depending on the content",
|
|
4193
|
+
lastUpdated: 1789147565e3
|
|
4194
|
+
},
|
|
4195
|
+
{
|
|
4196
|
+
name: "useTextDirection",
|
|
4197
|
+
pkg: "core",
|
|
4198
|
+
doc: "packages/core/useTextDirection/index.md",
|
|
4199
|
+
category: "Browser",
|
|
4200
|
+
description: "reactive [dir](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir) of the element's text",
|
|
4201
|
+
lastUpdated: 1788996791e3
|
|
4202
|
+
},
|
|
4203
|
+
{
|
|
4204
|
+
name: "useTextSelection",
|
|
4205
|
+
pkg: "core",
|
|
4206
|
+
doc: "packages/core/useTextSelection/index.md",
|
|
4207
|
+
category: "Sensors",
|
|
4208
|
+
description: "reactively track user text selection based on [`Window.getSelection`](https://developer.mozilla.org/en-US/docs/Web/API/Window/getSelection)",
|
|
4209
|
+
lastUpdated: 1789147565e3
|
|
4210
|
+
},
|
|
4211
|
+
{
|
|
4212
|
+
name: "useThrottleFn",
|
|
4213
|
+
pkg: "shared",
|
|
4214
|
+
doc: "packages/shared/useThrottleFn/index.md",
|
|
4215
|
+
category: "Utilities",
|
|
4216
|
+
description: "throttle execution of a function",
|
|
4217
|
+
lastUpdated: 1788998912e3
|
|
4218
|
+
},
|
|
4219
|
+
{
|
|
4220
|
+
name: "useTimeAgo",
|
|
4221
|
+
pkg: "core",
|
|
4222
|
+
doc: "packages/core/useTimeAgo/index.md",
|
|
4223
|
+
category: "Time",
|
|
4224
|
+
description: "reactive time ago",
|
|
4225
|
+
lastUpdated: 1789147565e3
|
|
4226
|
+
},
|
|
4227
|
+
{
|
|
4228
|
+
name: "useTimeAgoIntl",
|
|
4229
|
+
pkg: "core",
|
|
4230
|
+
doc: "packages/core/useTimeAgoIntl/index.md",
|
|
4231
|
+
category: "Time",
|
|
4232
|
+
description: "reactive time ago with i18n supported",
|
|
4233
|
+
lastUpdated: 1789147565e3
|
|
4234
|
+
},
|
|
4235
|
+
{
|
|
4236
|
+
name: "useTimeout",
|
|
4237
|
+
pkg: "shared",
|
|
4238
|
+
doc: "packages/shared/useTimeout/index.md",
|
|
4239
|
+
category: "Animation",
|
|
4240
|
+
description: "a reactive value that becomes `true` after a given time",
|
|
4241
|
+
lastUpdated: 1788981733e3
|
|
4242
|
+
},
|
|
4243
|
+
{
|
|
4244
|
+
name: "useTimeoutFn",
|
|
4245
|
+
pkg: "shared",
|
|
4246
|
+
doc: "packages/shared/useTimeoutFn/index.md",
|
|
4247
|
+
category: "Animation",
|
|
4248
|
+
description: "wrapper for `setTimeout` with controls",
|
|
4249
|
+
lastUpdated: 1788981739e3
|
|
4250
|
+
},
|
|
4251
|
+
{
|
|
4252
|
+
name: "useTimeoutPoll",
|
|
4253
|
+
pkg: "core",
|
|
4254
|
+
doc: "packages/core/useTimeoutPoll/index.md",
|
|
4255
|
+
category: "Utilities",
|
|
4256
|
+
description: "use timeout to poll something — it triggers the callback after the last task is done",
|
|
4257
|
+
lastUpdated: 1788994903e3
|
|
4258
|
+
},
|
|
4259
|
+
{
|
|
4260
|
+
name: "useTimestamp",
|
|
4261
|
+
pkg: "core",
|
|
4262
|
+
doc: "packages/core/useTimestamp/index.md",
|
|
4263
|
+
category: "Animation",
|
|
4264
|
+
description: "reactive current timestamp (`Date.now() + offset`)",
|
|
4265
|
+
lastUpdated: 178899833e4
|
|
4266
|
+
},
|
|
4267
|
+
{
|
|
4268
|
+
name: "useTitle",
|
|
4269
|
+
pkg: "core",
|
|
4270
|
+
doc: "packages/core/useTitle/index.md",
|
|
4271
|
+
category: "Browser",
|
|
4272
|
+
description: "reactive document title",
|
|
4273
|
+
lastUpdated: 178899187e4
|
|
4274
|
+
},
|
|
4275
|
+
{
|
|
4276
|
+
name: "useToggle",
|
|
4277
|
+
pkg: "shared",
|
|
4278
|
+
doc: "packages/shared/useToggle/index.md",
|
|
4279
|
+
category: "Utilities",
|
|
4280
|
+
description: "a boolean (or value) toggler with controllable state support",
|
|
4281
|
+
lastUpdated: 1788981648e3
|
|
4282
|
+
},
|
|
4283
|
+
{
|
|
4284
|
+
name: "useToNumber",
|
|
4285
|
+
pkg: "shared",
|
|
4286
|
+
doc: "packages/shared/useToNumber/index.md",
|
|
4287
|
+
category: "Utilities",
|
|
4288
|
+
description: "convert a string or number value to a number",
|
|
4289
|
+
lastUpdated: 1788942682e3
|
|
4290
|
+
},
|
|
4291
|
+
{
|
|
4292
|
+
name: "useToString",
|
|
4293
|
+
pkg: "shared",
|
|
4294
|
+
doc: "packages/shared/useToString/index.md",
|
|
4295
|
+
category: "Utilities",
|
|
4296
|
+
description: "convert a value to its string representation",
|
|
4297
|
+
lastUpdated: 1789001834e3
|
|
4298
|
+
},
|
|
4299
|
+
{
|
|
4300
|
+
name: "useTransition",
|
|
4301
|
+
pkg: "core",
|
|
4302
|
+
doc: "packages/core/useTransition/index.md",
|
|
4303
|
+
category: "Animation",
|
|
4304
|
+
description: "transition between values",
|
|
4305
|
+
lastUpdated: 1788994691e3
|
|
4306
|
+
},
|
|
4307
|
+
{
|
|
4308
|
+
name: "useTrunc",
|
|
4309
|
+
pkg: "math",
|
|
4310
|
+
doc: "packages/math/useTrunc/index.md",
|
|
4311
|
+
category: "@Math",
|
|
4312
|
+
description: "truncates a number",
|
|
4313
|
+
lastUpdated: 1789147565e3
|
|
4314
|
+
},
|
|
4315
|
+
{
|
|
4316
|
+
name: "useUnmount",
|
|
4317
|
+
pkg: "shared",
|
|
4318
|
+
doc: "packages/shared/useUnmount/index.md",
|
|
4319
|
+
category: "Lifecycle",
|
|
4320
|
+
description: "runs a callback when the component unmounts — React port of react-use's [`useUnmount`](https://streamich.github.io/react-use/?path=/story/lifecycle-useunmount--docs)",
|
|
4321
|
+
lastUpdated: 1788942682e3
|
|
4322
|
+
},
|
|
4323
|
+
{
|
|
4324
|
+
name: "useUpdate",
|
|
4325
|
+
pkg: "shared",
|
|
4326
|
+
doc: "packages/shared/useUpdate/index.md",
|
|
4327
|
+
category: "Animation",
|
|
4328
|
+
description: "a force-update hook — React port of react-use's [`useUpdate`](https://streamich.github.io/react-use/?path=/story/animation-useupdate--docs)",
|
|
4329
|
+
lastUpdated: 1788942682e3
|
|
4330
|
+
},
|
|
4331
|
+
{
|
|
4332
|
+
name: "useUrlSearchParams",
|
|
4333
|
+
pkg: "core",
|
|
4334
|
+
doc: "packages/core/useUrlSearchParams/index.md",
|
|
4335
|
+
category: "Browser",
|
|
4336
|
+
description: "reactive [URLSearchParams](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams)",
|
|
4337
|
+
lastUpdated: 1789147565e3
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
name: "useUserMedia",
|
|
4341
|
+
pkg: "core",
|
|
4342
|
+
doc: "packages/core/useUserMedia/index.md",
|
|
4343
|
+
category: "Sensors",
|
|
4344
|
+
description: "streaming via [`mediaDevices.getUserMedia`](https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia)",
|
|
4345
|
+
lastUpdated: 1788997864e3
|
|
4346
|
+
},
|
|
4347
|
+
{
|
|
4348
|
+
name: "useVibrate",
|
|
4349
|
+
pkg: "core",
|
|
4350
|
+
doc: "packages/core/useVibrate/index.md",
|
|
4351
|
+
category: "Browser",
|
|
4352
|
+
description: "reactive [Vibration API](https://developer.mozilla.org/en-US/docs/Web/API/Vibration_API)",
|
|
4353
|
+
lastUpdated: 1789147565e3
|
|
4354
|
+
},
|
|
4355
|
+
{
|
|
4356
|
+
name: "useVirtualList",
|
|
4357
|
+
pkg: "core",
|
|
4358
|
+
doc: "packages/core/useVirtualList/index.md",
|
|
4359
|
+
category: "Component",
|
|
4360
|
+
description: "create virtual lists with ease",
|
|
4361
|
+
lastUpdated: 1788996627e3
|
|
4362
|
+
},
|
|
4363
|
+
{
|
|
4364
|
+
name: "useWakeLock",
|
|
4365
|
+
pkg: "core",
|
|
4366
|
+
doc: "packages/core/useWakeLock/index.md",
|
|
4367
|
+
category: "Browser",
|
|
4368
|
+
description: "reactive [Screen Wake Lock API](https://developer.mozilla.org/en-US/docs/Web/API/Screen_Wake_Lock_API)",
|
|
4369
|
+
lastUpdated: 1789147565e3
|
|
4370
|
+
},
|
|
4371
|
+
{
|
|
4372
|
+
name: "useWatch",
|
|
4373
|
+
pkg: "shared",
|
|
4374
|
+
doc: "packages/shared/useWatch/index.md",
|
|
4375
|
+
category: "Watch",
|
|
4376
|
+
description: "watches a source — a single value or an array of values — and invokes a callback with `(value",
|
|
4377
|
+
lastUpdated: 1789001849e3
|
|
4378
|
+
},
|
|
4379
|
+
{
|
|
4380
|
+
name: "useWatchArray",
|
|
4381
|
+
pkg: "shared",
|
|
4382
|
+
doc: "packages/shared/useWatchArray/index.md",
|
|
4383
|
+
category: "Watch",
|
|
4384
|
+
description: "watches an array value and reports which items were added and removed since the previous list",
|
|
4385
|
+
lastUpdated: 1789001863e3
|
|
4386
|
+
},
|
|
4387
|
+
{
|
|
4388
|
+
name: "useWatchAtMost",
|
|
4389
|
+
pkg: "shared",
|
|
4390
|
+
doc: "packages/shared/useWatchAtMost/index.md",
|
|
4391
|
+
category: "Watch",
|
|
4392
|
+
description: "like `useWatch`",
|
|
4393
|
+
lastUpdated: 1788986162e3
|
|
4394
|
+
},
|
|
4395
|
+
{
|
|
4396
|
+
name: "useWatchDebounced",
|
|
4397
|
+
pkg: "shared",
|
|
4398
|
+
doc: "packages/shared/useWatchDebounced/index.md",
|
|
4399
|
+
category: "Watch",
|
|
4400
|
+
description: "debounced watch",
|
|
4401
|
+
lastUpdated: 1789001877e3
|
|
4402
|
+
},
|
|
4403
|
+
{
|
|
4404
|
+
name: "useWatchDeep",
|
|
4405
|
+
pkg: "shared",
|
|
4406
|
+
doc: "packages/shared/useWatchDeep/index.md",
|
|
4407
|
+
category: "Watch",
|
|
4408
|
+
description: "shorthand for watching a value with `{ deep: true }` — invokes the callback only when the value differs **deeply** from the previous one",
|
|
4409
|
+
lastUpdated: 1789147565e3
|
|
4410
|
+
},
|
|
4411
|
+
{
|
|
4412
|
+
name: "useWatchExtractedObservable",
|
|
4413
|
+
pkg: "rxjs",
|
|
4414
|
+
doc: "packages/rxjs/useWatchExtractedObservable/index.md",
|
|
4415
|
+
category: "@RxJS",
|
|
4416
|
+
description: "watch the values of an RxJS [`Observable`](https://rxjs.dev/guide/observable) as extracted from one or more hooks",
|
|
4417
|
+
lastUpdated: 178901019e4
|
|
4418
|
+
},
|
|
4419
|
+
{
|
|
4420
|
+
name: "useWatchIgnorable",
|
|
4421
|
+
pkg: "shared",
|
|
4422
|
+
doc: "packages/shared/useWatchIgnorable/index.md",
|
|
4423
|
+
category: "Watch",
|
|
4424
|
+
description: "ignorable watch — extended watch that returns `ignoreUpdates(updater)` / `ignorePrevAsyncUpdates()` / `stop` to ignore particular updates to the source",
|
|
4425
|
+
lastUpdated: 1788986154e3
|
|
4426
|
+
},
|
|
4427
|
+
{
|
|
4428
|
+
name: "useWatchImmediate",
|
|
4429
|
+
pkg: "shared",
|
|
4430
|
+
doc: "packages/shared/useWatchImmediate/index.md",
|
|
4431
|
+
category: "Watch",
|
|
4432
|
+
description: "shorthand for watching value with `{ immediate: true }`",
|
|
4433
|
+
lastUpdated: 1788942682e3
|
|
4434
|
+
},
|
|
4435
|
+
{
|
|
4436
|
+
name: "useWatchOnce",
|
|
4437
|
+
pkg: "shared",
|
|
4438
|
+
doc: "packages/shared/useWatchOnce/index.md",
|
|
4439
|
+
category: "Watch",
|
|
4440
|
+
description: "shorthand for watching value with `{ once: true }`",
|
|
4441
|
+
lastUpdated: 1789001932e3
|
|
4442
|
+
},
|
|
4443
|
+
{
|
|
4444
|
+
name: "useWatchPausable",
|
|
4445
|
+
pkg: "shared",
|
|
4446
|
+
doc: "packages/shared/useWatchPausable/index.md",
|
|
4447
|
+
category: "Watch",
|
|
4448
|
+
description: "pausable watch — pause and resume a watched value's updates",
|
|
4449
|
+
lastUpdated: 1788994734e3
|
|
4450
|
+
},
|
|
4451
|
+
{
|
|
4452
|
+
name: "useWatchThrottled",
|
|
4453
|
+
pkg: "shared",
|
|
4454
|
+
doc: "packages/shared/useWatchThrottled/index.md",
|
|
4455
|
+
category: "Watch",
|
|
4456
|
+
description: "throttled watch",
|
|
4457
|
+
lastUpdated: 1788994759e3
|
|
4458
|
+
},
|
|
4459
|
+
{
|
|
4460
|
+
name: "useWatchTriggerable",
|
|
4461
|
+
pkg: "shared",
|
|
4462
|
+
doc: "packages/shared/useWatchTriggerable/index.md",
|
|
4463
|
+
category: "Watch",
|
|
4464
|
+
description: "watch that can be triggered manually",
|
|
4465
|
+
lastUpdated: 1788988809e3
|
|
4466
|
+
},
|
|
4467
|
+
{
|
|
4468
|
+
name: "useWatchWithFilter",
|
|
4469
|
+
pkg: "shared",
|
|
4470
|
+
doc: "packages/shared/useWatchWithFilter/index.md",
|
|
4471
|
+
category: "Watch",
|
|
4472
|
+
description: "`watch` with additional EventFilter control",
|
|
4473
|
+
lastUpdated: 1788994784e3
|
|
4474
|
+
},
|
|
4475
|
+
{
|
|
4476
|
+
name: "useWebNotification",
|
|
4477
|
+
pkg: "core",
|
|
4478
|
+
doc: "packages/core/useWebNotification/index.md",
|
|
4479
|
+
category: "Browser",
|
|
4480
|
+
description: "reactive [Notification](https://developer.mozilla.org/en-US/docs/Web/API/notification)",
|
|
4481
|
+
lastUpdated: 1789147565e3
|
|
4482
|
+
},
|
|
4483
|
+
{
|
|
4484
|
+
name: "useWebSocket",
|
|
4485
|
+
pkg: "core",
|
|
4486
|
+
doc: "packages/core/useWebSocket/index.md",
|
|
4487
|
+
category: "Browser",
|
|
4488
|
+
description: "reactive [WebSocket](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/WebSocket) client",
|
|
4489
|
+
lastUpdated: 1789147565e3
|
|
4490
|
+
},
|
|
4491
|
+
{
|
|
4492
|
+
name: "useWebWorker",
|
|
4493
|
+
pkg: "core",
|
|
4494
|
+
doc: "packages/core/useWebWorker/index.md",
|
|
4495
|
+
category: "Browser",
|
|
4496
|
+
description: "simple [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) registration and communication",
|
|
4497
|
+
lastUpdated: 1788998635e3
|
|
4498
|
+
},
|
|
4499
|
+
{
|
|
4500
|
+
name: "useWebWorkerFn",
|
|
4501
|
+
pkg: "core",
|
|
4502
|
+
doc: "packages/core/useWebWorkerFn/index.md",
|
|
4503
|
+
category: "Browser",
|
|
4504
|
+
description: "run expensive functions without blocking the UI",
|
|
4505
|
+
lastUpdated: 1788999163e3
|
|
4506
|
+
},
|
|
4507
|
+
{
|
|
4508
|
+
name: "useWhenever",
|
|
4509
|
+
pkg: "shared",
|
|
4510
|
+
doc: "packages/shared/useWhenever/index.md",
|
|
4511
|
+
category: "Watch",
|
|
4512
|
+
description: "shorthand for watching value to be truthy",
|
|
4513
|
+
lastUpdated: 1788988828e3
|
|
4514
|
+
},
|
|
4515
|
+
{
|
|
4516
|
+
name: "useWindowFocus",
|
|
4517
|
+
pkg: "core",
|
|
4518
|
+
doc: "packages/core/useWindowFocus/index.md",
|
|
4519
|
+
category: "Elements",
|
|
4520
|
+
description: "reactive window focus state",
|
|
4521
|
+
lastUpdated: 1789147565e3
|
|
4522
|
+
},
|
|
4523
|
+
{
|
|
4524
|
+
name: "useWindowScroll",
|
|
4525
|
+
pkg: "core",
|
|
4526
|
+
doc: "packages/core/useWindowScroll/index.md",
|
|
4527
|
+
category: "Elements",
|
|
4528
|
+
description: "reactive window scroll",
|
|
4529
|
+
lastUpdated: 1788993907e3
|
|
4530
|
+
},
|
|
4531
|
+
{
|
|
4532
|
+
name: "useWindowSize",
|
|
4533
|
+
pkg: "core",
|
|
4534
|
+
doc: "packages/core/useWindowSize/index.md",
|
|
4535
|
+
category: "Elements",
|
|
4536
|
+
description: "reactive window size",
|
|
4537
|
+
lastUpdated: 1789147565e3
|
|
4538
|
+
},
|
|
4539
|
+
{
|
|
4540
|
+
name: "useZoomFactor",
|
|
4541
|
+
pkg: "electron",
|
|
4542
|
+
doc: "packages/electron/useZoomFactor/index.md",
|
|
4543
|
+
category: "@Electron",
|
|
4544
|
+
description: "reactive [WebFrame](https://www.electronjs.org/docs/api/web-frame#webframe) zoom factor",
|
|
4545
|
+
lastUpdated: 1789147565e3
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
name: "useZoomLevel",
|
|
4549
|
+
pkg: "electron",
|
|
4550
|
+
doc: "packages/electron/useZoomLevel/index.md",
|
|
4551
|
+
category: "@Electron",
|
|
4552
|
+
description: "reactive [WebFrame](https://www.electronjs.org/docs/api/web-frame#webframe) zoom level",
|
|
4553
|
+
lastUpdated: 1789147565e3
|
|
4554
|
+
},
|
|
4555
|
+
{
|
|
4556
|
+
name: "utils",
|
|
4557
|
+
pkg: "shared",
|
|
4558
|
+
doc: "packages/shared/utils/index.md",
|
|
4559
|
+
category: "Utilities",
|
|
4560
|
+
description: "framework-agnostic helper functions ported 1:1 from VueUse's internal [`@vueuse/shared`](https://vueuse.org/shared/) utils group (`is.ts` / `general.ts`) — plain TypeScript with no React state",
|
|
4561
|
+
lastUpdated: 1789147565e3
|
|
4562
|
+
}
|
|
4563
|
+
];
|
|
4564
|
+
const categoryNames = [
|
|
4565
|
+
"State",
|
|
4566
|
+
"Elements",
|
|
4567
|
+
"Browser",
|
|
4568
|
+
"Sensors",
|
|
4569
|
+
"Network",
|
|
4570
|
+
"Animation",
|
|
4571
|
+
"Component",
|
|
4572
|
+
"Watch",
|
|
4573
|
+
"Reactivity",
|
|
4574
|
+
"Array",
|
|
4575
|
+
"Time",
|
|
4576
|
+
"Utilities",
|
|
4577
|
+
"@Electron",
|
|
4578
|
+
"@Firebase",
|
|
4579
|
+
"@Integrations",
|
|
4580
|
+
"@Math",
|
|
4581
|
+
"@RxJS",
|
|
4582
|
+
"Lifecycle"
|
|
4583
|
+
];
|
|
4584
|
+
const coreCategoryNames = categoryNames.filter((c) => !c.startsWith("@"));
|
|
4585
|
+
const addonCategoryNames = categoryNames.filter((c) => c.startsWith("@"));
|
|
4586
|
+
//#endregion
|
|
4587
|
+
export { addonCategoryNames, categoryNames, coreCategoryNames, functions, packages, pages };
|