Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

ngx-mat-intl-tel-input

tanansatpal39.8kMIT5.0.0TypeScript support: included

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.

angular, material, ng2, ng4, ng5, ng6, ng7, ng8, ng9, ng10, ng11, ng12, ng13, ng14, intl-tel-input, ng-intl-tel-input, phone number, phone, validation, international, i18n, country, dial, code, telephone, mobile, input, flag

readme

International Telephone Input for Angular Material (NgxMatIntlTelInput)

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.

Supports:

  • Angular 14
  • Angular Material 14
  • ReactiveFormsModule
  • FormsModule
  • Validation with libphonenumber-js

Installation

Install Dependencies

$ npm install libphonenumber-js --save

Install This Library

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

Usage

Import

Add NgxMatIntlTelInputComponent to your component file:

imports: [NgxMatIntlTelInputComponent];

Example

Refer to main app in this repository for working example.

<form #f="ngForm" [formGroup]="phoneForm">
  <ngx-mat-intl-tel-input
    [preferredCountries]="['us', 'gb']"
    [enablePlaceholder]="true"
    [enableSearch]="true"
    name="phone"
    describedBy="phoneInput"
    formControlName="phone"
  ></ngx-mat-intl-tel-input>
</form>

<form #f="ngForm" [formGroup]="phoneForm">
  <ngx-mat-intl-tel-input
  [preferredCountries]="['us', 'gb']"
  [enablePlaceholder]="true"
  [enableSearch]="true"
  name="phone"
  (countryChanged)="yourComponentMethodToTreatyCountryChangedEvent($event)" // $event is a instance of current select Country
  formControlName="phone"></ngx-mat-intl-tel-input>
</form>

If you want to show the sample number for the country selected or errors , use mat-hint anf mat-error as

<form #f="ngForm" [formGroup]="phoneForm">
  <ngx-mat-intl-tel-input
    [preferredCountries]="['us', 'gb']"
    [onlyCountries]="['us', 'gb', 'es']"
    [enablePlaceholder]="true"
    name="phone"
    formControlName="phone"
    #phone
  ></ngx-mat-intl-tel-input>
  <mat-hint>e.g. {{phone.selectedCountry.placeHolder}}</mat-hint>
  <mat-error *ngIf="f.form.controls['phone']?.errors?.required"
    >Required Field</mat-error
  >
  <mat-error *ngIf="f.form.controls['phone']?.errors?.validatePhoneNumber"
    >Invalid Number</mat-error
  >
</form>

Options

| Options | Type | Default | Description | | ------------------ | ---------- | ----------- | ----------------------------------------------------------------------------------- | --- | | preferredCountries | string[] | [] | List of country abbreviations, which will appear at the top. | | onlyCountries | string[] | [] | List of manually selected country abbreviations, which will appear in the dropdown. | | | inputPlaceholder | string | undefined | Placeholder for the input component. | | enablePlaceholder | boolean | true | Input placeholder text, which adapts to the country selected. | | enableSearch | boolean | false | Whether to display a search bar to help filter down the list of countries | | format | string | default | Format of "as you type" input. Possible values: national, international, default | | describedBy | string | undefined | Use aria-described by with the input field |

Library Contributions

  • Fork repo.
  • Go to ./projects/ngx-mat-intl-tel-input
  • Update ./src/lib 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}}

changelog

3.2.0 (2020-08-20)

This release contains the support for adding custom styles by exporting the component

Features

  • Enable support of theming by accessing to MatMenu subcomponent (#63)

3.2.1 (2020-09-01)

This release contains the support for updating the input placeholder

Features

  • Enable support of changing the placeholder for the input (#54)

3.2.2 (2020-09-09)

This release contains the support for as-you-type formatting

Features

  • Enable searching by the dial code
  • Implement "as-you-type" formatting (#58)

3.3.0 (2020-10-24)

This release contains the support for updating the input placeholder in cases of appearance outline form field and handling missing country

Features

  • Handle error when country code missing (#73)
  • Duplicate Preferred Country (#62)
  • Bug: Emit countryChanged event on enter full phone from other country
  • Placeholder for the input component

4.0.0 (2021-01-24)

This release supports the Angular version 11.

Features

  • Upgraded to Angular version 11 (#86)
  • Component disabled support (#81)
  • OnPush change detection support (#55)

4.1.0 (2021-11-11)

This release supports the Angular version 13.

Features

  • Upgraded to Angular version 13 (#131)

5.0.0 (2022-08-02)

This release supports the Angular version 14.

Features

  • Upgraded to Angular version 14 (#155)