0.0.1 • Published 4 years ago

@ruydo/ngx-phone-number v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

NgxPhoneNumber

A component for picking phone numbers, that is compatible with Angular Material

Data source

It is using data from the following sources

http://country.io/data/
https://stefangabos.github.io/world_countries/

The IP geolocation data is provided by https://www.ip2location.com

Usage

Copy the assets into your Angular project.

"assets": [
  "src/favicon.ico",
  "src/assets",
  {
    "glob": "**/*",
    "input": "node_modules/@ruydo/ngx-phone-number/assets/images/flags/",
    "output": "assets/images/flags/"
  }
],

Import the module

import { NgxPhoneNumberModule } from "@ruydo/ngx-phone-number";

Use it in the view

<mat-form-field class="w-full" appearance="outline">
  <mat-label>
    {{ "phoneNumber" | translate }}
  </mat-label>
  <ngx-phone-number
    name="phoneNumber"
    [(ngModel)]="model.phoneNumber"
    (onChange)="phoneNumberChanges($event)"
    placeholder="{{ '$phoneNumberPlaceholder' | translate }}"
    defaultCode="CL"
  ></ngx-phone-number>
</mat-form-field>
0.0.5

4 years ago

0.0.4

4 years ago

0.0.6

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago