
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
mat-tel-input
Advanced tools
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.
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.
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:
$ npm i mat-tel-input@latest
$ npm i libphonenumber-js@latest
Add MatTelInput
to your component file:
imports: [MatTelInput];
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>
Options | Type | Default | Description |
---|---|---|---|
enablePlaceholder | boolean | false | 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 |
placeholder | string | undefined | Placeholder for the input component. |
maxLength | number | 15 | max length of the input. |
onlyCountries | string[] | [] | List of manually selected country abbreviations, which will appear in the dropdown. |
preferredCountries | string[] | [] | List of country abbreviations, which will appear at the top. |
resetOnChange | boolean | false | Reset input on country change |
searchPlaceholder | string | Search ... | Placeholder for the search input |
Options | Type | Default | Description |
---|---|---|---|
countryChanged | EventEmitter<Country> | 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]) |
./libs/mat-tel-input
./src/lib
with new functionality.$ npm run copy-files
$ npm run publish
19.0.5-0 (2024-12-13)
FAQs
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.
The npm package mat-tel-input receives a total of 448 weekly downloads. As such, mat-tel-input popularity was classified as not popular.
We found that mat-tel-input demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.