@vueuse/metadata 8.9.4 → 9.0.0-beta.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/index.cjs +492 -209
- package/index.d.ts +1 -0
- package/index.json +485 -204
- package/index.mjs +492 -209
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -25,6 +25,15 @@ var packages$1 = {
|
|
|
25
25
|
],
|
|
26
26
|
dir: "packages/components"
|
|
27
27
|
},
|
|
28
|
+
math: {
|
|
29
|
+
name: "math",
|
|
30
|
+
display: "Math",
|
|
31
|
+
description: "Math functions for VueUse",
|
|
32
|
+
external: [
|
|
33
|
+
"@vueuse/shared"
|
|
34
|
+
],
|
|
35
|
+
dir: "packages/math"
|
|
36
|
+
},
|
|
28
37
|
router: {
|
|
29
38
|
name: "router",
|
|
30
39
|
display: "Router",
|
|
@@ -57,7 +66,8 @@ var packages$1 = {
|
|
|
57
66
|
"drauu",
|
|
58
67
|
"@vueuse/core",
|
|
59
68
|
"@vueuse/shared",
|
|
60
|
-
"fuse.js"
|
|
69
|
+
"fuse.js",
|
|
70
|
+
"async-validator"
|
|
61
71
|
],
|
|
62
72
|
globals: {
|
|
63
73
|
axios: "axios",
|
|
@@ -68,7 +78,8 @@ var packages$1 = {
|
|
|
68
78
|
"focus-trap": "focusTrap",
|
|
69
79
|
drauu: "Drauu",
|
|
70
80
|
"fuse.js": "Fuse",
|
|
71
|
-
"change-case": "changeCase"
|
|
81
|
+
"change-case": "changeCase",
|
|
82
|
+
"async-validator": "AsyncValidator"
|
|
72
83
|
},
|
|
73
84
|
dir: "packages/integrations",
|
|
74
85
|
docs: "https://vueuse.org/integrations/README.html"
|
|
@@ -122,19 +133,22 @@ var packages$1 = {
|
|
|
122
133
|
};
|
|
123
134
|
var categories$1 = [
|
|
124
135
|
"Animation",
|
|
136
|
+
"Array",
|
|
125
137
|
"Browser",
|
|
126
138
|
"Component",
|
|
127
139
|
"Elements",
|
|
128
|
-
"Misc",
|
|
129
140
|
"Network",
|
|
141
|
+
"Reactivity",
|
|
130
142
|
"Sensors",
|
|
131
143
|
"State",
|
|
144
|
+
"Time",
|
|
132
145
|
"Utilities",
|
|
133
146
|
"Watch",
|
|
134
147
|
"@Electron",
|
|
135
148
|
"@Firebase",
|
|
136
149
|
"@Head",
|
|
137
150
|
"@Integrations",
|
|
151
|
+
"@Math",
|
|
138
152
|
"@Motion",
|
|
139
153
|
"@Router",
|
|
140
154
|
"@RxJS",
|
|
@@ -147,7 +161,7 @@ var functions$1 = [
|
|
|
147
161
|
"package": "core",
|
|
148
162
|
lastUpdated: 1651597361000,
|
|
149
163
|
docs: "https://vueuse.org/core/computedAsync/",
|
|
150
|
-
category: "
|
|
164
|
+
category: "Reactivity",
|
|
151
165
|
description: "computed for async functions",
|
|
152
166
|
alias: [
|
|
153
167
|
"asyncComputed"
|
|
@@ -158,7 +172,7 @@ var functions$1 = [
|
|
|
158
172
|
"package": "shared",
|
|
159
173
|
lastUpdated: 1645956777000,
|
|
160
174
|
docs: "https://vueuse.org/shared/computedEager/",
|
|
161
|
-
category: "
|
|
175
|
+
category: "Reactivity",
|
|
162
176
|
description: "eager computed without lazy evaluation",
|
|
163
177
|
alias: [
|
|
164
178
|
"eagerComputed"
|
|
@@ -177,7 +191,7 @@ var functions$1 = [
|
|
|
177
191
|
"package": "shared",
|
|
178
192
|
lastUpdated: 1657102664000,
|
|
179
193
|
docs: "https://vueuse.org/shared/computedWithControl/",
|
|
180
|
-
category: "
|
|
194
|
+
category: "Reactivity",
|
|
181
195
|
description: "explicitly define the dependencies of computed",
|
|
182
196
|
alias: [
|
|
183
197
|
"controlledComputed"
|
|
@@ -194,13 +208,28 @@ var functions$1 = [
|
|
|
194
208
|
category: "Utilities",
|
|
195
209
|
description: "utility for creating event hooks"
|
|
196
210
|
},
|
|
211
|
+
{
|
|
212
|
+
name: "createGenericProjection",
|
|
213
|
+
"package": "math",
|
|
214
|
+
lastUpdated: 1657437998000,
|
|
215
|
+
docs: "https://vueuse.org/math/createGenericProjection/",
|
|
216
|
+
category: "@Math",
|
|
217
|
+
description: "generic version of `createProjection`",
|
|
218
|
+
related: [
|
|
219
|
+
"createProjection",
|
|
220
|
+
"useProjection"
|
|
221
|
+
]
|
|
222
|
+
},
|
|
197
223
|
{
|
|
198
224
|
name: "createGlobalState",
|
|
199
225
|
"package": "shared",
|
|
200
226
|
lastUpdated: 1625749207000,
|
|
201
227
|
docs: "https://vueuse.org/shared/createGlobalState/",
|
|
202
228
|
category: "State",
|
|
203
|
-
description: "keep states in the global scope to be reusable across Vue instances"
|
|
229
|
+
description: "keep states in the global scope to be reusable across Vue instances",
|
|
230
|
+
related: [
|
|
231
|
+
"createSharedComposable"
|
|
232
|
+
]
|
|
204
233
|
},
|
|
205
234
|
{
|
|
206
235
|
name: "createHead",
|
|
@@ -217,6 +246,18 @@ var functions$1 = [
|
|
|
217
246
|
category: "State",
|
|
218
247
|
description: "create global state that can be injected into components"
|
|
219
248
|
},
|
|
249
|
+
{
|
|
250
|
+
name: "createProjection",
|
|
251
|
+
"package": "math",
|
|
252
|
+
lastUpdated: 1657437998000,
|
|
253
|
+
docs: "https://vueuse.org/math/createProjection/",
|
|
254
|
+
category: "@Math",
|
|
255
|
+
description: "reactive numeric projection from one domain to another",
|
|
256
|
+
related: [
|
|
257
|
+
"createGenericProjection",
|
|
258
|
+
"useProjection"
|
|
259
|
+
]
|
|
260
|
+
},
|
|
220
261
|
{
|
|
221
262
|
name: "createSchemaOrg",
|
|
222
263
|
"package": "schema-org",
|
|
@@ -230,7 +271,10 @@ var functions$1 = [
|
|
|
230
271
|
lastUpdated: 1639442454000,
|
|
231
272
|
docs: "https://vueuse.org/shared/createSharedComposable/",
|
|
232
273
|
category: "State",
|
|
233
|
-
description: "make a composable function usable with multiple Vue instances"
|
|
274
|
+
description: "make a composable function usable with multiple Vue instances",
|
|
275
|
+
related: [
|
|
276
|
+
"createGlobalState"
|
|
277
|
+
]
|
|
234
278
|
},
|
|
235
279
|
{
|
|
236
280
|
name: "createUnrefFn",
|
|
@@ -248,7 +292,7 @@ var functions$1 = [
|
|
|
248
292
|
"package": "shared",
|
|
249
293
|
lastUpdated: 1639442454000,
|
|
250
294
|
docs: "https://vueuse.org/shared/extendRef/",
|
|
251
|
-
category: "
|
|
295
|
+
category: "Reactivity",
|
|
252
296
|
description: "add extra attributes to Ref"
|
|
253
297
|
},
|
|
254
298
|
{
|
|
@@ -277,10 +321,10 @@ var functions$1 = [
|
|
|
277
321
|
},
|
|
278
322
|
{
|
|
279
323
|
name: "logicAnd",
|
|
280
|
-
"package": "
|
|
281
|
-
lastUpdated:
|
|
282
|
-
docs: "https://vueuse.org/
|
|
283
|
-
category: "
|
|
324
|
+
"package": "math",
|
|
325
|
+
lastUpdated: 1657261466000,
|
|
326
|
+
docs: "https://vueuse.org/math/logicAnd/",
|
|
327
|
+
category: "@Math",
|
|
284
328
|
description: "`AND` condition for refs",
|
|
285
329
|
alias: [
|
|
286
330
|
"and"
|
|
@@ -292,10 +336,10 @@ var functions$1 = [
|
|
|
292
336
|
},
|
|
293
337
|
{
|
|
294
338
|
name: "logicNot",
|
|
295
|
-
"package": "
|
|
296
|
-
lastUpdated:
|
|
297
|
-
docs: "https://vueuse.org/
|
|
298
|
-
category: "
|
|
339
|
+
"package": "math",
|
|
340
|
+
lastUpdated: 1657261466000,
|
|
341
|
+
docs: "https://vueuse.org/math/logicNot/",
|
|
342
|
+
category: "@Math",
|
|
299
343
|
description: "`NOT` condition for ref",
|
|
300
344
|
alias: [
|
|
301
345
|
"not"
|
|
@@ -307,10 +351,10 @@ var functions$1 = [
|
|
|
307
351
|
},
|
|
308
352
|
{
|
|
309
353
|
name: "logicOr",
|
|
310
|
-
"package": "
|
|
311
|
-
lastUpdated:
|
|
312
|
-
docs: "https://vueuse.org/
|
|
313
|
-
category: "
|
|
354
|
+
"package": "math",
|
|
355
|
+
lastUpdated: 1657261466000,
|
|
356
|
+
docs: "https://vueuse.org/math/logicOr/",
|
|
357
|
+
category: "@Math",
|
|
314
358
|
description: "`OR` conditions for refs",
|
|
315
359
|
alias: [
|
|
316
360
|
"or"
|
|
@@ -331,7 +375,7 @@ var functions$1 = [
|
|
|
331
375
|
{
|
|
332
376
|
name: "onClickOutside",
|
|
333
377
|
"package": "core",
|
|
334
|
-
lastUpdated:
|
|
378
|
+
lastUpdated: 1658285512000,
|
|
335
379
|
component: true,
|
|
336
380
|
directive: true,
|
|
337
381
|
docs: "https://vueuse.org/core/onClickOutside/",
|
|
@@ -341,7 +385,7 @@ var functions$1 = [
|
|
|
341
385
|
{
|
|
342
386
|
name: "onKeyStroke",
|
|
343
387
|
"package": "core",
|
|
344
|
-
lastUpdated:
|
|
388
|
+
lastUpdated: 1657430566000,
|
|
345
389
|
directive: true,
|
|
346
390
|
docs: "https://vueuse.org/core/onKeyStroke/",
|
|
347
391
|
category: "Sensors",
|
|
@@ -368,9 +412,9 @@ var functions$1 = [
|
|
|
368
412
|
{
|
|
369
413
|
name: "reactify",
|
|
370
414
|
"package": "shared",
|
|
371
|
-
lastUpdated:
|
|
415
|
+
lastUpdated: 1657634926000,
|
|
372
416
|
docs: "https://vueuse.org/shared/reactify/",
|
|
373
|
-
category: "
|
|
417
|
+
category: "Reactivity",
|
|
374
418
|
description: "converts plain functions into reactive functions",
|
|
375
419
|
alias: [
|
|
376
420
|
"createReactiveFn"
|
|
@@ -382,9 +426,9 @@ var functions$1 = [
|
|
|
382
426
|
{
|
|
383
427
|
name: "reactifyObject",
|
|
384
428
|
"package": "shared",
|
|
385
|
-
lastUpdated:
|
|
429
|
+
lastUpdated: 1657634926000,
|
|
386
430
|
docs: "https://vueuse.org/shared/reactifyObject/",
|
|
387
|
-
category: "
|
|
431
|
+
category: "Reactivity",
|
|
388
432
|
description: "apply `reactify` to an object"
|
|
389
433
|
},
|
|
390
434
|
{
|
|
@@ -392,31 +436,31 @@ var functions$1 = [
|
|
|
392
436
|
"package": "shared",
|
|
393
437
|
lastUpdated: 1645876129000,
|
|
394
438
|
docs: "https://vueuse.org/shared/reactiveComputed/",
|
|
395
|
-
category: "
|
|
439
|
+
category: "Reactivity",
|
|
396
440
|
description: "computed reactive object"
|
|
397
441
|
},
|
|
398
442
|
{
|
|
399
443
|
name: "reactiveOmit",
|
|
400
444
|
"package": "shared",
|
|
401
|
-
lastUpdated:
|
|
445
|
+
lastUpdated: 1658645224000,
|
|
402
446
|
docs: "https://vueuse.org/shared/reactiveOmit/",
|
|
403
|
-
category: "
|
|
447
|
+
category: "Reactivity",
|
|
404
448
|
description: "reactively omit fields from a reactive object"
|
|
405
449
|
},
|
|
406
450
|
{
|
|
407
451
|
name: "reactivePick",
|
|
408
452
|
"package": "shared",
|
|
409
|
-
lastUpdated:
|
|
453
|
+
lastUpdated: 1658645224000,
|
|
410
454
|
docs: "https://vueuse.org/shared/reactivePick/",
|
|
411
|
-
category: "
|
|
455
|
+
category: "Reactivity",
|
|
412
456
|
description: "reactively pick fields from a reactive object"
|
|
413
457
|
},
|
|
414
458
|
{
|
|
415
459
|
name: "refAutoReset",
|
|
416
460
|
"package": "shared",
|
|
417
|
-
lastUpdated:
|
|
461
|
+
lastUpdated: 1657259100000,
|
|
418
462
|
docs: "https://vueuse.org/shared/refAutoReset/",
|
|
419
|
-
category: "
|
|
463
|
+
category: "Reactivity",
|
|
420
464
|
description: "a ref which will be reset to the default value after some time",
|
|
421
465
|
alias: [
|
|
422
466
|
"autoResetRef"
|
|
@@ -427,11 +471,14 @@ var functions$1 = [
|
|
|
427
471
|
"package": "shared",
|
|
428
472
|
lastUpdated: 1645956777000,
|
|
429
473
|
docs: "https://vueuse.org/shared/refDebounced/",
|
|
430
|
-
category: "
|
|
474
|
+
category: "Reactivity",
|
|
431
475
|
description: "debounce execution of a ref value",
|
|
432
476
|
alias: [
|
|
433
477
|
"useDebounce",
|
|
434
478
|
"debouncedRef"
|
|
479
|
+
],
|
|
480
|
+
related: [
|
|
481
|
+
"useThrottleFn"
|
|
435
482
|
]
|
|
436
483
|
},
|
|
437
484
|
{
|
|
@@ -439,7 +486,7 @@ var functions$1 = [
|
|
|
439
486
|
"package": "shared",
|
|
440
487
|
lastUpdated: 1639442454000,
|
|
441
488
|
docs: "https://vueuse.org/shared/refDefault/",
|
|
442
|
-
category: "
|
|
489
|
+
category: "Reactivity",
|
|
443
490
|
description: "apply default value to a ref"
|
|
444
491
|
},
|
|
445
492
|
{
|
|
@@ -447,11 +494,14 @@ var functions$1 = [
|
|
|
447
494
|
"package": "shared",
|
|
448
495
|
lastUpdated: 1645956777000,
|
|
449
496
|
docs: "https://vueuse.org/shared/refThrottled/",
|
|
450
|
-
category: "
|
|
497
|
+
category: "Reactivity",
|
|
451
498
|
description: "throttle changing of a ref value",
|
|
452
499
|
alias: [
|
|
453
500
|
"useThrottle",
|
|
454
501
|
"throttledRef"
|
|
502
|
+
],
|
|
503
|
+
related: [
|
|
504
|
+
"useThrottleFn"
|
|
455
505
|
]
|
|
456
506
|
},
|
|
457
507
|
{
|
|
@@ -459,7 +509,7 @@ var functions$1 = [
|
|
|
459
509
|
"package": "shared",
|
|
460
510
|
lastUpdated: 1645956154000,
|
|
461
511
|
docs: "https://vueuse.org/shared/refWithControl/",
|
|
462
|
-
category: "
|
|
512
|
+
category: "Reactivity",
|
|
463
513
|
description: "fine-grained controls over ref and its reactivity",
|
|
464
514
|
alias: [
|
|
465
515
|
"controlledRef"
|
|
@@ -471,9 +521,9 @@ var functions$1 = [
|
|
|
471
521
|
{
|
|
472
522
|
name: "resolveRef",
|
|
473
523
|
"package": "shared",
|
|
474
|
-
lastUpdated:
|
|
524
|
+
lastUpdated: 1657259100000,
|
|
475
525
|
docs: "https://vueuse.org/shared/resolveRef/",
|
|
476
|
-
category: "
|
|
526
|
+
category: "Reactivity",
|
|
477
527
|
description: "normalize value/ref/getter to `ref` or `computed`",
|
|
478
528
|
related: [
|
|
479
529
|
"resolveUnref"
|
|
@@ -484,7 +534,7 @@ var functions$1 = [
|
|
|
484
534
|
"package": "shared",
|
|
485
535
|
lastUpdated: 1657075685000,
|
|
486
536
|
docs: "https://vueuse.org/shared/resolveUnref/",
|
|
487
|
-
category: "
|
|
537
|
+
category: "Reactivity",
|
|
488
538
|
description: "get the value of value/ref/getter",
|
|
489
539
|
related: [
|
|
490
540
|
"resolveRef"
|
|
@@ -501,9 +551,9 @@ var functions$1 = [
|
|
|
501
551
|
{
|
|
502
552
|
name: "syncRef",
|
|
503
553
|
"package": "shared",
|
|
504
|
-
lastUpdated:
|
|
554
|
+
lastUpdated: 1658655180000,
|
|
505
555
|
docs: "https://vueuse.org/shared/syncRef/",
|
|
506
|
-
category: "
|
|
556
|
+
category: "Reactivity",
|
|
507
557
|
description: "two-way refs synchronization",
|
|
508
558
|
related: [
|
|
509
559
|
"syncRefs"
|
|
@@ -514,7 +564,7 @@ var functions$1 = [
|
|
|
514
564
|
"package": "shared",
|
|
515
565
|
lastUpdated: 1645952177000,
|
|
516
566
|
docs: "https://vueuse.org/shared/syncRefs/",
|
|
517
|
-
category: "
|
|
567
|
+
category: "Reactivity",
|
|
518
568
|
description: "keep target refs in sync with a source ref",
|
|
519
569
|
related: [
|
|
520
570
|
"syncRef"
|
|
@@ -534,14 +584,14 @@ var functions$1 = [
|
|
|
534
584
|
lastUpdated: 1631130736000,
|
|
535
585
|
docs: "https://vueuse.org/rxjs/toObserver/",
|
|
536
586
|
category: "@RxJS",
|
|
537
|
-
description: "sugar function to convert a ref
|
|
587
|
+
description: "sugar function to convert a `ref` into an RxJS [Observer](https://rxjs.dev/guide/observer)"
|
|
538
588
|
},
|
|
539
589
|
{
|
|
540
590
|
name: "toReactive",
|
|
541
591
|
"package": "shared",
|
|
542
592
|
lastUpdated: 1645878866000,
|
|
543
593
|
docs: "https://vueuse.org/shared/toReactive/",
|
|
544
|
-
category: "
|
|
594
|
+
category: "Reactivity",
|
|
545
595
|
description: "converts ref to reactive"
|
|
546
596
|
},
|
|
547
597
|
{
|
|
@@ -549,7 +599,7 @@ var functions$1 = [
|
|
|
549
599
|
"package": "shared",
|
|
550
600
|
lastUpdated: 1655284952000,
|
|
551
601
|
docs: "https://vueuse.org/shared/toRefs/",
|
|
552
|
-
category: "
|
|
602
|
+
category: "Reactivity",
|
|
553
603
|
description: "extended [`toRefs`](https://v3.vuejs.org/api/refs-api.html#torefs) that also accepts refs of an object"
|
|
554
604
|
},
|
|
555
605
|
{
|
|
@@ -595,7 +645,7 @@ var functions$1 = [
|
|
|
595
645
|
{
|
|
596
646
|
name: "unrefElement",
|
|
597
647
|
"package": "core",
|
|
598
|
-
lastUpdated:
|
|
648
|
+
lastUpdated: 1657259100000,
|
|
599
649
|
docs: "https://vueuse.org/core/unrefElement/",
|
|
600
650
|
category: "Component",
|
|
601
651
|
description: "unref for dom element"
|
|
@@ -603,11 +653,19 @@ var functions$1 = [
|
|
|
603
653
|
{
|
|
604
654
|
name: "until",
|
|
605
655
|
"package": "shared",
|
|
606
|
-
lastUpdated:
|
|
656
|
+
lastUpdated: 1657259100000,
|
|
607
657
|
docs: "https://vueuse.org/shared/until/",
|
|
608
658
|
category: "Watch",
|
|
609
659
|
description: "promised one-time watch for changes"
|
|
610
660
|
},
|
|
661
|
+
{
|
|
662
|
+
name: "useAbs",
|
|
663
|
+
"package": "math",
|
|
664
|
+
lastUpdated: 1658041562000,
|
|
665
|
+
docs: "https://vueuse.org/math/useAbs/",
|
|
666
|
+
category: "@Math",
|
|
667
|
+
description: "reactive `Math.abs`"
|
|
668
|
+
},
|
|
611
669
|
{
|
|
612
670
|
name: "useActiveElement",
|
|
613
671
|
"package": "core",
|
|
@@ -617,6 +675,70 @@ var functions$1 = [
|
|
|
617
675
|
category: "Elements",
|
|
618
676
|
description: "reactive `document.activeElement`"
|
|
619
677
|
},
|
|
678
|
+
{
|
|
679
|
+
name: "useArrayEvery",
|
|
680
|
+
"package": "shared",
|
|
681
|
+
lastUpdated: 1657954423000,
|
|
682
|
+
docs: "https://vueuse.org/shared/useArrayEvery/",
|
|
683
|
+
category: "Array",
|
|
684
|
+
description: "reactive `Array.every`"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
name: "useArrayFilter",
|
|
688
|
+
"package": "shared",
|
|
689
|
+
lastUpdated: 1657813280000,
|
|
690
|
+
docs: "https://vueuse.org/shared/useArrayFilter/",
|
|
691
|
+
category: "Array",
|
|
692
|
+
description: "reactive `Array.filter`"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
name: "useArrayFind",
|
|
696
|
+
"package": "shared",
|
|
697
|
+
lastUpdated: 1658040382000,
|
|
698
|
+
docs: "https://vueuse.org/shared/useArrayFind/",
|
|
699
|
+
category: "Array",
|
|
700
|
+
description: "reactive `Array.find`"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
name: "useArrayFindIndex",
|
|
704
|
+
"package": "shared",
|
|
705
|
+
lastUpdated: 1658416780000,
|
|
706
|
+
docs: "https://vueuse.org/shared/useArrayFindIndex/",
|
|
707
|
+
category: "Array",
|
|
708
|
+
description: "reactive `Array.findIndex`"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
name: "useArrayJoin",
|
|
712
|
+
"package": "shared",
|
|
713
|
+
lastUpdated: 1657955066000,
|
|
714
|
+
docs: "https://vueuse.org/shared/useArrayJoin/",
|
|
715
|
+
category: "Array",
|
|
716
|
+
description: "reactive `Array.join`"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
name: "useArrayMap",
|
|
720
|
+
"package": "shared",
|
|
721
|
+
lastUpdated: 1657813311000,
|
|
722
|
+
docs: "https://vueuse.org/shared/useArrayMap/",
|
|
723
|
+
category: "Array",
|
|
724
|
+
description: "reactive `Array.map`"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
name: "useArrayReduce",
|
|
728
|
+
"package": "shared",
|
|
729
|
+
lastUpdated: 1657954977000,
|
|
730
|
+
docs: "https://vueuse.org/shared/useArrayReduce/",
|
|
731
|
+
category: "Array",
|
|
732
|
+
description: "reactive `Array.reduce`"
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
name: "useArraySome",
|
|
736
|
+
"package": "shared",
|
|
737
|
+
lastUpdated: 1657954423000,
|
|
738
|
+
docs: "https://vueuse.org/shared/useArraySome/",
|
|
739
|
+
category: "Array",
|
|
740
|
+
description: "reactive `Array.some`"
|
|
741
|
+
},
|
|
620
742
|
{
|
|
621
743
|
name: "useAsyncQueue",
|
|
622
744
|
"package": "core",
|
|
@@ -628,7 +750,7 @@ var functions$1 = [
|
|
|
628
750
|
{
|
|
629
751
|
name: "useAsyncState",
|
|
630
752
|
"package": "core",
|
|
631
|
-
lastUpdated:
|
|
753
|
+
lastUpdated: 1658656516000,
|
|
632
754
|
docs: "https://vueuse.org/core/useAsyncState/",
|
|
633
755
|
category: "State",
|
|
634
756
|
description: "reactive async state"
|
|
@@ -636,32 +758,43 @@ var functions$1 = [
|
|
|
636
758
|
{
|
|
637
759
|
name: "useAsyncValidator",
|
|
638
760
|
"package": "integrations",
|
|
639
|
-
lastUpdated:
|
|
761
|
+
lastUpdated: 1657259100000,
|
|
640
762
|
component: true,
|
|
641
763
|
docs: "https://vueuse.org/integrations/useAsyncValidator/",
|
|
642
764
|
category: "@Integrations",
|
|
643
|
-
description: "wrapper for [`async-validator`](https://github.com/yiminghe/async-validator)"
|
|
765
|
+
description: "wrapper for [`async-validator`](https://github.com/yiminghe/async-validator)",
|
|
766
|
+
importPath: "integrations/useAsyncValidator"
|
|
644
767
|
},
|
|
645
768
|
{
|
|
646
769
|
name: "useAuth",
|
|
647
770
|
"package": "firebase",
|
|
648
|
-
lastUpdated:
|
|
771
|
+
lastUpdated: 1658645224000,
|
|
649
772
|
docs: "https://vueuse.org/firebase/useAuth/",
|
|
650
773
|
category: "@Firebase",
|
|
651
|
-
description: "reactive [Firebase Auth](https://firebase.google.com/docs/auth) binding"
|
|
774
|
+
description: "reactive [Firebase Auth](https://firebase.google.com/docs/auth) binding",
|
|
775
|
+
importPath: "firebase/useAuth"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
name: "useAverage",
|
|
779
|
+
"package": "math",
|
|
780
|
+
lastUpdated: 1658041190000,
|
|
781
|
+
docs: "https://vueuse.org/math/useAverage/",
|
|
782
|
+
category: "@Math",
|
|
783
|
+
description: "get the average of an array reactively"
|
|
652
784
|
},
|
|
653
785
|
{
|
|
654
786
|
name: "useAxios",
|
|
655
787
|
"package": "integrations",
|
|
656
|
-
lastUpdated:
|
|
788
|
+
lastUpdated: 1657259100000,
|
|
657
789
|
docs: "https://vueuse.org/integrations/useAxios/",
|
|
658
790
|
category: "@Integrations",
|
|
659
|
-
description: "wrapper for [`axios`](https://github.com/axios/axios)"
|
|
791
|
+
description: "wrapper for [`axios`](https://github.com/axios/axios)",
|
|
792
|
+
importPath: "integrations/useAxios"
|
|
660
793
|
},
|
|
661
794
|
{
|
|
662
795
|
name: "useBase64",
|
|
663
796
|
"package": "core",
|
|
664
|
-
lastUpdated:
|
|
797
|
+
lastUpdated: 1657259100000,
|
|
665
798
|
docs: "https://vueuse.org/core/useBase64/",
|
|
666
799
|
category: "Utilities",
|
|
667
800
|
description: "reactive base64 transforming"
|
|
@@ -669,7 +802,7 @@ var functions$1 = [
|
|
|
669
802
|
{
|
|
670
803
|
name: "useBattery",
|
|
671
804
|
"package": "core",
|
|
672
|
-
lastUpdated:
|
|
805
|
+
lastUpdated: 1657430593000,
|
|
673
806
|
component: true,
|
|
674
807
|
docs: "https://vueuse.org/core/useBattery/",
|
|
675
808
|
category: "Sensors",
|
|
@@ -678,7 +811,7 @@ var functions$1 = [
|
|
|
678
811
|
{
|
|
679
812
|
name: "useBluetooth",
|
|
680
813
|
"package": "core",
|
|
681
|
-
lastUpdated:
|
|
814
|
+
lastUpdated: 1658083596000,
|
|
682
815
|
docs: "https://vueuse.org/core/useBluetooth/",
|
|
683
816
|
category: "Browser",
|
|
684
817
|
description: "reactive [Web Bluetooth API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Bluetooth_API)"
|
|
@@ -694,7 +827,7 @@ var functions$1 = [
|
|
|
694
827
|
{
|
|
695
828
|
name: "useBroadcastChannel",
|
|
696
829
|
"package": "core",
|
|
697
|
-
lastUpdated:
|
|
830
|
+
lastUpdated: 1658083596000,
|
|
698
831
|
docs: "https://vueuse.org/core/useBroadcastChannel/",
|
|
699
832
|
category: "Browser",
|
|
700
833
|
description: "reactive [BroadcastChannel API](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel)"
|
|
@@ -716,26 +849,35 @@ var functions$1 = [
|
|
|
716
849
|
category: "Utilities",
|
|
717
850
|
description: "cache a ref with a custom comparator"
|
|
718
851
|
},
|
|
852
|
+
{
|
|
853
|
+
name: "useCeil",
|
|
854
|
+
"package": "math",
|
|
855
|
+
lastUpdated: 1657638060000,
|
|
856
|
+
docs: "https://vueuse.org/math/useCeil/",
|
|
857
|
+
category: "@Math",
|
|
858
|
+
description: "reactive `Math.ceil`"
|
|
859
|
+
},
|
|
719
860
|
{
|
|
720
861
|
name: "useChangeCase",
|
|
721
862
|
"package": "integrations",
|
|
722
|
-
lastUpdated:
|
|
863
|
+
lastUpdated: 1657259100000,
|
|
723
864
|
docs: "https://vueuse.org/integrations/useChangeCase/",
|
|
724
865
|
category: "@Integrations",
|
|
725
|
-
description: "wrapper for [`change-case`](https://github.com/blakeembrey/change-case)"
|
|
866
|
+
description: "reactive wrapper for [`change-case`](https://github.com/blakeembrey/change-case)",
|
|
867
|
+
importPath: "integrations/useChangeCase"
|
|
726
868
|
},
|
|
727
869
|
{
|
|
728
870
|
name: "useClamp",
|
|
729
|
-
"package": "
|
|
730
|
-
lastUpdated:
|
|
731
|
-
docs: "https://vueuse.org/
|
|
732
|
-
category: "
|
|
871
|
+
"package": "math",
|
|
872
|
+
lastUpdated: 1657431142000,
|
|
873
|
+
docs: "https://vueuse.org/math/useClamp/",
|
|
874
|
+
category: "@Math",
|
|
733
875
|
description: "reactively clamp a value between two other values"
|
|
734
876
|
},
|
|
735
877
|
{
|
|
736
878
|
name: "useClipboard",
|
|
737
879
|
"package": "core",
|
|
738
|
-
lastUpdated:
|
|
880
|
+
lastUpdated: 1657634287000,
|
|
739
881
|
docs: "https://vueuse.org/core/useClipboard/",
|
|
740
882
|
category: "Browser",
|
|
741
883
|
description: "reactive [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API)"
|
|
@@ -743,7 +885,7 @@ var functions$1 = [
|
|
|
743
885
|
{
|
|
744
886
|
name: "useColorMode",
|
|
745
887
|
"package": "core",
|
|
746
|
-
lastUpdated:
|
|
888
|
+
lastUpdated: 1658652612000,
|
|
747
889
|
component: true,
|
|
748
890
|
docs: "https://vueuse.org/core/useColorMode/",
|
|
749
891
|
category: "Browser",
|
|
@@ -768,7 +910,8 @@ var functions$1 = [
|
|
|
768
910
|
lastUpdated: 1642756753000,
|
|
769
911
|
docs: "https://vueuse.org/integrations/useCookies/",
|
|
770
912
|
category: "@Integrations",
|
|
771
|
-
description: "wrapper for [`universal-cookie`](https://www.npmjs.com/package/universal-cookie)"
|
|
913
|
+
description: "wrapper for [`universal-cookie`](https://www.npmjs.com/package/universal-cookie)",
|
|
914
|
+
importPath: "integrations/useCookies"
|
|
772
915
|
},
|
|
773
916
|
{
|
|
774
917
|
name: "useCounter",
|
|
@@ -781,7 +924,7 @@ var functions$1 = [
|
|
|
781
924
|
{
|
|
782
925
|
name: "useCssVar",
|
|
783
926
|
"package": "core",
|
|
784
|
-
lastUpdated:
|
|
927
|
+
lastUpdated: 1657259100000,
|
|
785
928
|
docs: "https://vueuse.org/core/useCssVar/",
|
|
786
929
|
category: "Browser",
|
|
787
930
|
description: "manipulate CSS variables"
|
|
@@ -797,7 +940,7 @@ var functions$1 = [
|
|
|
797
940
|
{
|
|
798
941
|
name: "useCycleList",
|
|
799
942
|
"package": "core",
|
|
800
|
-
lastUpdated:
|
|
943
|
+
lastUpdated: 1658083596000,
|
|
801
944
|
docs: "https://vueuse.org/core/useCycleList/",
|
|
802
945
|
category: "Utilities",
|
|
803
946
|
description: "cycle through a list of items"
|
|
@@ -819,15 +962,15 @@ var functions$1 = [
|
|
|
819
962
|
{
|
|
820
963
|
name: "useDateFormat",
|
|
821
964
|
"package": "shared",
|
|
822
|
-
lastUpdated:
|
|
965
|
+
lastUpdated: 1657259100000,
|
|
823
966
|
docs: "https://vueuse.org/shared/useDateFormat/",
|
|
824
|
-
category: "
|
|
967
|
+
category: "Time",
|
|
825
968
|
description: "get the formatted date according to the string of tokens passed in"
|
|
826
969
|
},
|
|
827
970
|
{
|
|
828
971
|
name: "useDebouncedRefHistory",
|
|
829
972
|
"package": "core",
|
|
830
|
-
lastUpdated:
|
|
973
|
+
lastUpdated: 1657259100000,
|
|
831
974
|
docs: "https://vueuse.org/core/useDebouncedRefHistory/",
|
|
832
975
|
category: "State",
|
|
833
976
|
description: "shorthand for `useRefHistory` with debounced filter",
|
|
@@ -839,10 +982,13 @@ var functions$1 = [
|
|
|
839
982
|
{
|
|
840
983
|
name: "useDebounceFn",
|
|
841
984
|
"package": "shared",
|
|
842
|
-
lastUpdated:
|
|
985
|
+
lastUpdated: 1658645224000,
|
|
843
986
|
docs: "https://vueuse.org/shared/useDebounceFn/",
|
|
844
987
|
category: "Utilities",
|
|
845
|
-
description: "debounce execution of a function"
|
|
988
|
+
description: "debounce execution of a function",
|
|
989
|
+
related: [
|
|
990
|
+
"useThrottleFn"
|
|
991
|
+
]
|
|
846
992
|
},
|
|
847
993
|
{
|
|
848
994
|
name: "useDeviceMotion",
|
|
@@ -856,7 +1002,7 @@ var functions$1 = [
|
|
|
856
1002
|
{
|
|
857
1003
|
name: "useDeviceOrientation",
|
|
858
1004
|
"package": "core",
|
|
859
|
-
lastUpdated:
|
|
1005
|
+
lastUpdated: 1657430593000,
|
|
860
1006
|
component: true,
|
|
861
1007
|
docs: "https://vueuse.org/core/useDeviceOrientation/",
|
|
862
1008
|
category: "Sensors",
|
|
@@ -874,16 +1020,19 @@ var functions$1 = [
|
|
|
874
1020
|
{
|
|
875
1021
|
name: "useDevicesList",
|
|
876
1022
|
"package": "core",
|
|
877
|
-
lastUpdated:
|
|
1023
|
+
lastUpdated: 1657430593000,
|
|
878
1024
|
component: true,
|
|
879
1025
|
docs: "https://vueuse.org/core/useDevicesList/",
|
|
880
1026
|
category: "Sensors",
|
|
881
|
-
description: "reactive [enumerateDevices](https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/enumerateDevices) listing avaliable input/output devices"
|
|
1027
|
+
description: "reactive [enumerateDevices](https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/enumerateDevices) listing avaliable input/output devices",
|
|
1028
|
+
related: [
|
|
1029
|
+
"useUserMedia"
|
|
1030
|
+
]
|
|
882
1031
|
},
|
|
883
1032
|
{
|
|
884
1033
|
name: "useDisplayMedia",
|
|
885
1034
|
"package": "core",
|
|
886
|
-
lastUpdated:
|
|
1035
|
+
lastUpdated: 1657430593000,
|
|
887
1036
|
docs: "https://vueuse.org/core/useDisplayMedia/",
|
|
888
1037
|
category: "Sensors",
|
|
889
1038
|
description: "reactive [`mediaDevices.getDisplayMedia`](https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getDisplayMedia) streaming",
|
|
@@ -894,7 +1043,7 @@ var functions$1 = [
|
|
|
894
1043
|
{
|
|
895
1044
|
name: "useDocumentVisibility",
|
|
896
1045
|
"package": "core",
|
|
897
|
-
lastUpdated:
|
|
1046
|
+
lastUpdated: 1658083596000,
|
|
898
1047
|
component: true,
|
|
899
1048
|
docs: "https://vueuse.org/core/useDocumentVisibility/",
|
|
900
1049
|
category: "Elements",
|
|
@@ -903,7 +1052,7 @@ var functions$1 = [
|
|
|
903
1052
|
{
|
|
904
1053
|
name: "useDraggable",
|
|
905
1054
|
"package": "core",
|
|
906
|
-
lastUpdated:
|
|
1055
|
+
lastUpdated: 1658083596000,
|
|
907
1056
|
component: true,
|
|
908
1057
|
docs: "https://vueuse.org/core/useDraggable/",
|
|
909
1058
|
category: "Elements",
|
|
@@ -912,15 +1061,16 @@ var functions$1 = [
|
|
|
912
1061
|
{
|
|
913
1062
|
name: "useDrauu",
|
|
914
1063
|
"package": "integrations",
|
|
915
|
-
lastUpdated:
|
|
1064
|
+
lastUpdated: 1657259100000,
|
|
916
1065
|
docs: "https://vueuse.org/integrations/useDrauu/",
|
|
917
1066
|
category: "@Integrations",
|
|
918
|
-
description: "reactive instance for [drauu](https://github.com/antfu/drauu)"
|
|
1067
|
+
description: "reactive instance for [drauu](https://github.com/antfu/drauu)",
|
|
1068
|
+
importPath: "integrations/useDrauu"
|
|
919
1069
|
},
|
|
920
1070
|
{
|
|
921
1071
|
name: "useDropZone",
|
|
922
1072
|
"package": "core",
|
|
923
|
-
lastUpdated:
|
|
1073
|
+
lastUpdated: 1658043158000,
|
|
924
1074
|
docs: "https://vueuse.org/core/useDropZone/",
|
|
925
1075
|
category: "Elements",
|
|
926
1076
|
description: "create an zone where files can be dropped"
|
|
@@ -928,7 +1078,7 @@ var functions$1 = [
|
|
|
928
1078
|
{
|
|
929
1079
|
name: "useElementBounding",
|
|
930
1080
|
"package": "core",
|
|
931
|
-
lastUpdated:
|
|
1081
|
+
lastUpdated: 1657259100000,
|
|
932
1082
|
component: true,
|
|
933
1083
|
docs: "https://vueuse.org/core/useElementBounding/",
|
|
934
1084
|
category: "Elements",
|
|
@@ -937,7 +1087,7 @@ var functions$1 = [
|
|
|
937
1087
|
{
|
|
938
1088
|
name: "useElementByPoint",
|
|
939
1089
|
"package": "core",
|
|
940
|
-
lastUpdated:
|
|
1090
|
+
lastUpdated: 1657259100000,
|
|
941
1091
|
docs: "https://vueuse.org/core/useElementByPoint/",
|
|
942
1092
|
category: "Sensors",
|
|
943
1093
|
description: "reactive element by point"
|
|
@@ -945,7 +1095,7 @@ var functions$1 = [
|
|
|
945
1095
|
{
|
|
946
1096
|
name: "useElementHover",
|
|
947
1097
|
"package": "core",
|
|
948
|
-
lastUpdated:
|
|
1098
|
+
lastUpdated: 1657259100000,
|
|
949
1099
|
directive: true,
|
|
950
1100
|
docs: "https://vueuse.org/core/useElementHover/",
|
|
951
1101
|
category: "Sensors",
|
|
@@ -954,7 +1104,7 @@ var functions$1 = [
|
|
|
954
1104
|
{
|
|
955
1105
|
name: "useElementSize",
|
|
956
1106
|
"package": "core",
|
|
957
|
-
lastUpdated:
|
|
1107
|
+
lastUpdated: 1657634277000,
|
|
958
1108
|
component: true,
|
|
959
1109
|
directive: true,
|
|
960
1110
|
docs: "https://vueuse.org/core/useElementSize/",
|
|
@@ -978,7 +1128,7 @@ var functions$1 = [
|
|
|
978
1128
|
{
|
|
979
1129
|
name: "useElementVisibility",
|
|
980
1130
|
"package": "core",
|
|
981
|
-
lastUpdated:
|
|
1131
|
+
lastUpdated: 1657634298000,
|
|
982
1132
|
component: true,
|
|
983
1133
|
directive: true,
|
|
984
1134
|
docs: "https://vueuse.org/core/useElementVisibility/",
|
|
@@ -996,7 +1146,7 @@ var functions$1 = [
|
|
|
996
1146
|
{
|
|
997
1147
|
name: "useEventListener",
|
|
998
1148
|
"package": "core",
|
|
999
|
-
lastUpdated:
|
|
1149
|
+
lastUpdated: 1657259100000,
|
|
1000
1150
|
docs: "https://vueuse.org/core/useEventListener/",
|
|
1001
1151
|
category: "Browser",
|
|
1002
1152
|
description: "use EventListener with ease"
|
|
@@ -1004,7 +1154,7 @@ var functions$1 = [
|
|
|
1004
1154
|
{
|
|
1005
1155
|
name: "useEventSource",
|
|
1006
1156
|
"package": "core",
|
|
1007
|
-
lastUpdated:
|
|
1157
|
+
lastUpdated: 1657634387000,
|
|
1008
1158
|
docs: "https://vueuse.org/core/useEventSource/",
|
|
1009
1159
|
category: "Network",
|
|
1010
1160
|
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"
|
|
@@ -1012,7 +1162,7 @@ var functions$1 = [
|
|
|
1012
1162
|
{
|
|
1013
1163
|
name: "useEyeDropper",
|
|
1014
1164
|
"package": "core",
|
|
1015
|
-
lastUpdated:
|
|
1165
|
+
lastUpdated: 1658083596000,
|
|
1016
1166
|
component: true,
|
|
1017
1167
|
docs: "https://vueuse.org/core/useEyeDropper/",
|
|
1018
1168
|
category: "Browser",
|
|
@@ -1021,7 +1171,7 @@ var functions$1 = [
|
|
|
1021
1171
|
{
|
|
1022
1172
|
name: "useFavicon",
|
|
1023
1173
|
"package": "core",
|
|
1024
|
-
lastUpdated:
|
|
1174
|
+
lastUpdated: 1657634950000,
|
|
1025
1175
|
docs: "https://vueuse.org/core/useFavicon/",
|
|
1026
1176
|
category: "Browser",
|
|
1027
1177
|
description: "reactive favicon"
|
|
@@ -1029,7 +1179,7 @@ var functions$1 = [
|
|
|
1029
1179
|
{
|
|
1030
1180
|
name: "useFetch",
|
|
1031
1181
|
"package": "core",
|
|
1032
|
-
lastUpdated:
|
|
1182
|
+
lastUpdated: 1657259100000,
|
|
1033
1183
|
docs: "https://vueuse.org/core/useFetch/",
|
|
1034
1184
|
category: "Network",
|
|
1035
1185
|
description: "reactive [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) provides the ability to abort requests"
|
|
@@ -1045,7 +1195,7 @@ var functions$1 = [
|
|
|
1045
1195
|
{
|
|
1046
1196
|
name: "useFileSystemAccess",
|
|
1047
1197
|
"package": "core",
|
|
1048
|
-
lastUpdated:
|
|
1198
|
+
lastUpdated: 1657430593000,
|
|
1049
1199
|
docs: "https://vueuse.org/core/useFileSystemAccess/",
|
|
1050
1200
|
category: "Browser",
|
|
1051
1201
|
description: "create and read and write local files with [FileSystemAccessAPI](https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API)"
|
|
@@ -1053,10 +1203,19 @@ var functions$1 = [
|
|
|
1053
1203
|
{
|
|
1054
1204
|
name: "useFirestore",
|
|
1055
1205
|
"package": "firebase",
|
|
1056
|
-
lastUpdated:
|
|
1206
|
+
lastUpdated: 1658645224000,
|
|
1057
1207
|
docs: "https://vueuse.org/firebase/useFirestore/",
|
|
1058
1208
|
category: "@Firebase",
|
|
1059
|
-
description: "reactive [Firestore](https://firebase.google.com/docs/firestore) binding"
|
|
1209
|
+
description: "reactive [Firestore](https://firebase.google.com/docs/firestore) binding",
|
|
1210
|
+
importPath: "firebase/useFirestore"
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
name: "useFloor",
|
|
1214
|
+
"package": "math",
|
|
1215
|
+
lastUpdated: 1657638060000,
|
|
1216
|
+
docs: "https://vueuse.org/math/useFloor/",
|
|
1217
|
+
category: "@Math",
|
|
1218
|
+
description: "reactive `Math.floor`"
|
|
1060
1219
|
},
|
|
1061
1220
|
{
|
|
1062
1221
|
name: "useFocus",
|
|
@@ -1073,12 +1232,13 @@ var functions$1 = [
|
|
|
1073
1232
|
component: true,
|
|
1074
1233
|
docs: "https://vueuse.org/integrations/useFocusTrap/",
|
|
1075
1234
|
category: "@Integrations",
|
|
1076
|
-
description: "reactive wrapper for [`focus-trap`](https://github.com/focus-trap/focus-trap)"
|
|
1235
|
+
description: "reactive wrapper for [`focus-trap`](https://github.com/focus-trap/focus-trap)",
|
|
1236
|
+
importPath: "integrations/useFocusTrap"
|
|
1077
1237
|
},
|
|
1078
1238
|
{
|
|
1079
1239
|
name: "useFocusWithin",
|
|
1080
1240
|
"package": "core",
|
|
1081
|
-
lastUpdated:
|
|
1241
|
+
lastUpdated: 1657634936000,
|
|
1082
1242
|
docs: "https://vueuse.org/core/useFocusWithin/",
|
|
1083
1243
|
category: "Sensors",
|
|
1084
1244
|
description: "reactive utility to track if an element or one of its decendants has focus"
|
|
@@ -1094,7 +1254,7 @@ var functions$1 = [
|
|
|
1094
1254
|
{
|
|
1095
1255
|
name: "useFullscreen",
|
|
1096
1256
|
"package": "core",
|
|
1097
|
-
lastUpdated:
|
|
1257
|
+
lastUpdated: 1657430593000,
|
|
1098
1258
|
component: true,
|
|
1099
1259
|
docs: "https://vueuse.org/core/useFullscreen/",
|
|
1100
1260
|
category: "Browser",
|
|
@@ -1103,15 +1263,16 @@ var functions$1 = [
|
|
|
1103
1263
|
{
|
|
1104
1264
|
name: "useFuse",
|
|
1105
1265
|
"package": "integrations",
|
|
1106
|
-
lastUpdated:
|
|
1266
|
+
lastUpdated: 1657259100000,
|
|
1107
1267
|
docs: "https://vueuse.org/integrations/useFuse/",
|
|
1108
1268
|
category: "@Integrations",
|
|
1109
|
-
description: "easily implement fuzzy search using a composable with [Fuse.js](https://github.com/krisk/fuse)"
|
|
1269
|
+
description: "easily implement fuzzy search using a composable with [Fuse.js](https://github.com/krisk/fuse)",
|
|
1270
|
+
importPath: "integrations/useFuse"
|
|
1110
1271
|
},
|
|
1111
1272
|
{
|
|
1112
1273
|
name: "useGamepad",
|
|
1113
1274
|
"package": "core",
|
|
1114
|
-
lastUpdated:
|
|
1275
|
+
lastUpdated: 1658083596000,
|
|
1115
1276
|
docs: "https://vueuse.org/core/useGamepad/",
|
|
1116
1277
|
category: "Browser",
|
|
1117
1278
|
description: "provides reactive bindings for the [Gamepad API](https://developer.mozilla.org/en-US/docs/Web/API/Gamepad_API)"
|
|
@@ -1119,7 +1280,7 @@ var functions$1 = [
|
|
|
1119
1280
|
{
|
|
1120
1281
|
name: "useGeolocation",
|
|
1121
1282
|
"package": "core",
|
|
1122
|
-
lastUpdated:
|
|
1283
|
+
lastUpdated: 1657638032000,
|
|
1123
1284
|
component: true,
|
|
1124
1285
|
docs: "https://vueuse.org/core/useGeolocation/",
|
|
1125
1286
|
category: "Sensors",
|
|
@@ -1135,7 +1296,7 @@ var functions$1 = [
|
|
|
1135
1296
|
{
|
|
1136
1297
|
name: "useIdle",
|
|
1137
1298
|
"package": "core",
|
|
1138
|
-
lastUpdated:
|
|
1299
|
+
lastUpdated: 1657638023000,
|
|
1139
1300
|
component: true,
|
|
1140
1301
|
docs: "https://vueuse.org/core/useIdle/",
|
|
1141
1302
|
category: "Sensors",
|
|
@@ -1144,7 +1305,7 @@ var functions$1 = [
|
|
|
1144
1305
|
{
|
|
1145
1306
|
name: "useImage",
|
|
1146
1307
|
"package": "core",
|
|
1147
|
-
lastUpdated:
|
|
1308
|
+
lastUpdated: 1658083596000,
|
|
1148
1309
|
component: true,
|
|
1149
1310
|
docs: "https://vueuse.org/core/useImage/",
|
|
1150
1311
|
category: "Browser",
|
|
@@ -1153,7 +1314,7 @@ var functions$1 = [
|
|
|
1153
1314
|
{
|
|
1154
1315
|
name: "useInfiniteScroll",
|
|
1155
1316
|
"package": "core",
|
|
1156
|
-
lastUpdated:
|
|
1317
|
+
lastUpdated: 1658043158000,
|
|
1157
1318
|
directive: true,
|
|
1158
1319
|
docs: "https://vueuse.org/core/useInfiniteScroll/",
|
|
1159
1320
|
category: "Sensors",
|
|
@@ -1162,7 +1323,7 @@ var functions$1 = [
|
|
|
1162
1323
|
{
|
|
1163
1324
|
name: "useIntersectionObserver",
|
|
1164
1325
|
"package": "core",
|
|
1165
|
-
lastUpdated:
|
|
1326
|
+
lastUpdated: 1657637968000,
|
|
1166
1327
|
directive: true,
|
|
1167
1328
|
docs: "https://vueuse.org/core/useIntersectionObserver/",
|
|
1168
1329
|
category: "Elements",
|
|
@@ -1171,7 +1332,7 @@ var functions$1 = [
|
|
|
1171
1332
|
{
|
|
1172
1333
|
name: "useInterval",
|
|
1173
1334
|
"package": "shared",
|
|
1174
|
-
lastUpdated:
|
|
1335
|
+
lastUpdated: 1658645224000,
|
|
1175
1336
|
docs: "https://vueuse.org/shared/useInterval/",
|
|
1176
1337
|
category: "Animation",
|
|
1177
1338
|
description: "reactive counter increases on every interval"
|
|
@@ -1179,7 +1340,7 @@ var functions$1 = [
|
|
|
1179
1340
|
{
|
|
1180
1341
|
name: "useIntervalFn",
|
|
1181
1342
|
"package": "shared",
|
|
1182
|
-
lastUpdated:
|
|
1343
|
+
lastUpdated: 1658083607000,
|
|
1183
1344
|
docs: "https://vueuse.org/shared/useIntervalFn/",
|
|
1184
1345
|
category: "Animation",
|
|
1185
1346
|
description: "wrapper for `setInterval` with controls"
|
|
@@ -1187,15 +1348,15 @@ var functions$1 = [
|
|
|
1187
1348
|
{
|
|
1188
1349
|
name: "useIpcRenderer",
|
|
1189
1350
|
"package": "electron",
|
|
1190
|
-
lastUpdated:
|
|
1351
|
+
lastUpdated: 1658645224000,
|
|
1191
1352
|
docs: "https://vueuse.org/electron/useIpcRenderer/",
|
|
1192
1353
|
category: "@Electron",
|
|
1193
|
-
description: "provides [ipcRenderer](https://www.electronjs.org/docs/api/ipc-renderer) and
|
|
1354
|
+
description: "provides [ipcRenderer](https://www.electronjs.org/docs/api/ipc-renderer) and all of its APIs"
|
|
1194
1355
|
},
|
|
1195
1356
|
{
|
|
1196
1357
|
name: "useIpcRendererInvoke",
|
|
1197
1358
|
"package": "electron",
|
|
1198
|
-
lastUpdated:
|
|
1359
|
+
lastUpdated: 1658645224000,
|
|
1199
1360
|
docs: "https://vueuse.org/electron/useIpcRendererInvoke/",
|
|
1200
1361
|
category: "@Electron",
|
|
1201
1362
|
description: "reactive [ipcRenderer.invoke API](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererinvokechannel-args) result"
|
|
@@ -1203,7 +1364,7 @@ var functions$1 = [
|
|
|
1203
1364
|
{
|
|
1204
1365
|
name: "useIpcRendererOn",
|
|
1205
1366
|
"package": "electron",
|
|
1206
|
-
lastUpdated:
|
|
1367
|
+
lastUpdated: 1658645224000,
|
|
1207
1368
|
docs: "https://vueuse.org/electron/useIpcRendererOn/",
|
|
1208
1369
|
category: "@Electron",
|
|
1209
1370
|
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"
|
|
@@ -1211,15 +1372,16 @@ var functions$1 = [
|
|
|
1211
1372
|
{
|
|
1212
1373
|
name: "useJwt",
|
|
1213
1374
|
"package": "integrations",
|
|
1214
|
-
lastUpdated:
|
|
1375
|
+
lastUpdated: 1657730911000,
|
|
1215
1376
|
docs: "https://vueuse.org/integrations/useJwt/",
|
|
1216
1377
|
category: "@Integrations",
|
|
1217
|
-
description: "wrapper for [`jwt-decode`](https://github.com/auth0/jwt-decode)"
|
|
1378
|
+
description: "wrapper for [`jwt-decode`](https://github.com/auth0/jwt-decode)",
|
|
1379
|
+
importPath: "integrations/useJwt"
|
|
1218
1380
|
},
|
|
1219
1381
|
{
|
|
1220
1382
|
name: "useKeyModifier",
|
|
1221
1383
|
"package": "core",
|
|
1222
|
-
lastUpdated:
|
|
1384
|
+
lastUpdated: 1657638042000,
|
|
1223
1385
|
docs: "https://vueuse.org/core/useKeyModifier/",
|
|
1224
1386
|
category: "Sensors",
|
|
1225
1387
|
description: "reactive [Modifier State](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifierState)"
|
|
@@ -1229,21 +1391,24 @@ var functions$1 = [
|
|
|
1229
1391
|
"package": "shared",
|
|
1230
1392
|
lastUpdated: 1642756441000,
|
|
1231
1393
|
docs: "https://vueuse.org/shared/useLastChanged/",
|
|
1232
|
-
category: "
|
|
1394
|
+
category: "State",
|
|
1233
1395
|
description: "records the timestamp of the last change"
|
|
1234
1396
|
},
|
|
1235
1397
|
{
|
|
1236
1398
|
name: "useLocalStorage",
|
|
1237
1399
|
"package": "core",
|
|
1238
|
-
lastUpdated:
|
|
1400
|
+
lastUpdated: 1657634978000,
|
|
1239
1401
|
docs: "https://vueuse.org/core/useLocalStorage/",
|
|
1240
1402
|
category: "State",
|
|
1241
|
-
description: "reactive [LocalStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)"
|
|
1403
|
+
description: "reactive [LocalStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)",
|
|
1404
|
+
related: [
|
|
1405
|
+
"useStorage"
|
|
1406
|
+
]
|
|
1242
1407
|
},
|
|
1243
1408
|
{
|
|
1244
1409
|
name: "useMagicKeys",
|
|
1245
1410
|
"package": "core",
|
|
1246
|
-
lastUpdated:
|
|
1411
|
+
lastUpdated: 1657814222000,
|
|
1247
1412
|
docs: "https://vueuse.org/core/useMagicKeys/",
|
|
1248
1413
|
category: "Sensors",
|
|
1249
1414
|
description: "reactive keys pressed state"
|
|
@@ -1254,12 +1419,31 @@ var functions$1 = [
|
|
|
1254
1419
|
lastUpdated: 1651597361000,
|
|
1255
1420
|
docs: "https://vueuse.org/core/useManualRefHistory/",
|
|
1256
1421
|
category: "State",
|
|
1257
|
-
description: "manually track the change history of a ref when the using calls `commit()`"
|
|
1422
|
+
description: "manually track the change history of a ref when the using calls `commit()`",
|
|
1423
|
+
related: [
|
|
1424
|
+
"useRefHistory"
|
|
1425
|
+
]
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
name: "useMath",
|
|
1429
|
+
"package": "math",
|
|
1430
|
+
lastUpdated: 1658042869000,
|
|
1431
|
+
docs: "https://vueuse.org/math/useMath/",
|
|
1432
|
+
category: "@Math",
|
|
1433
|
+
description: "reactive `Math` methods"
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
name: "useMax",
|
|
1437
|
+
"package": "math",
|
|
1438
|
+
lastUpdated: 1658041190000,
|
|
1439
|
+
docs: "https://vueuse.org/math/useMax/",
|
|
1440
|
+
category: "@Math",
|
|
1441
|
+
description: "reactive `Math.max`"
|
|
1258
1442
|
},
|
|
1259
1443
|
{
|
|
1260
1444
|
name: "useMediaControls",
|
|
1261
1445
|
"package": "core",
|
|
1262
|
-
lastUpdated:
|
|
1446
|
+
lastUpdated: 1657259100000,
|
|
1263
1447
|
docs: "https://vueuse.org/core/useMediaControls/",
|
|
1264
1448
|
category: "Browser",
|
|
1265
1449
|
description: "reactive media controls for both `audio` and `video` elements"
|
|
@@ -1267,7 +1451,7 @@ var functions$1 = [
|
|
|
1267
1451
|
{
|
|
1268
1452
|
name: "useMediaQuery",
|
|
1269
1453
|
"package": "core",
|
|
1270
|
-
lastUpdated:
|
|
1454
|
+
lastUpdated: 1657430593000,
|
|
1271
1455
|
docs: "https://vueuse.org/core/useMediaQuery/",
|
|
1272
1456
|
category: "Browser",
|
|
1273
1457
|
description: "reactive [Media Query](https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Testing_media_queries)"
|
|
@@ -1275,7 +1459,7 @@ var functions$1 = [
|
|
|
1275
1459
|
{
|
|
1276
1460
|
name: "useMemoize",
|
|
1277
1461
|
"package": "core",
|
|
1278
|
-
lastUpdated:
|
|
1462
|
+
lastUpdated: 1657638008000,
|
|
1279
1463
|
docs: "https://vueuse.org/core/useMemoize/",
|
|
1280
1464
|
category: "Utilities",
|
|
1281
1465
|
description: "cache results of functions depending on arguments and keep it reactive"
|
|
@@ -1283,11 +1467,19 @@ var functions$1 = [
|
|
|
1283
1467
|
{
|
|
1284
1468
|
name: "useMemory",
|
|
1285
1469
|
"package": "core",
|
|
1286
|
-
lastUpdated:
|
|
1470
|
+
lastUpdated: 1658083607000,
|
|
1287
1471
|
docs: "https://vueuse.org/core/useMemory/",
|
|
1288
1472
|
category: "Browser",
|
|
1289
1473
|
description: "reactive Memory Info"
|
|
1290
1474
|
},
|
|
1475
|
+
{
|
|
1476
|
+
name: "useMin",
|
|
1477
|
+
"package": "math",
|
|
1478
|
+
lastUpdated: 1658041610000,
|
|
1479
|
+
docs: "https://vueuse.org/math/useMin/",
|
|
1480
|
+
category: "@Math",
|
|
1481
|
+
description: "reactive `Math.min`"
|
|
1482
|
+
},
|
|
1291
1483
|
{
|
|
1292
1484
|
"package": "motion",
|
|
1293
1485
|
category: "@Motion",
|
|
@@ -1320,7 +1512,7 @@ var functions$1 = [
|
|
|
1320
1512
|
{
|
|
1321
1513
|
name: "useMouse",
|
|
1322
1514
|
"package": "core",
|
|
1323
|
-
lastUpdated:
|
|
1515
|
+
lastUpdated: 1657643692000,
|
|
1324
1516
|
component: true,
|
|
1325
1517
|
docs: "https://vueuse.org/core/useMouse/",
|
|
1326
1518
|
category: "Sensors",
|
|
@@ -1329,7 +1521,7 @@ var functions$1 = [
|
|
|
1329
1521
|
{
|
|
1330
1522
|
name: "useMouseInElement",
|
|
1331
1523
|
"package": "core",
|
|
1332
|
-
lastUpdated:
|
|
1524
|
+
lastUpdated: 1657643692000,
|
|
1333
1525
|
component: true,
|
|
1334
1526
|
docs: "https://vueuse.org/core/useMouseInElement/",
|
|
1335
1527
|
category: "Elements",
|
|
@@ -1347,7 +1539,7 @@ var functions$1 = [
|
|
|
1347
1539
|
{
|
|
1348
1540
|
name: "useMutationObserver",
|
|
1349
1541
|
"package": "core",
|
|
1350
|
-
lastUpdated:
|
|
1542
|
+
lastUpdated: 1657718877000,
|
|
1351
1543
|
docs: "https://vueuse.org/core/useMutationObserver/",
|
|
1352
1544
|
category: "Elements",
|
|
1353
1545
|
description: "watch for changes being made to the DOM tree"
|
|
@@ -1355,7 +1547,7 @@ var functions$1 = [
|
|
|
1355
1547
|
{
|
|
1356
1548
|
name: "useNavigatorLanguage",
|
|
1357
1549
|
"package": "core",
|
|
1358
|
-
lastUpdated:
|
|
1550
|
+
lastUpdated: 1657430593000,
|
|
1359
1551
|
docs: "https://vueuse.org/core/useNavigatorLanguage/",
|
|
1360
1552
|
category: "Sensors",
|
|
1361
1553
|
description: "reactive [navigator.language](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/language)"
|
|
@@ -1363,7 +1555,7 @@ var functions$1 = [
|
|
|
1363
1555
|
{
|
|
1364
1556
|
name: "useNetwork",
|
|
1365
1557
|
"package": "core",
|
|
1366
|
-
lastUpdated:
|
|
1558
|
+
lastUpdated: 1658083596000,
|
|
1367
1559
|
component: true,
|
|
1368
1560
|
docs: "https://vueuse.org/core/useNetwork/",
|
|
1369
1561
|
category: "Sensors",
|
|
@@ -1381,10 +1573,11 @@ var functions$1 = [
|
|
|
1381
1573
|
{
|
|
1382
1574
|
name: "useNProgress",
|
|
1383
1575
|
"package": "integrations",
|
|
1384
|
-
lastUpdated:
|
|
1576
|
+
lastUpdated: 1658083596000,
|
|
1385
1577
|
docs: "https://vueuse.org/integrations/useNProgress/",
|
|
1386
1578
|
category: "@Integrations",
|
|
1387
|
-
description: "reactive wrapper for [`nprogress`](https://github.com/rstacruz/nprogress)"
|
|
1579
|
+
description: "reactive wrapper for [`nprogress`](https://github.com/rstacruz/nprogress)",
|
|
1580
|
+
importPath: "integrations/useNProgress"
|
|
1388
1581
|
},
|
|
1389
1582
|
{
|
|
1390
1583
|
name: "useObjectUrl",
|
|
@@ -1401,12 +1594,12 @@ var functions$1 = [
|
|
|
1401
1594
|
lastUpdated: 1651595539000,
|
|
1402
1595
|
docs: "https://vueuse.org/rxjs/useObservable/",
|
|
1403
1596
|
category: "@RxJS",
|
|
1404
|
-
description: "use an Observable"
|
|
1597
|
+
description: "use an RxJS [`Observable`](https://rxjs.dev/guide/observable)"
|
|
1405
1598
|
},
|
|
1406
1599
|
{
|
|
1407
1600
|
name: "useOffsetPagination",
|
|
1408
1601
|
"package": "core",
|
|
1409
|
-
lastUpdated:
|
|
1602
|
+
lastUpdated: 1658163976000,
|
|
1410
1603
|
component: true,
|
|
1411
1604
|
docs: "https://vueuse.org/core/useOffsetPagination/",
|
|
1412
1605
|
category: "Utilities",
|
|
@@ -1433,7 +1626,7 @@ var functions$1 = [
|
|
|
1433
1626
|
{
|
|
1434
1627
|
name: "useParallax",
|
|
1435
1628
|
"package": "core",
|
|
1436
|
-
lastUpdated:
|
|
1629
|
+
lastUpdated: 1657718913000,
|
|
1437
1630
|
docs: "https://vueuse.org/core/useParallax/",
|
|
1438
1631
|
category: "Sensors",
|
|
1439
1632
|
description: "create parallax effect easily"
|
|
@@ -1441,15 +1634,18 @@ var functions$1 = [
|
|
|
1441
1634
|
{
|
|
1442
1635
|
name: "usePermission",
|
|
1443
1636
|
"package": "core",
|
|
1444
|
-
lastUpdated:
|
|
1637
|
+
lastUpdated: 1657430593000,
|
|
1445
1638
|
docs: "https://vueuse.org/core/usePermission/",
|
|
1446
1639
|
category: "Browser",
|
|
1447
|
-
description: "reactive [Permissions API](https://developer.mozilla.org/en-US/docs/Web/API/Permissions_API)"
|
|
1640
|
+
description: "reactive [Permissions API](https://developer.mozilla.org/en-US/docs/Web/API/Permissions_API)",
|
|
1641
|
+
related: [
|
|
1642
|
+
"useUserMedia"
|
|
1643
|
+
]
|
|
1448
1644
|
},
|
|
1449
1645
|
{
|
|
1450
1646
|
name: "usePointer",
|
|
1451
1647
|
"package": "core",
|
|
1452
|
-
lastUpdated:
|
|
1648
|
+
lastUpdated: 1658083596000,
|
|
1453
1649
|
component: true,
|
|
1454
1650
|
docs: "https://vueuse.org/core/usePointer/",
|
|
1455
1651
|
category: "Sensors",
|
|
@@ -1458,7 +1654,7 @@ var functions$1 = [
|
|
|
1458
1654
|
{
|
|
1459
1655
|
name: "usePointerSwipe",
|
|
1460
1656
|
"package": "core",
|
|
1461
|
-
lastUpdated:
|
|
1657
|
+
lastUpdated: 1657718938000,
|
|
1462
1658
|
docs: "https://vueuse.org/core/usePointerSwipe/",
|
|
1463
1659
|
category: "Sensors",
|
|
1464
1660
|
description: "reactive swipe detection based on [PointerEvents](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent)"
|
|
@@ -1494,18 +1690,31 @@ var functions$1 = [
|
|
|
1494
1690
|
category: "Browser",
|
|
1495
1691
|
description: "reactive [Navigator Languages](https://developer.mozilla.org/en-US/docs/Web/API/NavigatorLanguage/languages)"
|
|
1496
1692
|
},
|
|
1693
|
+
{
|
|
1694
|
+
name: "useProjection",
|
|
1695
|
+
"package": "math",
|
|
1696
|
+
lastUpdated: 1657638060000,
|
|
1697
|
+
docs: "https://vueuse.org/math/useProjection/",
|
|
1698
|
+
category: "@Math",
|
|
1699
|
+
description: "reactive numeric projection from one domain to another",
|
|
1700
|
+
related: [
|
|
1701
|
+
"createGenericProjection",
|
|
1702
|
+
"createProjection"
|
|
1703
|
+
]
|
|
1704
|
+
},
|
|
1497
1705
|
{
|
|
1498
1706
|
name: "useQRCode",
|
|
1499
1707
|
"package": "integrations",
|
|
1500
|
-
lastUpdated:
|
|
1708
|
+
lastUpdated: 1657259100000,
|
|
1501
1709
|
docs: "https://vueuse.org/integrations/useQRCode/",
|
|
1502
1710
|
category: "@Integrations",
|
|
1503
|
-
description: "wrapper for [`qrcode`](https://github.com/soldair/node-qrcode)"
|
|
1711
|
+
description: "wrapper for [`qrcode`](https://github.com/soldair/node-qrcode)",
|
|
1712
|
+
importPath: "integrations/useQRCode"
|
|
1504
1713
|
},
|
|
1505
1714
|
{
|
|
1506
1715
|
name: "useRafFn",
|
|
1507
1716
|
"package": "core",
|
|
1508
|
-
lastUpdated:
|
|
1717
|
+
lastUpdated: 1657718952000,
|
|
1509
1718
|
docs: "https://vueuse.org/core/useRafFn/",
|
|
1510
1719
|
category: "Animation",
|
|
1511
1720
|
description: "call function on every `requestAnimationFrame`"
|
|
@@ -1518,24 +1727,34 @@ var functions$1 = [
|
|
|
1518
1727
|
category: "State",
|
|
1519
1728
|
description: "track the change history of a ref",
|
|
1520
1729
|
related: [
|
|
1521
|
-
"useDebouncedRefHistory"
|
|
1730
|
+
"useDebouncedRefHistory",
|
|
1731
|
+
"useManualRefHistory",
|
|
1732
|
+
"useThrottledRefHistory"
|
|
1522
1733
|
]
|
|
1523
1734
|
},
|
|
1524
1735
|
{
|
|
1525
1736
|
name: "useResizeObserver",
|
|
1526
1737
|
"package": "core",
|
|
1527
|
-
lastUpdated:
|
|
1738
|
+
lastUpdated: 1657634277000,
|
|
1528
1739
|
docs: "https://vueuse.org/core/useResizeObserver/",
|
|
1529
1740
|
category: "Elements",
|
|
1530
1741
|
description: "reports changes to the dimensions of an Element's content or the border-box"
|
|
1531
1742
|
},
|
|
1743
|
+
{
|
|
1744
|
+
name: "useRound",
|
|
1745
|
+
"package": "math",
|
|
1746
|
+
lastUpdated: 1657638060000,
|
|
1747
|
+
docs: "https://vueuse.org/math/useRound/",
|
|
1748
|
+
category: "@Math",
|
|
1749
|
+
description: "reactive `Math.round`"
|
|
1750
|
+
},
|
|
1532
1751
|
{
|
|
1533
1752
|
name: "useRouteHash",
|
|
1534
1753
|
"package": "router",
|
|
1535
1754
|
lastUpdated: 1639442454000,
|
|
1536
1755
|
docs: "https://vueuse.org/router/useRouteHash/",
|
|
1537
1756
|
category: "@Router",
|
|
1538
|
-
description: "shorthand for reactive route.hash"
|
|
1757
|
+
description: "shorthand for a reactive `route.hash`"
|
|
1539
1758
|
},
|
|
1540
1759
|
{
|
|
1541
1760
|
name: "useRouteParams",
|
|
@@ -1543,7 +1762,7 @@ var functions$1 = [
|
|
|
1543
1762
|
lastUpdated: 1657133143000,
|
|
1544
1763
|
docs: "https://vueuse.org/router/useRouteParams/",
|
|
1545
1764
|
category: "@Router",
|
|
1546
|
-
description: "shorthand for reactive route.params"
|
|
1765
|
+
description: "shorthand for a reactive `route.params`"
|
|
1547
1766
|
},
|
|
1548
1767
|
{
|
|
1549
1768
|
name: "useRouteQuery",
|
|
@@ -1551,15 +1770,16 @@ var functions$1 = [
|
|
|
1551
1770
|
lastUpdated: 1649931974000,
|
|
1552
1771
|
docs: "https://vueuse.org/router/useRouteQuery/",
|
|
1553
1772
|
category: "@Router",
|
|
1554
|
-
description: "shorthand for reactive route.query"
|
|
1773
|
+
description: "shorthand for a reactive `route.query`"
|
|
1555
1774
|
},
|
|
1556
1775
|
{
|
|
1557
1776
|
name: "useRTDB",
|
|
1558
1777
|
"package": "firebase",
|
|
1559
|
-
lastUpdated:
|
|
1778
|
+
lastUpdated: 1658645224000,
|
|
1560
1779
|
docs: "https://vueuse.org/firebase/useRTDB/",
|
|
1561
1780
|
category: "@Firebase",
|
|
1562
|
-
description: "reactive [Firebase Realtime Database](https://firebase.google.com/docs/database) binding"
|
|
1781
|
+
description: "reactive [Firebase Realtime Database](https://firebase.google.com/docs/database) binding",
|
|
1782
|
+
importPath: "firebase/useRTDB"
|
|
1563
1783
|
},
|
|
1564
1784
|
{
|
|
1565
1785
|
name: "useSchemaOrg",
|
|
@@ -1571,7 +1791,7 @@ var functions$1 = [
|
|
|
1571
1791
|
{
|
|
1572
1792
|
name: "useScreenOrientation",
|
|
1573
1793
|
"package": "core",
|
|
1574
|
-
lastUpdated:
|
|
1794
|
+
lastUpdated: 1657430593000,
|
|
1575
1795
|
docs: "https://vueuse.org/core/useScreenOrientation/",
|
|
1576
1796
|
category: "Browser",
|
|
1577
1797
|
description: "reactive [Screen Orientation API](https://developer.mozilla.org/en-US/docs/Web/API/Screen_Orientation_API)"
|
|
@@ -1588,7 +1808,7 @@ var functions$1 = [
|
|
|
1588
1808
|
{
|
|
1589
1809
|
name: "useScriptTag",
|
|
1590
1810
|
"package": "core",
|
|
1591
|
-
lastUpdated:
|
|
1811
|
+
lastUpdated: 1657259100000,
|
|
1592
1812
|
docs: "https://vueuse.org/core/useScriptTag/",
|
|
1593
1813
|
category: "Browser",
|
|
1594
1814
|
description: "script tag injecting"
|
|
@@ -1596,7 +1816,7 @@ var functions$1 = [
|
|
|
1596
1816
|
{
|
|
1597
1817
|
name: "useScroll",
|
|
1598
1818
|
"package": "core",
|
|
1599
|
-
lastUpdated:
|
|
1819
|
+
lastUpdated: 1657259100000,
|
|
1600
1820
|
directive: true,
|
|
1601
1821
|
docs: "https://vueuse.org/core/useScroll/",
|
|
1602
1822
|
category: "Sensors",
|
|
@@ -1605,7 +1825,7 @@ var functions$1 = [
|
|
|
1605
1825
|
{
|
|
1606
1826
|
name: "useScrollLock",
|
|
1607
1827
|
"package": "core",
|
|
1608
|
-
lastUpdated:
|
|
1828
|
+
lastUpdated: 1657259100000,
|
|
1609
1829
|
directive: true,
|
|
1610
1830
|
docs: "https://vueuse.org/core/useScrollLock/",
|
|
1611
1831
|
category: "Sensors",
|
|
@@ -1614,15 +1834,18 @@ var functions$1 = [
|
|
|
1614
1834
|
{
|
|
1615
1835
|
name: "useSessionStorage",
|
|
1616
1836
|
"package": "core",
|
|
1617
|
-
lastUpdated:
|
|
1837
|
+
lastUpdated: 1657634978000,
|
|
1618
1838
|
docs: "https://vueuse.org/core/useSessionStorage/",
|
|
1619
1839
|
category: "State",
|
|
1620
|
-
description: "reactive [SessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage)"
|
|
1840
|
+
description: "reactive [SessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage)",
|
|
1841
|
+
related: [
|
|
1842
|
+
"useStorage"
|
|
1843
|
+
]
|
|
1621
1844
|
},
|
|
1622
1845
|
{
|
|
1623
1846
|
name: "useShare",
|
|
1624
1847
|
"package": "core",
|
|
1625
|
-
lastUpdated:
|
|
1848
|
+
lastUpdated: 1657718983000,
|
|
1626
1849
|
docs: "https://vueuse.org/core/useShare/",
|
|
1627
1850
|
category: "Browser",
|
|
1628
1851
|
description: "reactive [Web Share API](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share)"
|
|
@@ -1637,7 +1860,7 @@ var functions$1 = [
|
|
|
1637
1860
|
{
|
|
1638
1861
|
name: "useSpeechRecognition",
|
|
1639
1862
|
"package": "core",
|
|
1640
|
-
lastUpdated:
|
|
1863
|
+
lastUpdated: 1657719060000,
|
|
1641
1864
|
docs: "https://vueuse.org/core/useSpeechRecognition/",
|
|
1642
1865
|
category: "Sensors",
|
|
1643
1866
|
description: "reactive [SpeechRecognition](https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition)"
|
|
@@ -1645,7 +1868,7 @@ var functions$1 = [
|
|
|
1645
1868
|
{
|
|
1646
1869
|
name: "useSpeechSynthesis",
|
|
1647
1870
|
"package": "core",
|
|
1648
|
-
lastUpdated:
|
|
1871
|
+
lastUpdated: 1658083561000,
|
|
1649
1872
|
docs: "https://vueuse.org/core/useSpeechSynthesis/",
|
|
1650
1873
|
category: "Sensors",
|
|
1651
1874
|
description: "reactive [SpeechSynthesis](https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis)"
|
|
@@ -1668,22 +1891,28 @@ var functions$1 = [
|
|
|
1668
1891
|
{
|
|
1669
1892
|
name: "useStorage",
|
|
1670
1893
|
"package": "core",
|
|
1671
|
-
lastUpdated:
|
|
1894
|
+
lastUpdated: 1658657648000,
|
|
1672
1895
|
docs: "https://vueuse.org/core/useStorage/",
|
|
1673
1896
|
category: "State",
|
|
1674
1897
|
description: "reactive [LocalStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)/[SessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage)",
|
|
1675
1898
|
related: [
|
|
1676
1899
|
"useColorMode",
|
|
1677
|
-
"useDark"
|
|
1900
|
+
"useDark",
|
|
1901
|
+
"useLocalStorage",
|
|
1902
|
+
"useSessionStorage",
|
|
1903
|
+
"useStorageAsync"
|
|
1678
1904
|
]
|
|
1679
1905
|
},
|
|
1680
1906
|
{
|
|
1681
1907
|
name: "useStorageAsync",
|
|
1682
1908
|
"package": "core",
|
|
1683
|
-
lastUpdated:
|
|
1909
|
+
lastUpdated: 1657718694000,
|
|
1684
1910
|
docs: "https://vueuse.org/core/useStorageAsync/",
|
|
1685
1911
|
category: "State",
|
|
1686
|
-
description: "reactive Storage in with async support"
|
|
1912
|
+
description: "reactive Storage in with async support",
|
|
1913
|
+
related: [
|
|
1914
|
+
"useStorage"
|
|
1915
|
+
]
|
|
1687
1916
|
},
|
|
1688
1917
|
{
|
|
1689
1918
|
name: "useStyleTag",
|
|
@@ -1699,7 +1928,7 @@ var functions$1 = [
|
|
|
1699
1928
|
lastUpdated: 1651595539000,
|
|
1700
1929
|
docs: "https://vueuse.org/rxjs/useSubject/",
|
|
1701
1930
|
category: "@RxJS",
|
|
1702
|
-
description: "bind Subject to ref and propagate value changes both ways"
|
|
1931
|
+
description: "bind an RxJS [`Subject`](https://rxjs.dev/guide/subject) to a `ref` and propagate value changes both ways"
|
|
1703
1932
|
},
|
|
1704
1933
|
{
|
|
1705
1934
|
name: "useSubscription",
|
|
@@ -1707,12 +1936,28 @@ var functions$1 = [
|
|
|
1707
1936
|
lastUpdated: 1628521945000,
|
|
1708
1937
|
docs: "https://vueuse.org/rxjs/useSubscription/",
|
|
1709
1938
|
category: "@RxJS",
|
|
1710
|
-
description: "
|
|
1939
|
+
description: "use an RxJS [`Subscription`](https://rxjs.dev/guide/subscription) without worrying about unsubscribing from it or creating memory leaks"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
name: "useSum",
|
|
1943
|
+
"package": "math",
|
|
1944
|
+
lastUpdated: 1658041190000,
|
|
1945
|
+
docs: "https://vueuse.org/math/useSum/",
|
|
1946
|
+
category: "@Math",
|
|
1947
|
+
description: "get the sum of an array reactively"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
name: "useSupported",
|
|
1951
|
+
"package": "core",
|
|
1952
|
+
lastUpdated: 1657430593000,
|
|
1953
|
+
docs: "https://vueuse.org/core/useSupported/",
|
|
1954
|
+
category: "Utilities",
|
|
1955
|
+
description: "sSR compatibility `isSupported`"
|
|
1711
1956
|
},
|
|
1712
1957
|
{
|
|
1713
1958
|
name: "useSwipe",
|
|
1714
1959
|
"package": "core",
|
|
1715
|
-
lastUpdated:
|
|
1960
|
+
lastUpdated: 1657721393000,
|
|
1716
1961
|
docs: "https://vueuse.org/core/useSwipe/",
|
|
1717
1962
|
category: "Sensors",
|
|
1718
1963
|
description: "reactive swipe detection based on [`TouchEvents`](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent)"
|
|
@@ -1728,11 +1973,19 @@ var functions$1 = [
|
|
|
1728
1973
|
{
|
|
1729
1974
|
name: "useTextareaAutosize",
|
|
1730
1975
|
"package": "core",
|
|
1731
|
-
lastUpdated:
|
|
1976
|
+
lastUpdated: 1658083596000,
|
|
1732
1977
|
docs: "https://vueuse.org/core/useTextareaAutosize/",
|
|
1733
1978
|
category: "Browser",
|
|
1734
1979
|
description: "automatically update the height of a textarea depending on the content"
|
|
1735
1980
|
},
|
|
1981
|
+
{
|
|
1982
|
+
name: "useTextDirection",
|
|
1983
|
+
"package": "core",
|
|
1984
|
+
lastUpdated: 1658657118000,
|
|
1985
|
+
docs: "https://vueuse.org/core/useTextDirection/",
|
|
1986
|
+
category: "Browser",
|
|
1987
|
+
description: "reactive [dir](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir) of the element's text"
|
|
1988
|
+
},
|
|
1736
1989
|
{
|
|
1737
1990
|
name: "useTextSelection",
|
|
1738
1991
|
"package": "core",
|
|
@@ -1744,35 +1997,41 @@ var functions$1 = [
|
|
|
1744
1997
|
{
|
|
1745
1998
|
name: "useThrottledRefHistory",
|
|
1746
1999
|
"package": "core",
|
|
1747
|
-
lastUpdated:
|
|
2000
|
+
lastUpdated: 1658083596000,
|
|
1748
2001
|
docs: "https://vueuse.org/core/useThrottledRefHistory/",
|
|
1749
2002
|
category: "State",
|
|
1750
2003
|
description: "shorthand for `useRefHistory` with throttled filter",
|
|
1751
2004
|
related: [
|
|
1752
|
-
"useDebouncedRefHistory"
|
|
2005
|
+
"useDebouncedRefHistory",
|
|
2006
|
+
"useRefHistory"
|
|
1753
2007
|
]
|
|
1754
2008
|
},
|
|
1755
2009
|
{
|
|
1756
2010
|
name: "useThrottleFn",
|
|
1757
2011
|
"package": "shared",
|
|
1758
|
-
lastUpdated:
|
|
2012
|
+
lastUpdated: 1657259100000,
|
|
1759
2013
|
docs: "https://vueuse.org/shared/useThrottleFn/",
|
|
1760
2014
|
category: "Utilities",
|
|
1761
|
-
description: "throttle execution of a function"
|
|
2015
|
+
description: "throttle execution of a function",
|
|
2016
|
+
related: [
|
|
2017
|
+
"refDebounced",
|
|
2018
|
+
"refThrottled",
|
|
2019
|
+
"useDebounceFn"
|
|
2020
|
+
]
|
|
1762
2021
|
},
|
|
1763
2022
|
{
|
|
1764
2023
|
name: "useTimeAgo",
|
|
1765
2024
|
"package": "core",
|
|
1766
|
-
lastUpdated:
|
|
2025
|
+
lastUpdated: 1658083596000,
|
|
1767
2026
|
component: true,
|
|
1768
2027
|
docs: "https://vueuse.org/core/useTimeAgo/",
|
|
1769
|
-
category: "
|
|
2028
|
+
category: "Time",
|
|
1770
2029
|
description: "reactive time ago"
|
|
1771
2030
|
},
|
|
1772
2031
|
{
|
|
1773
2032
|
name: "useTimeout",
|
|
1774
2033
|
"package": "shared",
|
|
1775
|
-
lastUpdated:
|
|
2034
|
+
lastUpdated: 1658083632000,
|
|
1776
2035
|
docs: "https://vueuse.org/shared/useTimeout/",
|
|
1777
2036
|
category: "Animation",
|
|
1778
2037
|
description: "update value after a given time with controls"
|
|
@@ -1780,7 +2039,7 @@ var functions$1 = [
|
|
|
1780
2039
|
{
|
|
1781
2040
|
name: "useTimeoutFn",
|
|
1782
2041
|
"package": "shared",
|
|
1783
|
-
lastUpdated:
|
|
2042
|
+
lastUpdated: 1658083632000,
|
|
1784
2043
|
docs: "https://vueuse.org/shared/useTimeoutFn/",
|
|
1785
2044
|
category: "Animation",
|
|
1786
2045
|
description: "wrapper for `setTimeout` with controls"
|
|
@@ -1788,7 +2047,7 @@ var functions$1 = [
|
|
|
1788
2047
|
{
|
|
1789
2048
|
name: "useTimeoutPoll",
|
|
1790
2049
|
"package": "core",
|
|
1791
|
-
lastUpdated:
|
|
2050
|
+
lastUpdated: 1658083632000,
|
|
1792
2051
|
docs: "https://vueuse.org/core/useTimeoutPoll/",
|
|
1793
2052
|
category: "Utilities",
|
|
1794
2053
|
description: "use timeout to poll something"
|
|
@@ -1796,7 +2055,7 @@ var functions$1 = [
|
|
|
1796
2055
|
{
|
|
1797
2056
|
name: "useTimestamp",
|
|
1798
2057
|
"package": "core",
|
|
1799
|
-
lastUpdated:
|
|
2058
|
+
lastUpdated: 1657730635000,
|
|
1800
2059
|
component: true,
|
|
1801
2060
|
docs: "https://vueuse.org/core/useTimestamp/",
|
|
1802
2061
|
category: "Animation",
|
|
@@ -1805,7 +2064,7 @@ var functions$1 = [
|
|
|
1805
2064
|
{
|
|
1806
2065
|
name: "useTitle",
|
|
1807
2066
|
"package": "core",
|
|
1808
|
-
lastUpdated:
|
|
2067
|
+
lastUpdated: 1657259100000,
|
|
1809
2068
|
docs: "https://vueuse.org/core/useTitle/",
|
|
1810
2069
|
category: "Browser",
|
|
1811
2070
|
description: "reactive document title"
|
|
@@ -1813,7 +2072,7 @@ var functions$1 = [
|
|
|
1813
2072
|
{
|
|
1814
2073
|
name: "useToggle",
|
|
1815
2074
|
"package": "shared",
|
|
1816
|
-
lastUpdated:
|
|
2075
|
+
lastUpdated: 1657259100000,
|
|
1817
2076
|
docs: "https://vueuse.org/shared/useToggle/",
|
|
1818
2077
|
category: "Utilities",
|
|
1819
2078
|
description: "a boolean switcher with utility functions"
|
|
@@ -1821,11 +2080,19 @@ var functions$1 = [
|
|
|
1821
2080
|
{
|
|
1822
2081
|
name: "useTransition",
|
|
1823
2082
|
"package": "core",
|
|
1824
|
-
lastUpdated:
|
|
2083
|
+
lastUpdated: 1657730647000,
|
|
1825
2084
|
docs: "https://vueuse.org/core/useTransition/",
|
|
1826
2085
|
category: "Animation",
|
|
1827
2086
|
description: "transition between values"
|
|
1828
2087
|
},
|
|
2088
|
+
{
|
|
2089
|
+
name: "useTrunc",
|
|
2090
|
+
"package": "math",
|
|
2091
|
+
lastUpdated: 1658043525000,
|
|
2092
|
+
docs: "https://vueuse.org/math/useTrunc/",
|
|
2093
|
+
category: "@Math",
|
|
2094
|
+
description: "reactive `Math.trunc`"
|
|
2095
|
+
},
|
|
1829
2096
|
{
|
|
1830
2097
|
name: "useUrlSearchParams",
|
|
1831
2098
|
"package": "core",
|
|
@@ -1837,18 +2104,20 @@ var functions$1 = [
|
|
|
1837
2104
|
{
|
|
1838
2105
|
name: "useUserMedia",
|
|
1839
2106
|
"package": "core",
|
|
1840
|
-
lastUpdated:
|
|
2107
|
+
lastUpdated: 1657430593000,
|
|
1841
2108
|
docs: "https://vueuse.org/core/useUserMedia/",
|
|
1842
2109
|
category: "Sensors",
|
|
1843
2110
|
description: "reactive [`mediaDevices.getUserMedia`](https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia) streaming",
|
|
1844
2111
|
related: [
|
|
1845
|
-
"
|
|
2112
|
+
"useDevicesList",
|
|
2113
|
+
"useDisplayMedia",
|
|
2114
|
+
"usePermission"
|
|
1846
2115
|
]
|
|
1847
2116
|
},
|
|
1848
2117
|
{
|
|
1849
2118
|
name: "useVibrate",
|
|
1850
2119
|
"package": "core",
|
|
1851
|
-
lastUpdated:
|
|
2120
|
+
lastUpdated: 1657430593000,
|
|
1852
2121
|
docs: "https://vueuse.org/core/useVibrate/",
|
|
1853
2122
|
category: "Browser",
|
|
1854
2123
|
description: "reactive [Vibration API](https://developer.mozilla.org/en-US/docs/Web/API/Vibration_API)"
|
|
@@ -1856,7 +2125,7 @@ var functions$1 = [
|
|
|
1856
2125
|
{
|
|
1857
2126
|
name: "useVirtualList",
|
|
1858
2127
|
"package": "core",
|
|
1859
|
-
lastUpdated:
|
|
2128
|
+
lastUpdated: 1658083596000,
|
|
1860
2129
|
component: true,
|
|
1861
2130
|
docs: "https://vueuse.org/core/useVirtualList/",
|
|
1862
2131
|
category: "Component",
|
|
@@ -1865,23 +2134,29 @@ var functions$1 = [
|
|
|
1865
2134
|
{
|
|
1866
2135
|
name: "useVModel",
|
|
1867
2136
|
"package": "core",
|
|
1868
|
-
lastUpdated:
|
|
2137
|
+
lastUpdated: 1657814222000,
|
|
1869
2138
|
docs: "https://vueuse.org/core/useVModel/",
|
|
1870
2139
|
category: "Component",
|
|
1871
|
-
description: "shorthand for v-model binding"
|
|
2140
|
+
description: "shorthand for v-model binding",
|
|
2141
|
+
related: [
|
|
2142
|
+
"useVModels"
|
|
2143
|
+
]
|
|
1872
2144
|
},
|
|
1873
2145
|
{
|
|
1874
2146
|
name: "useVModels",
|
|
1875
2147
|
"package": "core",
|
|
1876
|
-
lastUpdated:
|
|
2148
|
+
lastUpdated: 1657730657000,
|
|
1877
2149
|
docs: "https://vueuse.org/core/useVModels/",
|
|
1878
2150
|
category: "Component",
|
|
1879
|
-
description: "shorthand for props v-model binding"
|
|
2151
|
+
description: "shorthand for props v-model binding",
|
|
2152
|
+
related: [
|
|
2153
|
+
"useVModel"
|
|
2154
|
+
]
|
|
1880
2155
|
},
|
|
1881
2156
|
{
|
|
1882
2157
|
name: "useWakeLock",
|
|
1883
2158
|
"package": "core",
|
|
1884
|
-
lastUpdated:
|
|
2159
|
+
lastUpdated: 1658083596000,
|
|
1885
2160
|
docs: "https://vueuse.org/core/useWakeLock/",
|
|
1886
2161
|
category: "Browser",
|
|
1887
2162
|
description: "reactive [Screen Wake Lock API](https://developer.mozilla.org/en-US/docs/Web/API/Screen_Wake_Lock_API)"
|
|
@@ -1889,7 +2164,7 @@ var functions$1 = [
|
|
|
1889
2164
|
{
|
|
1890
2165
|
name: "useWebNotification",
|
|
1891
2166
|
"package": "core",
|
|
1892
|
-
lastUpdated:
|
|
2167
|
+
lastUpdated: 1658083596000,
|
|
1893
2168
|
docs: "https://vueuse.org/core/useWebNotification/",
|
|
1894
2169
|
category: "Browser",
|
|
1895
2170
|
description: "reactive [Notification](https://developer.mozilla.org/en-US/docs/Web/API/notification)"
|
|
@@ -1897,7 +2172,7 @@ var functions$1 = [
|
|
|
1897
2172
|
{
|
|
1898
2173
|
name: "useWebSocket",
|
|
1899
2174
|
"package": "core",
|
|
1900
|
-
lastUpdated:
|
|
2175
|
+
lastUpdated: 1658285520000,
|
|
1901
2176
|
docs: "https://vueuse.org/core/useWebSocket/",
|
|
1902
2177
|
category: "Network",
|
|
1903
2178
|
description: "reactive [WebSocket](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/WebSocket) client"
|
|
@@ -1907,16 +2182,22 @@ var functions$1 = [
|
|
|
1907
2182
|
"package": "core",
|
|
1908
2183
|
lastUpdated: 1647220329000,
|
|
1909
2184
|
docs: "https://vueuse.org/core/useWebWorker/",
|
|
1910
|
-
category: "
|
|
1911
|
-
description: "simple [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) registration and communication"
|
|
2185
|
+
category: "Browser",
|
|
2186
|
+
description: "simple [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) registration and communication",
|
|
2187
|
+
related: [
|
|
2188
|
+
"useWebWorkerFn"
|
|
2189
|
+
]
|
|
1912
2190
|
},
|
|
1913
2191
|
{
|
|
1914
2192
|
name: "useWebWorkerFn",
|
|
1915
2193
|
"package": "core",
|
|
1916
|
-
lastUpdated:
|
|
2194
|
+
lastUpdated: 1657730737000,
|
|
1917
2195
|
docs: "https://vueuse.org/core/useWebWorkerFn/",
|
|
1918
|
-
category: "
|
|
1919
|
-
description: "run expensive functions without blocking the UI"
|
|
2196
|
+
category: "Browser",
|
|
2197
|
+
description: "run expensive functions without blocking the UI",
|
|
2198
|
+
related: [
|
|
2199
|
+
"useWebWorker"
|
|
2200
|
+
]
|
|
1920
2201
|
},
|
|
1921
2202
|
{
|
|
1922
2203
|
name: "useWindowFocus",
|
|
@@ -1938,7 +2219,7 @@ var functions$1 = [
|
|
|
1938
2219
|
{
|
|
1939
2220
|
name: "useWindowSize",
|
|
1940
2221
|
"package": "core",
|
|
1941
|
-
lastUpdated:
|
|
2222
|
+
lastUpdated: 1657730699000,
|
|
1942
2223
|
component: true,
|
|
1943
2224
|
docs: "https://vueuse.org/core/useWindowSize/",
|
|
1944
2225
|
category: "Elements",
|
|
@@ -1947,7 +2228,7 @@ var functions$1 = [
|
|
|
1947
2228
|
{
|
|
1948
2229
|
name: "useZoomFactor",
|
|
1949
2230
|
"package": "electron",
|
|
1950
|
-
lastUpdated:
|
|
2231
|
+
lastUpdated: 1658645224000,
|
|
1951
2232
|
docs: "https://vueuse.org/electron/useZoomFactor/",
|
|
1952
2233
|
category: "@Electron",
|
|
1953
2234
|
description: "reactive [WebFrame](https://www.electronjs.org/docs/api/web-frame#webframe) zoom factor"
|
|
@@ -1955,7 +2236,7 @@ var functions$1 = [
|
|
|
1955
2236
|
{
|
|
1956
2237
|
name: "useZoomLevel",
|
|
1957
2238
|
"package": "electron",
|
|
1958
|
-
lastUpdated:
|
|
2239
|
+
lastUpdated: 1658645224000,
|
|
1959
2240
|
docs: "https://vueuse.org/electron/useZoomLevel/",
|
|
1960
2241
|
category: "@Electron",
|
|
1961
2242
|
description: "reactive [WebFrame](https://www.electronjs.org/docs/api/web-frame#webframe) zoom level"
|
|
@@ -1977,7 +2258,7 @@ var functions$1 = [
|
|
|
1977
2258
|
{
|
|
1978
2259
|
name: "watchAtMost",
|
|
1979
2260
|
"package": "shared",
|
|
1980
|
-
lastUpdated:
|
|
2261
|
+
lastUpdated: 1657259100000,
|
|
1981
2262
|
docs: "https://vueuse.org/shared/watchAtMost/",
|
|
1982
2263
|
category: "Watch",
|
|
1983
2264
|
description: "`watch` with the number of times triggered"
|
|
@@ -1985,7 +2266,7 @@ var functions$1 = [
|
|
|
1985
2266
|
{
|
|
1986
2267
|
name: "watchDebounced",
|
|
1987
2268
|
"package": "shared",
|
|
1988
|
-
lastUpdated:
|
|
2269
|
+
lastUpdated: 1657259100000,
|
|
1989
2270
|
docs: "https://vueuse.org/shared/watchDebounced/",
|
|
1990
2271
|
category: "Watch",
|
|
1991
2272
|
description: "debounced watch",
|
|
@@ -2026,7 +2307,7 @@ var functions$1 = [
|
|
|
2026
2307
|
{
|
|
2027
2308
|
name: "watchThrottled",
|
|
2028
2309
|
"package": "shared",
|
|
2029
|
-
lastUpdated:
|
|
2310
|
+
lastUpdated: 1657259100000,
|
|
2030
2311
|
docs: "https://vueuse.org/shared/watchThrottled/",
|
|
2031
2312
|
category: "Watch",
|
|
2032
2313
|
description: "throttled watch",
|
|
@@ -2053,7 +2334,7 @@ var functions$1 = [
|
|
|
2053
2334
|
{
|
|
2054
2335
|
name: "whenever",
|
|
2055
2336
|
"package": "shared",
|
|
2056
|
-
lastUpdated:
|
|
2337
|
+
lastUpdated: 1658645224000,
|
|
2057
2338
|
docs: "https://vueuse.org/shared/whenever/",
|
|
2058
2339
|
category: "Watch",
|
|
2059
2340
|
description: "shorthand for watching value to be truthy"
|
|
@@ -2066,16 +2347,18 @@ var _metadata = {
|
|
|
2066
2347
|
};
|
|
2067
2348
|
|
|
2068
2349
|
const categoriesOrder = [
|
|
2350
|
+
"State",
|
|
2351
|
+
"Elements",
|
|
2069
2352
|
"Browser",
|
|
2070
2353
|
"Sensors",
|
|
2354
|
+
"Network",
|
|
2071
2355
|
"Animation",
|
|
2072
|
-
"State",
|
|
2073
|
-
"Elements",
|
|
2074
2356
|
"Component",
|
|
2075
2357
|
"Watch",
|
|
2076
|
-
"
|
|
2077
|
-
"
|
|
2078
|
-
"
|
|
2358
|
+
"Reactivity",
|
|
2359
|
+
"Array",
|
|
2360
|
+
"Time",
|
|
2361
|
+
"Utilities"
|
|
2079
2362
|
];
|
|
2080
2363
|
const metadata = _metadata;
|
|
2081
2364
|
const functions = functions$1;
|