React virtualized

React components for efficiently rendering large lists and tabular data. Check out the demo for some examples.

If you like this project, 🎉 become a sponsor or ☕ buy me a coffee

Sponsors

The following wonderful companies have sponsored react-virtualized:

Learn more about becoming a sponsor!

A word about react-window

If you're considering adding react-virtualized to a project, take a look at react-window as a possible lighter-weight alternative. Learn more about how the two libraries compare here.

Getting started

Install react-virtualized using npm.

npm install react-virtualized --save

ES6, CommonJS, and UMD builds are available with each distribution. For example:

// Most of react-virtualized's styles are functional (eg position, size).
// Functional styles are applied directly to DOM elements.
// The Table component ships with a few presentational styles as well.
// They are optional, but if you want them you will need to also import the CSS file.
// This only needs to be done once; probably during your application's bootstrapping process.
import 'react-virtualized/styles.css';

// You can import any component you want as a named export from 'react-virtualized', eg
import {Column, Table} from 'react-virtualized';

// But if you only use a few react-virtualized components,
// And you're concerned about increasing your application's bundle size,
// You can directly import only the components you need, like so:
import AutoSizer from 'react-virtualized/dist/commonjs/AutoSizer';
import List from 'react-virtualized/dist/commonjs/List';

Note webpack 4 makes this optimization itself, see the documentation.

If the above syntax looks too cumbersome, or you import react-virtualized components from a lot of places, you can also configure a Webpack alias. For example:

// Partial webpack.config.js
{
  alias: {
    'react-virtualized/List': 'react-virtualized/dist/es/List',
  },
  ...rest
}

Then you can just import like so:

import List from 'react-virtualized/List';

// Now you can use <List {...props} />

You can also use a global-friendly UMD build:

<link rel="stylesheet" href="path-to-react-virtualized/styles.css" />
<script src="path-to-react-virtualized/dist/umd/react-virtualized.js"></script>

Now you're ready to start using the components. You can learn more about which components react-virtualized has to offer below.

Dependencies

React Virtualized has very few dependencies and most are managed by NPM automatically. However the following peer dependencies must be specified by your project in order to avoid version conflicts: react, react-dom. NPM will not automatically install these for you but it will show you a warning message with instructions on how to install them.

Pure Components

By default all react-virtualized components use shallowCompare to avoid re-rendering unless props or state has changed. This occasionally confuses users when a collection's data changes (eg ['a','b','c'] => ['d','e','f']) but props do not (eg array.length).

The solution to this is to let react-virtualized know that something external has changed. This can be done a couple of different ways.

Pass-thru props

The shallowCompare method will detect changes to any props, even if they aren't declared as propTypes. This means you can also pass through additional properties that affect cell rendering to ensure changes are detected. For example, if you're using List to render a list of items that may be re-sorted after initial render- react-virtualized would not normally detect the sort operation because none of the properties it deals with change. However you can pass through the additional sort property to trigger a re-render. For example:

<List {...listProps} sortBy={sortBy} />
Public methods

Grid and Collection components can be forcefully re-rendered using forceUpdate. For Table and List, you'll need to call forceUpdateGrid to ensure that the inner Grid is also updated. For MultiGrid, you'll need to call forceUpdateGrids to ensure that the inner Grids are updated.

Documentation

API documentation available here.

There are also a couple of how-to guides:

Examples

Examples for each component can be seen in the documentation.

Here are some online demos of each component:

And here are some "recipe" type demos:

Supported Browsers

react-virtualized aims to support all evergreen browsers and recent mobile browsers for iOS and Android. IE 9+ is also supported (although IE 9 will require some user-defined, custom CSS since flexbox layout is not supported).

If you find a browser-specific problem, please report it along with a repro case. The easiest way to do this is probably by forking this Plunker.

Friends

Here are some great components built on top of react-virtualized:

  • react-infinite-calendar: Infinite scrolling date-picker with localization, themes, keyboard support, and more
  • react-sortable-hoc: Higher-order components to turn any list into an animated, touch-friendly, sortable list
  • react-sortable-tree: Drag-and-drop sortable representation of hierarchical data
  • react-virtualized-checkbox: Checkbox group component with virtualization for large number of options
  • react-virtualized-select: Drop-down menu for React with windowing to support large numbers of options.
  • react-virtualized-tree: A reactive tree component that aims to render large sets of tree structured data in an elegant and performant way
  • react-timeline-9000: A calendar timeline component that is capable of displaying and interacting with a large number of items

Contributions

Use GitHub issues for requests.

I actively welcome pull requests; learn how to contribute.

Changelog

Changes are tracked in the changelog.

License

react-virtualized is available under the MIT License.

bvaughn/react-virtualized

