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 install mat-tel-inputAn 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
!npm bundle size
!npm
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
$ npm i mat-tel-input@latest
$ npm i libphonenumber-js@latest
Add MatTelInput to your component file:
``ts`
imports: [MatTelInput];
Refer to main app in this repository for working example.
`html`
`html
[enablePlaceholder]="true"
[enableSearch]="true"
name="phone"
autocomplete="tel"
(countryChanged)="yourComponentMethodToTreatyCountryChangedEvent($event)" // $event is a instance of current select Country
formControlName="phone"
/>
`
If you want to show the sample number for the country selected or errors , use mat-hint anf mat-error as
`html`
| Options | Type | Default | Description |
| ------------------ | ---------- | ------------ | ----------------------------------------------------------------------------------- |
| enablePlaceholder | boolean | false | Input placeholder text, which adapts to the country selected. |boolean
| enableSearch | | false | Whether to display a search bar to help filter down the list of countries |string
| format | | default | Format of "as you type" input. Possible values: national, international, default |string
| placeholder | | undefined | Placeholder for the input component. |number
| maxLength | | 15 | max length of the input. |string[]
| onlyCountries | | [] | List of manually selected country abbreviations, which will appear in the dropdown. |string[]
| preferredCountries | | [] | List of country abbreviations, which will appear at the top. |boolean
| resetOnChange | | false | Reset input on country change |string
| searchPlaceholder | | Search ... | Placeholder for the search input |
| Options | Type | Default | Description |
| -------------- | ----------------------- | ----------- | ----------------- |
| countryChanged | EventEmitter | undefined | On country change |
| Name | Default | Explanation |
| ------------------------------------- | -------------- | ----------------------------------------------------------------------------- |
| --mat-tel-input-opacity | 1 | If you wish both, the country flag and the placeholder to be shown by default |--mat-tel-input-selector-opacity
| | 1 | If you wish the country flag to be shown by default |--mat-tel-input-placeholder-opacity
| | 1 | If you wish the placeholder flag to be shown by default |--mat-tel-input-flag-display
| | inline-block | If you wish to hide the country flag |
In case you had to manually remove the validator, the library exported it so you could add it back again.
| Name | Description | Example |
| ---------------------- | ----------------------------------------------- | ---------------------------------------------------- |
| matTelInputValidator | The actual phone validator used for the control | phoneControl.addValidators([matTelInputValidator]) |
- Fork repo.
- Go to ./libs/mat-tel-input./src/lib
- Update with new functionality.
- Update README.md
- Pull request.
- Copy license and readme files: $ npm run copy-files$ npm run publish
- Publish package:
- maintainer Munir I Said
- Forked from ngx-mat-intl-tel-input