Coder Social home page Coder Social logo

dinuda / angular-international-phone-input Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 550 KB

About An Angular plugin for telephone input that validates phone numbers and provides both national and international formatting.

License: MIT License

JavaScript 4.93% TypeScript 82.77% CSS 5.39% HTML 6.91%

angular-international-phone-input's Introduction

International Phone Input for Angular (angularInternationalPhoneInput)

** This is a fork of the original [ngx-intl-tel-input] by webcat12345 created to upgrade to angular 17 version due to dependency issues as the repo seemed to be unmaintained) **

All Contributors

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.

Compatibility:

Validation with google-libphonenumber

angular-international-phone-input Angular ngx-bootstrap
1.x.x 14.x.x - 17.x.x >= 12.0.0

Installation

Install Dependencies

$ npm install int-phone-input --save

$ npm install google-libphonenumber --save

$ ng add ngx-bootstrap

If you do not wish to use Bootstrap's global CSS, we now package the project with only the relevant bootstrap styling needed for the dropdown. As such, you can remove the bootstrap styling from angular.json.

Further, Angular CLI should tree-shake the rest of Ngx-Boostrap away if you don't utilize other dependencies from the bootstrap package. This should keep this dependency a lean feature-add

Add Dependency Style

Add 'int-phone-input' style file:

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

to angular.json styles array:

"styles": [
  "./node_modules/intl-tel-input/build/css/intPhoneInput.css",
  "src/styles.css"
],

Install This Library

$ npm i angular-international-phone-input --save

Usage

Import

Add AngularInternationalPhoneModule to your module file:

imports: [
  AngularInternationalPhoneModule
]

Example

<form #f="ngForm" [formGroup]="phoneForm">
	<angular-international-phone-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"
		[phoneValidation]="true"
		[inputId]="my-input-id"
		name="phone"
		formControlName="phone"
	></angular-international-phone-input>
</form>

Options

Options Type Default Description
cssClass string control-form Bootstrap 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.
enableAutoCountrySelect boolean true Toggle automatic country (flag) selection based on user input.
enablePlaceholder boolean true Input placeholder text, which adapts to the country selected.
customPlaceholder string None Custom string to be inserted as a placeholder.
numberFormat <PhoneNumberFormat> PhoneNumberFormat.International Custom string to be inserted as a placeholder.
searchCountryFlag boolean false Enables 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.
searchCountryPlaceholder string 'Search Country' Placeholder value for searchCountryField
maxLength number None Add character limit.
selectFirstCountry boolean true Selects first country from preferredCountries if is set. If not then uses main list.
phoneValidation boolean true Disable phone validation.
inputId string phone Unique ID for <input> element.
selectedCountryISO <CountryISO> None Set specific country on load.
separateDialCode boolean false Visually separate dialcode into the drop down element.
countryChange <Country> None Emits country value when the user selects a country from the dropdown.

Supported Formats

Following formats are supported

  • NATIONAL // Produces "044 668 18 00"
  • INTERNATIONAL // Produces "+41 44 668 18 00"
  • E164 // Produces "+41446681800"

Library Contributions

  • Fork repo.
  • Update ./projects/angular-international-phone-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 locally

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}}

Contributors - From Original Repo and new contributors

Thanks goes to these wonderful people (emoji key):


Dinuda

πŸ’» πŸ“– πŸ€” πŸ’¬ πŸš‡ πŸ’‘ 🚧 πŸ‘€ ⚠️

webcat_black

🎨 πŸ’» πŸ“– πŸ€” πŸ’¬ πŸš‡ πŸ’‘ 🚧 πŸ‘€ ⚠️

Aleksandr Pasevin

πŸ’» πŸ“– πŸ› πŸ“¦ πŸ”Œ πŸ’¬ πŸš‡ πŸ’‘ 🚧 πŸ‘€ ⚠️

Dviejo

πŸ’» πŸ› πŸ’‘ ⚠️ πŸ’¬ 🚧 πŸ‘€

Jens Wagner

πŸ’»

Kino Roy

πŸ’»

Nathan Walker

🚧 πŸ’»

Jiarong Xu

πŸ’»

Corbin Crutchley

πŸ’»

Nayeli Beckham

πŸ’» πŸ“¦ πŸ’¬ 🚧

Rushabh Vora

πŸ’»

Karim Tayie

πŸ’»

Adil Khalil

πŸ’»

Alice Zhao

πŸ’»

Felipe CΓ©spedes

πŸ’»

bb-sonam

πŸ’»

Alex Kulagin

πŸ’»

Subodh Kumar Yadav

πŸ’»

harshalganbote

πŸ’»

christianopaets

πŸ’»

Victor Velechovsky

πŸ’»

Heo

πŸ’»

jlw

πŸ’»

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

angular-international-phone-input's People

Contributors

dinuda avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.