@basictech/nextjs 0.2.1 → 0.3.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,22 @@
1
1
  # @basictech/nextjs
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - schema validation in react client
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @basictech/react@0.3.0
13
+
14
+ ## 0.2.2
15
+
16
+ ### Patch Changes
17
+
18
+ - @basictech/react@0.2.2
19
+
3
20
  ## 0.2.1
4
21
 
5
22
  ### 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.1",
3
+ "version": "0.3.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.1",
20
+ "@basictech/react": "0.3.0",
21
21
  "@radix-ui/react-avatar": "^1.1.1",
22
22
  "@radix-ui/react-popover": "^1.1.2"
23
23
  },