JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 22753
  • Score
    100M100P100Q144234F
  • License MIT

Drop-down menu for React with windowing to support large numbers of options.

Package Exports

  • react-virtualized-select
  • react-virtualized-select/styles.css

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-virtualized-select) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React Virtualized Select

NPM version NPM license NPM total downloads NPM monthly downloads Circle CI badge Codecov badge PayPal donate button Patreon donate button

Demos available here: http://bvaughn.github.io/react-virtualized-select/

Getting started

Install react-virtualized-select using npm.

npm install react-virtualized-select --save

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

// Make sure to import default styles.
// This only needs to be done once; probably during your application's bootstrapping process.
import 'react-select/dist/react-select.css';
import 'react-virtualized/styles.css';
import 'react-virtualized-select/styles.css';

// Then import the virtualized Select HOC
import VirtualizedSelect from 'react-virtualized-select';

Alternately you can load a global-friendly UMD build:

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

More documentation coming soon!