react-virtualized
react-virtualized copied to clipboard
React components for efficiently rendering large lists and tabular data
## Bug Report Example: https://codesandbox.io/s/zjrsfp?file=/Example.js ### What is the current behavior? Increasing the x and y values of the "dimensions" constant in the example will dramatically increase memory usage of...
i beg your pardon 1、i wrote a simple demo to demostrate this problem https://codesandbox.io/s/wizardly-nightingale-449cko 2、the operation steps for produce the problem - click the 2nd div - click the 3rd...
There is in the end unused and not existing import. Seems like generated by mistake https://unpkg.com/[email protected]/dist/es/WindowScroller/utils/onScroll.js ```js import { bpfrpt_proptype_WindowScroller } from '../WindowScroller.js'; ``` /cc @brigand
if there is no reason to not support react 17+ i suggest adding react ^17.0.0 to peer dependencies and there is ^17.0.1 I found many other libs to have ^17.0.0...
When `fixedXX` is set to `true`, `cache.getXX` will return the default value. But the measure method always compares `width == cache.getWidth` and `height == cache.getHeight`, which may always `false` and...
https://github.com/bvaughn/react-virtualized/blob/master/source/CellMeasurer/CellMeasurer.js#L86 offsetHeight will always round the value to an integer, Math.ceil has no effect and may be loss 0.x px
I use the LIST component to display the data on screen, do you know if that component or any other has this option? Something like that 
I would like to rerender the whole masonry component when a specific event is triggered in the app. How can I do that?
## Bug Report Scroll restoration doesn't work with AutoSizer. This is my code: **rowCount is changed because it's an infinite scroll list. ```js {({ height, isScrolling, onChildScroll, scrollTop }) =>...
Hi @bvaughn , I'm loving this Table and it provides almost all the required features. Two quick questions though. 1. Is it possible to have a footer or something of...