{
"props": {
"initialPayload": {
"allShortcutsEnabled": false,
"path": "/",
"repo": {
"id": 45431898,
"defaultBranch": "master",
"name": "react-virtualized",
"ownerLogin": "bvaughn",
"currentUserCanPush": false,
"isFork": false,
"isEmpty": false,
"createdAt": "2015-11-03T00:48:07.000Z",
"ownerAvatar": "https://avatars.githubusercontent.com/u/29597?v=4",
"public": true,
"private": false,
"isOrgOwned": false
},
"currentUser": null,
"refInfo": {
"name": "master",
"listCacheKey": "v0:1681759520.0",
"canEdit": false,
"refType": "branch",
"currentOid": "e78651c3d844c6f639347d1fb796072783c175d2"
},
"tree": {
"items": [
{
"name": ".circleci",
"path": ".circleci",
"contentType": "directory"
},
{
"name": ".github",
"path": ".github",
"contentType": "directory"
},
{
"name": "codemods",
"path": "codemods",
"contentType": "directory"
},
{
"name": "docs",
"path": "docs",
"contentType": "directory"
},
{
"name": "playground",
"path": "playground",
"contentType": "directory"
},
{
"name": "source",
"path": "source",
"contentType": "directory"
},
{
"name": ".babelrc.js",
"path": ".babelrc.js",
"contentType": "file"
},
{
"name": ".eslintignore",
"path": ".eslintignore",
"contentType": "file"
},
{
"name": ".eslintrc",
"path": ".eslintrc",
"contentType": "file"
},
{
"name": ".flowconfig",
"path": ".flowconfig",
"contentType": "file"
},
{
"name": ".gitignore",
"path": ".gitignore",
"contentType": "file"
},
{
"name": ".nvmrc",
"path": ".nvmrc",
"contentType": "file"
},
{
"name": ".prettierrc",
"path": ".prettierrc",
"contentType": "file"
},
{
"name": ".watchmanconfig",
"path": ".watchmanconfig",
"contentType": "file"
},
{
"name": "CHANGELOG.md",
"path": "CHANGELOG.md",
"contentType": "file"
},
{
"name": "CODE_OF_CONDUCT.md",
"path": "CODE_OF_CONDUCT.md",
"contentType": "file"
},
{
"name": "CONTRIBUTING.md",
"path": "CONTRIBUTING.md",
"contentType": "file"
},
{
"name": "LICENSE",
"path": "LICENSE",
"contentType": "file"
},
{
"name": "README.md",
"path": "README.md",
"contentType": "file"
},
{
"name": "index.html",
"path": "index.html",
"contentType": "file"
},
{
"name": "jest-puppeteer.config.js",
"path": "jest-puppeteer.config.js",
"contentType": "file"
},
{
"name": "jest.config.js",
"path": "jest.config.js",
"contentType": "file"
},
{
"name": "package.json",
"path": "package.json",
"contentType": "file"
},
{
"name": "postcss.config.js",
"path": "postcss.config.js",
"contentType": "file"
},
{
"name": "rollup.config.js",
"path": "rollup.config.js",
"contentType": "file"
},
{
"name": "webpack.config.demo.js",
"path": "webpack.config.demo.js",
"contentType": "file"
},
{
"name": "webpack.config.dev.js",
"path": "webpack.config.dev.js",
"contentType": "file"
},
{
"name": "yarn.lock",
"path": "yarn.lock",
"contentType": "file"
}
],
"templateDirectorySuggestionUrl": null,
"readme": null,
"totalCount": 28,
"showBranchInfobar": false
},
"fileTree": null,
"fileTreeProcessingTime": null,
"foldersToFetch": [],
"treeExpanded": false,
"symbolsExpanded": false,
"isOverview": true,
"overview": {
"banners": {
"shouldRecommendReadme": false,
"isPersonalRepo": false,
"showUseActionBanner": false,
"actionSlug": null,
"actionId": null,
"showProtectBranchBanner": false,
"publishBannersInfo": {
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_repo",
"releasePath": "/bvaughn/react-virtualized/releases/new?marketplace=true",
"showPublishActionBanner": false
},
"interactionLimitBanner": null,
"showInvitationBanner": false,
"inviterName": null
},
"codeButton": {
"contactPath": "/contact",
"isEnterprise": false,
"local": {
"protocolInfo": {
"httpAvailable": true,
"sshAvailable": null,
"httpUrl": "https://github.com/bvaughn/react-virtualized.git",
"showCloneWarning": null,
"sshUrl": null,
"sshCertificatesRequired": null,
"sshCertificatesAvailable": null,
"ghCliUrl": "gh repo clone bvaughn/react-virtualized",
"defaultProtocol": "http",
"newSshKeyUrl": "/settings/ssh/new",
"setProtocolPath": "/users/set_protocol"
},
"platformInfo": {
"cloneUrl": "https://desktop.github.com",
"showVisualStudioCloneButton": false,
"visualStudioCloneUrl": "https://windows.github.com",
"showXcodeCloneButton": false,
"xcodeCloneUrl": "https://developer.apple.com",
"zipballUrl": "/bvaughn/react-virtualized/archive/refs/heads/master.zip"
}
},
"newCodespacePath": "/codespaces/new?hide_repo_select=true&repo=45431898"
},
"popovers": {
"rename": null,
"renamedParentRepo": null
},
"commitCount": "1,988",
"overviewFiles": [
{
"displayName": "README.md",
"repoName": "react-virtualized",
"refName": "master",
"path": "README.md",
"preferredFileType": "readme",
"tabName": "README",
"richText": "<article class=\"markdown-body entry-content container-lg\" itemprop=\"text\"><p dir=\"auto\"><a href=\"http://bvaughn.github.io/react-virtualized/\" rel=\"nofollow\"><img src=\"https://cloud.githubusercontent.com/assets/29597/11737732/0ca1e55e-9f91-11e5-97f3-098f2f8ed866.png\" alt=\"React virtualized\" width=\"330\" height=\"100\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">React components for efficiently rendering large lists and tabular data.\nCheck out <a href=\"https://bvaughn.github.io/react-virtualized/\" rel=\"nofollow\">the demo</a> for some examples.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">If you like this project, 🎉 <a href=\"https://github.com/sponsors/bvaughn/\">become a sponsor</a> or ☕ <a href=\"http://givebrian.coffee/\" rel=\"nofollow\">buy me a coffee</a></h3><a id=\"user-content-if-you-like-this-project--become-a-sponsor-or--buy-me-a-coffee\" class=\"anchor\" aria-label=\"Permalink: If you like this project, 🎉 become a sponsor or ☕ buy me a coffee\" href=\"#if-you-like-this-project--become-a-sponsor-or--buy-me-a-coffee\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Sponsors</h3><a id=\"user-content-sponsors\" class=\"anchor\" aria-label=\"Permalink: Sponsors\" href=\"#sponsors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The following wonderful companies have sponsored react-virtualized:</p>\n<p dir=\"auto\"><a href=\"https://www.treasuredata.com/\" rel=\"nofollow\"><img width=\"64\" height=\"64\" title=\"Treasure Data\" src=\"https://cloud.githubusercontent.com/assets/29597/17391516/962647f8-59cb-11e6-83be-aa1bac299dd0.png\" style=\"max-width: 100%;\"></a>\n<a href=\"https://developer.hpe.com/\" rel=\"nofollow\"><img width=\"64\" height=\"64\" title=\"HPE Dev\" src=\"https://user-images.githubusercontent.com/5983843/37311298-1c3a711a-261d-11e8-9129-ef1589d7063f.png\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/0/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/bd18bfe6a0c6b62eb6bbc9caec475c1e5d357e79e5aa6915b74be082acef657f/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f302f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/0/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/1/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/5cd7b177651d382bc6d2ee48b27b2dc8a4f54f64b2b6230b2b453c84b547248f/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f312f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/1/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/2/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/8a3c0a9b4e976fb9c92f198b7159bc2da1229ed1b7480193cebf6b77d92ef94d/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f322f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/2/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/3/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/d2fb1500585f1e130d2ecc1aa9346b59250625efce59f16f4880e5355476af96/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f332f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/3/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/4/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/2f5ba9b1d74f18ef166cdce98f6c2f1c2e07d09a59e934dc07f6d44f61d3acc6/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f342f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/4/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/5/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/f24c83b2e4efffac6eb303fca4f5a242da929ae3f4c500c5c218c6cb20ce8653/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f352f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/5/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/6/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/df3b1598a483189a2ede7b0a3de15f43212115d2b9ffde208b9009d207ec4fab/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f362f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/6/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/7/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/f057cbc590bb29f5b1c9e49004abf458b9d61d605d95fb8c1a3ffcc87c309f9c/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f372f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/7/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/8/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/6a50719474290c4ec3402f2b92479e739af8bdac0bd0a1d81cbe070528d839bf/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f382f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/8/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/9/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/0a7abe3cf63db2b88de2071932d1a67a61737aee6a520663e7be4fe6eb681752/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f392f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/9/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/10/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/13b1651973c24aa5a8fdcd3ddedcfbe8036d04ddf581f8193928bb52d485924f/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31302f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/10/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/11/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/f1c36c28c67e810d59a4c93b902810daf405682d982956789d45115fcff6c227/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31312f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/11/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/12/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/55643c258c17d2dd20b56bcca2dd355c794e294f2bcdb69305d6e98eb92fbfed/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31322f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/12/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/13/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/c7a0256c1b9d37e7ce74c76ea49f55f5ccef5e965f9891e975519772fc5643cf/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31332f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/13/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/14/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/09c19e256d7706c703b37b12d3d2488f25c59a2bf6fe6b2807957c3086088d4e/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31342f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/14/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/15/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/ddad0396edd91b7d2008b80546e24937f43600e4f65133caf708b63df68e9362/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31352f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/15/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/16/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/56837aaec4abb7848316d0a84e8038fd065b06cec211e02fe5c722eb0cba428c/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31362f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/16/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/17/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/443cd0e4cd6a4773e49d3742046a9e2527b923b9cd6897ce22e979817ede3328/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31372f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/17/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/18/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/14d3bb85a7bd5708c7bbf54dadf38570ef916f41aebfa4e3b9ceda79c8edfb8f/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31382f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/18/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/19/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/ff4a46913fd390da71b895df3ebca74f1eed1ca7d0b56be14fdbffe21b9aaf84/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f31392f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/19/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/20/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/b914222c8d1278554b608622e360aef16187aeab636c5a5384211d2780b7435c/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32302f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/20/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/21/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/b230808bd30a8340f5e4e507d62da9b756a4c626d89b9860c884c71c039236d4/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32312f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/21/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/22/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/3935a7c72311291cbdd34e2f6799b4fbdc7fa7e1074bc2e669c860e77b92d293/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32322f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/22/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/23/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/c3a2431d44e6088835eb9416300a4518586e3900516e23ee21f13431fff567a8/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32332f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/23/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/24/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/dcdb9f24175545627b8fb8ee003c7daaea9eb21a3d8bbe4077540d147965e29f/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32342f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/24/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/25/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/4c4d93a46d1473b8f5e03dd9187cda780cd8496360de4eb554de740a6b1bf80a/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32352f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/25/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/26/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/93b06b71cb85f0a4c287fc427d302228b1be6c4fc3e1edd3000d49ab9043b2cc/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32362f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/26/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/27/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/c5e46df8bf674f926802ac1b94fdb36892bfcab57b57c75b7f54aad0514f6b11/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32372f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/27/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/28/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/43965618df87db1d40e8f473e89af69fe32b3203051d2de3c3baba6d862ab66e/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32382f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/28/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/sponsor/29/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/82368880f6f14415dcf9e61f9454fb9edf421ab4529b8356235021c06a6df229/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f73706f6e736f722f32392f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/sponsor/29/avatar.svg\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\"><a href=\"https://opencollective.com/react-virtualized#sponsor\" rel=\"nofollow\">Learn more about becoming a sponsor!</a></p>\n<p dir=\"auto\"><a href=\"https://opencollective.com/react-virtualized/backer/0/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/3dde777a7cce68eb2a61be1ce6d85ee69d1bfb300b1262c301cd68ff11eb54c3/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f302f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/0/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/1/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/3c37f937675c46a34395395fac6ca220a28e7b76032bc02b2a64d7d7b8bc1f05/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f312f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/1/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/2/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/b8cfd863d096149e887979eb32e52c15c1daa881d6863866a36cd0b23f9454a6/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f322f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/2/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/3/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/ea2e29d0136c3545c8dadcb6eccc0503828d06770f39438e331055bb86cb2db0/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f332f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/3/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/4/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/b4f06386c905ea10411355c59bbfee1baf9113b8df10325d6ae66901f2aed6a9/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f342f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/4/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/5/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/023ad0044287e1451d8bc751850d414fdbb0fe33b6e315a9c138e156f6b009d8/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f352f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/5/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/6/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/c2947371a522044cfcc11c950951edb785964e962dd219121fc75e4e30c6fc2d/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f362f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/6/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/7/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/71d666b0e1cb1b791146d4692ca8fa1b30120336b63ffe6cd16d0dbf767c4641/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f372f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/7/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/8/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/fd36cf746095b3bdab395f4b15d23f7d28a8d70ecdddd7f9a8f94cedf1189a6b/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f382f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/8/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/9/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/4c7f6a329e77ab1e9db8ddb8305827cdd6c8a471d928c8012931e576f6105e60/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f392f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/9/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/10/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/9d7cdc0988cf8d13b8e1a6639c5f8d484180fb6e9df09c2bd1d41c35ed501ef4/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31302f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/10/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/11/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/0b3cb21cbe0dc15364c95bfb8f7c7d773673caad69be066c16fe0aa3ab0ee2ed/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31312f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/11/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/12/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/bd8470023df60bf9ddfe80773c87dd1b9df085c5993d9967cd5178564760cff2/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31322f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/12/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/13/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/c18dc605442301f1ae806323fad265571068916e535757fac883b6bf8bca54f9/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31332f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/13/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/14/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/956bc77b0317b1bf10a599b577920dd40fc49d4b35390612580ebda8cdd5e93b/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31342f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/14/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/15/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/e998b1d350095d632c1cee52379a3100702676c2a860dccbc6c22a89369bcc6a/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31352f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/15/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/16/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/2e904dffd031f211c824139d5f08b9952577b09e30df34752925b1a763d68ea2/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31362f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/16/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/17/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/4a01bb121c02165c0ee0da9e0b5c02ed18a1bc76a3e6f3b01bb7af9e8af49ca1/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31372f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/17/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/18/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/2acaf3af3b8469e4bfcc79761aced90eeadee4eef8908d6bb115d666dbcdf9dd/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31382f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/18/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/19/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/1b2d3977177769c4dee15c7b8b065681742c78294b4f63dc3c693e2ff6edb8a0/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f31392f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/19/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/20/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/29f1ac1ce10881c3749d42f1d6019e0896f32811d1df3d13b8586f345b84e4bf/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32302f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/20/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/21/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/f7ae06f5f17750985d97d6f94490ca89bcd0ad3efcb8e4822519ef72e9e2f977/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32312f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/21/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/22/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/06999c4dd1f4cd214e95fb8d63712bf5342d49105f77e30f0048b0759e045868/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32322f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/22/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/23/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/616ea39375f9d4beba9aac8f3989e305fae46bc15683ecf22bb9e8a282841ccb/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32332f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/23/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/24/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/68b13934cbdb49359c010af6c81a825521326ee7ea0df1e928106e470e261562/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32342f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/24/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/25/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/c5d6673cd1d3409406e02a4e604c1e7af6efafefae1b213427cd9931594ad3b7/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32352f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/25/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/26/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/9ec047805ebb1e8d51dce4177aea86b5e7fc4bb555a172b6e190ab30805141a6/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32362f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/26/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/27/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/c2bc12dcf363b45945e621d2191f75db6ca8a4941a80d33e108cf1a15d7e5d4c/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32372f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/27/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/28/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/1d4174ad8164fc2c341d875ac68f9b2c23f6c0ff4d42b5ab22a202716d5b3f8d/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32382f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/28/avatar.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/react-virtualized/backer/29/website\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/2c31b4b1101bb67825778c7fb35c3b4783ced64c9f73e3f5000d3b075f1408f6/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f72656163742d7669727475616c697a65642f6261636b65722f32392f6176617461722e737667\" data-canonical-src=\"https://opencollective.com/react-virtualized/backer/29/avatar.svg\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">A word about <code>react-window</code></h2><a id=\"user-content-a-word-about-react-window\" class=\"anchor\" aria-label=\"Permalink: A word about react-window\" href=\"#a-word-about-react-window\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">If you're considering adding <code>react-virtualized</code> to a project, take a look at <a href=\"https://github.com/bvaughn/react-window\"><code>react-window</code></a> as a possible lighter-weight alternative. <a href=\"https://github.com/bvaughn/react-window#how-is-react-window-different-from-react-virtualized\">Learn more about how the two libraries compare here.</a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Getting started</h2><a id=\"user-content-getting-started\" class=\"anchor\" aria-label=\"Permalink: Getting started\" href=\"#getting-started\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Install <code>react-virtualized</code> using npm.</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npm install react-virtualized --save\"><pre>npm install react-virtualized --save</pre></div>\n<p dir=\"auto\">ES6, CommonJS, and UMD builds are available with each distribution.\nFor example:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"// Most of react-virtualized's styles are functional (eg position, size).\n// Functional styles are applied directly to DOM elements.\n// The Table component ships with a few presentational styles as well.\n// They are optional, but if you want them you will need to also import the CSS file.\n// This only needs to be done once; probably during your application's bootstrapping process.\nimport 'react-virtualized/styles.css';\n\n// You can import any component you want as a named export from 'react-virtualized', eg\nimport {Column, Table} from 'react-virtualized';\n\n// But if you only use a few react-virtualized components,\n// And you're concerned about increasing your application's bundle size,\n// You can directly import only the components you need, like so:\nimport AutoSizer from 'react-virtualized/dist/commonjs/AutoSizer';\nimport List from 'react-virtualized/dist/commonjs/List';\"><pre><span class=\"pl-c\">// Most of react-virtualized's styles are functional (eg position, size).</span>\n<span class=\"pl-c\">// Functional styles are applied directly to DOM elements.</span>\n<span class=\"pl-c\">// The Table component ships with a few presentational styles as well.</span>\n<span class=\"pl-c\">// They are optional, but if you want them you will need to also import the CSS file.</span>\n<span class=\"pl-c\">// This only needs to be done once; probably during your application's bootstrapping process.</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-s\">'react-virtualized/styles.css'</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// You can import any component you want as a named export from 'react-virtualized', eg</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-kos\">{</span><span class=\"pl-v\">Column</span><span class=\"pl-kos\">,</span> <span class=\"pl-v\">Table</span><span class=\"pl-kos\">}</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'react-virtualized'</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// But if you only use a few react-virtualized components,</span>\n<span class=\"pl-c\">// And you're concerned about increasing your application's bundle size,</span>\n<span class=\"pl-c\">// You can directly import only the components you need, like so:</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-v\">AutoSizer</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'react-virtualized/dist/commonjs/AutoSizer'</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-v\">List</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'react-virtualized/dist/commonjs/List'</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Note webpack 4 makes this optimization itself, see the <a href=\"https://webpack.js.org/guides/tree-shaking/#mark-the-file-as-side-effect-free\" rel=\"nofollow\">documentation</a>.</p>\n<p dir=\"auto\">If the above syntax looks too cumbersome, or you import react-virtualized components from a lot of places, you can also configure a Webpack alias. For example:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"// Partial webpack.config.js\n{\n alias: {\n 'react-virtualized/List': 'react-virtualized/dist/es/List',\n },\n ...rest\n}\"><pre><span class=\"pl-c\">// Partial webpack.config.js</span>\n<span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">alias</span>: <span class=\"pl-kos\">{</span>\n <span class=\"pl-s\">'react-virtualized/List'</span>: <span class=\"pl-s\">'react-virtualized/dist/es/List'</span><span class=\"pl-kos\">,</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">,</span>\n ...<span class=\"pl-s1\">rest</span>\n<span class=\"pl-kos\">}</span></pre></div>\n<p dir=\"auto\">Then you can just import like so:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"import List from 'react-virtualized/List';\n\n// Now you can use &lt;List {...props} /&gt;\"><pre><span class=\"pl-k\">import</span> <span class=\"pl-v\">List</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'react-virtualized/List'</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// Now you can use &lt;List {...props} /&gt;</span></pre></div>\n<p dir=\"auto\">You can also use a global-friendly UMD build:</p>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;link rel=&quot;stylesheet&quot; href=&quot;path-to-react-virtualized/styles.css&quot; /&gt;\n&lt;script src=&quot;path-to-react-virtualized/dist/umd/react-virtualized.js&quot;&gt;&lt;/script&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">link</span> <span class=\"pl-c1\">rel</span>=\"<span class=\"pl-s\">stylesheet</span>\" <span class=\"pl-c1\">href</span>=\"<span class=\"pl-s\">path-to-react-virtualized/styles.css</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">script</span> <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">path-to-react-virtualized/dist/umd/react-virtualized.js</span>\"<span class=\"pl-kos\">&gt;</span><span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">script</span><span class=\"pl-kos\">&gt;</span></pre></div>\n<p dir=\"auto\">Now you're ready to start using the components.\nYou can learn more about which components react-virtualized has to offer <a href=\"#documentation\">below</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Dependencies</h2><a id=\"user-content-dependencies\" class=\"anchor\" aria-label=\"Permalink: Dependencies\" href=\"#dependencies\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">React Virtualized has very few dependencies and most are managed by NPM automatically.\nHowever the following peer dependencies must be specified by your project in order to avoid version conflicts:\n<a href=\"https://www.npmjs.com/package/react\" rel=\"nofollow\"><code>react</code></a>,\n<a href=\"https://www.npmjs.com/package/react-dom\" rel=\"nofollow\"><code>react-dom</code></a>.\nNPM will not automatically install these for you but it will show you a warning message with instructions on how to install them.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Pure Components</h2><a id=\"user-content-pure-components\" class=\"anchor\" aria-label=\"Permalink: Pure Components\" href=\"#pure-components\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">By default all react-virtualized components use <a href=\"https://facebook.github.io/react/docs/shallow-compare.html\" rel=\"nofollow\"><code>shallowCompare</code></a> to avoid re-rendering unless props or state has changed.\nThis occasionally confuses users when a collection's data changes (eg <code>['a','b','c']</code> =&gt; <code>['d','e','f']</code>) but props do not (eg <code>array.length</code>).</p>\n<p dir=\"auto\">The solution to this is to let react-virtualized know that something external has changed.\nThis can be done a couple of different ways.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h6 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Pass-thru props</h6><a id=\"user-content-pass-thru-props\" class=\"anchor\" aria-label=\"Permalink: Pass-thru props\" href=\"#pass-thru-props\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The <code>shallowCompare</code> method will detect changes to any props, even if they aren't declared as <code>propTypes</code>.\nThis means you can also pass through additional properties that affect cell rendering to ensure changes are detected.\nFor example, if you're using <code>List</code> to render a list of items that may be re-sorted after initial render- react-virtualized would not normally detect the sort operation because none of the properties it deals with change.\nHowever you can pass through the additional sort property to trigger a re-render.\nFor example:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;List {...listProps} sortBy={sortBy} /&gt;\"><pre><span class=\"pl-c1\">&lt;</span><span class=\"pl-ent\">List</span> <span class=\"pl-kos\">{</span>...<span class=\"pl-s1\">listProps</span><span class=\"pl-kos\">}</span> <span class=\"pl-c1\">sortBy</span><span class=\"pl-c1\">=</span><span class=\"pl-kos\">{</span><span class=\"pl-s1\">sortBy</span><span class=\"pl-kos\">}</span> <span class=\"pl-c1\">/</span><span class=\"pl-c1\">&gt;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h6 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Public methods</h6><a id=\"user-content-public-methods\" class=\"anchor\" aria-label=\"Permalink: Public methods\" href=\"#public-methods\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><code>Grid</code> and <code>Collection</code> components can be forcefully re-rendered using <a href=\"https://facebook.github.io/react/docs/component-api.html#forceupdate\" rel=\"nofollow\"><code>forceUpdate</code></a>.\nFor <code>Table</code> and <code>List</code>, you'll need to call <a href=\"https://github.com/bvaughn/react-virtualized/blob/master/docs/Table.md#forceupdategrid\"><code>forceUpdateGrid</code></a> to ensure that the inner <code>Grid</code> is also updated. For <code>MultiGrid</code>, you'll need to call <a href=\"https://github.com/bvaughn/react-virtualized/blob/master/docs/MultiGrid.md#forceupdategrids\"><code>forceUpdateGrids</code></a> to ensure that the inner <code>Grid</code>s are updated.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Documentation</h2><a id=\"user-content-documentation\" class=\"anchor\" aria-label=\"Permalink: Documentation\" href=\"#documentation\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">API documentation available <a href=\"/bvaughn/react-virtualized/blob/master/docs/README.md\">here</a>.</p>\n<p dir=\"auto\">There are also a couple of how-to guides:</p>\n<ul dir=\"auto\">\n<li><a href=\"/bvaughn/react-virtualized/blob/master/docs/customizingStyles.md\">Customizing classes and styles</a></li>\n<li><a href=\"/bvaughn/react-virtualized/blob/master/docs/reverseList.md\">Displaying items in reverse order</a></li>\n<li><a href=\"/bvaughn/react-virtualized/blob/master/docs/usingAutoSizer.md\">Using AutoSizer</a></li>\n<li><a href=\"/bvaughn/react-virtualized/blob/master/docs/creatingAnInfiniteLoadingList.md\">Creating an infinite-loading list</a></li>\n<li><a href=\"/bvaughn/react-virtualized/blob/master/docs/tableWithNaturalSort.md\">Natural sort Table</a></li>\n<li><a href=\"/bvaughn/react-virtualized/blob/master/docs/multiColumnSortTable.md\">Sorting a Table by multiple columns</a></li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Examples</h2><a id=\"user-content-examples\" class=\"anchor\" aria-label=\"Permalink: Examples\" href=\"#examples\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Examples for each component can be seen in <a href=\"/bvaughn/react-virtualized/blob/master/docs/README.md\">the documentation</a>.</p>\n<p dir=\"auto\">Here are some online demos of each component:</p>\n<ul dir=\"auto\">\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/ArrowKeyStepper\" rel=\"nofollow\">ArrowKeyStepper</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/AutoSizer\" rel=\"nofollow\">AutoSizer</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/CellMeasurer\" rel=\"nofollow\">CellMeasurer</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/Collection\" rel=\"nofollow\">Collection</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/ColumnSizer\" rel=\"nofollow\">ColumnSizer</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/Grid\" rel=\"nofollow\">Grid</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/InfiniteLoader\" rel=\"nofollow\">InfiniteLoader</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/List\" rel=\"nofollow\">List</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/Masonry\" rel=\"nofollow\">Masonry</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/MultiGrid\" rel=\"nofollow\">MultiGrid</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/ScrollSync\" rel=\"nofollow\">ScrollSync</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/Table\" rel=\"nofollow\">Table</a></li>\n<li><a href=\"https://bvaughn.github.io/react-virtualized/#/components/WindowScroller\" rel=\"nofollow\">WindowScroller</a></li>\n</ul>\n<p dir=\"auto\">And here are some \"recipe\" type demos:</p>\n<ul dir=\"auto\">\n<li><a href=\"https://codesandbox.io/s/j30k46l7xw\" rel=\"nofollow\">Table with resizable (drag and drop) columns</a></li>\n<li><a href=\"https://rawgit.com/bvaughn/react-virtualized/master/playground/tree.html\" rel=\"nofollow\">Collapsable tree view</a></li>\n<li><a href=\"https://rawgit.com/bvaughn/react-virtualized/master/playground/grid.html\" rel=\"nofollow\">Full-page grid (spreadsheet)</a></li>\n<li><a href=\"https://rawgit.com/bvaughn/react-virtualized/master/playground/chat.html\" rel=\"nofollow\">Dynamic cell measuring</a></li>\n<li><a href=\"https://rawgit.com/bvaughn/react-virtualized/master/playground/hover.html\" rel=\"nofollow\">Cell hover effects</a></li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Supported Browsers</h2><a id=\"user-content-supported-browsers\" class=\"anchor\" aria-label=\"Permalink: Supported Browsers\" href=\"#supported-browsers\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">react-virtualized aims to support all evergreen browsers and recent mobile browsers for iOS and Android. IE 9+ is also supported (although IE 9 will require some user-defined, custom CSS since flexbox layout is not supported).</p>\n<p dir=\"auto\">If you find a browser-specific problem, please report it along with a repro case. The easiest way to do this is probably by forking <a href=\"https://plnkr.co/edit/6syKo8cx3RfoO96hXFT1\" rel=\"nofollow\">this Plunker</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Friends</h2><a id=\"user-content-friends\" class=\"anchor\" aria-label=\"Permalink: Friends\" href=\"#friends\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Here are some great components built on top of react-virtualized:</p>\n<ul dir=\"auto\">\n<li><a href=\"https://github.com/clauderic/react-infinite-calendar\">react-infinite-calendar</a>: Infinite scrolling date-picker with localization, themes, keyboard support, and more</li>\n<li><a href=\"https://github.com/clauderic/react-sortable-hoc\">react-sortable-hoc</a>: Higher-order components to turn any list into an animated, touch-friendly, sortable list</li>\n<li><a href=\"https://github.com/fritz-c/react-sortable-tree\">react-sortable-tree</a>: Drag-and-drop sortable representation of hierarchical data</li>\n<li><a href=\"https://github.com/emilebres/react-virtualized-checkbox\">react-virtualized-checkbox</a>: Checkbox group component with virtualization for large number of options</li>\n<li><a href=\"https://github.com/bvaughn/react-virtualized-select\">react-virtualized-select</a>: Drop-down menu for React with windowing to support large numbers of options.</li>\n<li><a href=\"https://github.com/diogofcunha/react-virtualized-tree/\">react-virtualized-tree</a>: A reactive tree component that aims to render large sets of tree structured data in an elegant and performant way</li>\n<li><a href=\"https://github.com/BHP-DevHub/react-timeline-9000/\">react-timeline-9000</a>: A calendar timeline component that is capable of displaying and interacting with a large number of items</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Contributions</h2><a id=\"user-content-contributions\" class=\"anchor\" aria-label=\"Permalink: Contributions\" href=\"#contributions\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Use <a href=\"https://github.com/bvaughn/react-virtualized/issues\">GitHub issues</a> for requests.</p>\n<p dir=\"auto\">I actively welcome pull requests; learn how to <a href=\"https://github.com/bvaughn/react-virtualized/blob/master/CONTRIBUTING.md\">contribute</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Changelog</h2><a id=\"user-content-changelog\" class=\"anchor\" aria-label=\"Permalink: Changelog\" href=\"#changelog\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Changes are tracked in the <a href=\"https://github.com/bvaughn/react-virtualized/blob/master/CHANGELOG.md\">changelog</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">License</h2><a id=\"user-content-license\" class=\"anchor\" aria-label=\"Permalink: License\" href=\"#license\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><em>react-virtualized</em> is available under the MIT License.</p>\n</article>",
"loaded": true,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": [
{
"level": 3,
"text": "If you like this project, 🎉 become a sponsor or ☕ buy me a coffee",
"anchor": "if-you-like-this-project--become-a-sponsor-or--buy-me-a-coffee",
"htmlText": "If you like this project, 🎉 become a sponsor or ☕ buy me a coffee"
},
{
"level": 3,
"text": "Sponsors",
"anchor": "sponsors",
"htmlText": "Sponsors"
},
{
"level": 2,
"text": "A word about react-window",
"anchor": "a-word-about-react-window",
"htmlText": "A word about react-window"
},
{
"level": 2,
"text": "Getting started",
"anchor": "getting-started",
"htmlText": "Getting started"
},
{
"level": 2,
"text": "Dependencies",
"anchor": "dependencies",
"htmlText": "Dependencies"
},
{
"level": 2,
"text": "Pure Components",
"anchor": "pure-components",
"htmlText": "Pure Components"
},
{
"level": 6,
"text": "Pass-thru props",
"anchor": "pass-thru-props",
"htmlText": "Pass-thru props"
},
{
"level": 6,
"text": "Public methods",
"anchor": "public-methods",
"htmlText": "Public methods"
},
{
"level": 2,
"text": "Documentation",
"anchor": "documentation",
"htmlText": "Documentation"
},
{
"level": 2,
"text": "Examples",
"anchor": "examples",
"htmlText": "Examples"
},
{
"level": 2,
"text": "Supported Browsers",
"anchor": "supported-browsers",
"htmlText": "Supported Browsers"
},
{
"level": 2,
"text": "Friends",
"anchor": "friends",
"htmlText": "Friends"
},
{
"level": 2,
"text": "Contributions",
"anchor": "contributions",
"htmlText": "Contributions"
},
{
"level": 2,
"text": "Changelog",
"anchor": "changelog",
"htmlText": "Changelog"
},
{
"level": 2,
"text": "License",
"anchor": "license",
"htmlText": "License"
}
],
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fbvaughn%2Freact-virtualized"
}
},
{
"displayName": "CODE_OF_CONDUCT.md",
"repoName": "react-virtualized",
"refName": "master",
"path": "CODE_OF_CONDUCT.md",
"preferredFileType": "code_of_conduct",
"tabName": "Code of conduct",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fbvaughn%2Freact-virtualized"
}
},
{
"displayName": "LICENSE",
"repoName": "react-virtualized",
"refName": "master",
"path": "LICENSE",
"preferredFileType": "license",
"tabName": "MIT",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fbvaughn%2Freact-virtualized"
}
}
],
"overviewFilesProcessingTime": 0
}
},
"appPayload": {
"helpUrl": "https://docs.github.com",
"findFileWorkerPath": "/assets-cdn/worker/find-file-worker-1583894afd38.js",
"findInFileWorkerPath": "/assets-cdn/worker/find-in-file-worker-3a63a487027b.js",
"githubDevUrl": null,
"enabled_features": {
"code_nav_ui_events": false,
"overview_shared_code_dropdown_button": false,
"react_blob_overlay": false,
"copilot_conversational_ux_embedding_update": false,
"copilot_smell_icebreaker_ux": true,
"copilot_workspace": false
}
}
}
}
{
"accept-ranges": "bytes",
"cache-control": "max-age=0, private, must-revalidate",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com api.githubcopilot.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com/v1/engines/github-completion/completions proxy.enterprise.githubcopilot.com/v1/engines/github-completion/completions *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/",
"content-type": "text/html; charset=utf-8",
"date": "Sat, 27 Jul 2024 06:21:37 GMT",
"etag": "390f48360d4f7dd572d33b86d3a21788",
"referrer-policy": "no-referrer-when-downgrade",
"server": "GitHub.com",
"set-cookie": "logged_in=no; Path=/; Domain=github.com; Expires=Sun, 27 Jul 2025 06:21:37 GMT; HttpOnly; Secure; SameSite=Lax",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-request-id": "9BD8:32DAE2:B14A3B:E2CD8A:66A491E9",
"x-xss-protection": "0"
}