remotion 4.0.8 → 4.0.10
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/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "4.0.
|
|
1
|
+
export declare const VERSION = "4.0.10";
|
package/dist/cjs/version.js
CHANGED
|
@@ -35,6 +35,7 @@ const OffthreadVideo = (props) => {
|
|
|
35
35
|
if (environment === 'rendering') {
|
|
36
36
|
return (0, jsx_runtime_1.jsx)(OffthreadVideoForRendering_js_1.OffthreadVideoForRendering, { ...otherProps });
|
|
37
37
|
}
|
|
38
|
-
|
|
38
|
+
const { transparent, ...withoutTransparent } = otherProps;
|
|
39
|
+
return ((0, jsx_runtime_1.jsx)(VideoForDevelopment_js_1.VideoForDevelopment, { onDuration: onDuration, onlyWarnForMediaSeekingError: true, ...withoutTransparent }));
|
|
39
40
|
};
|
|
40
41
|
exports.OffthreadVideo = OffthreadVideo;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -59,7 +59,7 @@ function truthy(value) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
// Automatically generated on publish
|
|
62
|
-
const VERSION = '4.0.
|
|
62
|
+
const VERSION = '4.0.10';
|
|
63
63
|
|
|
64
64
|
const checkMultipleRemotionVersions = () => {
|
|
65
65
|
if (typeof globalThis === 'undefined') {
|
|
@@ -4441,7 +4441,8 @@ const OffthreadVideo = (props) => {
|
|
|
4441
4441
|
if (environment === 'rendering') {
|
|
4442
4442
|
return jsx(OffthreadVideoForRendering, { ...otherProps });
|
|
4443
4443
|
}
|
|
4444
|
-
|
|
4444
|
+
const { transparent, ...withoutTransparent } = otherProps;
|
|
4445
|
+
return (jsx(VideoForDevelopment, { onDuration: onDuration, onlyWarnForMediaSeekingError: true, ...withoutTransparent }));
|
|
4445
4446
|
};
|
|
4446
4447
|
|
|
4447
4448
|
const VideoForRenderingForwardFunction = ({ onError, volume: volumeProp, allowAmplificationDuringRender, playbackRate, onDuration, ...props }, ref) => {
|
package/dist/esm/version.mjs
CHANGED