Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-listbox

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-listbox

a double listbox react component

  • 1.2.13
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
598
increased by0.34%
Maintainers
1
Weekly downloads
 
Created
Source

react-listbox

a double listbox react component

travis build version license downloads semantic-release

Installation

This package can be installed via npm

npm install react-listbox --save

screen shot 2016-10-05 at 11 10 36 pm

Demo

Demo & Examples can be found here

Usage

import ListBox from 'react-listbox';
import 'react-listbox/dist/react-listbox.css';

const options = [
  { label: 'One', value: 1 },
  { label: 'Two', value: 2 },
  { label: 'Three', value: 3 },
];
// You can also pass the array of preselected options;
const selected = [1, 2];
onChange = selectedValues => {
  // handle selected values here
};
<ListBox options={options} onChange={onChange} selected={selected} />;

You can also use the browser build available in the dist folder.

<script
  type="text/javascript"
  src="https://unpkg.com/react-listbox@1.2.13/dist/react-listbox.min.js"
></script>

<link
  rel="stylesheet"
  href="https://unpkg.com/react-listbox@1.2.13/dist/react-listbox.css"
/>

Other

This library was inspired by jQuery multi-select.

License

MIT Licensed. Copyright (c) Sridatta 2016.

Keywords

FAQs

Package last updated on 18 Mar 2020

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