jazz-vue 0.9.1 → 0.9.8
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +8 -0
- package/dist/composables.d.ts +866 -2
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +8 -7
- package/package.json +3 -3
- package/src/testing.ts +1 -0
package/dist/testing.d.ts
CHANGED
@@ -17,4 +17,4 @@ export declare const JazzTestProvider: import('vue').DefineComponent<import('vue
|
|
17
17
|
required: true;
|
18
18
|
};
|
19
19
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
20
|
-
export { createJazzTestAccount, createJazzTestGuest, linkAccounts, } from 'jazz-tools/testing';
|
20
|
+
export { createJazzTestAccount, createJazzTestGuest, linkAccounts, setActiveAccount, } from 'jazz-tools/testing';
|
package/dist/testing.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
import { getJazzContextShape as
|
2
|
-
import { createJazzTestAccount as x, createJazzTestGuest as
|
3
|
-
import { defineComponent as
|
1
|
+
import { getJazzContextShape as c } from "jazz-tools/testing";
|
2
|
+
import { createJazzTestAccount as x, createJazzTestGuest as s, linkAccounts as v, setActiveAccount as A } from "jazz-tools/testing";
|
3
|
+
import { defineComponent as n, ref as a, provide as p } from "vue";
|
4
4
|
import { J as z } from "./provider-BZnz6FpX.js";
|
5
|
-
const f =
|
5
|
+
const f = n({
|
6
6
|
name: "JazzTestProvider",
|
7
7
|
props: {
|
8
8
|
account: {
|
@@ -11,7 +11,7 @@ const f = c({
|
|
11
11
|
}
|
12
12
|
},
|
13
13
|
setup(r, { slots: e }) {
|
14
|
-
const o =
|
14
|
+
const o = a(c(r.account));
|
15
15
|
return p(z, o), () => {
|
16
16
|
var t;
|
17
17
|
return (t = e.default) == null ? void 0 : t.call(e);
|
@@ -21,6 +21,7 @@ const f = c({
|
|
21
21
|
export {
|
22
22
|
f as JazzTestProvider,
|
23
23
|
x as createJazzTestAccount,
|
24
|
-
|
25
|
-
|
24
|
+
s as createJazzTestGuest,
|
25
|
+
v as linkAccounts,
|
26
|
+
A as setActiveAccount
|
26
27
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "jazz-vue",
|
3
|
-
"version": "0.9.
|
3
|
+
"version": "0.9.8",
|
4
4
|
"type": "module",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "src/index.ts",
|
@@ -17,8 +17,8 @@
|
|
17
17
|
},
|
18
18
|
"dependencies": {
|
19
19
|
"cojson": "0.9.0",
|
20
|
-
"jazz-tools": "0.9.
|
21
|
-
"jazz-browser": "0.9.
|
20
|
+
"jazz-tools": "0.9.8",
|
21
|
+
"jazz-browser": "0.9.8"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
24
24
|
"@vitejs/plugin-vue": "^5.1.4",
|