Installations
npm install ngx-intl-tel-input
Developer Guide
Typescript
No
Module System
ESM
Node Version
20.18.0
NPM Version
10.8.2
Releases
Move angular support to 14
Published on 24 Nov 2022
v3.x.x -> Angular 9.x.x - 10.x.x
Published on 06 Sept 2020
v2.x.x -> Angular 8.x.x - 9.1.x
Published on 06 Sept 2020
Fixes: Cannot read property 'querySelector' of undefined
Published on 19 Jun 2020
ReadMe update to reflect Angular 9 support.
Published on 08 Jun 2020
[id] name change and support for Angular 9
Published on 08 Jun 2020
Contributors
Languages
TypeScript (82.1%)
HTML (7.59%)
CSS (5.37%)
JavaScript (4.93%)
Love this project? Help keep it running — sponsor us today! 🚀
Developer
webcat12345
Download Statistics
Total Downloads
5,254,678
Last Day
148
Last Week
148
Last Month
60,071
Last Year
1,112,651
GitHub Statistics
215 Stars
425 Commits
343 Forks
13 Watching
8 Branches
27 Contributors
Bundle Size
42.23 kB
Minified
11.89 kB
Minified + Gzipped
Package Meta Information
Latest Version
16.0.0
Package Id
ngx-intl-tel-input@16.0.0
Unpacked Size
382.56 kB
Size
94.05 kB
File Count
41
NPM Version
10.8.2
Node Version
20.18.0
Publised On
03 Feb 2025
Total Downloads
Cumulative downloads
Total Downloads
5,254,678
Last day
0%
148
Compared to previous day
Last week
-98.7%
148
Compared to previous week
Last month
-23.5%
60,071
Compared to previous month
Last year
-23.3%
1,112,651
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dependencies
1
International Telephone Input for Angular (NgxIntlTelInput)
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 |
---|---|---|
15.x.x | >= 15.x.x | >= 10.0.0 |
14.x.x | 12.x.x - 14.x.x | >= 6.0.0 |
13.x.x | 12.x.x - 13.x.x | >= 6.0.0 |
3.2.1 | 12.x.x - 13.x.x | >= 6.0.0 |
3.1.3 | 8.x.x - 11.x.x | 6.0.x |
2.x.x | 8.x.x - 9.1.x | 5.6.x |
Installation
Install Dependencies
$ npm install intl-tel-input@19 --save
$ npm install google-libphonenumber --save
$ ng add ngx-bootstrap
If you do not wish to use Bootstrap's global CSS, we now package the project with only the relevant
bootstrap styling needed for the dropdown. As such, you can remove the bootstrap styling from angular.json
.
Further, Angular CLI should tree-shake the rest of Ngx-Boostrap away if you don't utilize other dependencies from the bootstrap package. This should keep this dependency a lean feature-add
Add Dependency Style
Add 'intl-tel-input' style file:
./node_modules/intl-tel-input/build/css/intlTelInput.css
to angular.json styles array:
1 2"styles": [ 3 "./node_modules/intl-tel-input/build/css/intlTelInput.css", 4 "src/styles.css" 5], 6
Install This Library
$ npm install ngx-intl-tel-input --save
Usage
Import
Add NgxIntlTelInputModule
to your module file:
1imports: [NgxIntlTelInputModule];
Example
Refer to main app in this repository for working example.
Or this:
1<form #f="ngForm" [formGroup]="phoneForm"> 2 <ngx-intl-tel-input 3 [cssClass]="'custom'" 4 [preferredCountries]="[CountryISO.UnitedStates, CountryISO.UnitedKingdom]" 5 [enableAutoCountrySelect]="false" 6 [enablePlaceholder]="true" 7 [searchCountryFlag]="true" 8 [searchCountryField]="[SearchCountryField.Iso2, SearchCountryField.Name]" 9 [selectFirstCountry]="false" 10 [selectedCountryISO]="CountryISO.India" 11 [maxLength]="15" 12 [phoneValidation]="true" 13 [inputId]="my-input-id" 14 name="phone" 15 formControlName="phone" 16 ></ngx-intl-tel-input> 17</form>
Options
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 | true | 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. |
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. |
Supported Formats
Following formats are supported
- NATIONAL // Produces "044 668 18 00"
- INTERNATIONAL // Produces "+41 44 668 18 00"
- E164 // Produces "+41446681800"
Library Contributions
- Fork repo.
- Update
./projects/ngx-intl-tel-input
- Build / test library.
- Update
./src/app
with new functionality. - Update README.md
- Pull request.
Helpful commands
- Build lib:
$ npm run build_lib
- Copy license and readme files:
$ npm run copy-files
- Create package:
$ npm run npm_pack
- Build lib and create package:
$ npm run package
Use locally
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}}
Contributors
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
![Empty State](/_next/static/media/empty.e5fae2e5.png)
No vulnerabilities found.
Reason
30 commit(s) and 11 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: MIT License: LICENSE:0
Reason
dependency not pinned by hash detected -- score normalized to 5
Details
- Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:10: update your workflow using https://app.stepsecurity.io/secureworkflow/webcat12345/ngx-intl-tel-input/ci.yml/master?enable=pin
- Info: 0 out of 1 GitHub-owned GitHubAction dependencies pinned
- Info: 1 out of 1 npmCommand dependencies pinned
Reason
detected GitHub workflow tokens with excessive permissions
Details
- Warn: no topLevel permission defined: .github/workflows/ci.yml:1
- Info: no jobLevel write permissions found
Reason
Found 0/18 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
- Warn: branch protection not enabled for branch 'angular-9'
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
- Warn: 0 commits out of 19 are checked with a SAST tool
Reason
38 existing vulnerabilities detected
Details
- Warn: Project is vulnerable to: GHSA-67hx-6x53-jw92
- Warn: Project is vulnerable to: GHSA-qwcr-r2fm-qrc7
- Warn: Project is vulnerable to: GHSA-grv7-fg5c-xmjg
- Warn: Project is vulnerable to: GHSA-pxg6-pf52-xh8x
- Warn: Project is vulnerable to: GHSA-3xgq-45jj-v275
- Warn: Project is vulnerable to: GHSA-phwq-j96m-2c2q
- Warn: Project is vulnerable to: GHSA-ghr5-ch3p-vcr6
- Warn: Project is vulnerable to: GHSA-q9mw-68c2-j6m5
- Warn: Project is vulnerable to: GHSA-rv95-896h-c2vc
- Warn: Project is vulnerable to: GHSA-qw6h-vgh9-j6wx
- Warn: Project is vulnerable to: GHSA-jchw-25xp-jwwc
- Warn: Project is vulnerable to: GHSA-cxjh-pqwp-8mfp
- Warn: Project is vulnerable to: GHSA-rc47-6667-2j5j
- Warn: Project is vulnerable to: GHSA-c7qv-q95q-8v27
- Warn: Project is vulnerable to: GHSA-78xj-cgh5-2h22
- Warn: Project is vulnerable to: GHSA-2p57-rm9w-gvfp
- Warn: Project is vulnerable to: GHSA-9c47-m6qq-7p4h
- Warn: Project is vulnerable to: GHSA-952p-6rrq-rcjv
- Warn: Project is vulnerable to: GHSA-mwcw-c2x4-8c55
- Warn: Project is vulnerable to: GHSA-9wv6-86v2-598j
- Warn: Project is vulnerable to: GHSA-rhx6-c78j-4q9w
- Warn: Project is vulnerable to: GHSA-7fh5-64p2-3v2j
- Warn: Project is vulnerable to: GHSA-p8p7-x288-28g6
- Warn: Project is vulnerable to: GHSA-gcx4-mw62-g8wm
- Warn: Project is vulnerable to: GHSA-c2qf-rxjj-qqgw
- Warn: Project is vulnerable to: GHSA-m6fv-jmcg-4jfg
- Warn: Project is vulnerable to: GHSA-cm22-4g7w-348p
- Warn: Project is vulnerable to: GHSA-25hc-qcg6-38wj
- Warn: Project is vulnerable to: GHSA-cqmj-92xf-r6r9
- Warn: Project is vulnerable to: GHSA-f5x3-32g6-xq36
- Warn: Project is vulnerable to: GHSA-72xf-g2v4-qvf3
- Warn: Project is vulnerable to: GHSA-fhg7-m89q-25r3
- Warn: Project is vulnerable to: GHSA-hc6q-2mpp-qw7j
- Warn: Project is vulnerable to: GHSA-4vvj-4cpr-p986
- Warn: Project is vulnerable to: GHSA-wr3j-pwj9-hqq6
- Warn: Project is vulnerable to: GHSA-j8xg-fqg3-53r7
- Warn: Project is vulnerable to: GHSA-3h5v-q93c-6h6q
- Warn: Project is vulnerable to: GHSA-776f-qx25-q3cc
Score
3.8
/10
Last Scanned on 2025-01-27
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 MoreOther packages similar to ngx-intl-tel-input
@andela-dev/ngx-intl-tel-input
[![All Contributors](https://img.shields.io/badge/all_contributors-4-orange.svg?style=flat-square)](#contributors)
ngx-mat-intl-tel-input
An Angular Material 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.
ngx-intl-tel-input-gg
Forked from https://github.com/webcat12345/ngx-intl-tel-input
ngx-mat-input-tel
An Angular Material 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.