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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +28 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/tests/JazzProviderWithClerk.test.d.ts +2 -0
- package/dist/tests/JazzProviderWithClerk.test.d.ts.map +1 -0
- package/package.json +7 -7
- package/tsconfig.json +3 -1
package/.turbo/turbo-build.log
CHANGED
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
|
package/dist/index.d.ts
ADDED
@@ -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 @@
|
|
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.
|
3
|
+
"version": "0.11.1",
|
4
4
|
"type": "module",
|
5
5
|
"main": "dist/index.js",
|
6
|
-
"types": "
|
6
|
+
"types": "dist/index.d.ts",
|
7
7
|
"license": "MIT",
|
8
8
|
"dependencies": {
|
9
|
-
"cojson": "0.
|
10
|
-
"jazz-auth-clerk": "0.
|
11
|
-
"jazz-browser": "0.
|
12
|
-
"jazz-react": "0.
|
13
|
-
"jazz-tools": "0.
|
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