reakit-utils
Advanced tools
Comparing version 0.7.0 to 0.7.1
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.7.1](https://github.com/reakit/reakit/tree/master/packages/reakit-utils/compare/reakit-utils@0.7.0...reakit-utils@0.7.1) (2019-11-14) | ||
**Note:** Version bump only for package reakit-utils | ||
# [0.7.0](https://github.com/reakit/reakit/tree/master/packages/reakit-utils/compare/reakit-utils@0.6.7...reakit-utils@0.7.0) (2019-11-08) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "reakit-utils", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "Reakit utils", | ||
@@ -37,3 +37,3 @@ "sideEffects": false, | ||
}, | ||
"gitHead": "3a989a72b6161b69e40207bda5436da117554c0b" | ||
"gitHead": "a05b07b10dc045401c49ed56e7de0440be252c55" | ||
} |
# reakit-utils | ||
<a href="https://npmjs.org/package/reakit-utils"><img alt="NPM version" src="https://img.shields.io/npm/v/reakit-utils.svg?style=flat-square" /></a> | ||
<a href="https://npmjs.org/package/reakit-utils"><img alt="NPM version" src="https://img.shields.io/npm/v/reakit-utils.svg" /></a> | ||
@@ -5,0 +5,0 @@ > **This is experimental** and may have breaking changes in minor versions. |
@@ -63,4 +63,4 @@ import * as React from "react"; | ||
export type UnionToIntersection<U> = (U extends any | ||
? (k: U) => void | ||
: never) extends ((k: infer I) => void) | ||
? (k: U) => void | ||
: never) extends (k: infer I) => void | ||
? I | ||
@@ -67,0 +67,0 @@ : never; |
@@ -42,3 +42,3 @@ import * as React from "react"; | ||
*/ | ||
export declare type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends ((k: infer I) => void) ? I : never; | ||
export declare type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never; | ||
/** | ||
@@ -45,0 +45,0 @@ * Same as Pick, but with value types instead of key |
Sorry, the diff of this file is not supported yet
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
275789