
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
react-multi-select-component
Advanced tools
Simple and lightweight multiple selection dropdown component with checkboxes, search and select-all
Simple and lightweight multiple selection dropdown component with checkboxes
, search
and select-all
npm i react-multi-select-component # npm
yarn add react-multi-select-component # yarn
import React, { useState } from "react";
import { MultiSelect } from "react-multi-select-component";
const options = [
{ label: "Grapes 🍇", value: "grapes" },
{ label: "Mango 🥭", value: "mango" },
{ label: "Strawberry 🍓", value: "strawberry", disabled: true },
];
const Example = () => {
const [selected, setSelected] = useState([]);
return (
<div>
<h1>Select Fruits</h1>
<pre>{JSON.stringify(selected)}</pre>
<MultiSelect
options={options}
value={selected}
onChange={setSelected}
labelledBy="Select"
/>
</div>
);
};
export default Example;
More examples can be found here ↗
Prop | Description | Type | Default |
---|---|---|---|
labelledBy | value for aria-labelledby | string | |
options | options for dropdown | [{label, value, disabled}] | |
value | pre-selected rows | [{label, value}] | [] |
hasSelectAll | toggle 'Select All' option | boolean | true |
isLoading | show spinner on select | boolean | false |
shouldToggleOnHover | toggle dropdown on hover option | boolean | false |
overrideStrings | localization ↗ | object | |
onChange | onChange callback | function | |
disabled | disable dropdown | boolean | false |
disableSearch | hide search textbox | boolean | false |
filterOptions | custom filter options (async supported) ↗ | function | Fuzzy Search |
className | class name for parent component | string | multi-select |
valueRenderer | custom dropdown header ↗ | function | |
ItemRenderer | custom dropdown option ↗ | function | |
ClearIcon | Custom Clear Icon for Search | ReactNode | |
ArrowRenderer | Custom Arrow Icon for Dropdown | ReactNode | |
debounceDuration | debounce duration for Search | number | 300 |
ClearSelectedIcon | Custom Clear Icon for Selected Items (Hint: Pass null to prevent it from rendering completely) | ReactNode | |
isCreatable | Allows user to create unavailable option(s) example ↗ | boolean | false |
onCreateOption | allows to override newly created option example ↗ | function | |
closeOnChangedValue | automatically closes dropdown when its value is changed | boolean | false |
For every release changelog/migration-guide will be available in releases
MIT © harshzalavadiya
FAQs
Simple and lightweight multiple selection dropdown component with checkboxes, search and select-all
The npm package react-multi-select-component receives a total of 54,878 weekly downloads. As such, react-multi-select-component popularity was classified as popular.
We found that react-multi-select-component 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.