react-polymorphic-types
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -10,2 +10,9 @@ # Changelog | ||
## [1.0.2] - 2020-12-27 | ||
### Changed | ||
- block external access to auxiliary types | ||
- reference `@types/react` explicitly | ||
## [1.0.1] - 2020-12-27 | ||
@@ -24,4 +31,5 @@ | ||
[unreleased]: https://github.com/kripod/react-polymorphic-types/compare/v1.0.1...HEAD | ||
[unreleased]: https://github.com/kripod/react-polymorphic-types/compare/v1.0.2...HEAD | ||
[1.0.2]: https://github.com/kripod/react-polymorphic-types/compare/v1.0.1...v1.0.2 | ||
[1.0.1]: https://github.com/kripod/react-polymorphic-types/compare/v1.0.0...v1.0.1 | ||
[1.0.0]: https://github.com/kripod/react-polymorphic-types/releases/tag/v1.0.0 |
@@ -0,1 +1,6 @@ | ||
/// <reference types="react" /> | ||
// Block external access to auxiliary types | ||
export {}; | ||
type Merge<T, U> = Omit<T, keyof U> & U; | ||
@@ -2,0 +7,0 @@ |
{ | ||
"name": "react-polymorphic-types", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Zero-runtime polymorphic component definitions for React", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
7648
51