@remotion/renderer 4.0.487 → 4.0.489
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/client.d.ts +16 -0
- package/dist/esm/client.mjs +461 -428
- package/dist/options/index.d.ts +16 -0
- package/dist/options/index.js +2 -0
- package/dist/options/interactivity.d.ts +16 -0
- package/dist/options/interactivity.js +31 -0
- package/package.json +13 -13
package/dist/options/index.d.ts
CHANGED
|
@@ -1094,6 +1094,22 @@ export declare const allOptions: {
|
|
|
1094
1094
|
setConfig(value: boolean): void;
|
|
1095
1095
|
id: "disable-ask-ai";
|
|
1096
1096
|
};
|
|
1097
|
+
interactivityOption: {
|
|
1098
|
+
name: string;
|
|
1099
|
+
cliFlag: "disable-interactivity";
|
|
1100
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1101
|
+
ssrName: null;
|
|
1102
|
+
docLink: string;
|
|
1103
|
+
type: boolean;
|
|
1104
|
+
getValue: ({ commandLine }: {
|
|
1105
|
+
commandLine: Record<string, unknown>;
|
|
1106
|
+
}) => {
|
|
1107
|
+
value: boolean;
|
|
1108
|
+
source: string;
|
|
1109
|
+
};
|
|
1110
|
+
setConfig(value: boolean): void;
|
|
1111
|
+
id: "disable-interactivity";
|
|
1112
|
+
};
|
|
1097
1113
|
experimentalClientSideRenderingOption: {
|
|
1098
1114
|
name: string;
|
|
1099
1115
|
cliFlag: "enable-experimental-client-side-rendering";
|
package/dist/options/index.js
CHANGED
|
@@ -42,6 +42,7 @@ const headless_1 = require("./headless");
|
|
|
42
42
|
const ignore_certificate_errors_1 = require("./ignore-certificate-errors");
|
|
43
43
|
const image_sequence_1 = require("./image-sequence");
|
|
44
44
|
const image_sequence_pattern_1 = require("./image-sequence-pattern");
|
|
45
|
+
const interactivity_1 = require("./interactivity");
|
|
45
46
|
const ipv4_1 = require("./ipv4");
|
|
46
47
|
const is_production_1 = require("./is-production");
|
|
47
48
|
const jpeg_quality_1 = require("./jpeg-quality");
|
|
@@ -157,6 +158,7 @@ exports.allOptions = {
|
|
|
157
158
|
publicLicenseKeyOption: public_license_key_1.publicLicenseKeyOption,
|
|
158
159
|
isProductionOption: is_production_1.isProductionOption,
|
|
159
160
|
askAIOption: ask_ai_1.askAIOption,
|
|
161
|
+
interactivityOption: interactivity_1.interactivityOption,
|
|
160
162
|
experimentalClientSideRenderingOption: experimental_client_side_rendering_1.experimentalClientSideRenderingOption,
|
|
161
163
|
keyboardShortcutsOption: keyboard_shortcuts_1.keyboardShortcutsOption,
|
|
162
164
|
framesOption: frames_1.framesOption,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const interactivityOption: {
|
|
2
|
+
name: string;
|
|
3
|
+
cliFlag: "disable-interactivity";
|
|
4
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
ssrName: null;
|
|
6
|
+
docLink: string;
|
|
7
|
+
type: boolean;
|
|
8
|
+
getValue: ({ commandLine }: {
|
|
9
|
+
commandLine: Record<string, unknown>;
|
|
10
|
+
}) => {
|
|
11
|
+
value: boolean;
|
|
12
|
+
source: string;
|
|
13
|
+
};
|
|
14
|
+
setConfig(value: boolean): void;
|
|
15
|
+
id: "disable-interactivity";
|
|
16
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.interactivityOption = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
let interactivityEnabled = true;
|
|
6
|
+
const cliFlag = 'disable-interactivity';
|
|
7
|
+
exports.interactivityOption = {
|
|
8
|
+
name: 'Disable or enable Studio interactivity',
|
|
9
|
+
cliFlag,
|
|
10
|
+
description: () => (jsx_runtime_1.jsx(jsx_runtime_1.Fragment, { children: "Enable or disable interactive editing in the Remotion Studio. When disabled, the Studio keeps previewing and source navigation available, but disables preview outlines, the sequence inspector, visual controls, timeline selection and timeline editing gestures." })),
|
|
11
|
+
ssrName: null,
|
|
12
|
+
docLink: 'https://www.remotion.dev/docs/config#setinteractivityenabled',
|
|
13
|
+
type: false,
|
|
14
|
+
getValue: ({ commandLine }) => {
|
|
15
|
+
if (commandLine[cliFlag] !== undefined && commandLine[cliFlag] !== null) {
|
|
16
|
+
interactivityEnabled = commandLine[cliFlag] === false;
|
|
17
|
+
return {
|
|
18
|
+
value: interactivityEnabled,
|
|
19
|
+
source: 'cli',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
value: interactivityEnabled,
|
|
24
|
+
source: 'config',
|
|
25
|
+
};
|
|
26
|
+
},
|
|
27
|
+
setConfig(value) {
|
|
28
|
+
interactivityEnabled = value;
|
|
29
|
+
},
|
|
30
|
+
id: cliFlag,
|
|
31
|
+
};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/renderer"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/renderer",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.489",
|
|
7
7
|
"description": "Render Remotion videos using Node.js or Bun",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"execa": "5.1.1",
|
|
25
|
-
"remotion": "4.0.
|
|
26
|
-
"@remotion/streaming": "4.0.
|
|
25
|
+
"remotion": "4.0.489",
|
|
26
|
+
"@remotion/streaming": "4.0.489",
|
|
27
27
|
"source-map": "0.8.0-beta.0",
|
|
28
28
|
"ws": "8.21.0",
|
|
29
|
-
"@remotion/licensing": "4.0.
|
|
29
|
+
"@remotion/licensing": "4.0.489"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"react": ">=16.8.0",
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"react-dom": "19.2.3",
|
|
41
41
|
"@typescript/native-preview": "7.0.0-dev.20260217.1",
|
|
42
42
|
"@types/ws": "8.5.10",
|
|
43
|
-
"@remotion/example-videos": "4.0.
|
|
44
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
43
|
+
"@remotion/example-videos": "4.0.489",
|
|
44
|
+
"@remotion/eslint-config-internal": "4.0.489",
|
|
45
45
|
"eslint": "9.19.0",
|
|
46
46
|
"@types/node": "20.12.14"
|
|
47
47
|
},
|
|
48
48
|
"optionalDependencies": {
|
|
49
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
50
|
-
"@remotion/compositor-darwin-x64": "4.0.
|
|
51
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
52
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.
|
|
53
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
54
|
-
"@remotion/compositor-linux-x64-musl": "4.0.
|
|
55
|
-
"@remotion/compositor-win32-x64-msvc": "4.0.
|
|
49
|
+
"@remotion/compositor-darwin-arm64": "4.0.489",
|
|
50
|
+
"@remotion/compositor-darwin-x64": "4.0.489",
|
|
51
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.489",
|
|
52
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.489",
|
|
53
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.489",
|
|
54
|
+
"@remotion/compositor-linux-x64-musl": "4.0.489",
|
|
55
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.489"
|
|
56
56
|
},
|
|
57
57
|
"keywords": [
|
|
58
58
|
"remotion",
|