New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-select-virtualized

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-select-virtualized

react-select v2 + react-virtualized + react hooks

  • 0.0.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
897
decreased by-76.93%
Maintainers
1
Weekly downloads
 
Created
Source

react-select-virtualized

**** UNSTABLE VERSION - NOT YET FINISHED **** SOON TO BE RELEASED ****

react-select v2 + react-virtualized + react hooks!

NPM JavaScript Style Guide

This project came up after hours of trying to find an autocomplete component that supports large sets of data to be displayed and search. react-select is the most used library out there and very customizable but poorly performant. I used the airbnb library react-virtualized for the virtual data loading of element and plugged it to the react-select menu list. I know that react-virtualized-select does the same, but the library is not maintained anymore and it is using the old 1.x version of react select. Also it has not full support of the grouping functionality and mny other new select props. So I decided to create a new component and share it to the community.

Install

npm install --save react-select-virtualized

Roadmap

  • useCallback every where. DONE
  • move fast options to group. DONE
  • fix minimum input search on grouped component.
  • upgrade alpha version.
  • review all the TODOs.
  • review support to all the react-select props. Should all work but multival. <----- FIRST RELEASE ---->
  • try filtering data on infinite loader
  • add multi value support
  • add testing so we do not only relay on storybook
  • remove react-hover-observer and do it ourselves so we do not have one more peer dep. Leave this till the end.

Usage

import React, { Component } from 'react';

import Select from 'react-select-virtualized';

class Example extends Component {
  render() {
    return <Select />;
  }
}

License

MIT © guiyep

FAQs

Package last updated on 21 Feb 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc