@moontra/moonui-pro 2.34.3 → 2.34.5
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/cdn/index.global.js +119 -119
- package/dist/cdn/index.global.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -77747,7 +77747,7 @@ function SidebarInternal({
|
|
|
77747
77747
|
disabled: childItem.disabled,
|
|
77748
77748
|
className: cn(
|
|
77749
77749
|
"w-full flex items-center justify-between gap-2 rounded-md px-2 py-1.5 text-sm transition-colors",
|
|
77750
|
-
"hover:bg-accent hover:text-accent-foreground",
|
|
77750
|
+
"hover:bg-accent hover:text-accent-foreground cursor-pointer",
|
|
77751
77751
|
isChildActive && "bg-primary/10 text-primary font-medium",
|
|
77752
77752
|
childItem.disabled && "opacity-50 cursor-not-allowed"
|
|
77753
77753
|
),
|
|
@@ -77781,7 +77781,7 @@ function SidebarInternal({
|
|
|
77781
77781
|
disabled: grandChild.disabled,
|
|
77782
77782
|
className: cn(
|
|
77783
77783
|
"w-full flex items-center gap-2 rounded-md px-2 py-1.5 text-sm transition-colors",
|
|
77784
|
-
"hover:bg-accent hover:text-accent-foreground",
|
|
77784
|
+
"hover:bg-accent hover:text-accent-foreground cursor-pointer",
|
|
77785
77785
|
isGrandChildActive && "bg-primary/10 text-primary font-medium",
|
|
77786
77786
|
grandChild.disabled && "opacity-50 cursor-not-allowed"
|
|
77787
77787
|
),
|
|
@@ -85291,10 +85291,10 @@ var GridPatternInternal = ({
|
|
|
85291
85291
|
size: size4,
|
|
85292
85292
|
performance: performance2 = "balanced"
|
|
85293
85293
|
}) => {
|
|
85294
|
-
const patternId = `grid-pattern-${Math.random().toString(36).substr(2, 9)}
|
|
85295
|
-
const gradientId = `grid-gradient-${Math.random().toString(36).substr(2, 9)}
|
|
85296
|
-
const maskId = `grid-mask-${Math.random().toString(36).substr(2, 9)}
|
|
85297
|
-
const noiseId = `grid-noise-${Math.random().toString(36).substr(2, 9)}
|
|
85294
|
+
const [patternId] = useState(() => `grid-pattern-${Math.random().toString(36).substr(2, 9)}`);
|
|
85295
|
+
const [gradientId] = useState(() => `grid-gradient-${Math.random().toString(36).substr(2, 9)}`);
|
|
85296
|
+
const [maskId] = useState(() => `grid-mask-${Math.random().toString(36).substr(2, 9)}`);
|
|
85297
|
+
const [noiseId] = useState(() => `grid-noise-${Math.random().toString(36).substr(2, 9)}`);
|
|
85298
85298
|
const containerRef = useRef(null);
|
|
85299
85299
|
useEffect(() => {
|
|
85300
85300
|
if (!parallax || !containerRef.current)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.34.
|
|
3
|
+
"version": "2.34.5",
|
|
4
4
|
"description": "Premium React components for MoonUI - Advanced UI library with 50+ pro components including performance, interactive, and gesture components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|