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 - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

4

package.json
{
"name": "react-select-virtualized",
"version": "0.0.13",
"version": "0.0.14",
"description": "react-select v2 + react-virtualized + react hooks",

@@ -28,3 +28,3 @@ "author": "guiyep",

"build": "rollup -c",
"build-prod": "NODE_ENV=production rollup -c",
"build-prod": "NODE_ENV=production BABEL_ENV=production rollup -c",
"start": "rollup -c -w",

@@ -31,0 +31,0 @@ "deploy": "gh-pages -d",

@@ -24,3 +24,3 @@ # react-select-virtualized

NOTE: "react-hover-observer" is temporary until I implement it myself.
NOTE: "react-hover-observer" is temporary until I implement it myself.

@@ -61,7 +61,21 @@ ```bash

## Usage
## Documentation
SOON
## Usage without group
check storybook for more examples
```jsx
const options = [
{
value: 1,
label: `guiyep`,
},
...
];
```
```jsx
import React, { Component } from 'react';

@@ -71,11 +85,47 @@

class Example extends Component {
const Example extends Component {
render() {
return <Select />;
return <Select options={options}/>;
}
}
const Example2 = () => <Select options={options}/>
```
## Usage with group
check storybook for more examples
```jsx
const options = [
{
value: 1,
label: `guiyep`,
},
...
];
const opsGroup = [
{ label: `Group Name Header`, options },
...
]
```
```jsx
import React, { Component } from 'react';
import Select from 'react-select-virtualized';
const Example extends Component {
render() {
return <Select options={options} grouped/>;
}
}
const Example2 = () => <Select options={options} grouped/>
```
## License
MIT © [guiyep](https://github.com/guiyep)
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