{"id":28322632,"url":"https://github.com/sanjayv/react-multiselect-dd","last_synced_at":"2026-04-18T14:02:30.185Z","repository":{"id":57334922,"uuid":"186119507","full_name":"sanjayV/react-multiselect-dd","owner":"sanjayV","description":"React Multi Select Drop-Down","archived":false,"fork":false,"pushed_at":"2026-02-13T16:58:53.000Z","size":5077,"stargazers_count":2,"open_issues_count":17,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-22T22:27:13.175Z","etag":null,"topics":["dropdow","multiselect","multiselect-drodpdown","react","reactjs"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/sanjayV.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}},"created_at":"2019-05-11T10:34:01.000Z","updated_at":"2019-09-02T11:38:00.000Z","dependencies_parsed_at":"2022-08-29T14:31:02.268Z","dependency_job_id":null,"html_url":"https://github.com/sanjayV/react-multiselect-dd","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sanjayV/react-multiselect-dd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjayV%2Freact-multiselect-dd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjayV%2Freact-multiselect-dd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjayV%2Freact-multiselect-dd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjayV%2Freact-multiselect-dd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sanjayV","download_url":"https://codeload.github.com/sanjayV/react-multiselect-dd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjayV%2Freact-multiselect-dd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31971490,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["dropdow","multiselect","multiselect-drodpdown","react","reactjs"],"created_at":"2025-05-25T14:10:37.640Z","updated_at":"2026-04-18T14:02:25.167Z","avatar_url":"https://github.com/sanjayV.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Multi Select Dropdown\nA reactjs multiselect dropdown with search functionality and multiple other options.\n\n## Features!\n\n  - Support search on tree view structure\n  - Provides options for update UI according current theme\n\n### Demo: https://sanjayv.github.io/react-multiselect-dd/\n\n# Installation\n`npm install react-multiselect-dd`\n\n# Setup :\n\n**Import module in your `app.module.ts`:**\n```js\nimport Multiselect from \"react-multiselect-dd\";\n...\n\n\u003cMultiselect\n    data={sampleData}\n    onChange={getSelected}\n    showSelected={2}/\u003e\n```\n\n**sampleData format**\n```js\nconst sampleData = [\n    {\n        value: 1,\n        text: \"First\",\n        child: [\n            {\n                value: 2,\n                text: \"First.1\",\n                child: [\n                    {\n                        value: 3,\n                        text: \"First.1.1\"\n                    }\n                ]\n            }\n        ]\n    },\n    {\n        value: 4,\n        text: \"Second\",\n    },\n    ...\n];\n```\n\n## Other options (optional) :\n\n| Name | Type | Description | Required | Default |\n|------|------|-----------|-------------|---------|\n| data | Array | Data array that use in multiselect dropdown | Yes   | [] |\n| onChange | Function | Callback function that use for get selected values  | Yes | |\n| showSelected | Number  | Max limit of display selected item in input, after that it will display total selected count. | No | 2 |\n| customStyle | Object | Detail here | No |  |\n\n\n##### Custom Style\n\nYou can update Dropdown style according requirments.\nFollowing **Custome Styles** available:\n\n| Name | Type | Description | Default |\n|------|------|-----------|---------|\n| inputHeight | Number | Use for set Dropdown input height | 40 |\n| inputWidth | Number | Use for set Dropdown input width  | 360 |\n| checkedColor | String  | Use for set checked box checked color | '#e6783b' |\n| optionHeight | Number | Use for set dropdown option height | 400 |\n\nYou can pass following options in **customStyle** props.\n\n```js\n\u003cMultiselect\n    data={sampleData}\n    onChange={getSelected}\n    showSelected={2}\n    customStyle={{\n        'optionHeight': 400,\n        'checkedColor': '#e6783b',\n        'inputHeight': 40,\n        'inputWidth': 360\n    }}\n/\u003e\n```\n\n## License\nMIT Licensed. Copyright (c) 2019 sanjay verma\n\nYour contributions and suggestions are always welcome :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanjayv%2Freact-multiselect-dd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsanjayv%2Freact-multiselect-dd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanjayv%2Freact-multiselect-dd/lists"}