wave-ui 3.13.2 → 3.13.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.13.2",
3
+ "version": "3.13.3",
4
4
  "description": "An emerging UI framework for Vue.js (2 & 3) with only the bright side. :sunny:",
5
5
  "author": "Antoni Andre <antoniandre.web@gmail.com>",
6
6
  "homepage": "https://antoniandre.github.io/wave-ui",
@@ -144,10 +144,7 @@ export default class WaveUI {
144
144
  }
145
145
 
146
146
  constructor (app, options = {}) {
147
- if (WaveUI.#registered) {
148
- console.warn('Wave UI is already instantiated.')
149
- return
150
- }
147
+ if (WaveUI.#registered) return // May happen with SSR.
151
148
 
152
149
  this.$waveui._notificationManager = new NotificationManager()
153
150