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 ngx-mat-intl-tel-input$ npm install libphonenumber-js --save
$ npm install ngx-mat-intl-tel-input --save
NgxMatIntlTelInputComponent to your component file:
ts
imports: [NgxMatIntlTelInputComponent];
`
Example
Refer to main app in this repository for working example.
`html
`
`html
`
If you want to show the sample number for the country selected or errors , use mat-hint anf mat-error as
`html
`
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.
$3
- 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
$3
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}}`