wave-ui 1.49.1 → 1.49.2
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/dist/wave-ui.cjs.js +1 -1
- package/dist/wave-ui.es.js +1 -1
- package/dist/wave-ui.umd.js +1 -1
- package/package.json +13 -13
- package/src/wave-ui/components/w-input.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wave-ui",
|
|
3
|
-
"version": "1.49.
|
|
3
|
+
"version": "1.49.2",
|
|
4
4
|
"description": "An emerging UI framework for Vue.js & Vue 3 with only the bright side. :sunny:",
|
|
5
5
|
"author": "Antoni Andre <antoniandre.web@gmail.com>",
|
|
6
6
|
"main": "./dist/wave-ui.umd.js",
|
|
@@ -43,31 +43,31 @@
|
|
|
43
43
|
"*.vue"
|
|
44
44
|
],
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@babel/core": "^7.
|
|
47
|
-
"@babel/eslint-parser": "^7.
|
|
48
|
-
"@babel/plugin-proposal-class-properties": "^7.16.
|
|
49
|
-
"@vitejs/plugin-vue": "^1.10.
|
|
50
|
-
"autoprefixer": "^10.4.
|
|
46
|
+
"@babel/core": "^7.17.0",
|
|
47
|
+
"@babel/eslint-parser": "^7.17.0",
|
|
48
|
+
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
|
49
|
+
"@vitejs/plugin-vue": "^1.10.2",
|
|
50
|
+
"autoprefixer": "^10.4.2",
|
|
51
51
|
"axios": "^0.21.4",
|
|
52
|
-
"core-js": "^3.
|
|
52
|
+
"core-js": "^3.21.0",
|
|
53
53
|
"eslint": "^7.32.0",
|
|
54
54
|
"eslint-config-standard": "^16.0.3",
|
|
55
|
-
"eslint-plugin-import": "^2.25.
|
|
55
|
+
"eslint-plugin-import": "^2.25.4",
|
|
56
56
|
"eslint-plugin-node": "^11.1.0",
|
|
57
|
-
"eslint-plugin-promise": "^5.
|
|
57
|
+
"eslint-plugin-promise": "^5.2.0",
|
|
58
58
|
"eslint-plugin-vue": "^7.20.0",
|
|
59
59
|
"font-awesome": "^4.7.0",
|
|
60
60
|
"ghspa": "^1.0.0",
|
|
61
|
-
"gsap": "^3.
|
|
61
|
+
"gsap": "^3.9.1",
|
|
62
62
|
"ionicons": "^4.6.3",
|
|
63
63
|
"material-design-icons": "^3.0.1",
|
|
64
64
|
"rollup-plugin-delete": "^2.0.0",
|
|
65
|
-
"sass": "^1.
|
|
65
|
+
"sass": "^1.49.7",
|
|
66
66
|
"simple-syntax-highlighter": "^1.5.0",
|
|
67
67
|
"splitpanes": "^2.3.8",
|
|
68
|
-
"vite": "^2.
|
|
68
|
+
"vite": "^2.7.13",
|
|
69
69
|
"vite-plugin-pug": "^0.3.0",
|
|
70
|
-
"vite-plugin-vue2": "^1.9.
|
|
70
|
+
"vite-plugin-vue2": "^1.9.3",
|
|
71
71
|
"vue": "^2.6.14",
|
|
72
72
|
"vue-router": "^3.5.3",
|
|
73
73
|
"vue-svg-loader": "^0.16.0",
|
|
@@ -206,7 +206,7 @@ export default {
|
|
|
206
206
|
hasValue () {
|
|
207
207
|
switch (this.type) {
|
|
208
208
|
case 'file': return !!this.inputFiles.length
|
|
209
|
-
case 'number': return this.inputNumberError
|
|
209
|
+
case 'number': return this.inputValue || this.inputValue === 0 || this.inputNumberError
|
|
210
210
|
case 'date':
|
|
211
211
|
case 'time':
|
|
212
212
|
return true
|