@live-change/vue3-ssr 0.9.127 → 0.9.128

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.
Files changed (2) hide show
  1. package/Api.js +1 -1
  2. package/package.json +4 -4
package/Api.js CHANGED
@@ -74,7 +74,7 @@ class Api extends DaoProxy {
74
74
  this.versionObservable = this.observable(['version', 'version'])
75
75
  this.versionObservable.bindProperty(version, 'value')
76
76
  const softwareVersion = computed(() => {
77
- if(typeof window == 'undefined') return
77
+ if(typeof window == 'undefined') return 'unknown'
78
78
  return window[this.settings.ssrVersionGlobal || '__VERSION__']
79
79
  })
80
80
  const versionMismatch = computed(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/vue3-ssr",
3
- "version": "0.9.127",
3
+ "version": "0.9.128",
4
4
  "description": "Live Change Framework - vue components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,10 +21,10 @@
21
21
  },
22
22
  "homepage": "https://github.com/live-change/live-change-stack",
23
23
  "dependencies": {
24
- "@live-change/dao-vue3": "^0.9.127",
25
- "@live-change/uid": "^0.9.127",
24
+ "@live-change/dao-vue3": "^0.9.128",
25
+ "@live-change/uid": "^0.9.128",
26
26
  "@vueuse/core": "^12.3.0",
27
27
  "debug": "^4.3.4"
28
28
  },
29
- "gitHead": "acd85c886f4086b2d559eb40b5343f05d64ff294"
29
+ "gitHead": "f6e19206562652cf31d6e44df80523748b694ead"
30
30
  }