@live-change/vue3-ssr 0.2.31 → 0.2.33

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/index.js +6 -1
  2. package/package.json +3 -3
package/index.js CHANGED
@@ -78,6 +78,10 @@ function client(context) {
78
78
  return useApi(context).client
79
79
  }
80
80
 
81
+ function useClient(context) {
82
+ return useApi(context).client
83
+ }
84
+
81
85
  function uid(context) {
82
86
  return useApi(context).uid
83
87
  }
@@ -92,7 +96,8 @@ const api = useApi
92
96
  export {
93
97
  path, live, fetch,
94
98
  useApi, api,
95
- view, actions, client, uid,
99
+ view, actions, uid,
100
+ client, useClient,
96
101
  rangeBuckets, reverseRange,
97
102
  inboxReader,
98
103
  serviceDefinition
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/vue3-ssr",
3
- "version": "0.2.31",
3
+ "version": "0.2.33",
4
4
  "description": "Live Change Framework - vue components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,9 +22,9 @@
22
22
  "homepage": "https://github.com/live-change/live-change-framework-vue3",
23
23
  "dependencies": {
24
24
  "@live-change/dao-vue3": "0.5.22",
25
- "@live-change/uid": "0.7.34",
25
+ "@live-change/uid": "0.7.38",
26
26
  "@vueuse/core": "^10.4.1",
27
27
  "debug": "^4.3.4"
28
28
  },
29
- "gitHead": "5a36954b2ff7c5ec81fbbddb4d017d9127488540"
29
+ "gitHead": "cd48bb411965818bb6716798f9cc33af33dae96d"
30
30
  }