Skip to content

Releases: apertureless/vue-password-strength-meter

💎 Release new version 1.3.1

29 Aug 08:33
Compare
Choose a tag to compare

Bug Fixes

  • labels: Fix show/hide labels (74789c3)

💎 Release new version 1.3.0

18 Jul 11:19
Compare
Choose a tag to compare

Features

  • strengh-meter: Add showStrengthMeter prop to show/hide the strength meter(#16) (efd8a00)
  • add « disabled » and « disabledClass » prop (#15) (0bb6240)
  • Make the ref attribute listen to a prop so user change it (#17) (d245016)

💎 Release new version 1.2.1

09 Apr 11:54
Compare
Choose a tag to compare

Fixes

  • Fix toggle button click event with prevent

Features

  • Add aria label to toggle button

💎 Release new version 1.2.0

09 Apr 10:48
Compare
Choose a tag to compare

🌟Features

🆕Added two new props: toggle and showPassword.
The toggle prop, if set to true, will show a button which will reveal and hide the password.

The showPassword prop is to directly reveal and hide the password. If you want to add a custom button for example.

🆕 Added 4 new events:

  • @show will be emitted if showing the password
  • @hide will be emitted if hiding the password
  • @score will return the zxcvbn score (Integer from 0-4) [ℹ] (https://github.com/dropbox/zxcvbn#usage)
  • @feedback will return an zxcvbn feedback object with suggestion and warning

💎 Release new version 1.1.1

21 Oct 12:35
Compare
Choose a tag to compare

Fixes

  • dbcd4a9 Rename successClass and errorClass defaults

💎 Release new version 1.1.0

07 Apr 19:10
Compare
Choose a tag to compare

🔥 Breaking Change

  • Change zxcvbn to peerDependency and add as external.

You now have to install zxcvbn as a dependency to your projekt. This way you will be version independent from this lib.

yarn add vue-password-strength-meter zxcvbn

💎 Release new version 1.0.2

08 Mar 21:06
Compare
Choose a tag to compare

Cleanup package.json

  • Remove vue as dependency and added as dev dependency

💎 Release new version 1.0.1

01 Mar 12:29
Compare
Choose a tag to compare

Update

  • Dependencies to vue 2.2

💎 Release new version 0.2.0

16 Feb 15:24
v0.2.0
Compare
Choose a tag to compare

🔥 Breaking API Change

  • Exposed password data to parent component over events

New usage

<script>
  import Password from 'vue-password-strength-meter'
  export default {
    components: { Password }
    data () {
      return {
        password: null
      }
    }
  }
</script>

<template>
  <password v-model="password"></password>
</template>

This way it's way more flexible.

💎 Release new version 0.1.2

11 Feb 11:51
Compare
Choose a tag to compare

Patches

  • Update dependency zxcvbn to 4.4.2