@djangocfg/ui-nextjs 2.1.84 → 2.1.85
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-nextjs",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.85",
|
|
4
4
|
"description": "Next.js UI component library with Radix UI primitives, Tailwind CSS styling, charts, and form components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui-components",
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"check": "tsc --noEmit"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@djangocfg/api": "^2.1.
|
|
62
|
-
"@djangocfg/ui-core": "^2.1.
|
|
61
|
+
"@djangocfg/api": "^2.1.85",
|
|
62
|
+
"@djangocfg/ui-core": "^2.1.85",
|
|
63
63
|
"@types/react": "^19.1.0",
|
|
64
64
|
"@types/react-dom": "^19.1.0",
|
|
65
65
|
"consola": "^3.4.2",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"wavesurfer.js": "^7.12.1"
|
|
111
111
|
},
|
|
112
112
|
"devDependencies": {
|
|
113
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
113
|
+
"@djangocfg/typescript-config": "^2.1.85",
|
|
114
114
|
"@types/node": "^24.7.2",
|
|
115
115
|
"eslint": "^9.37.0",
|
|
116
116
|
"tailwindcss-animate": "1.0.7",
|
|
@@ -110,22 +110,24 @@ export function AudioReactiveCover({
|
|
|
110
110
|
transition: 'transform 0.1s ease-out',
|
|
111
111
|
}}
|
|
112
112
|
>
|
|
113
|
-
{/* Effect layers */}
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
113
|
+
{/* Effect layers container - under cover, non-interactive */}
|
|
114
|
+
<div className="absolute inset-0 z-0 pointer-events-none overflow-visible">
|
|
115
|
+
{glowData && (
|
|
116
|
+
<GlowEffect data={glowData} colors={colors} isPlaying={isPlaying} />
|
|
117
|
+
)}
|
|
118
|
+
|
|
119
|
+
{orbsData && (
|
|
120
|
+
<OrbsEffect orbs={orbsData} blur={effectConfig.blur} isPlaying={isPlaying} />
|
|
121
|
+
)}
|
|
122
|
+
|
|
123
|
+
{spotlightData && (
|
|
124
|
+
<SpotlightEffect data={spotlightData} colors={colors} blur={effectConfig.blur} isPlaying={isPlaying} />
|
|
125
|
+
)}
|
|
126
|
+
|
|
127
|
+
{meshData && (
|
|
128
|
+
<MeshEffect gradients={meshData} blur={effectConfig.blur} isPlaying={isPlaying} />
|
|
129
|
+
)}
|
|
130
|
+
</div>
|
|
129
131
|
|
|
130
132
|
{/* Content (cover art) */}
|
|
131
133
|
<div
|