1.0.0 • Published 5 years ago

gm-tel-input-lib v1.0.0

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
5 years ago

gm-tel-input

An Angular based module providing support for international mobile number input along with validation support using google-libphonenumber. Component styling is based on Bootstrap.

alt

Installation

Install the package via npm:

npm install --save gm-tel-input-lib

Install library dependencies

npm install --save jquery
npm install --save bootstrap
npm install --save flag-icon-css
npm install --save google-libphonenumber

Usage

Add and import GmTelInputModule module into application

import { GmTelInputModule } from 'gm-tel-input-lib';

imports: [
    GmTelInputModule.forRoot()
]

Add following code snippet required to render element in your HTML file

<gm-tel-input [value]="telNumber" [invalidFormatMsg]="'Invalid Contact number format'" 
    [invalidTelMsg]="'Invalid Contact number'" [formControlSrc]="telNumberCtrl" [id]="contactNbr">
</gm-tel-input>

Initialized Form Control and value to be used by component

telNumberCtrl: FormControl = new FormControl('', []);
telNumber = {};

If you are interested to have basic phone number validation based on google-libphonenumber, kindly update FormControl initialization definition as below:

telNumberCtrl: FormControl = new FormControl('', [phoneNumberValidator()]);

Add following CSS and Script files to your angular.json file

"styles": [
  "node_modules/flag-icon-css/css/flag-icon.min.css",
  "node_modules/bootstrap/dist/css/bootstrap.min.css"
],
"scripts": [
  "node_modules/jquery/dist/jquery.min.js", "node_modules/bootstrap/dist/js/bootstrap.bundle.js",
]

Options

OptionsTypeDefaultDescription
valueobject{countryCode:'',mobileNumber:''}Object containing selected country code and mobile number.
invalidFormatMsgstring''Validation error message for invalid input format.
invalidTelMsgstring''Validation error message for incorrect input number.
formControlSrcFormControlInstance of FormControl to be used
idstringcontactNbrId to be used in native HTML input element

Tests

Coming up

Acknowledgments / Attributions

Support

If you like this library consider to add star on GitHub Repository.

Thank you!

Licenses

Copyright 2019 gm.jdev@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.