@live-change/vue3-ssr 0.9.3 → 0.9.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/Api.js +3 -4
- package/package.json +4 -4
package/Api.js
CHANGED
|
@@ -74,14 +74,13 @@ class Api extends DaoProxy {
|
|
|
74
74
|
if(!softwareVersion) return
|
|
75
75
|
return version.value !== softwareVersion.value
|
|
76
76
|
})
|
|
77
|
-
const client = computed(() =>
|
|
78
|
-
|
|
79
|
-
})
|
|
77
|
+
const client = computed(() => api?.value?.client)
|
|
78
|
+
const config = computed(() => api?.value?.config)
|
|
80
79
|
this.metadata = {
|
|
81
80
|
api, version,
|
|
82
81
|
softwareVersion,
|
|
83
82
|
versionMismatch,
|
|
84
|
-
client
|
|
83
|
+
client, config
|
|
85
84
|
}
|
|
86
85
|
let lastApiJson = ''
|
|
87
86
|
this.apiObservable.observe((signal, ...args) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/vue3-ssr",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
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.
|
|
25
|
-
"@live-change/uid": "^0.9.
|
|
24
|
+
"@live-change/dao-vue3": "^0.9.4",
|
|
25
|
+
"@live-change/uid": "^0.9.4",
|
|
26
26
|
"@vueuse/core": "^10.11.0",
|
|
27
27
|
"debug": "^4.3.4"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "98fd51a1a5fea3ff8adff3662ef1e4a00774eed6"
|
|
30
30
|
}
|