vue3-password-strength-meter 1.7.5 → 1.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # 🔓 vue3-password-strength-meter
2
2
 
3
- [![Build Status](https://travis-ci.org/apertureless/vue-password-strength-meter.svg?branch=master)](https://travis-ci.org/apertureless/vue-password-strength-meter)
4
- [![npm version](https://badge.fury.io/js/vue-password-strength-meter.svg)](https://badge.fury.io/js/vue-password-strength-meter)
5
- [![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)
3
+
6
4
  [![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/apertureless/vue-password-strength-meter/blob/master/LICENSE.txt)
7
5
 
8
6
  Interactive password strength meter based on [zxcvbn](https://github.com/dropbox/zxcvbn) for vue.js
@@ -11,10 +9,6 @@ Interactive password strength meter based on [zxcvbn](https://github.com/dropbox
11
9
  <img src="/static/demo.gif" alt="🔓" title="🔓 Demo" />
12
10
  </p>
13
11
 
14
- ## 📺 Demo
15
-
16
- (https://apertureless.github.io/vue-password-strength-meter/)
17
-
18
12
  ## 🔧 Install
19
13
 
20
14
  `npm install vue3-password-strength-meter zxcvbn`
@@ -28,7 +22,7 @@ Interactive password strength meter based on [zxcvbn](https://github.com/dropbox
28
22
  </template>
29
23
 
30
24
  <script>
31
- import Password from 'vue-password-strength-meter'
25
+ import Password from 'vue3-password-strength-meter'
32
26
  export default {
33
27
  components: { Password },
34
28
  data: () => ({
@@ -82,7 +76,7 @@ Interactive password strength meter based on [zxcvbn](https://github.com/dropbox
82
76
  </template>
83
77
 
84
78
  <script>
85
- import Password from 'vue-password-strength-meter'
79
+ import Password from 'vue3-password-strength-meter'
86
80
  export default {
87
81
  components: { Password },
88
82
  data: () => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue3-password-strength-meter",
3
- "version": "1.7.5",
3
+ "version": "1.7.6",
4
4
  "private": false,
5
5
  "devDependencies": {
6
6
  "@vue/cli-plugin-babel": "~5.0.0",