@remotion/studio 4.0.295 → 4.0.296
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/.turbo/turbo-make.log +2 -2
- package/dist/api/visual-control.js +4 -0
- package/dist/components/AskAiModal.js +1 -1
- package/dist/components/GlobalKeybindings.js +3 -3
- package/dist/components/KeyboardShortcutsExplainer.js +1 -1
- package/dist/esm/index.mjs +10 -4
- package/dist/esm/internals.mjs +6 -6
- package/dist/esm/previewEntry.mjs +6 -6
- package/dist/esm/renderEntry.mjs +6 -6
- package/dist/helpers/use-menu-structure.js +1 -1
- package/package.json +9 -9
- package/tsconfig.tsbuildinfo +1 -1
package/.turbo/turbo-make.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @remotion/studio@4.0.
|
|
3
|
+
> @remotion/studio@4.0.296 make /Users/jonathanburger/remotion/packages/studio
|
|
4
4
|
> tsc -d && bun --env-file=../.env.bundle bundle.ts
|
|
5
5
|
|
|
6
|
-
[0m[2m[[
|
|
6
|
+
[0m[2m[[1m64.51ms[0m[2m][0m Generated.
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.visualControl = void 0;
|
|
4
|
+
const remotion_1 = require("remotion");
|
|
4
5
|
const VisualControls_1 = require("../visual-controls/VisualControls");
|
|
5
6
|
const visualControl = (key, value, schema) => {
|
|
7
|
+
if ((0, remotion_1.getRemotionEnvironment)().isRendering) {
|
|
8
|
+
return value;
|
|
9
|
+
}
|
|
6
10
|
if (!VisualControls_1.visualControlRef.current) {
|
|
7
11
|
throw new Error('visualControlRef is not set');
|
|
8
12
|
}
|
|
@@ -33,7 +33,7 @@ const AskAiModal = () => {
|
|
|
33
33
|
const onMessage = (event) => {
|
|
34
34
|
var _a;
|
|
35
35
|
const json = typeof event.data === 'string' ? JSON.parse(event.data) : event.data;
|
|
36
|
-
if (json.type === 'cmd-
|
|
36
|
+
if (json.type === 'cmd-i') {
|
|
37
37
|
(_a = exports.askAiModalRef.current) === null || _a === void 0 ? void 0 : _a.toggle();
|
|
38
38
|
}
|
|
39
39
|
};
|
|
@@ -38,9 +38,9 @@ const GlobalKeybindings = () => {
|
|
|
38
38
|
commandCtrlKey: true,
|
|
39
39
|
preventDefault: true,
|
|
40
40
|
});
|
|
41
|
-
const
|
|
41
|
+
const cmdIKey = keybindings.registerKeybinding({
|
|
42
42
|
event: 'keydown',
|
|
43
|
-
key: '
|
|
43
|
+
key: 'i',
|
|
44
44
|
callback: () => {
|
|
45
45
|
var _a;
|
|
46
46
|
(_a = AskAiModal_1.askAiModalRef.current) === null || _a === void 0 ? void 0 : _a.toggle();
|
|
@@ -81,7 +81,7 @@ const GlobalKeybindings = () => {
|
|
|
81
81
|
cKey.unregister();
|
|
82
82
|
questionMark.unregister();
|
|
83
83
|
cmdKKey.unregister();
|
|
84
|
-
|
|
84
|
+
cmdIKey.unregister();
|
|
85
85
|
};
|
|
86
86
|
}, [keybindings, setCheckerboard, setSelectedModal]);
|
|
87
87
|
return null;
|
|
@@ -52,6 +52,6 @@ const li = {
|
|
|
52
52
|
fontSize: 14,
|
|
53
53
|
};
|
|
54
54
|
const KeyboardShortcutsExplainer = () => {
|
|
55
|
-
return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, use_keybinding_1.areKeyboardShortcutsDisabled)() ? ((0, jsx_runtime_1.jsxs)("div", { style: keyboardShortcutsDisabled, children: ["Keyboard shortcuts disabled either due to:", (0, jsx_runtime_1.jsxs)("ul", { style: ul, children: [(0, jsx_runtime_1.jsx)("li", { style: li, children: "a) --disable-keyboard-shortcuts being passed" }), (0, jsx_runtime_1.jsx)("li", { style: li, children: "b) Config.setKeyboardShortcutsEnabled(false) being set or" }), (0, jsx_runtime_1.jsx)("li", { style: li, children: " c) a Remotion version mismatch." })] })] })) : null, (0, jsx_runtime_1.jsxs)(layout_1.Row, { style: container, children: [(0, jsx_runtime_1.jsxs)(layout_1.Column, { children: [(0, jsx_runtime_1.jsx)("div", { style: title, children: "Playback" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ShiftIcon, {}) }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ArrowLeft, {}) })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "1 second back" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ArrowLeft, {}) }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Previous frame" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "Space" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Play / Pause" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ArrowRight, {}) }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Next frame" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ShiftIcon, {}) }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ArrowRight, {}) })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "1 second forward" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "A" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Jump to beginning" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "E" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Jump to end" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "J" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Reverse playback" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "K" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Pause" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "L" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Play / Speed up" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "G" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Go to frame" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "Enter" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Pause & return to playback start" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "Sidebar" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "B" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Toggle left sidebar" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "J" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Toggle right sidebar" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "G" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Toggle both sidebars" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "View" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "F" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Enter fullscreen" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "Esc" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Exit fullscreen" })] })] }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 8 }), (0, jsx_runtime_1.jsxs)(layout_1.Column, { children: [(0, jsx_runtime_1.jsx)("div", { style: title, children: "Navigation" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "R" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Render composition" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "T" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Toggle checkerboard background" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "?" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Show keyboard shortcuts" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "K" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Quick Switcher" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "Playback range" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "I" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Set In Point" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "O" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Set Out Point" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "X" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Clear In/Out Points" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "Zoom" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "+" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Zoom in" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "-" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Zoom out" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "0" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Reset zoom" })] }), ' ', (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "Props Editor" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "S" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Save" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "AI" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "J" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Ask AI" })] })] })] })] }));
|
|
55
|
+
return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, use_keybinding_1.areKeyboardShortcutsDisabled)() ? ((0, jsx_runtime_1.jsxs)("div", { style: keyboardShortcutsDisabled, children: ["Keyboard shortcuts disabled either due to:", (0, jsx_runtime_1.jsxs)("ul", { style: ul, children: [(0, jsx_runtime_1.jsx)("li", { style: li, children: "a) --disable-keyboard-shortcuts being passed" }), (0, jsx_runtime_1.jsx)("li", { style: li, children: "b) Config.setKeyboardShortcutsEnabled(false) being set or" }), (0, jsx_runtime_1.jsx)("li", { style: li, children: " c) a Remotion version mismatch." })] })] })) : null, (0, jsx_runtime_1.jsxs)(layout_1.Row, { style: container, children: [(0, jsx_runtime_1.jsxs)(layout_1.Column, { children: [(0, jsx_runtime_1.jsx)("div", { style: title, children: "Playback" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ShiftIcon, {}) }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ArrowLeft, {}) })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "1 second back" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ArrowLeft, {}) }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Previous frame" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "Space" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Play / Pause" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ArrowRight, {}) }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Next frame" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ShiftIcon, {}) }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: (0, jsx_runtime_1.jsx)(keys_1.ArrowRight, {}) })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "1 second forward" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "A" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Jump to beginning" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "E" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Jump to end" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "J" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Reverse playback" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "K" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Pause" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "L" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Play / Speed up" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "G" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Go to frame" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "Enter" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Pause & return to playback start" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "Sidebar" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "B" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Toggle left sidebar" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "J" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Toggle right sidebar" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "G" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Toggle both sidebars" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "View" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "F" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Enter fullscreen" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "Esc" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Exit fullscreen" })] })] }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 8 }), (0, jsx_runtime_1.jsxs)(layout_1.Column, { children: [(0, jsx_runtime_1.jsx)("div", { style: title, children: "Navigation" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "R" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Render composition" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "T" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Toggle checkerboard background" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "?" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Show keyboard shortcuts" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "K" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Quick Switcher" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "Playback range" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "I" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Set In Point" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "O" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Set Out Point" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "X" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Clear In/Out Points" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "Zoom" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "+" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Zoom in" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "-" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Zoom out" })] }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsx)("div", { style: left, children: (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "0" }) }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Reset zoom" })] }), ' ', (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "Props Editor" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "S" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Save" })] }), (0, jsx_runtime_1.jsx)("br", {}), (0, jsx_runtime_1.jsx)("div", { style: title, children: "AI" }), (0, jsx_runtime_1.jsxs)(layout_1.Row, { align: "center", children: [(0, jsx_runtime_1.jsxs)("div", { style: left, children: [(0, jsx_runtime_1.jsx)("kbd", { style: key, children: ShortcutHint_1.cmdOrCtrlCharacter }), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.3 }), (0, jsx_runtime_1.jsx)("kbd", { style: key, children: "I" })] }), (0, jsx_runtime_1.jsx)("div", { style: right, children: "Ask AI" })] })] })] })] }));
|
|
56
56
|
};
|
|
57
57
|
exports.KeyboardShortcutsExplainer = KeyboardShortcutsExplainer;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -473,6 +473,9 @@ var updateDefaultProps = ({
|
|
|
473
473
|
}
|
|
474
474
|
}));
|
|
475
475
|
};
|
|
476
|
+
// src/api/visual-control.ts
|
|
477
|
+
import { getRemotionEnvironment as getRemotionEnvironment6 } from "remotion";
|
|
478
|
+
|
|
476
479
|
// src/visual-controls/VisualControls.tsx
|
|
477
480
|
import {
|
|
478
481
|
createContext,
|
|
@@ -505,16 +508,19 @@ var SetVisualControlsContext = createContext({
|
|
|
505
508
|
|
|
506
509
|
// src/api/visual-control.ts
|
|
507
510
|
var visualControl = (key, value, schema) => {
|
|
511
|
+
if (getRemotionEnvironment6().isRendering) {
|
|
512
|
+
return value;
|
|
513
|
+
}
|
|
508
514
|
if (!visualControlRef.current) {
|
|
509
515
|
throw new Error("visualControlRef is not set");
|
|
510
516
|
}
|
|
511
517
|
return visualControlRef.current.globalVisualControl(key, value, schema);
|
|
512
518
|
};
|
|
513
519
|
// src/api/watch-public-folder.ts
|
|
514
|
-
import { getRemotionEnvironment as
|
|
520
|
+
import { getRemotionEnvironment as getRemotionEnvironment7 } from "remotion";
|
|
515
521
|
var WATCH_REMOTION_STATIC_FILES = "remotion_staticFilesChanged";
|
|
516
522
|
var watchPublicFolder = (callback) => {
|
|
517
|
-
if (!
|
|
523
|
+
if (!getRemotionEnvironment7().isStudio) {
|
|
518
524
|
console.warn("The watchPublicFolder() API is only available while using the Remotion Studio.");
|
|
519
525
|
return { cancel: () => {
|
|
520
526
|
return;
|
|
@@ -533,9 +539,9 @@ var watchPublicFolder = (callback) => {
|
|
|
533
539
|
return { cancel };
|
|
534
540
|
};
|
|
535
541
|
// src/api/watch-static-file.ts
|
|
536
|
-
import { getRemotionEnvironment as
|
|
542
|
+
import { getRemotionEnvironment as getRemotionEnvironment8 } from "remotion";
|
|
537
543
|
var watchStaticFile = (fileName, callback) => {
|
|
538
|
-
if (!
|
|
544
|
+
if (!getRemotionEnvironment8().isStudio) {
|
|
539
545
|
console.warn("watchStaticFile() is only available while using the Remotion Studio.");
|
|
540
546
|
return { cancel: () => {
|
|
541
547
|
return;
|
package/dist/esm/internals.mjs
CHANGED
|
@@ -4401,7 +4401,7 @@ var AskAiModal = () => {
|
|
|
4401
4401
|
useEffect14(() => {
|
|
4402
4402
|
const onMessage = (event) => {
|
|
4403
4403
|
const json = typeof event.data === "string" ? JSON.parse(event.data) : event.data;
|
|
4404
|
-
if (json.type === "cmd-
|
|
4404
|
+
if (json.type === "cmd-i") {
|
|
4405
4405
|
askAiModalRef.current?.toggle();
|
|
4406
4406
|
}
|
|
4407
4407
|
};
|
|
@@ -6625,7 +6625,7 @@ var useMenuStructure = (closeMenu, readOnlyStudio) => {
|
|
|
6625
6625
|
askAiModalRef.current?.toggle();
|
|
6626
6626
|
},
|
|
6627
6627
|
leftItem: null,
|
|
6628
|
-
keyHint: `${cmdOrCtrlCharacter}+
|
|
6628
|
+
keyHint: `${cmdOrCtrlCharacter}+I`,
|
|
6629
6629
|
subMenu: null,
|
|
6630
6630
|
type: "item",
|
|
6631
6631
|
quickSwitcherLabel: "Ask AI"
|
|
@@ -20773,9 +20773,9 @@ var GlobalKeybindings = () => {
|
|
|
20773
20773
|
commandCtrlKey: true,
|
|
20774
20774
|
preventDefault: true
|
|
20775
20775
|
});
|
|
20776
|
-
const
|
|
20776
|
+
const cmdIKey = keybindings.registerKeybinding({
|
|
20777
20777
|
event: "keydown",
|
|
20778
|
-
key: "
|
|
20778
|
+
key: "i",
|
|
20779
20779
|
callback: () => {
|
|
20780
20780
|
askAiModalRef.current?.toggle();
|
|
20781
20781
|
},
|
|
@@ -20815,7 +20815,7 @@ var GlobalKeybindings = () => {
|
|
|
20815
20815
|
cKey.unregister();
|
|
20816
20816
|
questionMark.unregister();
|
|
20817
20817
|
cmdKKey.unregister();
|
|
20818
|
-
|
|
20818
|
+
cmdIKey.unregister();
|
|
20819
20819
|
};
|
|
20820
20820
|
}, [keybindings, setCheckerboard, setSelectedModal]);
|
|
20821
20821
|
return null;
|
|
@@ -22688,7 +22688,7 @@ var KeyboardShortcutsExplainer = () => {
|
|
|
22688
22688
|
}),
|
|
22689
22689
|
/* @__PURE__ */ jsx215("kbd", {
|
|
22690
22690
|
style: key4,
|
|
22691
|
-
children: "
|
|
22691
|
+
children: "I"
|
|
22692
22692
|
})
|
|
22693
22693
|
]
|
|
22694
22694
|
}),
|
|
@@ -4406,7 +4406,7 @@ var AskAiModal = () => {
|
|
|
4406
4406
|
useEffect14(() => {
|
|
4407
4407
|
const onMessage = (event) => {
|
|
4408
4408
|
const json = typeof event.data === "string" ? JSON.parse(event.data) : event.data;
|
|
4409
|
-
if (json.type === "cmd-
|
|
4409
|
+
if (json.type === "cmd-i") {
|
|
4410
4410
|
askAiModalRef.current?.toggle();
|
|
4411
4411
|
}
|
|
4412
4412
|
};
|
|
@@ -6630,7 +6630,7 @@ var useMenuStructure = (closeMenu, readOnlyStudio) => {
|
|
|
6630
6630
|
askAiModalRef.current?.toggle();
|
|
6631
6631
|
},
|
|
6632
6632
|
leftItem: null,
|
|
6633
|
-
keyHint: `${cmdOrCtrlCharacter}+
|
|
6633
|
+
keyHint: `${cmdOrCtrlCharacter}+I`,
|
|
6634
6634
|
subMenu: null,
|
|
6635
6635
|
type: "item",
|
|
6636
6636
|
quickSwitcherLabel: "Ask AI"
|
|
@@ -21053,9 +21053,9 @@ var GlobalKeybindings = () => {
|
|
|
21053
21053
|
commandCtrlKey: true,
|
|
21054
21054
|
preventDefault: true
|
|
21055
21055
|
});
|
|
21056
|
-
const
|
|
21056
|
+
const cmdIKey = keybindings.registerKeybinding({
|
|
21057
21057
|
event: "keydown",
|
|
21058
|
-
key: "
|
|
21058
|
+
key: "i",
|
|
21059
21059
|
callback: () => {
|
|
21060
21060
|
askAiModalRef.current?.toggle();
|
|
21061
21061
|
},
|
|
@@ -21095,7 +21095,7 @@ var GlobalKeybindings = () => {
|
|
|
21095
21095
|
cKey.unregister();
|
|
21096
21096
|
questionMark.unregister();
|
|
21097
21097
|
cmdKKey.unregister();
|
|
21098
|
-
|
|
21098
|
+
cmdIKey.unregister();
|
|
21099
21099
|
};
|
|
21100
21100
|
}, [keybindings, setCheckerboard, setSelectedModal]);
|
|
21101
21101
|
return null;
|
|
@@ -22968,7 +22968,7 @@ var KeyboardShortcutsExplainer = () => {
|
|
|
22968
22968
|
}),
|
|
22969
22969
|
/* @__PURE__ */ jsx216("kbd", {
|
|
22970
22970
|
style: key4,
|
|
22971
|
-
children: "
|
|
22971
|
+
children: "I"
|
|
22972
22972
|
})
|
|
22973
22973
|
]
|
|
22974
22974
|
}),
|
package/dist/esm/renderEntry.mjs
CHANGED
|
@@ -4422,7 +4422,7 @@ var container11, askAiModalRef, AskAiModal = () => {
|
|
|
4422
4422
|
useEffect14(() => {
|
|
4423
4423
|
const onMessage = (event) => {
|
|
4424
4424
|
const json = typeof event.data === "string" ? JSON.parse(event.data) : event.data;
|
|
4425
|
-
if (json.type === "cmd-
|
|
4425
|
+
if (json.type === "cmd-i") {
|
|
4426
4426
|
askAiModalRef.current?.toggle();
|
|
4427
4427
|
}
|
|
4428
4428
|
};
|
|
@@ -6688,7 +6688,7 @@ var openExternal = (link) => {
|
|
|
6688
6688
|
askAiModalRef.current?.toggle();
|
|
6689
6689
|
},
|
|
6690
6690
|
leftItem: null,
|
|
6691
|
-
keyHint: `${cmdOrCtrlCharacter}+
|
|
6691
|
+
keyHint: `${cmdOrCtrlCharacter}+I`,
|
|
6692
6692
|
subMenu: null,
|
|
6693
6693
|
type: "item",
|
|
6694
6694
|
quickSwitcherLabel: "Ask AI"
|
|
@@ -21487,9 +21487,9 @@ var GlobalKeybindings = () => {
|
|
|
21487
21487
|
commandCtrlKey: true,
|
|
21488
21488
|
preventDefault: true
|
|
21489
21489
|
});
|
|
21490
|
-
const
|
|
21490
|
+
const cmdIKey = keybindings.registerKeybinding({
|
|
21491
21491
|
event: "keydown",
|
|
21492
|
-
key: "
|
|
21492
|
+
key: "i",
|
|
21493
21493
|
callback: () => {
|
|
21494
21494
|
askAiModalRef.current?.toggle();
|
|
21495
21495
|
},
|
|
@@ -21529,7 +21529,7 @@ var GlobalKeybindings = () => {
|
|
|
21529
21529
|
cKey.unregister();
|
|
21530
21530
|
questionMark.unregister();
|
|
21531
21531
|
cmdKKey.unregister();
|
|
21532
|
-
|
|
21532
|
+
cmdIKey.unregister();
|
|
21533
21533
|
};
|
|
21534
21534
|
}, [keybindings, setCheckerboard, setSelectedModal]);
|
|
21535
21535
|
return null;
|
|
@@ -23421,7 +23421,7 @@ var left3, key4, right2, container47, title4, keyboardShortcutsDisabled, ul, li,
|
|
|
23421
23421
|
}),
|
|
23422
23422
|
/* @__PURE__ */ jsx215("kbd", {
|
|
23423
23423
|
style: key4,
|
|
23424
|
-
children: "
|
|
23424
|
+
children: "I"
|
|
23425
23425
|
})
|
|
23426
23426
|
]
|
|
23427
23427
|
}),
|
|
@@ -552,7 +552,7 @@ const useMenuStructure = (closeMenu, readOnlyStudio) => {
|
|
|
552
552
|
(_a = AskAiModal_1.askAiModalRef.current) === null || _a === void 0 ? void 0 : _a.toggle();
|
|
553
553
|
},
|
|
554
554
|
leftItem: null,
|
|
555
|
-
keyHint: `${ShortcutHint_1.cmdOrCtrlCharacter}+
|
|
555
|
+
keyHint: `${ShortcutHint_1.cmdOrCtrlCharacter}+I`,
|
|
556
556
|
subMenu: null,
|
|
557
557
|
type: 'item',
|
|
558
558
|
quickSwitcherLabel: 'Ask AI',
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/studio",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.296",
|
|
7
7
|
"description": "APIs for interacting with the Remotion Studio",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -23,20 +23,20 @@
|
|
|
23
23
|
"source-map": "0.7.3",
|
|
24
24
|
"open": "^8.4.2",
|
|
25
25
|
"zod": "3.22.3",
|
|
26
|
-
"remotion": "4.0.
|
|
27
|
-
"@remotion/player": "4.0.
|
|
28
|
-
"@remotion/media-parser": "4.0.
|
|
29
|
-
"@remotion/renderer": "4.0.
|
|
30
|
-
"@remotion/
|
|
31
|
-
"@remotion/
|
|
32
|
-
"@remotion/
|
|
26
|
+
"remotion": "4.0.296",
|
|
27
|
+
"@remotion/player": "4.0.296",
|
|
28
|
+
"@remotion/media-parser": "4.0.296",
|
|
29
|
+
"@remotion/renderer": "4.0.296",
|
|
30
|
+
"@remotion/media-utils": "4.0.296",
|
|
31
|
+
"@remotion/zod-types": "4.0.296",
|
|
32
|
+
"@remotion/studio-shared": "4.0.296"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"react": "19.0.0",
|
|
36
36
|
"react-dom": "19.0.0",
|
|
37
37
|
"@types/semver": "^7.3.4",
|
|
38
38
|
"eslint": "9.19.0",
|
|
39
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
39
|
+
"@remotion/eslint-config-internal": "4.0.296"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|