@microfox/remotion 1.2.1 → 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 +14 -0
- package/dist/index.d.mts +256 -20
- package/dist/index.d.ts +256 -20
- package/dist/index.js +2291 -798
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2236 -753
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fcbdf2f: Changes from PR #38: editor
|
|
8
|
+
- c735283: Changes from PR #32: pg_transcription_upgrades
|
|
9
|
+
- 7ebd522: Changes from PR #25: pg_importablepreset_0111
|
|
10
|
+
|
|
11
|
+
## 1.2.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 253b532: Changes from PR #23: pg_textatoms_3010
|
|
16
|
+
|
|
3
17
|
## 1.2.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
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;
|
|
@@ -331,6 +331,7 @@ interface TextAtomData {
|
|
|
331
331
|
text: string;
|
|
332
332
|
style?: React$1.CSSProperties;
|
|
333
333
|
className?: string;
|
|
334
|
+
gradient?: string;
|
|
334
335
|
font?: FontConfig$1;
|
|
335
336
|
fallbackFonts?: string[];
|
|
336
337
|
loadingState?: {
|
|
@@ -358,8 +359,8 @@ interface TextAtomProps extends BaseRenderableProps {
|
|
|
358
359
|
* - Font preloading for performance
|
|
359
360
|
* - Graceful degradation to system fonts
|
|
360
361
|
*/
|
|
361
|
-
declare const Atom$
|
|
362
|
-
declare const config$
|
|
362
|
+
declare const Atom$5: React$1.FC<TextAtomProps>;
|
|
363
|
+
declare const config$c: ComponentConfig;
|
|
363
364
|
|
|
364
365
|
declare const VideoAtomDataProps: z.ZodObject<{
|
|
365
366
|
src: z.ZodString;
|
|
@@ -401,8 +402,8 @@ interface VideoAtomProps extends BaseRenderableProps {
|
|
|
401
402
|
* @param data - Video configuration object containing all playback and styling settings
|
|
402
403
|
* @returns Remotion Video component with applied configurations
|
|
403
404
|
*/
|
|
404
|
-
declare const Atom$
|
|
405
|
-
declare const config$
|
|
405
|
+
declare const Atom$4: React$1.FC<VideoAtomProps>;
|
|
406
|
+
declare const config$b: ComponentConfig;
|
|
406
407
|
|
|
407
408
|
declare const AudioAtomDataProps: z.ZodObject<{
|
|
408
409
|
src: z.ZodString;
|
|
@@ -440,8 +441,8 @@ interface AudioAtomProps extends BaseRenderableProps {
|
|
|
440
441
|
* @param data - Audio configuration object containing all playback settings
|
|
441
442
|
* @returns Remotion Audio component with applied configurations
|
|
442
443
|
*/
|
|
443
|
-
declare const Atom$
|
|
444
|
-
declare const config$
|
|
444
|
+
declare const Atom$3: React$1.FC<AudioAtomProps>;
|
|
445
|
+
declare const config$a: ComponentConfig;
|
|
445
446
|
|
|
446
447
|
declare const LottieAtomDataProps: z.ZodObject<{
|
|
447
448
|
src: z.ZodString;
|
|
@@ -476,12 +477,49 @@ interface LottieAtomProps extends BaseRenderableProps {
|
|
|
476
477
|
* @param id - Unique identifier for the component (used for animation effects)
|
|
477
478
|
* @returns Remotion Lottie component with applied configurations
|
|
478
479
|
*/
|
|
479
|
-
declare const Atom: React$1.FC<LottieAtomProps>;
|
|
480
|
+
declare const Atom$2: React$1.FC<LottieAtomProps>;
|
|
480
481
|
/**
|
|
481
482
|
* Static configuration for LottieAtom
|
|
482
483
|
* Used for component registration and identification
|
|
483
484
|
*/
|
|
484
|
-
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;
|
|
485
523
|
|
|
486
524
|
interface AnimationRange {
|
|
487
525
|
key: string;
|
|
@@ -523,7 +561,7 @@ declare const UniversalEffectProvider: React$1.FC<{
|
|
|
523
561
|
declare const useAnimatedStyles: (componentId: string) => React$1.CSSProperties;
|
|
524
562
|
|
|
525
563
|
declare const BlurEffect: React$1.FC<BaseRenderableProps>;
|
|
526
|
-
declare const config$
|
|
564
|
+
declare const config$6: {
|
|
527
565
|
displayName: string;
|
|
528
566
|
description: string;
|
|
529
567
|
isInnerSequence: boolean;
|
|
@@ -543,7 +581,7 @@ declare const config$5: {
|
|
|
543
581
|
};
|
|
544
582
|
|
|
545
583
|
declare const LoopEffect: React$1.FC<BaseRenderableProps>;
|
|
546
|
-
declare const config$
|
|
584
|
+
declare const config$5: ComponentConfig;
|
|
547
585
|
|
|
548
586
|
interface PanEffectData {
|
|
549
587
|
effectTiming?: 'start' | 'end';
|
|
@@ -560,7 +598,7 @@ interface PanEffectData {
|
|
|
560
598
|
animationType?: 'linear' | 'spring' | 'ease-in' | 'ease-out' | 'ease-in-out';
|
|
561
599
|
}
|
|
562
600
|
declare const PanEffect: React$1.FC<BaseRenderableProps>;
|
|
563
|
-
declare const config$
|
|
601
|
+
declare const config$4: ComponentConfig;
|
|
564
602
|
|
|
565
603
|
interface ZoomEffectData {
|
|
566
604
|
effectTiming?: 'start' | 'end';
|
|
@@ -576,7 +614,7 @@ interface ZoomEffectData {
|
|
|
576
614
|
animationType?: 'linear' | 'spring' | 'ease-in' | 'ease-out' | 'ease-in-out';
|
|
577
615
|
}
|
|
578
616
|
declare const ZoomEffect: React$1.FC<BaseRenderableProps>;
|
|
579
|
-
declare const config$
|
|
617
|
+
declare const config$3: ComponentConfig;
|
|
580
618
|
|
|
581
619
|
interface ShakeEffectData extends UniversalEffectData {
|
|
582
620
|
amplitude?: number;
|
|
@@ -585,7 +623,7 @@ interface ShakeEffectData extends UniversalEffectData {
|
|
|
585
623
|
axis?: 'x' | 'y' | 'both';
|
|
586
624
|
}
|
|
587
625
|
declare const ShakeEffect: React$1.FC<BaseRenderableProps>;
|
|
588
|
-
declare const config$
|
|
626
|
+
declare const config$2: {
|
|
589
627
|
displayName: string;
|
|
590
628
|
description: string;
|
|
591
629
|
isInnerSequence: boolean;
|
|
@@ -624,7 +662,7 @@ interface StretchEffectData extends UniversalEffectData {
|
|
|
624
662
|
};
|
|
625
663
|
}
|
|
626
664
|
declare const StretchEffect: React$1.FC<BaseRenderableProps>;
|
|
627
|
-
declare const config: {
|
|
665
|
+
declare const config$1: {
|
|
628
666
|
displayName: string;
|
|
629
667
|
description: string;
|
|
630
668
|
isInnerSequence: boolean;
|
|
@@ -642,6 +680,78 @@ declare const config: {
|
|
|
642
680
|
};
|
|
643
681
|
};
|
|
644
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
|
+
|
|
645
755
|
declare const GenericEffectPresets: {
|
|
646
756
|
fadeInPreset: AnimationRange[];
|
|
647
757
|
fadeOutPreset: AnimationRange[];
|
|
@@ -681,6 +791,129 @@ declare const GenericEffectPresets: {
|
|
|
681
791
|
textRevealPreset: AnimationRange[];
|
|
682
792
|
};
|
|
683
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
|
+
|
|
684
917
|
type GenericEffectData = UniversalEffectData;
|
|
685
918
|
|
|
686
919
|
declare const useComponentRegistry: () => {
|
|
@@ -940,6 +1173,7 @@ interface WaveformConfig {
|
|
|
940
1173
|
amplitude?: number;
|
|
941
1174
|
smoothing?: boolean;
|
|
942
1175
|
posterize?: number;
|
|
1176
|
+
smoothNormalisation?: number;
|
|
943
1177
|
}
|
|
944
1178
|
interface WaveformContextType {
|
|
945
1179
|
waveformData: number[] | null;
|
|
@@ -979,6 +1213,7 @@ interface UseWaveformDataConfig {
|
|
|
979
1213
|
includeFrequencyData?: boolean;
|
|
980
1214
|
minDb?: number;
|
|
981
1215
|
maxDb?: number;
|
|
1216
|
+
smoothNormalisation?: number;
|
|
982
1217
|
}
|
|
983
1218
|
interface UseWaveformDataReturn {
|
|
984
1219
|
waveformData: number[] | null;
|
|
@@ -1130,6 +1365,7 @@ declare const WaveformPresets: {
|
|
|
1130
1365
|
amplitude: number;
|
|
1131
1366
|
smoothing?: boolean;
|
|
1132
1367
|
posterize: number;
|
|
1368
|
+
smoothNormalisation?: number;
|
|
1133
1369
|
};
|
|
1134
1370
|
className?: string;
|
|
1135
1371
|
style?: React.CSSProperties;
|
|
@@ -1161,4 +1397,4 @@ declare const WaveformPresets: {
|
|
|
1161
1397
|
};
|
|
1162
1398
|
};
|
|
1163
1399
|
|
|
1164
|
-
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 };
|