Skip to content

Releases: jackocnr/intl-tel-input

v24.6.0

05 Oct 14:45
Compare
Choose a tag to compare

Support async functions for loading the utils script - thanks to @Mr0grog

Details
Deprecated utilsScript option, in favour of new loadUtilsOnInit option, which can be used in 2 ways:

// a string URL, as before
loadUtilsOnInit: "/path/to/utils.js"

or

// a function which returns a promise, resolving to the utils module
loadUtilsOnInit: () => import("/path/to/utils.js")

See readme for more info.

v24.5.2

03 Oct 10:47
Compare
Choose a tag to compare

v24.5.1

02 Oct 18:29
Compare
Choose a tag to compare

v24.5.0

11 Sep 17:02
Compare
Choose a tag to compare

v24.4.0

04 Sep 15:24
Compare
Choose a tag to compare
  • Fix incomplete Vue validation demo
  • Add new Vue demos for set-number and toggle-disabled
  • Add inputProps prop to Vue component to allow setting input attributes
  • Format Vue component code using Prettier
  • Update Vue component README

All thanks to @carlssonemil

v24.3.7

03 Sep 20:17
Compare
Choose a tag to compare

v24.3.5

29 Aug 11:12
Compare
Choose a tag to compare

v24.3.4

24 Aug 07:53
Compare
Choose a tag to compare

v24.3.3

23 Aug 22:21
Compare
Choose a tag to compare

v24.3.2

23 Aug 20:46
Compare
Choose a tag to compare

validation requires a valid selected country

NOTE: fixes issue where the plugin is initialised with onlyCountries=["us"] and the user types a valid UK number in international format and then calls isValidNumber. Previously it would validate as true, now it will validate as false, which is more desirable given the onlyCountries setting.