├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── npm_publish.yml │ └── pull_request.yml ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── README.md ├── docs └── example.png ├── example └── Example.tsx ├── package.json ├── src ├── EmailChipInput.tsx ├── components │ └── Chip.tsx ├── constants.ts ├── index.tsx ├── styles.ts └── utils │ └── validator.ts ├── tsconfig.jest.json ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | .eslintrc.js 3 | *.config.ts -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/npm_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/.github/workflows/npm_publish.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/README.md -------------------------------------------------------------------------------- /docs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/docs/example.png -------------------------------------------------------------------------------- /example/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/example/Example.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/package.json -------------------------------------------------------------------------------- /src/EmailChipInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/src/EmailChipInput.tsx -------------------------------------------------------------------------------- /src/components/Chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/src/components/Chip.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/src/styles.ts -------------------------------------------------------------------------------- /src/utils/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/src/utils/validator.ts -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arelstone/react-native-email-chip/HEAD/yarn.lock --------------------------------------------------------------------------------