@moontra/moonui-pro 3.3.29 → 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/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
 
@@ -5742,6 +5748,8 @@ interface MeshGradientProps {
5742
5748
  brightness?: number;
5743
5749
  /** FPS limit for performance */
5744
5750
  fps?: number;
5751
+ /** Pause animations when not visible */
5752
+ pauseWhenHidden?: boolean;
5745
5753
  }
5746
5754
  declare const MeshGradient: React__default.FC<MeshGradientProps>;
5747
5755
 
@@ -5797,6 +5805,8 @@ interface LiquidBackgroundProps {
5797
5805
  gradientOverlay?: boolean;
5798
5806
  /** FPS limit for performance */
5799
5807
  fps?: number;
5808
+ /** Pause animations when not visible */
5809
+ pauseWhenHidden?: boolean;
5800
5810
  }
5801
5811
  declare const LiquidBackground: React__default.FC<LiquidBackgroundProps>;
5802
5812
 
@@ -5848,6 +5858,8 @@ interface MatrixRainProps {
5848
5858
  mouseRadius?: number;
5849
5859
  /** FPS limit for performance */
5850
5860
  fps?: number;
5861
+ /** Pause animations when not visible */
5862
+ pauseWhenHidden?: boolean;
5851
5863
  }
5852
5864
  declare const MatrixRain: React__default.FC<MatrixRainProps>;
5853
5865
 
@@ -5905,6 +5917,8 @@ interface GlitchBackgroundProps {
5905
5917
  mouseRadius?: number;
5906
5918
  /** FPS limit for performance */
5907
5919
  fps?: number;
5920
+ /** Pause animations when not visible */
5921
+ pauseWhenHidden?: boolean;
5908
5922
  }
5909
5923
  declare const GlitchBackground: React__default.FC<GlitchBackgroundProps>;
5910
5924