{"id":4395,"url":"https://github.com/arelstone/react-native-email-chip","last_synced_at":"2025-12-30T02:30:21.106Z","repository":{"id":38113398,"uuid":"240529909","full_name":"arelstone/react-native-email-chip","owner":"arelstone","description":"A simple yet customizable component to display a chip list of emails","archived":false,"fork":false,"pushed_at":"2024-02-01T02:48:56.000Z","size":38105,"stargazers_count":23,"open_issues_count":5,"forks_count":4,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2024-11-07T18:57:01.587Z","etag":null,"topics":["android","chip","component","email","ios","javascript","native","react-native","react-native-component","ui"],"latest_commit_sha":null,"homepage":"https://github.com/arelstone/react-native-email-chip","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arelstone.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-02-14T14:44:45.000Z","updated_at":"2024-09-07T01:33:33.000Z","dependencies_parsed_at":"2023-02-17T01:02:22.105Z","dependency_job_id":"88451152-453e-4d63-a699-aa215275e833","html_url":"https://github.com/arelstone/react-native-email-chip","commit_stats":{"total_commits":89,"total_committers":6,"mean_commits":"14.833333333333334","dds":0.4382022471910112,"last_synced_commit":"6bba5846c9484a0e67c2c43c8164bc70afa7bb0c"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arelstone%2Freact-native-email-chip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arelstone%2Freact-native-email-chip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arelstone%2Freact-native-email-chip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arelstone%2Freact-native-email-chip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arelstone","download_url":"https://codeload.github.com/arelstone/react-native-email-chip/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228582487,"owners_count":17940587,"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":["android","chip","component","email","ios","javascript","native","react-native","react-native-component","ui"],"created_at":"2024-01-05T20:17:10.570Z","updated_at":"2025-12-30T02:30:21.056Z","avatar_url":"https://github.com/arelstone.png","language":"TypeScript","funding_links":[],"categories":["Components"],"sub_categories":["Navigation"],"readme":"# @arelstone/react-native-email-chip\nA simple yet very customizable component to display a chip list of emails\n\n![](https://flat.badgen.net/npm/dy/@arelstone/react-native-email-chip)\n![](https://flat.badgen.net/npm/v/@arelstone/react-native-email-chip)\n![](https://flat.badgen.net/npm/types/@arelstone/react-native-email-chip)\n![](https://flat.badgen.net/github/open-issues/arelstone/react-native-email-chip)\n![](https://flat.badgen.net/github/open-prs/arelstone/react-native-email-chip)\n\n![@arelstone/react-native-email-chip](https://github.com/arelstone/react-native-email-chip/blob/master/docs/example.png?raw=true)\n\n## Install\n```js\nnpm install @arelstone/react-native-email-chip\n// or\nyarn add @arelstone/react-native-email-chip\n```\n\n## Usage\n```jsx\nimport EmailChipInput from '@arelstone/react-native-email-chip';\n\n\u003cEmailChipInput\n    entries={['john@doe.com', 'jane@doe.com']}\n    onSubmit={(emails: string[])=\u003e this.setState({emails})}\n/\u003e\n```\n\n## Props\n\n| Name                            | Type                                            | Default                   |\n| ------------------------------- | ----------------------------------------------- | ------------------------- |\n| entries                         | string[]                                        | []                        |\n| onSubmit                        | string[] =\u003e void                                |                           |\n| label (optional)                | ReactElement                                    |                           |\n| delimiters (optional)           | string[]                                        |  [',', ';', ' ']          |\n| keyboardAppearance (optional)   | default, light, dark                            |  default                  |\n| keyboardAppearance (optional)   | never, while-editing, unless-editing, always    |  while-editing            |\n| placeholder (optional)          | string                                          | Start by typing an email  |\n| autoCapitalize (optional)       | none, sentences, words, characters              | none                      |\n| autoCorrect (optional)          | boolean                                         | true                      |\n| autoFocus (optional)            | boolean                                         | true                      |\n| blurOnSubmit (optional)         | boolean                                         | false                     |\n| chipImage (optional)            | ReactElement                                    |                           |\n| placeholderTextColor (optional) | ViewStyle                                       |                           |\n| containerStyle (optional)       | ViewStyle                                       |                           |\n| chipContainerStyle (optional)   | ViewStyle                                       |                           |\n| chipTextStyle (optional)        | TextStyle                                       |                           |\n| inputContainerStyle (optional)  | ViewStyle                                       |                           |\n| inputStyle (optional)           | ViewStyle                                       |                           |\n| TextInputProps (optional)       | TextInputProps                                  |                           |\n| keyboardType (optional)         | KeyboardTypeOptions                             | email-address             |\n\n\n## Contributing\nIf you find a feature missing or discover an issue pull requests are very very welcome.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farelstone%2Freact-native-email-chip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farelstone%2Freact-native-email-chip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farelstone%2Freact-native-email-chip/lists"}