@basictech/nextjs 0.2.2 → 0.4.0-beta.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @basictech/nextjs
2
2
 
3
+ ## 0.4.0-beta.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a41eb20: schema validation to react client
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [a41eb20]
12
+ - Updated dependencies
13
+ - @basictech/react@0.4.0-beta.0
14
+
15
+ ## 0.3.0
16
+
17
+ ### Minor Changes
18
+
19
+ - schema validation in react client
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @basictech/react@0.3.0
25
+
3
26
  ## 0.2.2
4
27
 
5
28
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -7,7 +7,7 @@ declare const LoginButton: () => react_jsx_runtime.JSX.Element;
7
7
  declare const BasicProvider: react.ComponentType<{
8
8
  children: react.ReactNode;
9
9
  project_id: string;
10
- schema: any;
10
+ schema?: any;
11
11
  debug?: boolean;
12
12
  }>;
13
13
 
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@ declare const LoginButton: () => react_jsx_runtime.JSX.Element;
7
7
  declare const BasicProvider: react.ComponentType<{
8
8
  children: react.ReactNode;
9
9
  project_id: string;
10
- schema: any;
10
+ schema?: any;
11
11
  debug?: boolean;
12
12
  }>;
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basictech/nextjs",
3
- "version": "0.2.2",
3
+ "version": "0.4.0-beta.0",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -17,7 +17,7 @@
17
17
  "author": "",
18
18
  "license": "ISC",
19
19
  "dependencies": {
20
- "@basictech/react": "0.2.2",
20
+ "@basictech/react": "0.4.0-beta.0",
21
21
  "@radix-ui/react-avatar": "^1.1.1",
22
22
  "@radix-ui/react-popover": "^1.1.2"
23
23
  },