@logickernel/bridge 0.12.3 → 0.12.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/dist/styles.css +78 -0
- package/package.json +17 -14
package/dist/styles.css
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--radius: 0.625rem;
|
|
3
|
+
--background: oklch(1 0 0);
|
|
4
|
+
--foreground: oklch(0.13 0.028 261.692);
|
|
5
|
+
--card: oklch(1 0 0);
|
|
6
|
+
--card-foreground: oklch(0.13 0.028 261.692);
|
|
7
|
+
--popover: oklch(1 0 0);
|
|
8
|
+
--popover-foreground: oklch(0.13 0.028 261.692);
|
|
9
|
+
--primary: oklch(0.21 0.034 264.665);
|
|
10
|
+
--primary-foreground: oklch(0.985 0.002 247.839);
|
|
11
|
+
--secondary: oklch(0.967 0.003 264.542);
|
|
12
|
+
--secondary-foreground: oklch(0.21 0.034 264.665);
|
|
13
|
+
--muted: oklch(0.967 0.003 264.542);
|
|
14
|
+
--muted-foreground: oklch(0.551 0.027 264.364);
|
|
15
|
+
--accent: oklch(0.967 0.003 264.542);
|
|
16
|
+
--accent-foreground: oklch(0.21 0.034 264.665);
|
|
17
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
18
|
+
--border: oklch(0.928 0.006 264.531);
|
|
19
|
+
--input: oklch(0.928 0.006 264.531);
|
|
20
|
+
--ring: oklch(0.707 0.022 261.325);
|
|
21
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
22
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
23
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
24
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
25
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
26
|
+
--sidebar: oklch(0.985 0.002 247.839);
|
|
27
|
+
--sidebar-foreground: oklch(0.13 0.028 261.692);
|
|
28
|
+
--sidebar-primary: oklch(0.21 0.034 264.665);
|
|
29
|
+
--sidebar-primary-foreground: oklch(0.985 0.002 247.839);
|
|
30
|
+
--sidebar-accent: oklch(0.967 0.003 264.542);
|
|
31
|
+
--sidebar-accent-foreground: oklch(0.21 0.034 264.665);
|
|
32
|
+
--sidebar-border: oklch(0.928 0.006 264.531);
|
|
33
|
+
--sidebar-ring: oklch(0.707 0.022 261.325);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.dark {
|
|
37
|
+
--background: oklch(0.19 0 0);
|
|
38
|
+
--foreground: oklch(0.98 0 0);
|
|
39
|
+
--card: oklch(0.16 0 0);
|
|
40
|
+
--card-foreground: oklch(0.98 0 0);
|
|
41
|
+
--popover: oklch(0.16 0 0);
|
|
42
|
+
--popover-foreground: oklch(0.98 0 0);
|
|
43
|
+
--primary: oklch(0.98 0 0);
|
|
44
|
+
--primary-foreground: oklch(0.13 0 0);
|
|
45
|
+
--secondary: oklch(0.22 0 0);
|
|
46
|
+
--secondary-foreground: oklch(0.98 0 0);
|
|
47
|
+
--muted: oklch(0.22 0 0);
|
|
48
|
+
--muted-foreground: oklch(0.64 0 0);
|
|
49
|
+
--accent: oklch(0.22 0 0);
|
|
50
|
+
--accent-foreground: oklch(0.98 0 0);
|
|
51
|
+
--destructive: oklch(0.65 0.22 25);
|
|
52
|
+
--border: oklch(0.27 0 0);
|
|
53
|
+
--input: oklch(0.22 0 0);
|
|
54
|
+
--ring: oklch(0.55 0 0);
|
|
55
|
+
--chart-1: oklch(0.55 0.25 264);
|
|
56
|
+
--chart-2: oklch(0.65 0.18 162);
|
|
57
|
+
--chart-3: oklch(0.72 0.19 70);
|
|
58
|
+
--chart-4: oklch(0.60 0.27 304);
|
|
59
|
+
--chart-5: oklch(0.62 0.25 16);
|
|
60
|
+
--sidebar: oklch(0.16 0 0);
|
|
61
|
+
--sidebar-foreground: oklch(0.98 0 0);
|
|
62
|
+
--sidebar-primary: oklch(0.55 0.25 264);
|
|
63
|
+
--sidebar-primary-foreground: oklch(0.98 0 0);
|
|
64
|
+
--sidebar-accent: oklch(0.22 0 0);
|
|
65
|
+
--sidebar-accent-foreground: oklch(0.98 0 0);
|
|
66
|
+
--sidebar-border: oklch(0.27 0 0);
|
|
67
|
+
--sidebar-ring: oklch(0.55 0 0);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@layer base {
|
|
71
|
+
* {
|
|
72
|
+
@apply border-border outline-ring/50;
|
|
73
|
+
}
|
|
74
|
+
body {
|
|
75
|
+
@apply bg-background text-foreground;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@logickernel/bridge",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.4",
|
|
4
4
|
"description": "Framework-agnostic micro-frontend authentication library for AuthJS/NextAuth JWT tokens",
|
|
5
5
|
"author": "Victor",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
"import": "./dist/next/components.js",
|
|
26
26
|
"require": "./dist/next/components.cjs",
|
|
27
27
|
"default": "./dist/next/components.js"
|
|
28
|
+
},
|
|
29
|
+
"./styles": {
|
|
30
|
+
"default": "./dist/styles.css"
|
|
28
31
|
}
|
|
29
32
|
},
|
|
30
33
|
"main": "./dist/index.cjs",
|
|
@@ -52,18 +55,7 @@
|
|
|
52
55
|
"nextjs"
|
|
53
56
|
],
|
|
54
57
|
"dependencies": {
|
|
55
|
-
"
|
|
56
|
-
"@radix-ui/react-collapsible": "^1.1.12",
|
|
57
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
58
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
59
|
-
"@radix-ui/react-separator": "^1.1.8",
|
|
60
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
61
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
62
|
-
"class-variance-authority": "^0.7.1",
|
|
63
|
-
"lucide-react": "^0.562.0",
|
|
64
|
-
"clsx": "^2.1.1",
|
|
65
|
-
"jose": "^5.9.6",
|
|
66
|
-
"tailwind-merge": "^3.4.0"
|
|
58
|
+
"jose": "^5.9.6"
|
|
67
59
|
},
|
|
68
60
|
"devDependencies": {
|
|
69
61
|
"@types/node": "^22.10.2",
|
|
@@ -74,10 +66,21 @@
|
|
|
74
66
|
"typescript": "^5.7.2"
|
|
75
67
|
},
|
|
76
68
|
"peerDependencies": {
|
|
69
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
70
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
71
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
72
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
73
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
74
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
75
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
76
|
+
"class-variance-authority": "^0.7.1",
|
|
77
|
+
"clsx": "^2.1.1",
|
|
78
|
+
"lucide-react": "^0.562.0",
|
|
77
79
|
"next": ">=14.0.0",
|
|
78
80
|
"next-auth": "^4.24.10",
|
|
79
81
|
"react": ">=18.0.0",
|
|
80
|
-
"react-dom": ">=18.0.0"
|
|
82
|
+
"react-dom": ">=18.0.0",
|
|
83
|
+
"tailwind-merge": "^3.4.0"
|
|
81
84
|
},
|
|
82
85
|
"peerDependenciesMeta": {
|
|
83
86
|
"next": {
|