wave-ui 3.25.2 → 3.25.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wave-ui",
3
- "version": "3.25.2",
3
+ "version": "3.25.3",
4
4
  "description": "A UI framework for Vue.js 3 (and 2) with only the bright side. :sunny:",
5
5
  "author": "Antoni Andre <antoniandre.web@gmail.com>",
6
6
  "homepage": "https://antoniandre.github.io/wave-ui",
@@ -56,7 +56,7 @@
56
56
  "@tsconfig/recommended": "^1.0.10",
57
57
  "@vitejs/plugin-vue": "^5.2.4",
58
58
  "autoprefixer": "^10.4.21",
59
- "axios": "^1.10.0",
59
+ "axios": "^1.11.0",
60
60
  "font-awesome": "^4.7.0",
61
61
  "globals": "^16.3.0",
62
62
  "gsap": "^3.13.0",
@@ -71,7 +71,7 @@
71
71
  "typescript": "^5.8.3",
72
72
  "vite": "^6.3.5",
73
73
  "vite-svg-loader": "^5.1.0",
74
- "vue": "^3.5.17",
74
+ "vue": "^3.5.18",
75
75
  "vue-router": "^4.5.1",
76
76
  "vueperslides": "^3.6.0",
77
77
  "vuex": "^4.1.0"
@@ -105,7 +105,7 @@ export default class WaveUI {
105
105
  const wApp = document.querySelector('.w-app')
106
106
  if (wApp) {
107
107
  wApp.className = 'w-app' // First reset the classes.
108
- wApp.classList.add(...classes)
108
+ if (classes.length && classes[0]) wApp.classList.add(...classes)
109
109
  }
110
110
  }
111
111
  }