@djangocfg/ui-core 2.1.353 → 2.1.355
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@djangocfg/ui-core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.355",
|
|
4
4
|
"description": "Pure React UI component library without Next.js dependencies - for Electron, Vite, CRA apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui-components",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"playground": "playground dev"
|
|
92
92
|
},
|
|
93
93
|
"peerDependencies": {
|
|
94
|
-
"@djangocfg/i18n": "^2.1.
|
|
94
|
+
"@djangocfg/i18n": "^2.1.355",
|
|
95
95
|
"consola": "^3.4.2",
|
|
96
96
|
"lucide-react": "^0.545.0",
|
|
97
97
|
"moment": "^2.30.1",
|
|
@@ -161,9 +161,9 @@
|
|
|
161
161
|
"vaul": "1.1.2"
|
|
162
162
|
},
|
|
163
163
|
"devDependencies": {
|
|
164
|
-
"@djangocfg/i18n": "^2.1.
|
|
164
|
+
"@djangocfg/i18n": "^2.1.355",
|
|
165
165
|
"@djangocfg/playground": "workspace:*",
|
|
166
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
166
|
+
"@djangocfg/typescript-config": "^2.1.355",
|
|
167
167
|
"@types/node": "^24.7.2",
|
|
168
168
|
"@types/react": "^19.1.0",
|
|
169
169
|
"@types/react-dom": "^19.1.0",
|
|
@@ -9,7 +9,7 @@ const Card = React.forwardRef<
|
|
|
9
9
|
<div
|
|
10
10
|
ref={ref}
|
|
11
11
|
className={cn(
|
|
12
|
-
"rounded-[var(--radius-popover)] border bg-card text-card-foreground shadow",
|
|
12
|
+
"rounded-[var(--radius-popover)] border bg-card text-card-foreground [box-shadow:var(--shadow-card)]",
|
|
13
13
|
className
|
|
14
14
|
)}
|
|
15
15
|
{...props}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
:root {
|
|
13
13
|
/* Base colors - Clean white with neutral grays */
|
|
14
|
-
--background: 0 0%
|
|
14
|
+
--background: 0 0% 94%;
|
|
15
15
|
--foreground: 0 0% 9%;
|
|
16
16
|
--card: 0 0% 100%;
|
|
17
17
|
--card-foreground: 0 0% 9%;
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
--border: 0 0% 90%;
|
|
33
33
|
--input: 0 0% 90%;
|
|
34
34
|
--ring: 192 90% 35%;
|
|
35
|
+
--shadow-card: 0 1px 3px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.04);
|
|
35
36
|
|
|
36
37
|
/* Code surface — used by markdown code fences, terminal blocks,
|
|
37
38
|
* any "this is code, not prose" panel. Single source of truth so
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
--code-inline-foreground: 0 0% 14%;
|
|
51
52
|
|
|
52
53
|
/* Sidebar Light Theme - Subtle gray background */
|
|
53
|
-
--sidebar-background: 0 0%
|
|
54
|
+
--sidebar-background: 0 0% 97%;
|
|
54
55
|
--sidebar-foreground: 0 0% 9%;
|
|
55
56
|
--sidebar-primary: 192 90% 35%;
|
|
56
57
|
--sidebar-primary-foreground: 0 0% 100%;
|