An open API service indexing awesome lists of open source software.

https://github.com/webcat12345/ngx-intl-tel-input

Phone number input field to support international numbers, Angular
https://github.com/webcat12345/ngx-intl-tel-input

angular international intl-tel-input phone-number

Last synced: 6 months ago
JSON representation

Phone number input field to support international numbers, Angular

Awesome Lists containing this project

README

          

# International Telephone Input for Angular (NgxIntlTelInput)

[![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=angular&label=Pages&color=7952B3)](https://webcat12345.github.io/ngx-intl-tel-input/demo/)
[![license](https://img.shields.io/github/license/webcat12345/ngx-intl-tel-input)](https://github.com/webcat12345/ngx-intl-tel-input/blob/master/LICENSE)
[![npm version](https://img.shields.io/npm/v/ngx-intl-tel-input)](https://badge.fury.io/js/ngx-intl-tel-input)
[![npm](https://img.shields.io/npm/dm/ngx-intl-tel-input)](https://www.npmjs.com/package/ngx-intl-tel-input)

[![All Contributors](https://img.shields.io/github/all-contributors/webcat12345/ngx-intl-tel-input?color=ee8449&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.

![alt](readme-assets/ngx-intl-tel-input.jpg)

**Compatibility:**

Validation with [google-libphonenumber](https://github.com/ruimarinho/google-libphonenumber)

| ngx-intl-tel-input | Angular | ngx-bootstrap |
| ------------------ |-----------------| ------------- |
| 17.x.x | >= 17.x.x | >= 12.0.0 |
| 16.x.x | >= 16.x.x | >= 11.0.0 |
| 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:

```json

"styles": [
"./node_modules/intl-tel-input/build/css/intlTelInput.css",
"src/styles.css"
],

```

### Install This Library

`$ npm install ngx-intl-tel-input --save`

## Usage

### Import

Add `NgxIntlTelInputModule` to your module file:

```javascript
imports: [NgxIntlTelInputModule];
```

## Example

Refer to main app in this repository for working example.

Or this:

[Stackblitz Demo (Angular 8)](https://stackblitz.com/edit/ngx-intl-tel-input-demo-ng-8)

[Stackblitz Demo (Angular 9)](https://stackblitz.com/edit/ngx-intl-tel-input-demo-ng-9)

[Stackblitz Demo (Angular 10)](https://stackblitz.com/edit/ngx-intl-tel-input-demo-ng-10)

[Stackblitz Demo (Angular 11)](https://stackblitz.com/edit/ngx-intl-tel-input-demo-ng-11)

[Stackblitz Demo (Angular 12)](https://stackblitz.com/edit/ngx-intl-tel-input-demo-ng-12)

```html

```

## Options

| Options | Type | Default | Description |
| ------------------------ | ------------------------ | --------------------------------- | ------------------------------------------------------------------------------------------------------------- |
| cssClass | `string` | `control-form` | Bootstrap input css class or your own custom one. |
| preferredCountries | `[]` | `[]` | List of countries, which will appear at the top. |
| onlyCountries | `[]` | `[]` | 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.International` | Custom string to be inserted as a placeholder. |
| searchCountryFlag | `boolean` | `false` | Enables input search box for countries in the flag dropdown. |
| 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 `` element. |
| selectedCountryISO | `` | `None` | Set specific country on load. |
| separateDialCode | `boolean` | `false` | Visually separate dialcode into the drop down element. |
| countryChange | `` | `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](https://github.com/all-contributors/all-contributors#emoji-key)):



webcat_black
webcat_black

🎨 πŸ’» πŸ“– πŸ€” πŸ’¬ πŸš‡ πŸ’‘ 🚧 πŸ‘€ ⚠️
Chris McKnight
Chris McKnight

πŸ’¬ πŸ’» πŸ“– πŸ€” πŸš‡ πŸ”Œ πŸ‘€ πŸ”§
Aleksandr Pasevin
Aleksandr Pasevin

πŸ’» πŸ“– πŸ› πŸ“¦ πŸ”Œ πŸ’¬ πŸš‡ πŸ’‘ 🚧 πŸ‘€ ⚠️
Dviejo
Dviejo

πŸ’» πŸ› πŸ’‘ ⚠️ πŸ’¬ 🚧 πŸ‘€
Kino Roy
Kino Roy

πŸ’»
Nathan Walker
Nathan Walker

🚧 πŸ’»
Jiarong Xu
Jiarong Xu

πŸ’»


Corbin Crutchley
Corbin Crutchley

πŸ’»
Nayeli Beckham
Nayeli Beckham

πŸ’» πŸ“¦ πŸ’¬ 🚧
Rushabh Vora
Rushabh Vora

πŸ’»
Karim Tayie
Karim Tayie

πŸ’»
Adil Khalil
Adil Khalil

πŸ’»
Alice Zhao
Alice Zhao

πŸ’»
Felipe CΓ©spedes
Felipe CΓ©spedes

πŸ’»


bb-sonam
bb-sonam

πŸ’»
Alex Kulagin
Alex Kulagin

πŸ’»
Subodh Kumar Yadav
Subodh Kumar Yadav

πŸ’»
harshalganbote
harshalganbote

πŸ’»
christianopaets
christianopaets

πŸ’»
Victor Velechovsky
Victor Velechovsky

πŸ’»
Heo
Heo

πŸ’»


Martin DONADIEU
Martin DONADIEU

πŸ’» πŸ““
Nico
Nico

πŸ’» πŸ“– πŸ“¦ πŸ““
zaizac
zaizac

πŸ’» πŸ‘€
nicolasleb
nicolasleb

πŸ’» 🚧 πŸ“¦ πŸ‘€ πŸ““
jlj
jlj

πŸ’» πŸ““ πŸ›
Ahmed Asif
Ahmed Asif

πŸ› πŸ’»
snmhinge
snmhinge

πŸ’»


juju-sunrise
juju-sunrise

πŸ’» 🚧
danielstvn
danielstvn

πŸ’» 🚧
kapcake
kapcake

πŸ’» 🚧

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!