Releases: jackocnr/intl-tel-input
Releases · jackocnr/intl-tel-input
v24.6.1
v24.6.0
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
v24.5.1
v24.5.0
v24.4.0
- 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