Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
react-multi-email
Advanced tools
[![npm version](https://badge.fury.io/js/react-multi-email.svg)](https://badge.fury.io/js/react-multi-email) [![](https://img.shields.io/npm/dm/react-multi-email.svg)](https://www.npmjs.com/package/react-multi-email) [![](https://github.com/axisj/react-mu
A simple react component to format multiple email as the user types.
npm install react-multi-email
import * as React from 'react';
import { ReactMultiEmail, isEmail } from 'react-multi-email';
import 'react-multi-email/dist/style.css';
interface Props {}
function BasicExample(props: Props) {
const [emails, setEmails] = React.useState<string[]>([]);
const [focused, setFocused] = React.useState(false);
return (
<form>
<h3>Email</h3>
<ReactMultiEmail
placeholder='Input your email'
emails={emails}
onChange={(_emails: string[]) => {
setEmails(_emails);
}}
autoFocus={true}
onFocus={() => setFocused(true)}
onBlur={() => setFocused(false)}
getLabel={(email, index, removeEmail) => {
return (
<div data-tag key={index}>
<div data-tag-item>{email}</div>
<span data-tag-handle onClick={() => removeEmail(index)}>
×
</span>
</div>
);
}}
/>
<br />
<h4>react-multi-email value</h4>
<h3>Focused: {focused ? 'true' : 'false'}</h3>
<p>{emails.join(', ') || 'empty'}</p>
</form>
);
}
export default BasicExample;
Property | Type | Default | Description |
---|---|---|---|
id | string | ||
emails | string[] | ||
onChange | (emails: string[]) => void; | ||
enable | ({ emailCnt }: { emailCnt: number }) => boolean; | ||
onDisabled | () => void; | ||
onChangeInput | (value: string) => void; | ||
onFocus | () => void; | ||
onBlur | () => void; | ||
onKeyDown | (evt: React.KeyboardEvent) => void; | ||
onKeyUp | (evt: React.KeyboardEvent) => void; | ||
noClass | boolean | ||
validateEmail | (email: string) => boolean | Promise; | ||
enableSpinner | boolean | ||
style | React.CSSProperties | ||
getLabel | ( email: string, index: number, removeEmail: (index: number, isDisabled?: boolean) => void, ) => React.ReactNode; | ||
className | string | '' | |
placeholder | string | React.ReactNode; | ||
autoFocus | boolean; | ||
spinner | () => React.ReactNode; | ||
delimiter | string; | '[ ,;]' | |
autoComplete | string | undefined |
If you don't mind, don't forget to press "star" before leaving.
FAQs
[![npm version](https://badge.fury.io/js/react-multi-email.svg)](https://badge.fury.io/js/react-multi-email) [![](https://img.shields.io/npm/dm/react-multi-email.svg)](https://www.npmjs.com/package/react-multi-email) [![](https://github.com/axisj/react-mu
The npm package react-multi-email receives a total of 34,000 weekly downloads. As such, react-multi-email popularity was classified as popular.
We found that react-multi-email demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.