19.2.1 • Published 3 months ago

ngx-mat-input-tel v19.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

International Telephone Input for Angular Material (ngxMatInputTel)

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.

npm version NPM npm bundle size npm

Demo

Caution

This is a fork from the ngx-mat-intl-tel-input library whish does not seems to be maintained anymore. Last commit is over a year

Supports:

Angularngx-mat-input-tel
>= 18>= 19.2.0
>= 15< 19.2.0

Installation

Install This Library

$ npm i ngx-mat-input-tel@latest

Install Dependencies Optional

$ npm i libphonenumber-js@latest

Usage

Import

Add NgxMatInputTelComponent to your component file:

imports: [NgxMatInputTelComponent];

Example

Refer to main app in this repository for working example.

<form #f="ngForm" [formGroup]="phoneForm">
  <ngx-mat-input-tel
    [preferredCountries]="['us', 'gb']"
    [enablePlaceholder]="true"
    [enableSearch]="true"
    name="phone"
    describedBy="phoneInput"
    formControlName="phone"
  ></ngx-mat-input-tel>
</form>
<form #f="ngForm" [formGroup]="phoneForm">
  <ngx-mat-input-tel
  [preferredCountries]="['us', 'gb']"
  [enablePlaceholder]="true"
  [enableSearch]="true"
  name="phone"
  autocomplete="tel"
  (countryChanged)="yourComponentMethodToTreatyCountryChangedEvent($event)" // $event is a instance of current select Country
  formControlName="phone"></ngx-mat-input-tel>
</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-input-tel
    [preferredCountries]="['us', 'gb']"
    [onlyCountries]="['us', 'gb', 'es']"
    [enablePlaceholder]="true"
    name="phone"
    autocomplete="tel"
    formControlName="phone"
    #phone
  ></ngx-mat-input-tel>
  <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>

Inputs

OptionsTypeDefaultDescription
enablePlaceholderbooleanfalseInput placeholder text, which adapts to the country selected.
enableSearchbooleanfalseWhether to display a search bar to help filter down the list of countries
formatstringdefaultFormat of "as you type" input. Possible values: national, international, default
placeholderstringundefinedPlaceholder for the input component.
maxLengthnumber15max length of the input.
onlyCountriesstring[][]List of manually selected country abbreviations, which will appear in the dropdown.
preferredCountriesstring[][]List of country abbreviations, which will appear at the top.
resetOnChangebooleanfalseReset input on country change
searchPlaceholderstringSearch ...Placeholder for the search input
validationisPossible | isValidisValidChange the validation type

Outputs

OptionsTypeDefaultDescription
countryChangedEventEmitter<Country>undefinedOn country change

Css variable

NameDefaultExplanation
--ngxMatInputTel-opacity0If you wish both, the country flag and the placeholder to be shown by default
--ngxMatInputTel-selector-opacity0If you wish the country flag to be shown by default
--ngxMatInputTel-placeholder-opacity0If you wish the placeholder flag to be shown by default
--ngxMatInputTel-flag-displayinline-blockIf you wish to hide the country flag

Validator

In case you had to manually remove the validator, the library exported it so you could add it back again.

NameDescriptionExample
ngxMatInputTelValidatorThe actual phone validator used for the controlphoneControl.addValidators([ngxMatInputTlValidator])

Library Contributions

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

Authors and acknowledgment

Contributors

Contributions are welcome! See our contribution notes.

BuyMeACoffee

19.1.0

3 months ago

19.0.0

5 months ago

19.2.1

3 months ago

19.2.0

3 months ago

18.5.3

8 months ago

18.5.2

8 months ago

18.5.1

8 months ago

18.5.0

8 months ago

18.4.0

8 months ago

18.3.1

9 months ago

18.2.2

11 months ago

18.1.3

11 months ago

18.3.0

11 months ago

18.2.1

11 months ago

18.1.2

12 months ago

18.2.0

11 months ago

18.1.1

12 months ago

18.1.0

12 months ago

18.0.0

1 year ago

17.4.0

1 year ago

17.3.0

1 year ago

17.2.1

1 year ago

17.2.0

1 year ago

17.1.8

1 year ago

17.1.7

1 year ago

17.1.6

1 year ago

17.1.5

1 year ago

17.1.2

1 year ago

17.1.1

1 year ago

17.1.4

1 year ago

17.1.3

1 year ago

17.1.0

1 year ago

16.1.9

2 years ago

16.1.8

2 years ago

16.1.7

2 years ago

17.0.0

2 years ago

16.2.0

2 years ago

16.2.1

2 years ago

16.1.6

2 years ago

16.1.5

2 years ago

16.1.4

2 years ago

16.1.3

2 years ago

16.1.2

2 years ago

16.1.1

2 years ago

16.1.0

2 years ago