Coder Social home page Coder Social logo

Comments (3)

mpalourdio avatar mpalourdio commented on June 3, 2024

Thanks for this clear bug report, kudos! Looks like the bug is not here, but in the main library.
I have tried here : https://accounts.intuit.com/signup.html, and the same bug appears, whereas they do not use my integration for angular.

You should report the bug in the main repo here instead.

Thanks.

from intl-tel-input-ng.

s-o-f avatar s-o-f commented on June 3, 2024

Looks like the bug is not here, but in the main library.

I don't think so.
I can't reproduce this on official demo page https://intl-tel-input.com/

Looks like here https://accounts.intuit.com/signup.html they are using something like these hack that leads to the bug.

I found temporary solution for your component. It works, but not tested carefully.
Remove these:

if (!!value) {
      this._intlTelInput.setNumber(value);
    }

Add these:

keyUp() {
    if (this._intlTelInput.isValidNumber()) {
      this._intlTelInput.setNumber(this._intlTelInput.getNumber());
    }
  }

And add input attributes:

(keyup)="keyUp($event)"
(change)="keyUp($event)"

from intl-tel-input-ng.

mpalourdio avatar mpalourdio commented on June 3, 2024

Yes it is. The bug is caused by the auto-format feature in the lib, which the demo page does not use. That what this thread is all about.

We could to try to implement your hack, but it needs to be battle tested

from intl-tel-input-ng.

Related Issues (13)

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.