remotion 4.0.141 → 4.0.142
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/no-react.d.ts +3 -0
- package/dist/cjs/no-react.js +4 -0
- package/dist/cjs/v5-flag.d.ts +1 -0
- package/dist/cjs/v5-flag.js +4 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/no-react.mjs +5 -0
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/no-react.d.ts
CHANGED
package/dist/cjs/no-react.js
CHANGED
|
@@ -9,6 +9,7 @@ const delay_render_1 = require("./delay-render");
|
|
|
9
9
|
const input_props_serialization_1 = require("./input-props-serialization");
|
|
10
10
|
const interpolate_colors_1 = require("./interpolate-colors");
|
|
11
11
|
const truthy_1 = require("./truthy");
|
|
12
|
+
const v5_flag_1 = require("./v5-flag");
|
|
12
13
|
const validate_frame_1 = require("./validate-frame");
|
|
13
14
|
const validate_default_props_1 = require("./validation/validate-default-props");
|
|
14
15
|
const validate_dimensions_1 = require("./validation/validate-dimensions");
|
|
@@ -33,4 +34,7 @@ exports.NoReactInternals = {
|
|
|
33
34
|
DELAY_RENDER_ATTEMPT_TOKEN: delay_render_1.DELAY_RENDER_RETRIES_LEFT,
|
|
34
35
|
getOffthreadVideoSource: offthread_video_source_1.getOffthreadVideoSource,
|
|
35
36
|
getExpectedMediaFrameUncorrected: get_current_time_1.getExpectedMediaFrameUncorrected,
|
|
37
|
+
ENABLE_V5_BREAKING_CHANGES: v5_flag_1.ENABLE_V5_BREAKING_CHANGES,
|
|
38
|
+
MIN_NODE_VERSION: v5_flag_1.ENABLE_V5_BREAKING_CHANGES ? 18 : 16,
|
|
39
|
+
MIN_BUN_VERSION: v5_flag_1.ENABLE_V5_BREAKING_CHANGES ? '1.1.3' : '1.0.3',
|
|
36
40
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ENABLE_V5_BREAKING_CHANGES: false;
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "4.0.
|
|
1
|
+
export declare const VERSION = "4.0.142";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/index.mjs
CHANGED
package/dist/esm/no-react.mjs
CHANGED
|
@@ -655,6 +655,8 @@ function processColor(color) {
|
|
|
655
655
|
return ((normalizedColor << 24) | (normalizedColor >>> 8)) >>> 0; // argb
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
+
const ENABLE_V5_BREAKING_CHANGES = false;
|
|
659
|
+
|
|
658
660
|
const validateFrame = ({ allowFloats, durationInFrames, frame, }) => {
|
|
659
661
|
if (typeof frame === 'undefined') {
|
|
660
662
|
throw new TypeError(`Argument missing for parameter "frame"`);
|
|
@@ -776,6 +778,9 @@ const NoReactInternals = {
|
|
|
776
778
|
DELAY_RENDER_ATTEMPT_TOKEN: DELAY_RENDER_RETRIES_LEFT,
|
|
777
779
|
getOffthreadVideoSource,
|
|
778
780
|
getExpectedMediaFrameUncorrected,
|
|
781
|
+
ENABLE_V5_BREAKING_CHANGES,
|
|
782
|
+
MIN_NODE_VERSION: 16,
|
|
783
|
+
MIN_BUN_VERSION: '1.0.3',
|
|
779
784
|
};
|
|
780
785
|
|
|
781
786
|
export { NoReactInternals, interpolate, random };
|
package/dist/esm/version.mjs
CHANGED