Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-virtualized

Package Overview
Dependencies
Maintainers
1
Versions
296
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-virtualized - npm Package Compare versions

Comparing version 2.7.1 to 2.7.2

3

CHANGELOG.md
Changelog
------------
#### 2.7.2
Updated check for undefined `document`.
#### 2.7.1

@@ -5,0 +8,0 @@ Replaced invalid `rowHeight instanceof Number` check with `typeof rowHeight === 'number'` in `VirtualScroll`.

2

package.json

@@ -6,3 +6,3 @@ {

"user": "bvaughn",
"version": "2.7.1",
"version": "2.7.2",
"scripts": {

@@ -9,0 +9,0 @@ "build": "npm run build:demo && npm run build:dist",

@@ -11,3 +11,3 @@ /**

// Check `document` as well in case of server-side rendering (see issue #41)
var attachEvent = document && document.attachEvent;
var attachEvent = typeof document !== 'undefined' && document.attachEvent;
var stylesCreated = false;

@@ -14,0 +14,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc