vue3-steppy 1.0.0 → 1.0.1
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.
- package/README.md +7 -9
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -3,10 +3,7 @@
|
|
|
3
3
|
<h4 align="center">A simple Stepper component for Vue 3</h4>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
|
-
<a href="">
|
|
7
|
-
<img src=""
|
|
8
|
-
alt="npm">
|
|
9
|
-
</a>
|
|
6
|
+
<a href="https://badge.fury.io/js/vue3-steppy"><img src="https://badge.fury.io/js/vue3-steppy.svg" alt="npm version" height="18"></a>
|
|
10
7
|
</p>
|
|
11
8
|
|
|
12
9
|
<p align="center">
|
|
@@ -27,10 +24,10 @@ You can try a live demo [here](https://laximas.github.io/vue3-steppy/)
|
|
|
27
24
|
* Change step content
|
|
28
25
|
* Configure finalization
|
|
29
26
|
* Customizable
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
27
|
+
- Colors
|
|
28
|
+
- Titles
|
|
29
|
+
- Icons
|
|
30
|
+
- Button text
|
|
34
31
|
|
|
35
32
|
## How To Use
|
|
36
33
|
Install
|
|
@@ -163,10 +160,11 @@ This software uses the following open source packages:
|
|
|
163
160
|
- [sass-loader](https://www.npmjs.com/package/sass-loader)
|
|
164
161
|
- [node-sass](https://www.npmjs.com/package/node-sass)
|
|
165
162
|
- [gh-pages](https://www.npmjs.com/package/gh-pages)
|
|
163
|
+
- [CssInjectedByJs](https://www.npmjs.com/package/vite-plugin-css-injected-by-js)
|
|
166
164
|
|
|
167
165
|
## Support
|
|
168
166
|
|
|
169
|
-
<a href="https://www.buymeacoffee.com/laximas" target="_blank"><img src="https://
|
|
167
|
+
<a href="https://www.buymeacoffee.com/laximas" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-green.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
|
|
170
168
|
|
|
171
169
|
## License
|
|
172
170
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue3-steppy",
|
|
3
3
|
"description": "A simple Vue 3 Stepper plugin",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"author": "Mike Konstantakos",
|
|
@@ -44,17 +44,14 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"core-js": "^3.8.3",
|
|
47
|
-
"vite-plugin-css-injected-by-js": "^2.4.0",
|
|
48
47
|
"vue": "^3.2.13"
|
|
49
48
|
},
|
|
50
49
|
"devDependencies": {
|
|
51
50
|
"@vitejs/plugin-vue": "^4.0.0",
|
|
52
51
|
"@vue/cli-service": "~5.0.0",
|
|
53
52
|
"gh-pages": "^5.0.0",
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"sass-loader": "^13.2.0",
|
|
57
|
-
"vite": "^4.0.0"
|
|
53
|
+
"vite": "^4.0.0",
|
|
54
|
+
"vite-plugin-css-injected-by-js": "^2.4.0"
|
|
58
55
|
},
|
|
59
56
|
"directories": {
|
|
60
57
|
"lib": "lib"
|