@convey/react
Advanced tools
Comparing version 0.1.0 to 0.3.0
@@ -6,2 +6,24 @@ # Change Log | ||
# [0.3.0](https://github.com/lttb/convey/compare/@convey/react@0.2.0...@convey/react@0.3.0) (2021-11-24) | ||
### Features | ||
* **core, react:** improve types ([161799f](https://github.com/lttb/convey/commit/161799feb8747be85e3c66313b44d63025acaf0b)) | ||
# [0.2.0](https://github.com/lttb/convey/compare/@convey/react@0.1.0...@convey/react@0.2.0) (2021-11-22) | ||
### Features | ||
* **react:** fix hook types ([4964f48](https://github.com/lttb/convey/commit/4964f483c5fd4369429c40f97db0aaa93e5b85c9)) | ||
# 0.1.0 (2021-11-04) | ||
@@ -8,0 +30,0 @@ |
@@ -1,1 +0,1 @@ | ||
{"main":"index.mjs","types":"index.d.ts","name":"@convey/react","type":"module","version":"0.1.0","author":"Kenzhaev Artur <kenzhaev.artur@gmail.com>","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/lttb/convey.git","directory":"@convey/react"},"scripts":{"test":"","prebuild":"rm -rf lib","build":"rollup -c"},"peerDependencies":{"@convey/core":"^0.0.1","react":">=16.0.0"}} | ||
{"main":"index.mjs","types":"index.d.ts","name":"@convey/react","type":"module","version":"0.3.0","author":"Kenzhaev Artur <kenzhaev.artur@gmail.com>","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/lttb/convey.git","directory":"@convey/react"},"scripts":{"test":"","prebuild":"rm -rf lib","build":"rollup -c"},"peerDependencies":{"@convey/core":"^0.0.1","react":">=16.0.0"}} |
@@ -1,2 +0,2 @@ | ||
import type { Resolver, Unbox } from '@convey/core'; | ||
import type { Unbox, ResolverResult } from '@convey/core'; | ||
declare type MetaBase = { | ||
@@ -16,3 +16,3 @@ refresh: () => void; | ||
]; | ||
export declare function useResolver<Params extends any[], Result>(resolver: null | ReturnType<Resolver<Params, Result>>): HookResult<Result>; | ||
export declare function useResolver<Result, Params extends any[] = any[]>(resolver: null | ResolverResult<Result, Params>): HookResult<Result>; | ||
export {}; |
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
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
6550
0