FidelisClayton / react-multi-select-component

Simple multiple selection dropdown component with `checkboxes`, `search` and `select-all`

Home Page:https://react-multi-select-component.netlify.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-multi-select-component

Simple multiple selection dropdown component with checkboxes, search and select-all

Storybook GitHub Actions Status NPM gzip

✨ Features

  • πŸƒ Lightweight (~14KB)
  • πŸ’… Themeable
  • ✌ Written w/ TypeScript

πŸ”§ Installation

npm i react-multi-select-component    # npm
yarn add react-multi-select-component # yarn

πŸ“¦ Example

Example

import React, { useState } from "react";
import MultiSelect from "react-multi-select-component";

const Example: React.FC = () => {
  const options = [
    { label: "Grapes πŸ‡", value: "grapes" },
    { label: "Mango πŸ₯­", value: "mango" },
    { label: "Strawberry πŸ“", value: "strawberry" }
  ];

  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 App;

πŸ‘€ Props

Prop Description Type Default
labelledBy value for aria-labelledby string
options options for dropdown [{label, value}]
value pre-selected rows [{label, value}] []
focusSearchOnOpen focus on search input when opening boolean true
hasSelectAll toggle 'Select All' option boolean true
isLoading show spinner on select boolean false
shouldToggleOnHover toggle dropdown on hover option boolean false
overrideStrings Override default strings for i18n object
onChange onChhange callback function
disabled disable dropdown boolean false
selectAllLabel select all label string
disableSearch hide search textbox boolean false
filterOptions custom filter options function
theme theme variables object

🌐 Internationalization

You can override the strings to be whatever you want, including translations for your languages.

{
  "selectSomeItems": "Select...",
  "allItemsAreSelected": "All items are selected.",
  "selectAll": "Select All",
  "search": "Search"
}

πŸ’… Themeing

You can override theme variables to change colors

{
  "primary": "#4285F4",
  "hover": "#f1f3f5",
  "border": "#ccc",
  "gray": "#aaa",
  "background": "#fff",
  "borderRadius": "4px",
  "height": "38px"
}

🀠 Credits

πŸ“œ License

MIT Β© harshzalavadiya

About

Simple multiple selection dropdown component with `checkboxes`, `search` and `select-all`

https://react-multi-select-component.netlify.com

License:MIT License


Languages

Language:TypeScript 94.5%Language:JavaScript 5.2%Language:CSS 0.3%