
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
multiselect-dropdown-react
Advanced tools
React Multi Select Dropdown Component

npm install --save multiselect-dropdown-react
See the example for how to use the component
import React, { Component } from 'react';
import './App.css';
import Multiselect from 'multiselect-dropdown-react';
const data = [{
name: 'one',
value: 'one'
},
{
name: 'two',
value: 'two'
},
{
name: 'three',
value: 'three'
},
{
name: 'four',
value: 'four'
},
{
name: 'five',
value: 'five'
},
{
name: 'six',
value: 'six'
}];
class App extends Component {
result(params) {
console.log(params);
}
render() {
return (
<div className="App">
<Multiselect options={data} onSelectOptions={this.result} />
</div>
);
}
}
export default App;
<Multiselect options={data} onSelectOptions={this.result} />
MIT
Placeholder text to be made configurable Label with id and optional test to be provided for accessibility CSS to be made configurable, ability to pass custom class names from parent to child Ability to customize the chip template
FAQs
react multiselect dropdown component with search
The npm package multiselect-dropdown-react receives a total of 82 weekly downloads. As such, multiselect-dropdown-react popularity was classified as not popular.
We found that multiselect-dropdown-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.