@basictech/nextjs 0.2.0-beta.5 → 0.2.0-beta.7

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,30 @@
1
1
  # @basictech/nextjs
2
2
 
3
+ ## 0.2.0-beta.7
4
+
5
+ ### Minor Changes
6
+
7
+ - update useQuery hook
8
+
9
+ - no need to pass param as a function, can now enter query directly
10
+ - defaults to empty array when loading
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+ - @basictech/react@0.2.0-beta.7
16
+
17
+ ## 0.2.0-beta.6
18
+
19
+ ### Minor Changes
20
+
21
+ - add debug option
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @basictech/react@0.2.0-beta.6
27
+
3
28
  ## 0.2.0-beta.5
4
29
 
5
30
  ### Minor Changes
package/dist/index.d.mts CHANGED
@@ -8,6 +8,7 @@ declare const BasicProvider: react.ComponentType<{
8
8
  children: react.ReactNode;
9
9
  project_id: string;
10
10
  schema: any;
11
+ debug?: boolean;
11
12
  }>;
12
13
 
13
14
  export { BasicProvider, LoginButton };
package/dist/index.d.ts CHANGED
@@ -8,6 +8,7 @@ declare const BasicProvider: react.ComponentType<{
8
8
  children: react.ReactNode;
9
9
  project_id: string;
10
10
  schema: any;
11
+ debug?: boolean;
11
12
  }>;
12
13
 
13
14
  export { BasicProvider, LoginButton };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basictech/nextjs",
3
- "version": "0.2.0-beta.5",
3
+ "version": "0.2.0-beta.7",
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.0-beta.5",
20
+ "@basictech/react": "0.2.0-beta.7",
21
21
  "@radix-ui/react-avatar": "^1.1.1",
22
22
  "@radix-ui/react-popover": "^1.1.2"
23
23
  },