@basictech/nextjs 0.6.0-beta.1 → 0.6.0-beta.3
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 +16 -0
- package/package.json +2 -2
- package/dist/index.d.mts +0 -14
- package/dist/index.d.ts +0 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @basictech/nextjs
|
|
2
2
|
|
|
3
|
+
## 0.6.0-beta.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- add oauth settings
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @basictech/react@0.7.0-beta.3
|
|
10
|
+
|
|
11
|
+
## 0.6.0-beta.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- update token endpoint
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @basictech/react@0.7.0-beta.2
|
|
18
|
+
|
|
3
19
|
## 0.6.0-beta.1
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basictech/nextjs",
|
|
3
|
-
"version": "0.6.0-beta.
|
|
3
|
+
"version": "0.6.0-beta.3",
|
|
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.7.0-beta.
|
|
20
|
+
"@basictech/react": "0.7.0-beta.3",
|
|
21
21
|
"@radix-ui/react-avatar": "^1.1.1",
|
|
22
22
|
"@radix-ui/react-popover": "^1.1.2"
|
|
23
23
|
},
|
package/dist/index.d.mts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as react from 'react';
|
|
2
|
-
export { useBasic, useQuery } from '@basictech/react';
|
|
3
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
|
|
5
|
-
declare const LoginButton: () => react_jsx_runtime.JSX.Element;
|
|
6
|
-
|
|
7
|
-
declare const BasicProvider: react.ComponentType<{
|
|
8
|
-
children: react.ReactNode;
|
|
9
|
-
project_id?: string;
|
|
10
|
-
schema?: any;
|
|
11
|
-
debug?: boolean;
|
|
12
|
-
}>;
|
|
13
|
-
|
|
14
|
-
export { BasicProvider, LoginButton };
|
package/dist/index.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as react from 'react';
|
|
2
|
-
export { useBasic, useQuery } from '@basictech/react';
|
|
3
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
|
|
5
|
-
declare const LoginButton: () => react_jsx_runtime.JSX.Element;
|
|
6
|
-
|
|
7
|
-
declare const BasicProvider: react.ComponentType<{
|
|
8
|
-
children: react.ReactNode;
|
|
9
|
-
project_id?: string;
|
|
10
|
-
schema?: any;
|
|
11
|
-
debug?: boolean;
|
|
12
|
-
}>;
|
|
13
|
-
|
|
14
|
-
export { BasicProvider, LoginButton };
|