jazz-vue 0.9.14 → 0.9.15
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/testing.d.ts +1 -1
- package/dist/testing.js +11 -10
- package/package.json +4 -4
- package/src/testing.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> jazz-vue@0.9.
|
2
|
+
> jazz-vue@0.9.15 build /home/runner/work/jazz/jazz/packages/jazz-vue
|
3
3
|
> rm -rf ./dist && vite build
|
4
4
|
|
5
5
|
[36mvite v5.4.11 [32mbuilding for production...[36m[39m
|
@@ -9,9 +9,9 @@ rendering chunks...
|
|
9
9
|
|
10
10
|
[vite:dts] Start generate declaration files...
|
11
11
|
computing gzip size...
|
12
|
-
[2mdist/[22m[36mtesting.js [39m[1m[2m0.
|
12
|
+
[2mdist/[22m[36mtesting.js [39m[1m[2m0.79 kB[22m[1m[22m[2m │ gzip: 0.41 kB[22m
|
13
13
|
[2mdist/[22m[36mprovider-BZnz6FpX.js [39m[1m[2m1.62 kB[22m[1m[22m[2m │ gzip: 0.66 kB[22m
|
14
14
|
[2mdist/[22m[36mindex.js [39m[1m[2m9.10 kB[22m[1m[22m[2m │ gzip: 3.01 kB[22m
|
15
|
-
[vite:dts] Declaration files built in
|
15
|
+
[vite:dts] Declaration files built in 20780ms.
|
16
16
|
|
17
|
-
[32m✓ built in 21.
|
17
|
+
[32m✓ built in 21.06s[39m
|
package/CHANGELOG.md
CHANGED
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, setActiveAccount, } from 'jazz-tools/testing';
|
20
|
+
export { createJazzTestAccount, createJazzTestGuest, linkAccounts, setActiveAccount, setupJazzTestSync, } from 'jazz-tools/testing';
|
package/dist/testing.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
import { getJazzContextShape as c } from "jazz-tools/testing";
|
2
|
-
import { createJazzTestAccount as
|
3
|
-
import { defineComponent as n, ref as a, provide as
|
4
|
-
import { J as
|
5
|
-
const
|
2
|
+
import { createJazzTestAccount as s, createJazzTestGuest as x, linkAccounts as T, setActiveAccount as v, setupJazzTestSync as A } from "jazz-tools/testing";
|
3
|
+
import { defineComponent as n, ref as a, provide as z } from "vue";
|
4
|
+
import { J as p } from "./provider-BZnz6FpX.js";
|
5
|
+
const J = n({
|
6
6
|
name: "JazzTestProvider",
|
7
7
|
props: {
|
8
8
|
account: {
|
@@ -12,16 +12,17 @@ const f = n({
|
|
12
12
|
},
|
13
13
|
setup(r, { slots: e }) {
|
14
14
|
const o = a(c(r.account));
|
15
|
-
return p
|
15
|
+
return z(p, o), () => {
|
16
16
|
var t;
|
17
17
|
return (t = e.default) == null ? void 0 : t.call(e);
|
18
18
|
};
|
19
19
|
}
|
20
20
|
});
|
21
21
|
export {
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
22
|
+
J as JazzTestProvider,
|
23
|
+
s as createJazzTestAccount,
|
24
|
+
x as createJazzTestGuest,
|
25
|
+
T as linkAccounts,
|
26
|
+
v as setActiveAccount,
|
27
|
+
A as setupJazzTestSync
|
27
28
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "jazz-vue",
|
3
|
-
"version": "0.9.
|
3
|
+
"version": "0.9.15",
|
4
4
|
"type": "module",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "src/index.ts",
|
@@ -16,9 +16,9 @@
|
|
16
16
|
}
|
17
17
|
},
|
18
18
|
"dependencies": {
|
19
|
-
"jazz-browser": "0.9.
|
20
|
-
"
|
21
|
-
"
|
19
|
+
"jazz-browser": "0.9.15",
|
20
|
+
"cojson": "0.9.13",
|
21
|
+
"jazz-tools": "0.9.15"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
24
24
|
"@vitejs/plugin-vue": "^5.1.4",
|