@live-change/vue3-ssr 0.8.97 → 0.8.99

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 +6 -1
  2. package/package.json +4 -4
package/Api.js CHANGED
@@ -2,7 +2,7 @@ import * as LcDao from '@live-change/dao'
2
2
  const { DaoProxy, DaoPrerenderCache, DaoCache, Path } = LcDao // hack for vite
3
3
  import validators from '@live-change/framework/lib/utils/validators.js'
4
4
  import { hashCode, encodeNumber, uidGenerator, randomString } from '@live-change/uid'
5
- import { ref, computed, watch } from "vue"
5
+ import { ref, computed, watch, reactive } from "vue"
6
6
 
7
7
  class Api extends DaoProxy {
8
8
  constructor(source, settings = {}) {
@@ -177,6 +177,11 @@ class Api extends DaoProxy {
177
177
 
178
178
  api.globals.$lc = api
179
179
 
180
+ api.globals.$allLoadingTasks = reactive([])
181
+ api.globals.$allLoadingErrors = reactive([])
182
+ api.globals.$allWorkingTasks = reactive([])
183
+ api.globals.$allWorkingErrors = reactive([])
184
+
180
185
  /// Deprecated:
181
186
  api.globals.$api = this
182
187
  api.globals.$views = this.views
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/vue3-ssr",
3
- "version": "0.8.97",
3
+ "version": "0.8.99",
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.8.97",
25
- "@live-change/uid": "^0.8.97",
24
+ "@live-change/dao-vue3": "^0.8.99",
25
+ "@live-change/uid": "^0.8.99",
26
26
  "@vueuse/core": "^10.11.0",
27
27
  "debug": "^4.3.4"
28
28
  },
29
- "gitHead": "5e1beea2df2a168d9da8f9fa802f4340de9d75e6"
29
+ "gitHead": "7d9970c62f5d019473e04353c5b4890683fa5dd6"
30
30
  }