
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.
react-multi-select-ext
Advanced tools
This component is build using multi-select-react. Some additional features are added on top of it.
npm install react-multi-select-ext
For more details refer to the original project's readme here.
import React, {Component} from 'react'
import {render} from 'react-dom'
import MultiSelectReact from 'react-multi-select-ext';
class Demo extends Component {
constructor() {
super();
this.state = {
multiSelect:[]
};
}
componentWillMount(){
setTimeout(()=>{
this.setState({multiSelect: [{'label':'Monkey','id':1,'value':true},{'label':'Donkey','id':2,'value':true},{'label':'Lion','id':3,'value':true},{'label':'Zebra','id':4,'value':true}]});
},5000)
}
render() {
const selectedOptionsStyles = {
color: "#3c763d",
backgroundColor: "#dff0d8"
};
const optionsListStyles = {
backgroundColor: "#fcf8e3",
color: "#8a6d3b"
};
return (
<MultiSelectReact
options={this.state.multiSelect}
optionClicked={this.optionClicked.bind(this)}
selectedBadgeClicked={this.selectedBadgeClicked.bind(this)}
selectedOptionsStyles={selectedOptionsStyles}
optionsListStyles={optionsListStyles}
enableSelectAllNone={true}
/>
);
}
optionClicked(optionsList) {
this.setState({ multiSelect: optionsList });
}
selectedBadgeClicked(optionsList) {
this.setState({ multiSelect: optionsList });
}
}
render(<Demo/>, document.querySelector('#demo'))
| Prop | Type | Default | Description |
|---|---|---|---|
enableSelectAllNone | boolean | R | Enable "Select All" and "Select None" options in the dropdown.Does not work when single select is enabled |
[MIT]
FAQs
react-multi-select-ext React component
The npm package react-multi-select-ext receives a total of 3 weekly downloads. As such, react-multi-select-ext popularity was classified as not popular.
We found that react-multi-select-ext demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.