Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
ngx-intl-tel-input
Advanced tools
[![All Contributors](https://img.shields.io/badge/all_contributors-4-orange.svg?style=flat-square)](#contributors)
An Angular package for entering and validating international telephone numbers. It adds a flag dropdown to any input, detects the user's country, displays a relevant placeholder and provides formatting/validation methods.
Compatibility:
Validation with google-libphonenumber
ngx-intl-tel-input | Angular | ngx-bootstrap |
---|---|---|
3.x.x | 9.x.x - 10.x.x | 6.0.0 |
2.x.x | 8.x.x - 9.1.x | 5.6.x |
$ npm install intl-tel-input@17.0.3 --save
$ npm install google-libphonenumber --save
$ ng add ngx-bootstrap
Add 'intl-tel-input' style file:
./node_modules/intl-tel-input/build/css/intlTelInput.css
to angular.json styles array:
"styles": [
"./node_modules/bootstrap/dist/css/bootstrap.min.css",
"./node_modules/intl-tel-input/build/css/intlTelInput.css",
"src/styles.css"
],
$ npm install ngx-intl-tel-input --save
Add NgxIntlTelInputModule
to your module file:
imports: [NgxIntlTelInputModule];
Refer to main app in this repository for working example.
Or this:
<form #f="ngForm" [formGroup]="phoneForm">
<ngx-intl-tel-input
[cssClass]="'custom'"
[preferredCountries]="[CountryISO.UnitedStates, CountryISO.UnitedKingdom]"
[enableAutoCountrySelect]="false"
[enablePlaceholder]="true"
[searchCountryFlag]="true"
[searchCountryField]="[SearchCountryField.Iso2, SearchCountryField.Name]"
[selectFirstCountry]="false"
[selectedCountryISO]="CountryISO.India"
[maxLength]="15"
[tooltipField]="TooltipLabel.Name"
[phoneValidation]="true"
[inputId]="my-input-id"
name="phone"
formControlName="phone"
></ngx-intl-tel-input>
</form>
Options | Type | Default | Description |
---|---|---|---|
cssClass | string | control-form | Bootstrap input css class or your own custom one. |
preferredCountries | <CountryISO>[] | [] | List of countries, which will appear at the top. |
onlyCountries | <CountryISO>[] | [] | List of manually selected countries, which will appear in the dropdown. |
enableAutoCountrySelect | boolean | false | Toggle automatic country (flag) selection based on user input. |
enablePlaceholder | boolean | true | Input placeholder text, which adapts to the country selected. |
customPlaceholder | string | None | Custom string to be inserted as a placeholder. |
numberFormat | <PhoneNumberFormat> | PhoneNumberFormat.International | Custom string to be inserted as a placeholder. |
searchCountryFlag | boolean | false | Enables input search box for countries in the flag dropdown. |
searchCountryField | <SearchCountryField>[] | [SearchCountryField.All] | Customize which fields to search in, if searchCountryFlag is enabled. Use SearchCountryField helper enum. |
searchCountryPlaceholder | string | 'Search Country' | Placeholder value for searchCountryField |
maxLength | number | None | Add character limit. |
tooltipField | <TooltipLabel> | None | Set tooltip on flag hover. Use TooltipLabel helper enum for label type options. |
selectFirstCountry | boolean | true | Selects first country from preferredCountries if is set. If not then uses main list. |
phoneValidation | boolean | true | Disable phone validation. |
inputId | string | phone | Unique ID for <input> element. |
selectedCountryISO | <CountryISO> | None | Set specific country on load. |
separateDialCode | boolean | false | Visually separate dialcode into the drop down element. |
countryChange | <Country> | None | Emits country value when the user selects a country from the dropdown. |
Following formats are supported
./projects/ngx-intl-tel-input
./src/app
with new functionality.$ npm run build_lib
$ npm run copy-files
$ npm run npm_pack
$ npm run package
After building and creating package, you can use it locally too.
In your project run:
$ npm install --save {{path to your local '*.tgz' package file}}
Thanks goes to these wonderful people (emoji key):
webcat_black 🎨 💻 📖 🤔 💬 🚇 💡 🚧 👀 ⚠️ | Aleksandr Pasevin 💻 📖 🐛 📦 🔌 💬 🚇 💡 🚧 👀 ⚠️ | Dviejo 💻 🐛 💡 ⚠️ 💬 🚧 👀 | Jens Wagner 💻 | Kino Roy 💻 | Nathan Walker 🚧 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
[![Build Status](https://github.com/webcat12345/ngx-intl-tel-input/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/webcat12345/ngx-intl-tel-input/actions/workflows/ci.yml) [![GitHub Pages](https://img.shields.io/badge/Demo-blue?logo=
The npm package ngx-intl-tel-input receives a total of 21,798 weekly downloads. As such, ngx-intl-tel-input popularity was classified as popular.
We found that ngx-intl-tel-input demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.