{"id":22181170,"url":"https://github.com/viclafouch/mui-chips-input","last_synced_at":"2025-04-09T13:06:29.199Z","repository":{"id":58580808,"uuid":"530642086","full_name":"viclafouch/mui-chips-input","owner":"viclafouch","description":"📌 A chips input designed for MUI (Material ui) V5","archived":false,"fork":false,"pushed_at":"2024-02-13T11:33:05.000Z","size":5604,"stargazers_count":66,"open_issues_count":0,"forks_count":15,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-03-14T14:02:57.488Z","etag":null,"topics":["chips","form","input","material","mui","react","typescript"],"latest_commit_sha":null,"homepage":"https://viclafouch.github.io/mui-chips-input/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/viclafouch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-30T12:14:47.000Z","updated_at":"2024-06-18T15:18:49.211Z","dependencies_parsed_at":"2024-06-18T15:18:29.182Z","dependency_job_id":"f7593754-1f8a-4d6a-b9eb-fca6e8a9ca53","html_url":"https://github.com/viclafouch/mui-chips-input","commit_stats":{"total_commits":66,"total_committers":6,"mean_commits":11.0,"dds":0.09090909090909094,"last_synced_commit":"791f207b9c1d8e847b6523e09ff4d4cc291e49cb"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viclafouch%2Fmui-chips-input","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viclafouch%2Fmui-chips-input/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viclafouch%2Fmui-chips-input/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viclafouch%2Fmui-chips-input/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/viclafouch","download_url":"https://codeload.github.com/viclafouch/mui-chips-input/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248045231,"owners_count":21038553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chips","form","input","material","mui","react","typescript"],"created_at":"2024-12-02T09:26:51.432Z","updated_at":"2025-04-09T13:06:29.178Z","avatar_url":"https://github.com/viclafouch.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eMaterial UI chips input\u003c/h1\u003e\n  \u003cp\u003eA chips input designed for the React library \u003ca href=\"https://material-ui.com/\"\u003eMaterial UI\u003c/a\u003e\u003c/p\u003e\n\u003c/div\u003e\n\u003cdiv align=\"center\"\u003e\n\n[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/viclafouch/mui-chips-input/blob/master/LICENSE)\n![ts](https://badgen.net/badge/Built%20With/TypeScript/blue)\n[![npm](https://img.shields.io/npm/v/mui-chips-input)](https://www.npmjs.com/package/mui-chips-input)\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/viclafouch/mui-chips-input/blob/main/mui-chips-input.gif\" width=\"100%\" /\u003e\n\u003c/div\u003e\n\n\u003c/div\u003e\n\n## Installation\n\n```\n// with npm\nnpm install mui-chips-input\n\n// with yarn\nyarn add mui-chips-input\n```\n\n## Usage\n\n```jsx\nimport React from 'react'\nimport { MuiChipsInput } from 'mui-chips-input'\n\nconst MyComponent = () =\u003e {\n  const [chips, setChips] = React.useState([])\n\n  const handleChange = (newChips) =\u003e {\n    setChips(newChips)\n  }\n\n  return (\n    \u003cMuiChipsInput value={chips} onChange={handleChange} /\u003e\n  )\n}\n```\n\n## Next.js integration\n\nLearn how to use MUI chips input with Next.js\n\nOnce you have installed `MUI Chips Input` in your next.js project, it is important to transpile it as it is an ESM package first.\n\n```js\n/** @type {import('next').NextConfig} */\nconst nextConfig = {\n transpilePackages: ['mui-chips-input'],\n // your config\n}\n\nmodule.exports = nextConfig\n```\n\n## [Documentation](https://viclafouch.github.io/mui-chips-input/)\n\n## Changelog\n\nGo to [GitHub Releases](https://github.com/viclafouch/mui-chips-input/releases)\n\n## TypeScript\n\nThis library comes with TypeScript \"typings\". If you happen to find any bugs in those, create an issue.\n\n### 🐛 Bugs\n\nPlease file an issue for bugs, missing documentation, or unexpected behavior.\n\n### 💡 Feature Requests\n\nPlease file an issue to suggest new features. Vote on feature requests by adding\na 👍. This helps maintainers prioritize what to work on.\n\n## LICENSE\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviclafouch%2Fmui-chips-input","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fviclafouch%2Fmui-chips-input","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviclafouch%2Fmui-chips-input/lists"}