
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-intl-input
Advanced tools
A flexible input control for React to handle multi languages fields.
npm install --save react-intl-input
Then you can import one of react-intl-input components as follows:
import { IntlInput } from 'react-intl-input';
import { IntlInput } from 'react-intl-input';
class Form extends React.Component {
constructor(props) {
super(props);
this.state = {
languages: [
{ value: 'en', label: 'English' },
{ value: 'fr', label: 'French' },
],
initialValues: {
en: 'This is an english translation',
fr: 'Ceci est un texte en francais',
},
}
}
render() {
return (
<form onSubmit={() => {}}>
<IntlInput
name="basic-intl-input"
{...this.state}
/>
</form>
)
}
}
Live demo with many concrete examples: papswell.github.io/react-intl-input
| Property | Type | Default | Description |
|---|---|---|---|
| name | string (required) | The name attribute of the html input. | |
| languages | array (required) | The languages handled by the input | |
| initialLang | string | The language selected on the first render | |
| initialValues | object | The initial values for each language | |
| onLangChange | func | Called whenever the language selection changes. onLangChange({ value, label}, state) | |
| onInputChange | func | Called whenever the current value changes. onInputChange(currentLanguage, inputValue, state) | |
| onInputFocus | func | Called when the input is focused. onInputFocus(syntheticEvent) | |
| onInputBlur | func | Called when the input is blurred. onInputChange(syntheticEvent) | |
| inputComponent | func | A function or a React.Component to be used as the input. |
FAQs
A react component to handle multi languages forms
The npm package react-intl-input receives a total of 15 weekly downloads. As such, react-intl-input popularity was classified as not popular.
We found that react-intl-input demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.