wave-ui 3.25.2 → 3.25.4

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.4",
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",
@@ -49,29 +49,29 @@
49
49
  "ui"
50
50
  ],
51
51
  "devDependencies": {
52
- "@babel/core": "^7.28.0",
52
+ "@babel/core": "^7.28.4",
53
53
  "@biomejs/biome": "^1.9.4",
54
54
  "@faker-js/faker": "^9.9.0",
55
55
  "@mdi/font": "^7.4.47",
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
- "globals": "^16.3.0",
61
+ "globals": "^16.4.0",
62
62
  "gsap": "^3.13.0",
63
63
  "ionicons": "^4.6.3",
64
64
  "material-design-icons": "^3.0.1",
65
65
  "postcss": "^8.5.6",
66
66
  "pug": "^3.0.3",
67
67
  "rollup-plugin-delete": "^3.0.1",
68
- "sass": "^1.89.2",
68
+ "sass": "^1.92.1",
69
69
  "simple-syntax-highlighter": "^3.1.1",
70
70
  "splitpanes": "^4.0.4",
71
- "typescript": "^5.8.3",
72
- "vite": "^6.3.5",
71
+ "typescript": "^5.9.2",
72
+ "vite": "^6.3.6",
73
73
  "vite-svg-loader": "^5.1.0",
74
- "vue": "^3.5.17",
74
+ "vue": "^3.5.21",
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
  }
@@ -57,7 +57,7 @@ export default {
57
57
 
58
58
  let target = this.appendTo || defaultTarget
59
59
  if (target === true) target = defaultTarget
60
- else if (this.appendTo === 'activator') target = this.$el.previousElementSibling
60
+ else if (this.appendTo === 'activator') target = this.$el.previousElementSibling || this.$el.nextElementSibling
61
61
  else if (target && !['object', 'string'].includes(typeof target)) target = defaultTarget
62
62
  else if (typeof target === 'object' && !target.nodeType) {
63
63
  target = defaultTarget