@microfox/remotion 1.2.2 → 1.2.3
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/CHANGELOG.md +8 -0
- package/dist/index.d.mts +255 -20
- package/dist/index.d.ts +255 -20
- package/dist/index.js +2272 -794
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2217 -749
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -293,7 +293,7 @@ interface BaseLayoutProps extends BaseRenderableProps {
|
|
|
293
293
|
};
|
|
294
294
|
}
|
|
295
295
|
declare const Layout: ComponentType$1<BaseLayoutProps>;
|
|
296
|
-
declare const config$
|
|
296
|
+
declare const config$f: ComponentConfig;
|
|
297
297
|
|
|
298
298
|
type Shape = 'circle' | 'rectangle' | 'star' | 'triangle';
|
|
299
299
|
interface ShapeAtomProps extends BaseRenderableProps {
|
|
@@ -306,8 +306,8 @@ interface ShapeAtomProps extends BaseRenderableProps {
|
|
|
306
306
|
style?: React$1.CSSProperties;
|
|
307
307
|
};
|
|
308
308
|
}
|
|
309
|
-
declare const Atom$
|
|
310
|
-
declare const config$
|
|
309
|
+
declare const Atom$7: React$1.FC<ShapeAtomProps>;
|
|
310
|
+
declare const config$e: ComponentConfig;
|
|
311
311
|
|
|
312
312
|
interface ImageAtomProps extends BaseRenderableProps {
|
|
313
313
|
data: {
|
|
@@ -317,8 +317,8 @@ interface ImageAtomProps extends BaseRenderableProps {
|
|
|
317
317
|
proxySrc?: string;
|
|
318
318
|
};
|
|
319
319
|
}
|
|
320
|
-
declare const Atom$
|
|
321
|
-
declare const config$
|
|
320
|
+
declare const Atom$6: React$1.FC<ImageAtomProps>;
|
|
321
|
+
declare const config$d: ComponentConfig;
|
|
322
322
|
|
|
323
323
|
interface FontConfig$1 {
|
|
324
324
|
family: string;
|
|
@@ -359,8 +359,8 @@ interface TextAtomProps extends BaseRenderableProps {
|
|
|
359
359
|
* - Font preloading for performance
|
|
360
360
|
* - Graceful degradation to system fonts
|
|
361
361
|
*/
|
|
362
|
-
declare const Atom$
|
|
363
|
-
declare const config$
|
|
362
|
+
declare const Atom$5: React$1.FC<TextAtomProps>;
|
|
363
|
+
declare const config$c: ComponentConfig;
|
|
364
364
|
|
|
365
365
|
declare const VideoAtomDataProps: z.ZodObject<{
|
|
366
366
|
src: z.ZodString;
|
|
@@ -402,8 +402,8 @@ interface VideoAtomProps extends BaseRenderableProps {
|
|
|
402
402
|
* @param data - Video configuration object containing all playback and styling settings
|
|
403
403
|
* @returns Remotion Video component with applied configurations
|
|
404
404
|
*/
|
|
405
|
-
declare const Atom$
|
|
406
|
-
declare const config$
|
|
405
|
+
declare const Atom$4: React$1.FC<VideoAtomProps>;
|
|
406
|
+
declare const config$b: ComponentConfig;
|
|
407
407
|
|
|
408
408
|
declare const AudioAtomDataProps: z.ZodObject<{
|
|
409
409
|
src: z.ZodString;
|
|
@@ -441,8 +441,8 @@ interface AudioAtomProps extends BaseRenderableProps {
|
|
|
441
441
|
* @param data - Audio configuration object containing all playback settings
|
|
442
442
|
* @returns Remotion Audio component with applied configurations
|
|
443
443
|
*/
|
|
444
|
-
declare const Atom$
|
|
445
|
-
declare const config$
|
|
444
|
+
declare const Atom$3: React$1.FC<AudioAtomProps>;
|
|
445
|
+
declare const config$a: ComponentConfig;
|
|
446
446
|
|
|
447
447
|
declare const LottieAtomDataProps: z.ZodObject<{
|
|
448
448
|
src: z.ZodString;
|
|
@@ -477,12 +477,49 @@ interface LottieAtomProps extends BaseRenderableProps {
|
|
|
477
477
|
* @param id - Unique identifier for the component (used for animation effects)
|
|
478
478
|
* @returns Remotion Lottie component with applied configurations
|
|
479
479
|
*/
|
|
480
|
-
declare const Atom: React$1.FC<LottieAtomProps>;
|
|
480
|
+
declare const Atom$2: React$1.FC<LottieAtomProps>;
|
|
481
481
|
/**
|
|
482
482
|
* Static configuration for LottieAtom
|
|
483
483
|
* Used for component registration and identification
|
|
484
484
|
*/
|
|
485
|
-
declare const config$
|
|
485
|
+
declare const config$9: ComponentConfig;
|
|
486
|
+
|
|
487
|
+
declare const CanvasAtomDataProps: z.ZodObject<{
|
|
488
|
+
className: z.ZodOptional<z.ZodString>;
|
|
489
|
+
style: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
490
|
+
}, z.core.$strip>;
|
|
491
|
+
type CanvasAtomDataProps = z.infer<typeof CanvasAtomDataProps>;
|
|
492
|
+
interface CanvasAtomProps {
|
|
493
|
+
data: CanvasAtomDataProps;
|
|
494
|
+
id?: string;
|
|
495
|
+
}
|
|
496
|
+
declare const Atom$1: React$1.ForwardRefExoticComponent<CanvasAtomProps & React$1.RefAttributes<HTMLCanvasElement>>;
|
|
497
|
+
declare const config$8: ComponentConfig;
|
|
498
|
+
|
|
499
|
+
interface HTMLBlockAtomData {
|
|
500
|
+
html: string;
|
|
501
|
+
className?: string;
|
|
502
|
+
style?: React$1.CSSProperties;
|
|
503
|
+
}
|
|
504
|
+
interface HTMLBlockAtomProps extends BaseRenderableProps {
|
|
505
|
+
data: HTMLBlockAtomData;
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* HTMLBlockAtom - Renders raw HTML content
|
|
509
|
+
*
|
|
510
|
+
* Features:
|
|
511
|
+
* - Renders raw HTML strings using dangerouslySetInnerHTML
|
|
512
|
+
* - Supports custom className and style props
|
|
513
|
+
* - Integrates with animation effects system
|
|
514
|
+
*
|
|
515
|
+
* Use cases:
|
|
516
|
+
* - Injecting custom HTML/CSS/JS into compositions
|
|
517
|
+
* - Adding SVG definitions and clip paths
|
|
518
|
+
* - Creating custom styled HTML overlays
|
|
519
|
+
* - Embedding third-party HTML widgets
|
|
520
|
+
*/
|
|
521
|
+
declare const Atom: React$1.FC<HTMLBlockAtomProps>;
|
|
522
|
+
declare const config$7: ComponentConfig;
|
|
486
523
|
|
|
487
524
|
interface AnimationRange {
|
|
488
525
|
key: string;
|
|
@@ -524,7 +561,7 @@ declare const UniversalEffectProvider: React$1.FC<{
|
|
|
524
561
|
declare const useAnimatedStyles: (componentId: string) => React$1.CSSProperties;
|
|
525
562
|
|
|
526
563
|
declare const BlurEffect: React$1.FC<BaseRenderableProps>;
|
|
527
|
-
declare const config$
|
|
564
|
+
declare const config$6: {
|
|
528
565
|
displayName: string;
|
|
529
566
|
description: string;
|
|
530
567
|
isInnerSequence: boolean;
|
|
@@ -544,7 +581,7 @@ declare const config$5: {
|
|
|
544
581
|
};
|
|
545
582
|
|
|
546
583
|
declare const LoopEffect: React$1.FC<BaseRenderableProps>;
|
|
547
|
-
declare const config$
|
|
584
|
+
declare const config$5: ComponentConfig;
|
|
548
585
|
|
|
549
586
|
interface PanEffectData {
|
|
550
587
|
effectTiming?: 'start' | 'end';
|
|
@@ -561,7 +598,7 @@ interface PanEffectData {
|
|
|
561
598
|
animationType?: 'linear' | 'spring' | 'ease-in' | 'ease-out' | 'ease-in-out';
|
|
562
599
|
}
|
|
563
600
|
declare const PanEffect: React$1.FC<BaseRenderableProps>;
|
|
564
|
-
declare const config$
|
|
601
|
+
declare const config$4: ComponentConfig;
|
|
565
602
|
|
|
566
603
|
interface ZoomEffectData {
|
|
567
604
|
effectTiming?: 'start' | 'end';
|
|
@@ -577,7 +614,7 @@ interface ZoomEffectData {
|
|
|
577
614
|
animationType?: 'linear' | 'spring' | 'ease-in' | 'ease-out' | 'ease-in-out';
|
|
578
615
|
}
|
|
579
616
|
declare const ZoomEffect: React$1.FC<BaseRenderableProps>;
|
|
580
|
-
declare const config$
|
|
617
|
+
declare const config$3: ComponentConfig;
|
|
581
618
|
|
|
582
619
|
interface ShakeEffectData extends UniversalEffectData {
|
|
583
620
|
amplitude?: number;
|
|
@@ -586,7 +623,7 @@ interface ShakeEffectData extends UniversalEffectData {
|
|
|
586
623
|
axis?: 'x' | 'y' | 'both';
|
|
587
624
|
}
|
|
588
625
|
declare const ShakeEffect: React$1.FC<BaseRenderableProps>;
|
|
589
|
-
declare const config$
|
|
626
|
+
declare const config$2: {
|
|
590
627
|
displayName: string;
|
|
591
628
|
description: string;
|
|
592
629
|
isInnerSequence: boolean;
|
|
@@ -625,7 +662,7 @@ interface StretchEffectData extends UniversalEffectData {
|
|
|
625
662
|
};
|
|
626
663
|
}
|
|
627
664
|
declare const StretchEffect: React$1.FC<BaseRenderableProps>;
|
|
628
|
-
declare const config: {
|
|
665
|
+
declare const config$1: {
|
|
629
666
|
displayName: string;
|
|
630
667
|
description: string;
|
|
631
668
|
isInnerSequence: boolean;
|
|
@@ -643,6 +680,78 @@ declare const config: {
|
|
|
643
680
|
};
|
|
644
681
|
};
|
|
645
682
|
|
|
683
|
+
interface WaveformEffectData extends UniversalEffectData {
|
|
684
|
+
audioSrc: string;
|
|
685
|
+
numberOfSamples?: number;
|
|
686
|
+
windowInSeconds?: number;
|
|
687
|
+
dataOffsetInSeconds?: number;
|
|
688
|
+
normalize?: boolean;
|
|
689
|
+
useFrequencyData?: boolean;
|
|
690
|
+
audioProperty?: 'bass' | 'mid' | 'treble' | 'waveform' | 'frequency';
|
|
691
|
+
sensitivity?: number;
|
|
692
|
+
threshold?: number;
|
|
693
|
+
smoothing?: number;
|
|
694
|
+
smoothNormalisation?: number;
|
|
695
|
+
effectType?: 'zoom' | 'shake' | 'exposure' | 'blur' | 'scale' | 'rotate' | 'translateX' | 'translateY';
|
|
696
|
+
intensity?: number;
|
|
697
|
+
minValue?: number;
|
|
698
|
+
maxValue?: number;
|
|
699
|
+
shakeAxis?: 'x' | 'y' | 'both';
|
|
700
|
+
baseScale?: number;
|
|
701
|
+
baseBrightness?: number;
|
|
702
|
+
rotationRange?: number;
|
|
703
|
+
}
|
|
704
|
+
declare const WaveformEffect: React$1.FC<BaseRenderableProps>;
|
|
705
|
+
declare const config: {
|
|
706
|
+
displayName: string;
|
|
707
|
+
description: string;
|
|
708
|
+
isInnerSequence: boolean;
|
|
709
|
+
props: {
|
|
710
|
+
audioSrc: {
|
|
711
|
+
type: string;
|
|
712
|
+
required: boolean;
|
|
713
|
+
description: string;
|
|
714
|
+
};
|
|
715
|
+
audioProperty: {
|
|
716
|
+
type: string;
|
|
717
|
+
values: string[];
|
|
718
|
+
default: string;
|
|
719
|
+
description: string;
|
|
720
|
+
};
|
|
721
|
+
effectType: {
|
|
722
|
+
type: string;
|
|
723
|
+
values: string[];
|
|
724
|
+
default: string;
|
|
725
|
+
description: string;
|
|
726
|
+
};
|
|
727
|
+
intensity: {
|
|
728
|
+
type: string;
|
|
729
|
+
default: number;
|
|
730
|
+
description: string;
|
|
731
|
+
};
|
|
732
|
+
sensitivity: {
|
|
733
|
+
type: string;
|
|
734
|
+
default: number;
|
|
735
|
+
description: string;
|
|
736
|
+
};
|
|
737
|
+
threshold: {
|
|
738
|
+
type: string;
|
|
739
|
+
default: number;
|
|
740
|
+
description: string;
|
|
741
|
+
};
|
|
742
|
+
smoothing: {
|
|
743
|
+
type: string;
|
|
744
|
+
default: number;
|
|
745
|
+
description: string;
|
|
746
|
+
};
|
|
747
|
+
smoothNormalisation: {
|
|
748
|
+
type: string;
|
|
749
|
+
default: number;
|
|
750
|
+
description: string;
|
|
751
|
+
};
|
|
752
|
+
};
|
|
753
|
+
};
|
|
754
|
+
|
|
646
755
|
declare const GenericEffectPresets: {
|
|
647
756
|
fadeInPreset: AnimationRange[];
|
|
648
757
|
fadeOutPreset: AnimationRange[];
|
|
@@ -682,6 +791,129 @@ declare const GenericEffectPresets: {
|
|
|
682
791
|
textRevealPreset: AnimationRange[];
|
|
683
792
|
};
|
|
684
793
|
|
|
794
|
+
declare const CanvasWipeRevealProps: z.ZodObject<{
|
|
795
|
+
imageUrl: z.ZodString;
|
|
796
|
+
revealDurationInFrames: z.ZodNumber;
|
|
797
|
+
revealType: z.ZodDefault<z.ZodEnum<{
|
|
798
|
+
wipe: "wipe";
|
|
799
|
+
radial: "radial";
|
|
800
|
+
}>>;
|
|
801
|
+
angle: z.ZodDefault<z.ZodNumber>;
|
|
802
|
+
fit: z.ZodDefault<z.ZodEnum<{
|
|
803
|
+
contain: "contain";
|
|
804
|
+
cover: "cover";
|
|
805
|
+
}>>;
|
|
806
|
+
edgeStyle: z.ZodDefault<z.ZodEnum<{
|
|
807
|
+
straight: "straight";
|
|
808
|
+
organic: "organic";
|
|
809
|
+
burn: "burn";
|
|
810
|
+
}>>;
|
|
811
|
+
edgeWaviness: z.ZodDefault<z.ZodNumber>;
|
|
812
|
+
edgeFrequency: z.ZodDefault<z.ZodNumber>;
|
|
813
|
+
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
814
|
+
burnGlow: z.ZodDefault<z.ZodBoolean>;
|
|
815
|
+
burnGlowColor: z.ZodDefault<z.ZodString>;
|
|
816
|
+
burnGlowIntensity: z.ZodDefault<z.ZodNumber>;
|
|
817
|
+
organicRandomAmplitude: z.ZodDefault<z.ZodBoolean>;
|
|
818
|
+
organicRandomWavelength: z.ZodDefault<z.ZodBoolean>;
|
|
819
|
+
}, z.core.$strip>;
|
|
820
|
+
type CanvasWipeRevealProps = z.infer<typeof CanvasWipeRevealProps>;
|
|
821
|
+
declare const CanvasWipeReveal: React$1.FC<{
|
|
822
|
+
data: CanvasWipeRevealProps;
|
|
823
|
+
id: string;
|
|
824
|
+
}>;
|
|
825
|
+
|
|
826
|
+
declare const CanvasContentAwareRevealProps: z.ZodObject<{
|
|
827
|
+
imageUrl: z.ZodString;
|
|
828
|
+
revealDurationInFrames: z.ZodNumber;
|
|
829
|
+
fit: z.ZodDefault<z.ZodEnum<{
|
|
830
|
+
contain: "contain";
|
|
831
|
+
cover: "cover";
|
|
832
|
+
}>>;
|
|
833
|
+
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
834
|
+
burnColorOrder: z.ZodDefault<z.ZodEnum<{
|
|
835
|
+
luminance: "luminance";
|
|
836
|
+
vibgyor: "vibgyor";
|
|
837
|
+
random: "random";
|
|
838
|
+
}>>;
|
|
839
|
+
revealMode: z.ZodDefault<z.ZodEnum<{
|
|
840
|
+
color: "color";
|
|
841
|
+
direction: "direction";
|
|
842
|
+
combined: "combined";
|
|
843
|
+
}>>;
|
|
844
|
+
direction: z.ZodDefault<z.ZodEnum<{
|
|
845
|
+
horizontal: "horizontal";
|
|
846
|
+
vertical: "vertical";
|
|
847
|
+
"diagonal-down": "diagonal-down";
|
|
848
|
+
"diagonal-up": "diagonal-up";
|
|
849
|
+
"top-to-bottom": "top-to-bottom";
|
|
850
|
+
}>>;
|
|
851
|
+
directionLayers: z.ZodDefault<z.ZodNumber>;
|
|
852
|
+
}, z.core.$strip>;
|
|
853
|
+
type CanvasContentAwareRevealProps = z.infer<typeof CanvasContentAwareRevealProps>;
|
|
854
|
+
declare const CanvasContentAwareReveal: React$1.FC<{
|
|
855
|
+
data: CanvasContentAwareRevealProps;
|
|
856
|
+
id: string;
|
|
857
|
+
}>;
|
|
858
|
+
|
|
859
|
+
declare const CanvasParticleEffectProps: z.ZodObject<{
|
|
860
|
+
imageUrl: z.ZodString;
|
|
861
|
+
revealDurationInFrames: z.ZodNumber;
|
|
862
|
+
fit: z.ZodDefault<z.ZodEnum<{
|
|
863
|
+
contain: "contain";
|
|
864
|
+
cover: "cover";
|
|
865
|
+
}>>;
|
|
866
|
+
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
867
|
+
particleCount: z.ZodDefault<z.ZodNumber>;
|
|
868
|
+
particleSize: z.ZodDefault<z.ZodNumber>;
|
|
869
|
+
particleEffect: z.ZodDefault<z.ZodEnum<{
|
|
870
|
+
assemble: "assemble";
|
|
871
|
+
disassemble: "disassemble";
|
|
872
|
+
explode: "explode";
|
|
873
|
+
pixelate: "pixelate";
|
|
874
|
+
}>>;
|
|
875
|
+
assembleFrom: z.ZodDefault<z.ZodEnum<{
|
|
876
|
+
center: "center";
|
|
877
|
+
bottom: "bottom";
|
|
878
|
+
edges: "edges";
|
|
879
|
+
random: "random";
|
|
880
|
+
}>>;
|
|
881
|
+
speed: z.ZodDefault<z.ZodNumber>;
|
|
882
|
+
rotation: z.ZodDefault<z.ZodBoolean>;
|
|
883
|
+
}, z.core.$strip>;
|
|
884
|
+
type CanvasParticleEffectProps = z.infer<typeof CanvasParticleEffectProps>;
|
|
885
|
+
declare const CanvasParticleEffect: React$1.FC<{
|
|
886
|
+
data: CanvasParticleEffectProps;
|
|
887
|
+
id: string;
|
|
888
|
+
}>;
|
|
889
|
+
|
|
890
|
+
declare const CanvasGlitchEffectProps: z.ZodObject<{
|
|
891
|
+
imageUrl: z.ZodString;
|
|
892
|
+
durationInFrames: z.ZodNumber;
|
|
893
|
+
fit: z.ZodDefault<z.ZodEnum<{
|
|
894
|
+
contain: "contain";
|
|
895
|
+
cover: "cover";
|
|
896
|
+
}>>;
|
|
897
|
+
backgroundColor: z.ZodDefault<z.ZodString>;
|
|
898
|
+
glitchType: z.ZodDefault<z.ZodEnum<{
|
|
899
|
+
slice: "slice";
|
|
900
|
+
static: "static";
|
|
901
|
+
"rgb-shift": "rgb-shift";
|
|
902
|
+
corrupt: "corrupt";
|
|
903
|
+
scan: "scan";
|
|
904
|
+
}>>;
|
|
905
|
+
intensity: z.ZodDefault<z.ZodNumber>;
|
|
906
|
+
frequency: z.ZodDefault<z.ZodNumber>;
|
|
907
|
+
continuous: z.ZodDefault<z.ZodBoolean>;
|
|
908
|
+
glitchStartFrame: z.ZodDefault<z.ZodNumber>;
|
|
909
|
+
glitchEndFrame: z.ZodDefault<z.ZodNumber>;
|
|
910
|
+
}, z.core.$strip>;
|
|
911
|
+
type CanvasGlitchEffectProps = z.infer<typeof CanvasGlitchEffectProps>;
|
|
912
|
+
declare const CanvasGlitchEffect: React$1.FC<{
|
|
913
|
+
data: CanvasGlitchEffectProps;
|
|
914
|
+
id: string;
|
|
915
|
+
}>;
|
|
916
|
+
|
|
685
917
|
type GenericEffectData = UniversalEffectData;
|
|
686
918
|
|
|
687
919
|
declare const useComponentRegistry: () => {
|
|
@@ -941,6 +1173,7 @@ interface WaveformConfig {
|
|
|
941
1173
|
amplitude?: number;
|
|
942
1174
|
smoothing?: boolean;
|
|
943
1175
|
posterize?: number;
|
|
1176
|
+
smoothNormalisation?: number;
|
|
944
1177
|
}
|
|
945
1178
|
interface WaveformContextType {
|
|
946
1179
|
waveformData: number[] | null;
|
|
@@ -980,6 +1213,7 @@ interface UseWaveformDataConfig {
|
|
|
980
1213
|
includeFrequencyData?: boolean;
|
|
981
1214
|
minDb?: number;
|
|
982
1215
|
maxDb?: number;
|
|
1216
|
+
smoothNormalisation?: number;
|
|
983
1217
|
}
|
|
984
1218
|
interface UseWaveformDataReturn {
|
|
985
1219
|
waveformData: number[] | null;
|
|
@@ -1131,6 +1365,7 @@ declare const WaveformPresets: {
|
|
|
1131
1365
|
amplitude: number;
|
|
1132
1366
|
smoothing?: boolean;
|
|
1133
1367
|
posterize: number;
|
|
1368
|
+
smoothNormalisation?: number;
|
|
1134
1369
|
};
|
|
1135
1370
|
className?: string;
|
|
1136
1371
|
style?: React.CSSProperties;
|
|
@@ -1162,4 +1397,4 @@ declare const WaveformPresets: {
|
|
|
1162
1397
|
};
|
|
1163
1398
|
};
|
|
1164
1399
|
|
|
1165
|
-
export { type AnimationRange, Atom$
|
|
1400
|
+
export { type AnimationRange, Atom$3 as AudioAtom, config$a as AudioAtomConfig, AudioAtomDataProps, type BaseComponentData, type BaseEffect, Layout as BaseLayout, config$f as BaseLayoutConfig, type BaseRenderableData, type BaseRenderableProps, BlurEffect, config$6 as BlurEffectConfig, type Boundaries, type BoundaryConstraints, type CalculatedBoundaries, type CalculatedTiming, Atom$1 as CanvasAtom, config$8 as CanvasAtomConfig, CanvasAtomDataProps, CanvasContentAwareReveal, CanvasGlitchEffect, CanvasParticleEffect, CanvasWipeReveal, type ComponentConfig, type ComponentRegistry, ComponentRenderer, type ComponentType, Composition, type CompositionContext, CompositionLayout, CompositionProvider, type FontConfig, type FontLoaderState, type FontLoadingOptions, Frame, type GenericEffectData, GenericEffectPresets, Atom as HTMLBlockAtom, config$7 as HTMLBlockAtomConfig, type HTMLBlockAtomData, type Hierarchy, Atom$6 as ImageAtom, config$d as ImageAtomConfig, type InputCompositionProps, type InternalRenderableContext, type LayoutConstraints, LoopEffect, config$5 as LoopEffectConfig, Atom$2 as LottieAtom, config$9 as LottieAtomConfig, LottieAtomDataProps, NextjsLogo, type PackageRegistry, PanEffect, config$4 as PanEffectConfig, type PanEffectData, Player, type RegistryEntry, type RenderableComponentData, type RenderableContext, type RenderableData, Rings, RippleOutLayout, type RippleOutTransitionData, SceneFrame, ShakeEffect, config$2 as ShakeEffectConfig, type ShakeEffectData, Atom$7 as ShapeAtom, config$e as ShapeAtomConfig, StretchEffect, config$1 as StretchEffectConfig, type StretchEffectData, Atom$5 as TextAtom, config$c as TextAtomConfig, type TextAtomData, TextFade, type Timing, type TimingConstraints, UniversalEffect, type UniversalEffectData, UniversalEffectProvider, type UseFontLoaderOptions, type UseWaveformDataConfig, type UseWaveformDataReturn, Atom$4 as VideoAtom, config$b as VideoAtomConfig, VideoAtomDataProps, Waveform, WaveformCircle, type WaveformCircleDataProps, type WaveformCircleProps, type WaveformConfig, type WaveformContextType, WaveformEffect, config as WaveformEffectConfig, type WaveformEffectData, WaveformHistogram, type WaveformHistogramDataProps, type WaveformHistogramProps, WaveformHistogramRanged, type WaveformHistogramRangedDataProps, type WaveformHistogramRangedProps, WaveformLine, type WaveformLineDataProps, type WaveformLineProps, WaveformPresets, type WaveformProps, ZoomEffect, config$3 as ZoomEffectConfig, type ZoomEffectData, buildLayoutHook, calculateCircularPosition, calculateComponentDuration, calculateCompositionLayoutMetadata, calculateDuration, calculateGridPosition, calculateHierarchy, calculateTimingWithInheritance, clearFontCache, componentRegistry, createImageDataWithProxy, createImageProxyUrl, createRootContext, findComponentById, findMatchingComponents, findMatchingComponentsByQuery, findParentComponent, getComponent, getComponentConfig, getComponentWithConfig, getLoadedFontFamily, getLoadedFonts, getNormalizedFontName, isFontAvailable, isFontLoaded, loadGoogleFont, loadMultipleFonts, mergeContexts, needsProxying, nextjsLogoConfig, preloadCommonFonts, registerComponent, registerEffect, registerPackage, ringsConfig, rippleOutLayoutConfig, setDurationsInContext, textFadeConfig, useAnimatedStyles, useBoundaryCalculation, useComponentRegistry, useComposition, useFont, useFontLoader, useHasUniversalEffectProvider, useRenderContext, useRippleOutLayout, useUniversalEffect, useUniversalEffectOptional, useWaveformContext, useWaveformData };
|