jazz-vue 0.9.14 → 0.9.16

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > jazz-vue@0.9.14 build /home/runner/work/jazz/jazz/packages/jazz-vue
2
+ > jazz-vue@0.9.16 build /home/runner/work/jazz/jazz/packages/jazz-vue
3
3
  > rm -rf ./dist && vite build
4
4
 
5
5
  vite v5.4.11 building for production...
@@ -9,9 +9,9 @@ rendering chunks...
9
9
 
10
10
  [vite:dts] Start generate declaration files...
11
11
  computing gzip size...
12
- dist/testing.js 0.74 kB │ gzip: 0.40 kB
12
+ dist/testing.js 0.79 kB │ gzip: 0.41 kB
13
13
  dist/provider-BZnz6FpX.js 1.62 kB │ gzip: 0.66 kB
14
14
  dist/index.js 9.10 kB │ gzip: 3.01 kB
15
- [vite:dts] Declaration files built in 21525ms.
15
+ [vite:dts] Declaration files built in 22095ms.
16
16
 
17
- ✓ built in 21.81s
17
+ ✓ built in 22.47s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # jazz-react
2
2
 
3
+ ## 0.9.16
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [24b3b6a]
8
+ - jazz-tools@0.9.16
9
+ - jazz-browser@0.9.16
10
+
11
+ ## 0.9.15
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [7491711]
16
+ - jazz-tools@0.9.15
17
+ - jazz-browser@0.9.15
18
+
3
19
  ## 0.9.14
4
20
 
5
21
  ### Patch Changes
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 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
- import { J as z } from "./provider-BZnz6FpX.js";
5
- const f = n({
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(z, o), () => {
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
- f as JazzTestProvider,
23
- x as createJazzTestAccount,
24
- s as createJazzTestGuest,
25
- v as linkAccounts,
26
- A as setActiveAccount
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.14",
3
+ "version": "0.9.16",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "src/index.ts",
@@ -16,8 +16,8 @@
16
16
  }
17
17
  },
18
18
  "dependencies": {
19
- "jazz-browser": "0.9.14",
20
- "jazz-tools": "0.9.14",
19
+ "jazz-browser": "0.9.16",
20
+ "jazz-tools": "0.9.16",
21
21
  "cojson": "0.9.13"
22
22
  },
23
23
  "devDependencies": {
package/src/testing.ts CHANGED
@@ -25,4 +25,5 @@ export {
25
25
  createJazzTestGuest,
26
26
  linkAccounts,
27
27
  setActiveAccount,
28
+ setupJazzTestSync,
28
29
  } from "jazz-tools/testing";