
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-select-ui
Advanced tools
An elegant and lightweight React component designed for simplicity and performance.
An elegant and lightweight React component designed for simplicity and performance.
The goal of this project is to provide a scalable, customizable, and versatile Select component, designed to meet the needs of modern applications. As you explore the features, we hope you'll see how it can be tailored to fit a wide range of use cases.
⚠️ Warning: This project is compatible with React v18. Support for React v19 is not available yet.
To get started, simply install the package via npm:
npm i react-select-ui
Once installed, you can import the Select component in your project, and you are good to go.
import { useState } from "react";
import { Select } from "react-select-ui";
type Plant = {
id: number;
name: string;
type: string;
};
const options = [
{ id: 1, name: "Orange", type: "fruit" },
{ id: 2, name: "Lemon", type: "fruit" },
{ id: 3, name: "Banana", type: "fruit" },
{ id: 4, name: "Cherry", type: "fruit" },
{ id: 5, name: "Peach", type: "fruit" },
{ id: 6, name: "Onion", type: "vegetable" },
{ id: 7, name: "Potato", type: "vegetable" },
{ id: 8, name: "Broccoli", type: "vegetable" },
{ id: 9, name: "Carrot", type: "vegetable" },
{ id: 10, name: "Spinach", type: "vegetable" },
];
const SingleValue = () => {
const [value, setValue] = useState<Plant[]>([]);
return (
<Select
value={value}
defaultSelectOptions={options}
onChange={setValue}
labelKey="name"
hasInput={false}
/>
);
};
export default SingleValue;
Please check out the docs for more info: https://selectui-docs.netlify.app/
FAQs
An elegant and lightweight React component designed for simplicity and performance.
We found that react-select-ui 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.