
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
react-search-panel
Advanced tools
An expandable search panel React component where results can be displayed as links, checkboxes, or radio buttons.
A react search panel that expands, autocompletes, and support single or multi select.
There is a demonstration of react-search-panel as coded in the example folder.
Many other variants of this component are demonstrated in this Storybook demonstration.
Here is documentation of the component API.
npm install --save-dev react-search-panelgit clone https://github.com/jeremydavidson/react-search-panelcd examplenpm installnpm startThis is an example in Typescript with all available props:
import React from "react";
import { SearchPanel } from "react-search-panel";
import "react-search-panel/dist/index.css";
const App = () => {
const [input, setInput] = React.useState("");
const [, setSelectedKeys] = React.useState<Array<string>>([]);
return (
<SearchPanel
choices={choices}
onChange={event => setInput((event as React.ChangeEvent<HTMLInputElement>).target.value)}
onSelectionChange={selected => setSelectedKeys(selected)}
noChoiceItem={noChoiceItem}
placeholder="Search"
shadow
small
value={input}
variant={SearchPanelVariant.checkbox}
/>
);
}
export default App;
This is an example in Javascript with only the required props.
import React from "react";
import { SearchPanel } from "react-search-panel";
import "react-search-panel/dist/index.css";
const App = () => {
const [input, setInput] = React.useState("");
return (
<SearchPanel
choices={choices}
onChange={event => setInput(event.target.value)}
placeholder="Search"
value={input}
/>
);
}
export default App;
FAQs
An expandable search panel React component where results can be displayed as links, checkboxes, or radio buttons, with optional chips.
The npm package react-search-panel receives a total of 8 weekly downloads. As such, react-search-panel popularity was classified as not popular.
We found that react-search-panel 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.