1.1.0 • Published 2 years ago
mui-phone-number-react v1.1.0
material-ui-phone-number
Highly customizable phone input component with auto formatting. Based on material-ui-phone-number which is not maintained anymore
It looks like this, but in Material Design:
Uses @material-ui/core/TextField for rendering the phone input
Installation
npm install mui-phone-number-react --save
Usage
import MuiPhoneNumber from 'material-ui-phone-number';
React.render(
<MuiPhoneNumber defaultCountry={'us'} onChange={handleOnChange}/>,
document.getElementById('root')
);
Your handler for the onChange
event should expect a string as
parameter, where the value is that of the entered phone number. For example:
function handleOnChange(value) {
this.setState({
phone: value
});
}
Options
Regions
Regions selected: {'europe'}
<MuiPhoneInput
defaultCountry='it'
regions={'europe'}
/>
Regions selected: {'north-america', 'carribean'}
<MuiPhoneInput
defaultCountry='ca'
regions={['north-america', 'carribean']}
/>
Localization
<MuiPhoneInput
onlyCountries=['de', 'es']
localization={{'Germany': 'Deutschland', 'Spain': 'España'}}
/>
Supported events
Country data object not returns from onKeyDown event
License
Based on material-ui-phone-number
Based on react-phone-input-2
Based on react-phone-input using MIT