
Security News
High-Severity RCE Vulnerability Disclosed in next-mdx-remote
HashiCorp disclosed a high-severity RCE in next-mdx-remote affecting versions 4.3.0 to 5.x when compiling untrusted MDX on the server.
react-search-panel
Advanced tools
An expandable search panel React component where results can be displayed as links, checkboxes, or radio buttons, with optional chips.
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";
const App = () => {
const [input, setInput] = React.useState("");
const [, setSelectedKeys] = React.useState<Array<string>>([]);
return (
<SearchPanel
chips
choices={choices}
float
maximumHeight={250}
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}
width={300}
/>
);
}
export default App;
This is an example in Javascript with only the required props.
import React from "react";
import { SearchPanel } from "react-search-panel";
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 17 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
HashiCorp disclosed a high-severity RCE in next-mdx-remote affecting versions 4.3.0 to 5.x when compiling untrusted MDX on the server.

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.