Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngx-intl-tel-input-angular7

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-intl-tel-input-angular7

[![All Contributors](https://img.shields.io/badge/all_contributors-4-orange.svg?style=flat-square)](#contributors)

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by120%
Maintainers
1
Weekly downloads
 
Created
Source

International Telephone Input for Angular (NgxIntlTelInput)

All Contributors

Build Status npm version npm

An Angular 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.

alt

Supports:

  • Angular 7
  • ReactiveFormsModule
  • FormsModule
  • Validation with google-libphonenumber

Installation

Install Dependencies

$ npm install intl-tel-input-ng7 --save

$ npm install google-libphonenumber --save

$ ng add ngx-bootstrap

Add Dependency Style

Add 'intl-tel-input' style file:

./node_modules/intl-tel-input/build/css/intlTelInput.css

to angular.json styles array:


"styles": [
  "./node_modules/bootstrap/dist/css/bootstrap.min.css",
  "./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css",
  "./node_modules/intl-tel-input/build/css/intlTelInput.css",
  "src/styles.css"
],

Install This Library

$ npm install ngx-intl-tel-input --save

Usage

Import

Add BsDropDownModule and NgxIntlTelInputModule to your module file:


imports: [
    BsDropdownModule.forRoot(),
    NgxIntlTelInputModule,
  ]

Example

Refer to main app in this repository for working example.

Or this Stackblitz Demo.


<form #f="ngForm" [formGroup]="phoneForm">
    <ngx-intl-tel-input
    [cssClass]="'custom'"
    [preferredCountries]="[CountryISO.UnitedStates, CountryISO.UnitedKingdom]"
    [enableAutoCountrySelect]="false"
    [enablePlaceholder]="true"
    [searchCountryFlag]="true"
    [searchCountryField]="[SearchCountryField.Iso2, SearchCountryField.Name]"
    [selectFirstCountry]="false"
    [selectedCountryISO]="CountryISO.India"
    [maxLength]="15"
    [tooltipField]="TooltipLabel.Name"
    [phoneValidation]="true"
    name="phone"
    formControlName="phone"></ngx-intl-tel-input>
  </form>

Options

OptionsTypeDefaultDescription
cssClassstringcontrol-formBootstrap input css class or your own custom one.
preferredCountries<CountryISO>[][]List of countries, which will appear at the top.
onlyCountries<CountryISO>[][]List of manually selected countries, which will appear in the dropdown.
enableAutoCountrySelectbooleanfalseToggle automatic country (flag) selection based on user input.
enablePlaceholderbooleantrueInput placeholder text, which addapts to the country selected.
searchCountryFlagbooleanfalseEnables input search box for countries in the flag dropdown.
searchCountryField<SearchCountryField>[][SearchCountryField.All]Customize which fields to search in, if searchCountryFlag is enabled. Use SearchCountryField helper enum.
searchCountryPlaceholderstring'Search Country'Placeholder value for searchCountryField
maxLengthnumberNoneAdd character limit.
tooltipField<TooltipLabel>NoneSet tooltip on flag hover. Use TooltipLabel helper enum for label type options.
selectFirstCountrybooleantrueSelects first country from preferredCountries if is set. If not then uses main list.
phoneValidationbooleantrueDisable phone validation.
selectedCountryISO<CountryISO>NoneSet specific country on load.
separateDialCodebooleanfalseVisually separate dialcode into the drop down element.

Library Contributions

  • Fork repo.
  • Update ./projects/ngx-intl-tel-input
  • Build / test library.
  • Update ./src/app with new functionality.
  • Update README.md
  • Pull request.

Helpful commands

  • 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

Use localy

After building and creating package, you can use it localy too.

In your project run:

$ npm install --save {{path to your local '*.tgz' package file}}

Contributors

Thanks goes to these wonderful people (emoji key):

webcat_black
webcat_black

🎨 💻 📖 🤔 💬 🚇 💡 🚧 👀 ⚠️
Aleksandr Pasevin
Aleksandr Pasevin

💻 📖 🐛 📦 🔌 💬 🚇 💡 🚧 👀 ⚠️
Dviejo
Dviejo

💻 🐛 💡 ⚠️ 💬 🚧 👀
Jens Wagner
Jens Wagner

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Package last updated on 11 Sep 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc