@nextworks/blocks-sections 0.2.0-alpha.0 → 0.2.0-alpha.2
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/README.md +4 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -43,4 +43,7 @@ export default function Page() {
|
|
|
43
43
|
}
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
These components assume you have Tailwind + React + Next.js configured and that
|
|
46
|
+
These components assume you have Tailwind + React + Next.js configured and that your app is wrapped with the appropriate provider(s).
|
|
47
|
+
|
|
48
|
+
- If you installed via the `nextworks` CLI, this is handled for you (the CLI patches your router entrypoint to wrap with the kit-local `AppProviders`).
|
|
49
|
+
- If you consume packages directly, you’ll need to wrap your app with the relevant providers from `@nextworks/blocks-core` in your router entrypoint (App Router `app/layout.tsx` or Pages Router `pages/_app.tsx`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextworks/blocks-sections",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist-types/index.d.ts",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
13
|
"repository": "github:jblh/nextworks-cli",
|
|
14
|
-
"bugs": "https://github.com/jblh/nextworks-cli/issues",
|
|
15
|
-
"homepage": "https://github.com/jblh/nextworks-cli#readme",
|
|
14
|
+
"bugs": "https://github.com/jblh/nextworks-cli/issues",
|
|
15
|
+
"homepage": "https://github.com/jblh/nextworks-cli#readme",
|
|
16
16
|
"publishConfig": {
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"build": "npx tsc -p tsconfig.json && npx tsc -p tsconfig.json --emitDeclarationOnly --declaration --outDir dist-types"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@nextworks/blocks-core": "0.2.0-alpha.
|
|
24
|
+
"@nextworks/blocks-core": "0.2.0-alpha.2",
|
|
25
25
|
"lucide-react": "^0.542.0",
|
|
26
26
|
"motion": "^12.23.12"
|
|
27
27
|
},
|