@vueuse/shared
Advanced tools
Comparing version 4.9.0 to 4.9.1
@@ -10,3 +10,3 @@ 'use strict'; | ||
* | ||
* @link https://vueuse.org/and | ||
* @see https://vueuse.org/and | ||
*/ | ||
@@ -468,3 +468,3 @@ function and(...args) { | ||
* | ||
* @link https://vueuse.org/not | ||
* @see https://vueuse.org/not | ||
*/ | ||
@@ -478,3 +478,3 @@ function not(v) { | ||
* | ||
* @link https://vueuse.org/or | ||
* @see https://vueuse.org/or | ||
*/ | ||
@@ -532,3 +532,3 @@ function or(...args) { | ||
* | ||
* @link https://vueuse.js.org/reactivePick | ||
* @see https://vueuse.js.org/reactivePick | ||
*/ | ||
@@ -702,3 +702,3 @@ function reactivePick(obj, ...keys) { | ||
* | ||
* @link https://vueuse.org/useCounter | ||
* @see https://vueuse.org/useCounter | ||
* @param [initialValue=0] | ||
@@ -907,3 +907,3 @@ */ | ||
* | ||
* @link https://vueuse.js.org/whenever | ||
* @see https://vueuse.js.org/whenever | ||
*/ | ||
@@ -910,0 +910,0 @@ function whenever(source, cb, options) { |
@@ -161,3 +161,3 @@ import * as vue_demi from 'vue-demi'; | ||
* | ||
* @link https://vueuse.org/and | ||
* @see https://vueuse.org/and | ||
*/ | ||
@@ -268,3 +268,3 @@ declare function and(...args: MaybeRef<any>[]): ComputedRef<boolean>; | ||
* | ||
* @link https://vueuse.org/not | ||
* @see https://vueuse.org/not | ||
*/ | ||
@@ -276,3 +276,3 @@ declare function not(v: MaybeRef<any>): ComputedRef<boolean>; | ||
* | ||
* @link https://vueuse.org/or | ||
* @see https://vueuse.org/or | ||
*/ | ||
@@ -320,3 +320,3 @@ declare function or(...args: MaybeRef<any>[]): ComputedRef<boolean>; | ||
* | ||
* @link https://vueuse.js.org/reactivePick | ||
* @see https://vueuse.js.org/reactivePick | ||
*/ | ||
@@ -421,3 +421,3 @@ declare function reactivePick<T extends object, K extends keyof T>(obj: T, ...keys: K[]): { | ||
* | ||
* @link https://vueuse.org/until | ||
* @see https://vueuse.org/until | ||
* @example | ||
@@ -444,3 +444,3 @@ * ``` | ||
* | ||
* @link https://vueuse.org/useCounter | ||
* @see https://vueuse.org/useCounter | ||
* @param [initialValue=0] | ||
@@ -503,3 +503,3 @@ */ | ||
* | ||
* @link https://vueuse.org/useLastChanged | ||
* @see https://vueuse.org/useLastChanged | ||
*/ | ||
@@ -564,3 +564,3 @@ declare function useLastChanged(source: WatchSource, options?: UseLastChangedOptions<false>): Ref<number | null>; | ||
* | ||
* @link https://vueuse.org/useToggle | ||
* @see https://vueuse.org/useToggle | ||
* @param [initialValue=false] | ||
@@ -574,3 +574,3 @@ */ | ||
* | ||
* @link https://vueuse.js.org/whenever | ||
* @see https://vueuse.js.org/whenever | ||
*/ | ||
@@ -577,0 +577,0 @@ declare function whenever<T = boolean>(source: WatchSource<T>, cb: Fn, options?: WatchOptions): vue_demi.WatchStopHandle; |
@@ -6,3 +6,3 @@ import { computed, unref, watch, ref, customRef, isVue3, isRef, reactive, toRef, isVue2, getCurrentInstance, onMounted, nextTick, onUnmounted } from 'vue-demi'; | ||
* | ||
* @link https://vueuse.org/and | ||
* @see https://vueuse.org/and | ||
*/ | ||
@@ -464,3 +464,3 @@ function and(...args) { | ||
* | ||
* @link https://vueuse.org/not | ||
* @see https://vueuse.org/not | ||
*/ | ||
@@ -474,3 +474,3 @@ function not(v) { | ||
* | ||
* @link https://vueuse.org/or | ||
* @see https://vueuse.org/or | ||
*/ | ||
@@ -528,3 +528,3 @@ function or(...args) { | ||
* | ||
* @link https://vueuse.js.org/reactivePick | ||
* @see https://vueuse.js.org/reactivePick | ||
*/ | ||
@@ -698,3 +698,3 @@ function reactivePick(obj, ...keys) { | ||
* | ||
* @link https://vueuse.org/useCounter | ||
* @see https://vueuse.org/useCounter | ||
* @param [initialValue=0] | ||
@@ -903,3 +903,3 @@ */ | ||
* | ||
* @link https://vueuse.js.org/whenever | ||
* @see https://vueuse.js.org/whenever | ||
*/ | ||
@@ -906,0 +906,0 @@ function whenever(source, cb, options) { |
@@ -68,3 +68,3 @@ ;(function (window) { | ||
* | ||
* @link https://vueuse.org/and | ||
* @see https://vueuse.org/and | ||
*/ | ||
@@ -526,3 +526,3 @@ function and(...args) { | ||
* | ||
* @link https://vueuse.org/not | ||
* @see https://vueuse.org/not | ||
*/ | ||
@@ -536,3 +536,3 @@ function not(v) { | ||
* | ||
* @link https://vueuse.org/or | ||
* @see https://vueuse.org/or | ||
*/ | ||
@@ -590,3 +590,3 @@ function or(...args) { | ||
* | ||
* @link https://vueuse.js.org/reactivePick | ||
* @see https://vueuse.js.org/reactivePick | ||
*/ | ||
@@ -760,3 +760,3 @@ function reactivePick(obj, ...keys) { | ||
* | ||
* @link https://vueuse.org/useCounter | ||
* @see https://vueuse.org/useCounter | ||
* @param [initialValue=0] | ||
@@ -965,3 +965,3 @@ */ | ||
* | ||
* @link https://vueuse.js.org/whenever | ||
* @see https://vueuse.js.org/whenever | ||
*/ | ||
@@ -968,0 +968,0 @@ function whenever(source, cb, options) { |
{ | ||
"name": "@vueuse/shared", | ||
"version": "4.9.0", | ||
"version": "4.9.1", | ||
"keywords": [ | ||
@@ -37,4 +37,4 @@ "vue", | ||
"dependencies": { | ||
"vue-demi": "latest" | ||
"vue-demi": "*" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
121103
2
Updatedvue-demi@*