@moontra/moonui-pro 3.4.37 → 3.4.38
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 +189 -189
- package/dist/cdn/index.global.js.map +1 -1
- package/dist/index.d.ts +32 -0
- package/dist/index.mjs +284 -58
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5168,10 +5168,14 @@ interface GridPatternProps {
|
|
|
5168
5168
|
className?: string;
|
|
5169
5169
|
/** Grid rengi */
|
|
5170
5170
|
strokeColor?: string;
|
|
5171
|
+
/** Grid rengi for dark mode (optional override) */
|
|
5172
|
+
darkStrokeColor?: string;
|
|
5171
5173
|
/** Grid çizgi kalınlığı */
|
|
5172
5174
|
strokeWidth?: number;
|
|
5173
5175
|
/** Maksimum opaklık değeri animasyonlar için */
|
|
5174
5176
|
maxOpacity?: number;
|
|
5177
|
+
/** Maksimum opaklık değeri for dark mode (optional override) */
|
|
5178
|
+
darkMaxOpacity?: number;
|
|
5175
5179
|
/** Animasyon süresi (ms) */
|
|
5176
5180
|
duration?: number;
|
|
5177
5181
|
/** Animasyon tekrar gecikmesi (ms) */
|
|
@@ -5182,7 +5186,11 @@ interface GridPatternProps {
|
|
|
5182
5186
|
gradient?: boolean;
|
|
5183
5187
|
/** Gradient renkleri */
|
|
5184
5188
|
gradientFrom?: string;
|
|
5189
|
+
/** Gradient başlangıç rengi for dark mode (optional override) */
|
|
5190
|
+
darkGradientFrom?: string;
|
|
5185
5191
|
gradientTo?: string;
|
|
5192
|
+
/** Gradient bitiş rengi for dark mode (optional override) */
|
|
5193
|
+
darkGradientTo?: string;
|
|
5186
5194
|
/** Gradient yönü */
|
|
5187
5195
|
gradientDirection?: 'horizontal' | 'vertical' | 'diagonal' | 'radial';
|
|
5188
5196
|
/** Animasyon tipi */
|
|
@@ -5385,6 +5393,8 @@ interface ParticlesProps {
|
|
|
5385
5393
|
};
|
|
5386
5394
|
/** Particle colors (hex format) */
|
|
5387
5395
|
colors?: string[];
|
|
5396
|
+
/** Particle colors for dark mode (optional override) */
|
|
5397
|
+
darkColors?: string[];
|
|
5388
5398
|
/** Particle speed */
|
|
5389
5399
|
speed?: number;
|
|
5390
5400
|
/** Enable mouse interaction */
|
|
@@ -5399,6 +5409,8 @@ interface ParticlesProps {
|
|
|
5399
5409
|
lineWidth?: number;
|
|
5400
5410
|
/** Connection line opacity */
|
|
5401
5411
|
lineOpacity?: number;
|
|
5412
|
+
/** Connection line opacity for dark mode (optional override) */
|
|
5413
|
+
darkLineOpacity?: number;
|
|
5402
5414
|
/** Particle shape */
|
|
5403
5415
|
shape?: 'circle' | 'square' | 'triangle' | 'star';
|
|
5404
5416
|
/** Enable parallax effect */
|
|
@@ -5411,6 +5423,8 @@ interface ParticlesProps {
|
|
|
5411
5423
|
performanceMode?: boolean;
|
|
5412
5424
|
/** Background color */
|
|
5413
5425
|
backgroundColor?: string;
|
|
5426
|
+
/** Background color for dark mode (optional override) */
|
|
5427
|
+
darkBackgroundColor?: string;
|
|
5414
5428
|
/** Blur amount */
|
|
5415
5429
|
blur?: number;
|
|
5416
5430
|
/** Container class */
|
|
@@ -5455,10 +5469,14 @@ interface StarfieldProps {
|
|
|
5455
5469
|
starCount?: number;
|
|
5456
5470
|
/** Star color (hex or rgb) */
|
|
5457
5471
|
starColor?: string | string[];
|
|
5472
|
+
/** Star color for dark mode (optional override) */
|
|
5473
|
+
darkStarColor?: string | string[];
|
|
5458
5474
|
/** Speed factor (0-10) */
|
|
5459
5475
|
speed?: number;
|
|
5460
5476
|
/** Background color */
|
|
5461
5477
|
backgroundColor?: string;
|
|
5478
|
+
/** Background color for dark mode (optional override) */
|
|
5479
|
+
darkBackgroundColor?: string;
|
|
5462
5480
|
/** Enable mouse parallax */
|
|
5463
5481
|
mouseParallax?: boolean;
|
|
5464
5482
|
/** Parallax intensity */
|
|
@@ -5496,6 +5514,8 @@ interface StarfieldProps {
|
|
|
5496
5514
|
nebula?: boolean;
|
|
5497
5515
|
/** Nebula colors */
|
|
5498
5516
|
nebulaColors?: string[];
|
|
5517
|
+
/** Nebula colors for dark mode (optional override) */
|
|
5518
|
+
darkNebulaColors?: string[];
|
|
5499
5519
|
/** Direction of movement */
|
|
5500
5520
|
direction?: 'forward' | 'backward' | 'left' | 'right' | 'spiral';
|
|
5501
5521
|
/** Rotation speed for spiral */
|
|
@@ -5525,8 +5545,12 @@ interface DotPatternProps {
|
|
|
5525
5545
|
gap?: number;
|
|
5526
5546
|
/** Dot color (supports gradient) */
|
|
5527
5547
|
color?: string | string[];
|
|
5548
|
+
/** Dot color for dark mode (optional override) */
|
|
5549
|
+
darkColor?: string | string[];
|
|
5528
5550
|
/** Dot opacity */
|
|
5529
5551
|
opacity?: number;
|
|
5552
|
+
/** Dot opacity for dark mode (optional override) */
|
|
5553
|
+
darkOpacity?: number;
|
|
5530
5554
|
/** Enable animation */
|
|
5531
5555
|
animated?: boolean;
|
|
5532
5556
|
/** Animation type */
|
|
@@ -5549,6 +5573,8 @@ interface DotPatternProps {
|
|
|
5549
5573
|
blur?: number;
|
|
5550
5574
|
/** Background color */
|
|
5551
5575
|
backgroundColor?: string;
|
|
5576
|
+
/** Background color for dark mode (optional override) */
|
|
5577
|
+
darkBackgroundColor?: string;
|
|
5552
5578
|
/** Enable mask fade */
|
|
5553
5579
|
maskFade?: boolean;
|
|
5554
5580
|
/** Mask fade direction */
|
|
@@ -5657,6 +5683,8 @@ interface WavesProps {
|
|
|
5657
5683
|
layers?: number;
|
|
5658
5684
|
/** Wave colors (gradient or solid) */
|
|
5659
5685
|
colors?: string[];
|
|
5686
|
+
/** Wave colors for dark mode (optional override) */
|
|
5687
|
+
darkColors?: string[];
|
|
5660
5688
|
/** Wave amplitude (height) */
|
|
5661
5689
|
amplitude?: number;
|
|
5662
5690
|
/** Wave frequency (number of waves) */
|
|
@@ -5665,8 +5693,12 @@ interface WavesProps {
|
|
|
5665
5693
|
speed?: number;
|
|
5666
5694
|
/** Wave opacity */
|
|
5667
5695
|
opacity?: number;
|
|
5696
|
+
/** Wave opacity for dark mode (optional override) */
|
|
5697
|
+
darkOpacity?: number;
|
|
5668
5698
|
/** Background color */
|
|
5669
5699
|
backgroundColor?: string;
|
|
5700
|
+
/** Background color for dark mode (optional override) */
|
|
5701
|
+
darkBackgroundColor?: string;
|
|
5670
5702
|
/** Wave style */
|
|
5671
5703
|
waveStyle?: 'smooth' | 'sharp' | 'turbulent' | 'organic';
|
|
5672
5704
|
/** Enable parallax effect between layers */
|