jazz-react-auth-clerk 0.10.15 → 0.11.1

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,4 +1,4 @@
1
1
 
2
- > jazz-react-auth-clerk@0.10.15 build /home/runner/_work/jazz/jazz/packages/jazz-react-auth-clerk
2
+ > jazz-react-auth-clerk@0.11.1 build /home/runner/_work/jazz/jazz/packages/jazz-react-auth-clerk
3
3
  > rm -rf ./dist && tsc --sourceMap --outDir dist
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # jazz-browser-media-images
2
2
 
3
+ ## 0.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - jazz-react@0.11.1
8
+
9
+ ## 0.11.0
10
+
11
+ ### Patch Changes
12
+
13
+ - a4713df: Moving to the d.ts files for the exported type definitions
14
+ - Updated dependencies [6a96d8b]
15
+ - Updated dependencies [a35249a]
16
+ - Updated dependencies [b9d194a]
17
+ - Updated dependencies [b9d194a]
18
+ - Updated dependencies [a4713df]
19
+ - Updated dependencies [e22de9f]
20
+ - Updated dependencies [34cbdc3]
21
+ - Updated dependencies [0f67e0a]
22
+ - Updated dependencies [18428ea]
23
+ - Updated dependencies [f039e8f]
24
+ - Updated dependencies [e22de9f]
25
+ - jazz-tools@0.11.0
26
+ - cojson@0.11.0
27
+ - jazz-auth-clerk@0.11.0
28
+ - jazz-browser@0.11.0
29
+ - jazz-react@0.11.0
30
+
3
31
  ## 0.10.15
4
32
 
5
33
  ### Patch Changes
@@ -0,0 +1,6 @@
1
+ import { type MinimalClerkClient } from "jazz-auth-clerk";
2
+ import { JazzProviderProps } from "jazz-react";
3
+ export declare const JazzProviderWithClerk: (props: {
4
+ clerk: MinimalClerkClient;
5
+ } & JazzProviderProps) => import("react/jsx-runtime").JSX.Element | null;
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,kBAAkB,EAExB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAEL,iBAAiB,EAGlB,MAAM,YAAY,CAAC;AAiCpB,eAAO,MAAM,qBAAqB,UACzB;IAAE,KAAK,EAAE,kBAAkB,CAAA;CAAE,GAAG,iBAAiB,mDA+BzD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=JazzProviderWithClerk.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JazzProviderWithClerk.test.d.ts","sourceRoot":"","sources":["../../src/tests/JazzProviderWithClerk.test.tsx"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "jazz-react-auth-clerk",
3
- "version": "0.10.15",
3
+ "version": "0.11.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
- "types": "src/index.tsx",
6
+ "types": "dist/index.d.ts",
7
7
  "license": "MIT",
8
8
  "dependencies": {
9
- "cojson": "0.10.15",
10
- "jazz-auth-clerk": "0.10.15",
11
- "jazz-browser": "0.10.15",
12
- "jazz-react": "0.10.15",
13
- "jazz-tools": "0.10.15"
9
+ "cojson": "0.11.0",
10
+ "jazz-auth-clerk": "0.11.0",
11
+ "jazz-browser": "0.11.0",
12
+ "jazz-react": "0.11.1",
13
+ "jazz-tools": "0.11.0"
14
14
  },
15
15
  "peerDependencies": {
16
16
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
package/tsconfig.json CHANGED
@@ -10,7 +10,9 @@
10
10
  "jsx": "react-jsx",
11
11
  "forceConsistentCasingInFileNames": true,
12
12
  "noUncheckedIndexedAccess": true,
13
- "esModuleInterop": true
13
+ "esModuleInterop": true,
14
+ "declaration": true,
15
+ "declarationMap": true
14
16
  },
15
17
  "include": ["./src/**/*"]
16
18
  }