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

react-window

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-window - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

3

CHANGELOG.md
Changelog
------------
##### 1.0.3
* 🐛 Avoid unnecessary scrollbars for lists (e.g. no horizontal scrollbar for a vertical list) unless content requires them.
##### 1.0.2

@@ -5,0 +8,0 @@

4

dist/index.cjs.js

@@ -1057,6 +1057,6 @@ 'use strict';

style: {
height: direction === 'horizontal' ? height : estimatedTotalSize,
height: direction === 'horizontal' ? '100%' : estimatedTotalSize,
overflow: 'hidden',
pointerEvents: isScrolling ? 'none' : '',
width: direction === 'horizontal' ? estimatedTotalSize : width
width: direction === 'horizontal' ? estimatedTotalSize : '100%'
}

@@ -1063,0 +1063,0 @@ }));

@@ -1053,6 +1053,6 @@ import { createElement, PureComponent } from 'react';

style: {
height: direction === 'horizontal' ? height : estimatedTotalSize,
height: direction === 'horizontal' ? '100%' : estimatedTotalSize,
overflow: 'hidden',
pointerEvents: isScrolling ? 'none' : '',
width: direction === 'horizontal' ? estimatedTotalSize : width
width: direction === 'horizontal' ? estimatedTotalSize : '100%'
}

@@ -1059,0 +1059,0 @@ }));

{
"name": "react-window",
"version": "1.0.2",
"version": "1.0.3",
"description":

@@ -5,0 +5,0 @@ "React components for efficiently rendering large, scrollable lists and tabular data",

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