Skip to content

Tags: angularsen/react-virtualized

Tags

7.3.2

Toggle 7.3.2's commit message
Edge-case bug fix for `CellMeasurer` in the event that its `getRowHei…

…ght` or `getColumnWidth` method gets called before the initial render completes.

7.3.1

Toggle 7.3.1's commit message
Increased the safe-scale size from 1,000,000 to 10,000,000 to make fo…

…r better UX.

7.3.0

Toggle 7.3.0's commit message
`Grid` (and its HOCs `FlexTable` and `VirtualScroll`) now support lar…

…ger heights and widths than browsers support natively.

For example, the current version of Chrome will not allow users to scroll pass ~33.5M pixel offset.
To work around this limitation, `Grid` increases the density of cells, shifting them as a ratio of what the full scrollable size would be to a browser-safe size.
This should be more or less transparent to users, although in extreme cases it can lead to _really sensitive_ scroll responsiveness.

7.2.0

Toggle 7.2.0's commit message
Added new method- `measureAllCells`- to `Grid`, `FlexTable`, and `Vir…

…tualScroll` to force-measure all cells.

This supports special use-cases where deferred measuring is not desired.

Added `estimatedRowSize` property to `FlexTable` and `VirtualScroll` to be passed through to the inner `Grid`.

Also added guard to ensure the `onScroll` callback for `Collection`, `Grid`, `FlexTable`, and `VirtualScroll` is never called with a negative number.

7.1.3

Toggle 7.1.3's commit message
The inner javascript-detect-element-resize library used by `AutoSizer…

…` now passes the proper `useCapture` value when removing listeners as well. This should prevent lingering event listeners in certain cases.

7.1.2

Toggle 7.1.2's commit message
Added "_center_" option for `scrollToAlignment` property of `Collecti…

…on`, `Grid`, `FlexTable`, and `VirtualScroll`.

Thanks to @edulan for the contribution!

Also added a check to avoid rendering content frmo `noContentRenderer` if `width` or `height` are 0.

7.1.1

Toggle 7.1.1's commit message
Resolved edge-case bug that caused the bottom/right cells in a `Grid`…

… or `Collection` to be partially overlapped by a scrollbar.

7.1.0

Toggle 7.1.0's commit message
Added `scrollToAlignment` property to `Collection`, `Grid`, `FlexTabl…

…e`, and `VirtualScroll` to offer finer-grained control of how scrolled-to cells are aligned.

Default behavior ("_auto_") remains unchanged- the least amount of scrolling will occur to ensure that the specified cell is visible.

7.0.5

Toggle 7.0.5's commit message
Fixed edge-case bug where `InfiniteLoader` did not respect `minBatchS…

…ize` setting when a user was scrolling up.

7.0.4

Toggle 7.0.4's commit message
Added `scrollLeft` and `scrollTop` parameters to `cellRangeRenderer` …

…callback for `Grid`.