Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mat-tel-input

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mat-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.

  • 19.0.5-0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
560
Maintainers
0
Weekly downloads
 
Created
Source

International Telephone Input for Angular Material (mat-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.

npm version NPM npm bundle size npm

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:

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

Installation

Install This Library

$ npm i mat-tel-input@latest

Install Dependencies Optional

$ npm i libphonenumber-js@latest

Usage

Import

Add MatTelInput to your component file:

imports: [MatTelInput];

Example

Refer to main app in this repository for working example.

<mat-form-field [floatLabel]="'always'">
  <mat-label>Phone</mat-label>
  <mat-tel-input [preferredCountries]="['us', 'tz']" [enablePlaceholder]="true" [enableSearch]="true" name="phone" describedBy="phoneInput" formControlName="phone" />
</mat-form-field>

<mat-form-field [floatLabel]="'always'">
  <mat-label>Phone</mat-label>
  <mat-tel-input
    [preferredCountries]="['us', 'gb']"
    [enablePlaceholder]="true"
    [enableSearch]="true"
    name="phone"
    autocomplete="tel"
    (countryChanged)="yourComponentMethodToTreatyCountryChangedEvent($event)" // $event is a instance of current select Country
    formControlName="phone"
  />
</mat-form-field>

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

<mat-form-field [floatLabel]="'always'">
  <mat-label>Phone</mat-label>
  <mat-tel-input [preferredCountries]="['us', 'tz']" [enablePlaceholder]="true" [enableSearch]="true" name="phone" describedBy="phoneInput" formControlName="phone" />
  <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>
</mat-form-field>

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

Outputs

OptionsTypeDefaultDescription
countryChangedEventEmitter<Country>undefinedOn country change

Css variable

NameDefaultExplanation
--mat-tel-input-opacity1If you wish both, the country flag and the placeholder to be shown by default
--mat-tel-input-selector-opacity1If you wish the country flag to be shown by default
--mat-tel-input-placeholder-opacity1If you wish the placeholder flag to be shown by default
--mat-tel-input-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
matTelInputValidatorThe actual phone validator used for the controlphoneControl.addValidators([matTelInputValidator])

Library Contributions

  • Fork repo.
  • Go to ./libs/mat-tel-input
  • Update ./src/lib with new functionality.
  • Update README.md
  • Pull request.

Helpful commands

  • Copy license and readme files: $ npm run copy-files
  • Publish package: $ npm run publish

Authors and acknowledgment

Keywords

FAQs

Package last updated on 13 Dec 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc