
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
react-select-combobox
Advanced tools
react-select-combobox is a select control component which helps in narrowing down your results by selecting one or more options provided.
Install react-select-combobox with npm
npm install react-select-combobox
import React from 'react';
import { ComboBox } from 'react-select-combobox';
const dataProvider = [
{ label: 'Apple', value: 111 },
{ label: 'Pineapple', value: 112 },
{ label: 'Litchi', value: 113 },
{ label: 'Orange', value: 114 },
{ label: 'Banana', value: 115 },
];
export default function App() {
const [selectedItems, setSelectedItems] = React.useState([]);
return (
<div>
<ComboBox
dataProvider={dataProvider}
value={selectedItems}
onComplete={(value) => {
setSelectedItems(value);
}}
/>
</div>
);
}
import React from 'react';
import { ComboBox } from 'react-select-combobox';
const dataProvider = [
{ label: 'Apple', value: 111 },
{ label: 'Pineapple', value: 112 },
{ label: 'Litchi', value: 113 },
{ label: 'Orange', value: 114 },
{ label: 'Banana', value: 115 },
];
export default function App() {
const [selectedItems, setSelectedItems] = React.useState([
{ label: 'Apple', value: 111 },
{ label: 'Pineapple', value: 112 },
]);
return (
<div>
<ComboBox
dataProvider={dataProvider}
value={selectedItems}
onComplete={(value) => {
setSelectedItems(value);
}}
/>
</div>
);
}
import React from "react";
import { ComboBox, ComboBoxOptionsType } from "react-select-combobox";
const dataProvider = [
{ label: "Apple", value: 111 },
{ label: "Pineapple", value: 112 },
{ label: "Litchi", value: 113 },
{ label: "Orange", value: 114 },
{ label: "Banana", value: 115 }
];
export default function App() {
const [selectedItems, setSelectedItems] = React.useState<
ComboBoxOptionsType[] | ComboBoxOptionsType
>([]);
return (
<ComboBox
dataProvider={dataProvider}
value={selectedItems}
onComplete={(value) => {
setSelectedItems(value);
}}
/>
);
}
https://6480578bad52defd0eefe6ae-vbelaysmmu.chromatic.com/?path=/story/combo-box--simple
Common props you may want to specify include:
cancelText - text which replaces CANCEL textdataProvider - specify list of options for users to selectleftAdornment - icon which appears left side of the Filter boxonComplete - handler to get the selected items || [] on submitplaceHolder - text which replaces Select... textprimaryColor - color String which changes Button and Checkbox colorrightAdornment - icon which appears right side of the Filter boxselectAllText - text which replaces Select All textsubmitText - text which replaces OK textvalue - control the current valueContributions are always welcome! For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
If you have any feedback, please reach out to us at techmatrix@softsuave.com
FAQs
React select control for narrowing down the results
The npm package react-select-combobox receives a total of 4 weekly downloads. As such, react-select-combobox popularity was classified as not popular.
We found that react-select-combobox 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.