react-window
Advanced tools
Comparing version 1.5.0 to 1.5.1
Changelog | ||
------------ | ||
### 1.5.1 | ||
* 🐛 Updated `getDerivedState` Flow annotations to address a warning in a newer version of Flow. | ||
### 1.5.0 | ||
@@ -5,0 +8,0 @@ * 🎉 Added advanced memoization helpers methods `areEqual` and `shouldComponentUpdate` for item renderers. - [#114](https://github.com/bvaughn/react-window/issues/114) |
{ | ||
"name": "react-window", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": | ||
@@ -5,0 +5,0 @@ "React components for efficiently rendering large, scrollable lists and tabular data", |
@@ -193,3 +193,3 @@ // @flow | ||
prevState: State | ||
): $Shape<State> { | ||
): $Shape<State> | null { | ||
validateSharedProps(nextProps); | ||
@@ -196,0 +196,0 @@ validateProps(nextProps); |
@@ -159,3 +159,3 @@ // @flow | ||
state: State | ||
): $Shape<State> { | ||
): $Shape<State> | null { | ||
validateSharedProps(props); | ||
@@ -162,0 +162,0 @@ validateProps(props); |
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
207386