Gathering detailed insights and metrics for react-phone-input-material-ui
Gathering detailed insights and metrics for react-phone-input-material-ui
Gathering detailed insights and metrics for react-phone-input-material-ui
Gathering detailed insights and metrics for react-phone-input-material-ui
material-ui-phone-number
A material-ui react component to format phone numbers. Based on react-phone-input-2
mui-phone-number
A material-ui v5+ react component to format phone numbers. Based on react-phone-input-2
react-mui-phone-input
React component to format phone number, based on MUI.
react-ui-phone-input
A react component to format phone numbers
Highly customizable phone 📞 input component with auto formatting
npm install react-phone-input-material-ui
Typescript
Module System
Node Version
NPM Version
JavaScript (67.86%)
Less (31.83%)
HTML (0.31%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
24 Stars
434 Commits
12 Forks
1 Watchers
3 Branches
1 Contributors
Updated on Jun 23, 2025
Latest Version
3.0.0
Package Id
react-phone-input-material-ui@3.0.0
Unpacked Size
427.35 kB
Size
195.15 kB
File Count
27
NPM Version
10.1.0
Node Version
18.17.0
Published on
Jun 23, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
5
25
Highly customizable phone input component with auto formatting. Based on the wonderful react-phone-input-2 package.
Supports Material-UI v5 and v6.
1npm install react-phone-input-material-ui --save 2 3or 4 5yarn add react-phone-input-material-ui
Mandatory props: value
and onChange
for controlling field; component
, which should be TextField
from @mui/material
.
1import React from 'react'; 2import ReactPhoneInput from 'react-phone-input-material-ui'; 3import { TextField } from '@mui/material'; 4 5function PhoneField(props) { 6 const { value, defaultCountry, onChange } = props; 7 8 return ( 9 <React.Fragment> 10 {/* Simple usage */} 11 <ReactPhoneInput 12 value={value} 13 onChange={onChange} // passed function receives the phone value 14 component={TextField} 15 /> 16 17 {/* Configure more */} 18 <ReactPhoneInput 19 value={value} 20 defaultCountry={defaultCountry || 'gb'} 21 onChange={onChange} 22 component={TextField} 23 inputProps={{ 24 sx: { 25 margin: '10px 0', 26 }, 27 }} 28 dropdownStyle={{ 29 fontFamily: 'sans-serif', 30 }} 31 /> 32 </React.Fragment> 33 ); 34} 35 36export default PhoneField;
Forked from react-phone-input-2. All the features of react-phone-input-2 are available. I will be update this library frequently to upto date with origin library
Code style changes not allowed
Based on react-phone-input
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
5 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 5
Reason
Found 4/15 approved changesets -- score normalized to 2
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
78 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More