@c15t/react 1.0.3 → 1.0.4
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 +23 -12
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
[](https://github.com/c15t/c15t)
|
|
7
7
|
[](https://github.com/c15t/c15t/actions/workflows/ci.yml)
|
|
8
|
-
[](LICENSE)
|
|
8
|
+
[]([LICENSE.md](https://github.com/c15t/c15t/blob/main/LICENSE.md))
|
|
9
9
|
[](https://c15t.com/discord)
|
|
10
10
|
</div>
|
|
11
11
|
|
|
@@ -22,26 +22,31 @@ React components for building privacy-first user interfaces.
|
|
|
22
22
|
## Documentation
|
|
23
23
|
|
|
24
24
|
For detailed documentation and examples, visit:
|
|
25
|
-
[https://c15t.com/docs/
|
|
25
|
+
[https://c15t.com/docs/react/quickstart](https://c15t.com/docs/react/quickstart)
|
|
26
26
|
|
|
27
|
-
##
|
|
27
|
+
## ⚡ Quick Start Via CLI
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
# Generates the schema + code
|
|
31
|
+
npx @c15t/cli generate
|
|
32
|
+
pnpm dlx @c15t/cli generate
|
|
33
|
+
bunx --bun @c15t/cli generate
|
|
34
|
+
|
|
35
|
+
# Database Migrations (If you're self hosting c15t)
|
|
36
|
+
npx @c15t/cli migrate
|
|
37
|
+
pnpm dlx @c15t/cli migrate
|
|
38
|
+
bunx --bun @c15t/cli migrate
|
|
35
39
|
```
|
|
36
40
|
|
|
37
|
-
|
|
41
|
+
After running the CLI, you can use the following code to get started:
|
|
38
42
|
|
|
39
43
|
```tsx
|
|
40
44
|
import { ConsentManagerProvider, CookieBanner, ConsentManagerDialog } from "@c15t/react";
|
|
45
|
+
import { c15tConfig } from "./c15t.client";
|
|
41
46
|
|
|
42
47
|
export default function App() {
|
|
43
48
|
return (
|
|
44
|
-
<ConsentManagerProvider>
|
|
49
|
+
<ConsentManagerProvider config={c15tConfig}>
|
|
45
50
|
<CookieBanner />
|
|
46
51
|
<ConsentManagerDialog/>
|
|
47
52
|
{/* Your app content */}
|
|
@@ -50,6 +55,12 @@ export default function App() {
|
|
|
50
55
|
}
|
|
51
56
|
```
|
|
52
57
|
|
|
53
|
-
## License
|
|
58
|
+
## 📜 License
|
|
59
|
+
|
|
60
|
+
[GNU General Public License v3.0](https://github.com/c15t/c15t/blob/main/LICENSE.md) - See [LICENSE]([LICENSE.md](https://github.com/c15t/c15t/blob/main/LICENSE.md)) for details.
|
|
61
|
+
|
|
62
|
+
---
|
|
54
63
|
|
|
55
|
-
|
|
64
|
+
<div align="center">
|
|
65
|
+
<strong>Built with ❤️ by the <a href="www.consent.io"/>consent.io</a> team</strong>
|
|
66
|
+
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c15t/react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"license": "GPL-3.0-only",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -65,12 +65,12 @@
|
|
|
65
65
|
"motion": "^12.6.5",
|
|
66
66
|
"tailwind-variants": "^1.0.0",
|
|
67
67
|
"zustand": "^5.0.3",
|
|
68
|
-
"c15t": "1.0.
|
|
68
|
+
"c15t": "1.0.4"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
+
"@c15t/backend": "1.0.0",
|
|
71
72
|
"@c15t/typescript-config": "0.0.1-beta.1",
|
|
72
|
-
"@c15t/vitest-config": "1.0.0"
|
|
73
|
-
"@c15t/backend": "1.0.0"
|
|
73
|
+
"@c15t/vitest-config": "1.0.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|