@moontra/moonui-pro 3.3.28 → 3.4.1
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.css +1 -1
- package/dist/cdn/index.css.map +1 -1
- package/dist/cdn/index.global.js +218 -218
- package/dist/cdn/index.global.js.map +1 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.mjs +1096 -655
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5371,6 +5371,8 @@ interface ParticlesProps {
|
|
|
5371
5371
|
min: number;
|
|
5372
5372
|
max: number;
|
|
5373
5373
|
};
|
|
5374
|
+
/** Pause animations when not visible */
|
|
5375
|
+
pauseWhenHidden?: boolean;
|
|
5374
5376
|
}
|
|
5375
5377
|
declare const Particles: React__default.FC<ParticlesProps>;
|
|
5376
5378
|
|
|
@@ -5628,6 +5630,8 @@ interface WavesProps {
|
|
|
5628
5630
|
mouseRadius?: number;
|
|
5629
5631
|
/** FPS limit for performance */
|
|
5630
5632
|
fps?: number;
|
|
5633
|
+
/** Pause animations when not visible */
|
|
5634
|
+
pauseWhenHidden?: boolean;
|
|
5631
5635
|
}
|
|
5632
5636
|
declare const Waves: React__default.FC<WavesProps>;
|
|
5633
5637
|
|
|
@@ -5685,6 +5689,8 @@ interface GradientFlowProps {
|
|
|
5685
5689
|
smooth?: boolean;
|
|
5686
5690
|
/** FPS limit for performance */
|
|
5687
5691
|
fps?: number;
|
|
5692
|
+
/** Pause animations when not visible */
|
|
5693
|
+
pauseWhenHidden?: boolean;
|
|
5688
5694
|
}
|
|
5689
5695
|
declare const GradientFlow: React__default.FC<GradientFlowProps>;
|
|
5690
5696
|
|
|
@@ -5706,8 +5712,10 @@ interface MeshGradientProps {
|
|
|
5706
5712
|
className?: string;
|
|
5707
5713
|
/** Container class */
|
|
5708
5714
|
containerClassName?: string;
|
|
5709
|
-
/** Gradient colors */
|
|
5715
|
+
/** Gradient colors (overrides theme-aware defaults if provided) */
|
|
5710
5716
|
colors?: string[];
|
|
5717
|
+
/** Enable theme-aware default colors */
|
|
5718
|
+
themeAware?: boolean;
|
|
5711
5719
|
/** Animation speed in seconds */
|
|
5712
5720
|
speed?: number;
|
|
5713
5721
|
/** Mesh grid size */
|
|
@@ -5740,6 +5748,8 @@ interface MeshGradientProps {
|
|
|
5740
5748
|
brightness?: number;
|
|
5741
5749
|
/** FPS limit for performance */
|
|
5742
5750
|
fps?: number;
|
|
5751
|
+
/** Pause animations when not visible */
|
|
5752
|
+
pauseWhenHidden?: boolean;
|
|
5743
5753
|
}
|
|
5744
5754
|
declare const MeshGradient: React__default.FC<MeshGradientProps>;
|
|
5745
5755
|
|
|
@@ -5795,6 +5805,8 @@ interface LiquidBackgroundProps {
|
|
|
5795
5805
|
gradientOverlay?: boolean;
|
|
5796
5806
|
/** FPS limit for performance */
|
|
5797
5807
|
fps?: number;
|
|
5808
|
+
/** Pause animations when not visible */
|
|
5809
|
+
pauseWhenHidden?: boolean;
|
|
5798
5810
|
}
|
|
5799
5811
|
declare const LiquidBackground: React__default.FC<LiquidBackgroundProps>;
|
|
5800
5812
|
|
|
@@ -5846,6 +5858,8 @@ interface MatrixRainProps {
|
|
|
5846
5858
|
mouseRadius?: number;
|
|
5847
5859
|
/** FPS limit for performance */
|
|
5848
5860
|
fps?: number;
|
|
5861
|
+
/** Pause animations when not visible */
|
|
5862
|
+
pauseWhenHidden?: boolean;
|
|
5849
5863
|
}
|
|
5850
5864
|
declare const MatrixRain: React__default.FC<MatrixRainProps>;
|
|
5851
5865
|
|
|
@@ -5903,6 +5917,8 @@ interface GlitchBackgroundProps {
|
|
|
5903
5917
|
mouseRadius?: number;
|
|
5904
5918
|
/** FPS limit for performance */
|
|
5905
5919
|
fps?: number;
|
|
5920
|
+
/** Pause animations when not visible */
|
|
5921
|
+
pauseWhenHidden?: boolean;
|
|
5906
5922
|
}
|
|
5907
5923
|
declare const GlitchBackground: React__default.FC<GlitchBackgroundProps>;
|
|
5908
5924
|
|