
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
material-ui-chip-input
Advanced tools
This project provides a chip input field for Material-UI. It is inspired by Angular Material's chip input.
npm i --save material-ui-chip-input
The component supports either controlled or uncontrolled input mode. If you use the controlled mode (by setting the value
attribute), the onChange
callback won't be called.
import ChipInput from 'material-ui-chip-input'
// uncontrolled input
<ChipInput
defaultValue={['foo', 'bar']}
onChange={(chips) => handleChange(chips)}
/>
// controlled input
<ChipInput
value={yourChips}
onRequestAdd={(chip) => handleAddChip(chip)}
onRequestDelete={(chip) => handleDeleteChip(chip)}
/>
Coming very soon.
The code for the input component was adapted from Material UI's TextField
that we all know and love.
The scripts included in this repository are licensed under the MIT.
FAQs
A chip input field using Material-UI.
The npm package material-ui-chip-input receives a total of 27,080 weekly downloads. As such, material-ui-chip-input popularity was classified as popular.
We found that material-ui-chip-input demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.