react-virtualized
Advanced tools
Comparing version 4.6.1 to 4.6.2
Changelog | ||
------------ | ||
#### 4.6.2 | ||
Replaced single occurence of `Number.isNaN` with `isNaN` to avoid IE compatibility issues. Maybe in the future I will add a polyfill dependency but I did not intend to introduce this without a major version bump so I'm removing it. | ||
#### 4.6.1 | ||
Removes `event.stopPropagation` since it was unnecessary to prevent keyboard event bubbling, only to prevent the default browser behavior. | ||
#### 4.6.0 | ||
@@ -5,0 +11,0 @@ Relocated a couple of static style properties from inline style object to exported CSS file for easier customization. |
@@ -6,3 +6,3 @@ { | ||
"user": "bvaughn", | ||
"version": "4.6.1", | ||
"version": "4.6.2", | ||
"scripts": { | ||
@@ -9,0 +9,0 @@ "build": "npm run build:css && npm run build:dist && npm run build:demo", |
@@ -211,3 +211,3 @@ /** | ||
if (size == null || Number.isNaN(size)) { | ||
if (size == null || isNaN(size)) { | ||
throw Error(`Invalid size returned for cell ${i} of value ${size}`) | ||
@@ -214,0 +214,0 @@ } |
Sorry, the diff of this file is too big to display
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
660355