@basictech/nextjs 0.6.0-beta.3 → 0.6.0-beta.5

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  
3
- > @basictech/nextjs@0.5.1-beta.0 build
3
+ > @basictech/nextjs@0.6.0-beta.3 build
4
4
  > tsup
5
5
 
6
6
  CLI Building entry: src/index.ts
@@ -13,11 +13,11 @@
13
13
  ESM Build start
14
14
  ESM dist/index.mjs 2.39 KB
15
15
  ESM dist/index.mjs.map 3.73 KB
16
- ESM ⚡️ Build success in 15ms
16
+ ESM ⚡️ Build success in 12ms
17
17
  CJS dist/index.js 4.34 KB
18
18
  CJS dist/index.js.map 3.79 KB
19
- CJS ⚡️ Build success in 17ms
19
+ CJS ⚡️ Build success in 12ms
20
20
  DTS Build start
21
- DTS ⚡️ Build success in 1354ms
22
- DTS dist/index.d.ts 399.00 B
23
- DTS dist/index.d.mts 399.00 B
21
+ DTS ⚡️ Build success in 1168ms
22
+ DTS dist/index.d.ts 390.00 B
23
+ DTS dist/index.d.mts 390.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @basictech/nextjs
2
2
 
3
+ ## 0.6.0-beta.5
4
+
5
+ ### Patch Changes
6
+
7
+ - config server url & token patch
8
+ - Updated dependencies
9
+ - @basictech/react@0.7.0-beta.5
10
+
11
+ ## 0.6.0-beta.4
12
+
13
+ ### Patch Changes
14
+
15
+ - fix: provider props
16
+ - Updated dependencies
17
+ - @basictech/react@0.7.0-beta.4
18
+
3
19
  ## 0.6.0-beta.3
4
20
 
5
21
  ### Patch Changes
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import * as _basictech_react from '@basictech/react';
3
+ export { useBasic, useQuery } from '@basictech/react';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
5
+
6
+ declare const LoginButton: () => react_jsx_runtime.JSX.Element;
7
+
8
+ declare const BasicProvider: react.ComponentType<_basictech_react.BasicProviderProps>;
9
+
10
+ export { BasicProvider, LoginButton };
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import * as _basictech_react from '@basictech/react';
3
+ export { useBasic, useQuery } from '@basictech/react';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
5
+
6
+ declare const LoginButton: () => react_jsx_runtime.JSX.Element;
7
+
8
+ declare const BasicProvider: react.ComponentType<_basictech_react.BasicProviderProps>;
9
+
10
+ export { BasicProvider, LoginButton };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basictech/nextjs",
3
- "version": "0.6.0-beta.3",
3
+ "version": "0.6.0-beta.5",
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.3",
20
+ "@basictech/react": "0.7.0-beta.5",
21
21
  "@radix-ui/react-avatar": "^1.1.1",
22
22
  "@radix-ui/react-popover": "^1.1.2"
23
23
  },