react-virtualized
Advanced tools
Comparing version 9.6.0 to 9.6.1
@@ -5,2 +5,5 @@ Changelog | ||
##### 9.6.0 | ||
* 🐛 Fixed an invalid import in a vendored file. | ||
##### 9.6.0 | ||
* 🎉 `WindowScroller` and `Grid` now support horizontal window-scrolling via new `autoWidth` property. ([@maxnowack](https://github.com/maxnowack) - [#644](https://github.com/bvaughn/react-virtualized/pull/644)) | ||
@@ -7,0 +10,0 @@ * 🐛 Fixed a Content Security Policy (CSP) issue in an upstream dependency that impacted users of the `Masonry` component. For more information see issue [#640](https://github.com/bvaughn/react-virtualized/issues/640). |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.default = createWrapper; | ||
var _binarySearchBounds = require("./binarySearchBounds"); | ||
@@ -21,4 +26,2 @@ | ||
module.exports = createWrapper; | ||
function IntervalTreeNode(mid, left, right, leftPoints, rightPoints) { | ||
@@ -25,0 +28,0 @@ this.mid = mid; |
@@ -16,4 +16,2 @@ /** | ||
module.exports = createWrapper; | ||
function IntervalTreeNode(mid, left, right, leftPoints, rightPoints) { | ||
@@ -382,3 +380,3 @@ this.mid = mid; | ||
function createWrapper(intervals) { | ||
export default function createWrapper(intervals) { | ||
if (!intervals || intervals.length === 0) { | ||
@@ -385,0 +383,0 @@ return new IntervalTree(null); |
@@ -6,3 +6,3 @@ { | ||
"user": "bvaughn", | ||
"version": "9.6.0", | ||
"version": "9.6.1", | ||
"homepage": "https://github.com/bvaughn/react-virtualized", | ||
@@ -9,0 +9,0 @@ "main": "dist/commonjs/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
2524213
36853