react-multi-email icon indicating copy to clipboard operation
react-multi-email copied to clipboard

Autocomplete function Done

Open JeonHyungJin opened this issue 6 years ago • 1 comments

I added autocomplete function. when you type some email in inputbox, you can see the autocompleted email lists under the inputbox. This can save your time to type those things.

If you want to add other domains you can fix your code. https://github.com/JeonHyungJin/react-multi-email/blob/master/src/react-multi-email/ReactMultiEmail.tsx#L70

result = ['gmail.com', 'naver.com', 'daum.net'].map(domain => `${value}@${domain}`);

If you want to add, modify the domain list, try to modify this result list!

JeonHyungJin avatar Nov 23 '18 04:11 JeonHyungJin

I changed isEmail, too.

JeonHyungJin avatar Nov 23 '18 04:11 JeonHyungJin