Skip to content

Releases: iamstevendao/vue-tel-input

v5.5.0

26 Jun 06:18
Compare
Choose a tag to compare
  • #268: Remove postinstall script (592a1fe)
  • Update README, add Development section.

v5.4.0

19 Jun 14:56
Compare
Choose a tag to compare
  • #264: Update dependencies and add new build target for modern browsers (2964043)
    To use it:
    import VueTelInput from 'vue-tel-input/dist-modern/vue-tel-input.umd.js';
    import 'vue-tel-input/dist-modern/vue-tel-input.css';

v5.3.0

28 Apr 13:32
Compare
Choose a tag to compare
  • #200: Use v-if instead of v-show for countries list (75c2e76)

v5.2.0

28 Apr 13:31
Compare
Choose a tag to compare
  • Allow defaultCountry prop to accept both iso2 and dialCode (b8482fa)
  • Add named slot to allow icons to be added to the right of the input (7fbd8ca)

v5.1.0

21 Feb 14:13
Compare
Choose a tag to compare
  • Add option to import separate css files (including sprite.css and component.css):
// Before
import 'vue-tel-input/dist/vue-tel-input.css';

// After (Optional)
import 'vue-tel-input/dist/css/sprite.css';
import 'vue-tel-input/dist/css/component.css';

v5.0.4

01 Feb 05:01
Compare
Choose a tag to compare
  • #231: Add invalid value to phone number object if country is not exists in filtered list (b5f003d)
  • #154: Return current input element as the third argument in @input (7bd918c)

v5.0.3

21 Jan 05:53
Compare
Choose a tag to compare
  • #25: Make inputOptions.placeholder prop reactive (de5c0f8)

v5.0.0

15 Jan 07:05
Compare
Choose a tag to compare

This version is a complete rewrite to the codebase, which includes:

  • Build tool: vue-cli (to replace rollup).
  • Library: libphonenumber-js (to replace awesome-phonenumber).
  • Documentation: vuepress.
  • More organized props with inputOptions and dropdownOptions.

v5.0.0-beta.0

10 Jan 12:52
Compare
Choose a tag to compare
v5.0.0-beta.0 Pre-release
Pre-release

This version is a complete rewrite to the codebase, which includes:

  • Build tool: vue-cli (to replace rollup).
  • Library: libphonenumber-js (to replace awesome-phonenumber).
  • Documentation: vuepress.
  • More organized props with inputOptions and dropdownOptions.

v4.4.2

20 Oct 14:06
Compare
Choose a tag to compare
  • #219: Replace .finally() with .then() to work in all browsers (1052deb).