@remotion/cli 4.0.77 → 4.0.81
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/benchmark.js +3 -1
- package/dist/cloudrun-command.js +3 -4
- package/dist/config/bitrate.d.ts +4 -0
- package/dist/config/bitrate.js +22 -1
- package/dist/config/image-format.d.ts +1 -1
- package/dist/config/index.d.ts +12 -2
- package/dist/config/index.js +7 -4
- package/dist/download-progress.d.ts +1 -1
- package/dist/download-progress.js +2 -2
- package/dist/editor/components/Modals.js +1 -1
- package/dist/editor/components/RenderButton.js +3 -0
- package/dist/editor/components/RenderModal/CrfSetting.d.ts +3 -2
- package/dist/editor/components/RenderModal/EnforceAudioTrackSetting.d.ts +0 -2
- package/dist/editor/components/RenderModal/EnforceAudioTrackSetting.js +3 -4
- package/dist/editor/components/RenderModal/JpegQualitySetting.js +1 -2
- package/dist/editor/components/RenderModal/MutedSetting.d.ts +0 -2
- package/dist/editor/components/RenderModal/MutedSetting.js +3 -4
- package/dist/editor/components/RenderModal/NumberSetting.d.ts +2 -2
- package/dist/editor/components/RenderModal/NumberSetting.js +2 -3
- package/dist/editor/components/RenderModal/OptionExplainerBubble.d.ts +5 -0
- package/dist/editor/components/RenderModal/OptionExplainerBubble.js +12 -0
- package/dist/editor/components/RenderModal/RenderModal.d.ts +3 -0
- package/dist/editor/components/RenderModal/RenderModal.js +15 -4
- package/dist/editor/components/RenderModal/RenderModalAdvanced.d.ts +2 -0
- package/dist/editor/components/RenderModal/RenderModalAdvanced.js +19 -5
- package/dist/editor/components/RenderModal/RenderModalAudio.js +4 -4
- package/dist/editor/components/RenderModal/RenderModalBasic.js +2 -3
- package/dist/editor/components/RenderModal/RenderModalPicture.d.ts +4 -0
- package/dist/editor/components/RenderModal/RenderModalPicture.js +19 -5
- package/dist/editor/components/RenderModal/ScaleSetting.js +1 -2
- package/dist/editor/components/RenderModal/SchemaEditor/SchemaLabel.d.ts +1 -0
- package/dist/editor/components/RenderModal/SchemaEditor/SchemaLabel.js +19 -4
- package/dist/editor/components/RenderModal/SchemaEditor/SchemaSeparationLine.d.ts +8 -0
- package/dist/editor/components/RenderModal/SchemaEditor/SchemaSeparationLine.js +70 -2
- package/dist/editor/components/RenderModal/SchemaEditor/SchemaVerticalGuide.d.ts +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/SchemaVerticalGuide.js +23 -5
- package/dist/editor/components/RenderModal/SchemaEditor/ZodArrayEditor.js +12 -22
- package/dist/editor/components/RenderModal/SchemaEditor/ZodArrayItemEditor.js +6 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodBooleanEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodColorEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodDateEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodDiscriminatedUnionEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodEnumEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodNonEditableValue.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodNumberEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodObjectEditor.js +13 -5
- package/dist/editor/components/RenderModal/SchemaEditor/ZodOrNullishEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodStaticFileEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodStringEditor.js +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodTextareaEditor.js +1 -1
- package/dist/editor/components/RenderModal/layout.d.ts +1 -0
- package/dist/editor/components/RenderModal/layout.js +6 -3
- package/dist/editor/components/RenderQueue/actions.d.ts +3 -1
- package/dist/editor/components/RenderQueue/actions.js +3 -1
- package/dist/editor/components/SidebarRenderButton.js +3 -0
- package/dist/editor/helpers/colors.d.ts +1 -0
- package/dist/editor/helpers/colors.js +2 -1
- package/dist/editor/helpers/render-modal-sections.d.ts +0 -1
- package/dist/editor/state/modals.d.ts +3 -0
- package/dist/get-cli-options.d.ts +4 -2
- package/dist/get-cli-options.js +4 -0
- package/dist/get-composition-id.js +2 -2
- package/dist/get-env.js +2 -2
- package/dist/get-render-defaults.d.ts +2 -0
- package/dist/get-render-defaults.js +71 -0
- package/dist/index.d.ts +13 -9
- package/dist/index.js +4 -4
- package/dist/lambda-command.js +3 -4
- package/dist/list-of-remotion-packages.js +1 -0
- package/dist/make-on-download.d.ts +1 -1
- package/dist/make-on-download.js +4 -2
- package/dist/parse-command-line.d.ts +6 -2
- package/dist/parse-command-line.js +6 -0
- package/dist/preview-server/render-queue/job.d.ts +4 -0
- package/dist/preview-server/render-queue/make-retry-payload.js +9 -0
- package/dist/preview-server/render-queue/process-video.js +2 -0
- package/dist/preview-server/routes/add-render.js +2 -0
- package/dist/preview-server/routes.d.ts +0 -1
- package/dist/preview-server/routes.js +6 -0
- package/dist/progress-bar.d.ts +1 -9
- package/dist/progress-bar.js +3 -4
- package/dist/progress-types.d.ts +1 -31
- package/dist/render-flows/render.d.ts +4 -2
- package/dist/render-flows/render.js +3 -1
- package/dist/render-flows/still.d.ts +1 -1
- package/dist/render-queue/process-still.d.ts +8 -0
- package/dist/render-queue/process-still.js +49 -0
- package/dist/render-queue/process-video.d.ts +10 -0
- package/dist/render-queue/process-video.js +70 -0
- package/dist/render-queue/queue.d.ts +11 -0
- package/dist/render-queue/queue.js +220 -0
- package/dist/render.js +3 -1
- package/dist/setup-cache.d.ts +1 -1
- package/dist/studio.js +30 -102
- package/dist/upgrade.js +4 -5
- package/dist/user-passed-output-location.js +2 -2
- package/package.json +10 -14
- package/styles/styles.css +0 -123
- package/types/global.d.ts +0 -4
- package/web/favicon.png +0 -0
package/dist/studio.js
CHANGED
|
@@ -1,50 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
3
|
exports.studioCommand = void 0;
|
|
7
|
-
const
|
|
8
|
-
const node_fs_1 = require("node:fs");
|
|
9
|
-
const node_path_1 = __importDefault(require("node:path"));
|
|
10
|
-
const better_opn_1 = require("./better-opn");
|
|
11
|
-
const chalk_1 = require("./chalk");
|
|
4
|
+
const studio_1 = require("@remotion/studio");
|
|
12
5
|
const config_1 = require("./config");
|
|
6
|
+
const number_of_shared_audio_tags_1 = require("./config/number-of-shared-audio-tags");
|
|
13
7
|
const convert_entry_point_to_serve_url_1 = require("./convert-entry-point-to-serve-url");
|
|
14
8
|
const entry_point_1 = require("./entry-point");
|
|
15
9
|
const get_env_1 = require("./get-env");
|
|
16
10
|
const get_input_props_1 = require("./get-input-props");
|
|
17
|
-
const
|
|
11
|
+
const get_render_defaults_1 = require("./get-render-defaults");
|
|
18
12
|
const log_1 = require("./log");
|
|
19
13
|
const parse_command_line_1 = require("./parse-command-line");
|
|
20
|
-
const
|
|
21
|
-
const live_events_1 = require("./preview-server/live-events");
|
|
22
|
-
const public_folder_1 = require("./preview-server/public-folder");
|
|
23
|
-
const start_server_1 = require("./preview-server/start-server");
|
|
24
|
-
const server_ready_comment_1 = require("./server-ready-comment");
|
|
25
|
-
const watch_root_file_1 = require("./watch-root-file");
|
|
26
|
-
const noop = () => undefined;
|
|
27
|
-
const getShouldOpenBrowser = () => {
|
|
28
|
-
var _a;
|
|
29
|
-
// Minimist quirk: Adding `--no-open` flag will result in {['no-open']: false, open: true}
|
|
30
|
-
// @ts-expect-error
|
|
31
|
-
if (parse_command_line_1.parsedCli.open === false) {
|
|
32
|
-
return {
|
|
33
|
-
shouldOpenBrowser: false,
|
|
34
|
-
reasonForBrowserDecision: '--no-open specified',
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
if (((_a = process.env.BROWSER) !== null && _a !== void 0 ? _a : '').toLowerCase() === 'none') {
|
|
38
|
-
return {
|
|
39
|
-
shouldOpenBrowser: false,
|
|
40
|
-
reasonForBrowserDecision: 'env BROWSER=none was set',
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
if (config_1.ConfigInternals.getShouldOpenBrowser() === false) {
|
|
44
|
-
return { shouldOpenBrowser: false, reasonForBrowserDecision: 'Config file' };
|
|
45
|
-
}
|
|
46
|
-
return { shouldOpenBrowser: true, reasonForBrowserDecision: 'default' };
|
|
47
|
-
};
|
|
14
|
+
const queue_1 = require("./render-queue/queue");
|
|
48
15
|
const getPort = () => {
|
|
49
16
|
if (parse_command_line_1.parsedCli.port) {
|
|
50
17
|
return parse_command_line_1.parsedCli.port;
|
|
@@ -56,6 +23,7 @@ const getPort = () => {
|
|
|
56
23
|
return null;
|
|
57
24
|
};
|
|
58
25
|
const studioCommand = async (remotionRoot, args, logLevel) => {
|
|
26
|
+
var _a;
|
|
59
27
|
const { file, reason } = (0, entry_point_1.findEntryPoint)(args, remotionRoot, logLevel);
|
|
60
28
|
log_1.Log.verbose({ indent: false, logLevel }, 'Entry point:', file, 'reason:', reason);
|
|
61
29
|
if (!file) {
|
|
@@ -67,7 +35,7 @@ const studioCommand = async (remotionRoot, args, logLevel) => {
|
|
|
67
35
|
const desiredPort = getPort();
|
|
68
36
|
const fullEntryPath = (0, convert_entry_point_to_serve_url_1.convertEntryPointToServeUrl)(file);
|
|
69
37
|
let inputProps = (0, get_input_props_1.getInputProps)((newProps) => {
|
|
70
|
-
|
|
38
|
+
studio_1.StudioInternals.waitForLiveEventsListener().then((listener) => {
|
|
71
39
|
inputProps = newProps;
|
|
72
40
|
listener.sendEventToClient({
|
|
73
41
|
type: 'new-input-props',
|
|
@@ -76,7 +44,7 @@ const studioCommand = async (remotionRoot, args, logLevel) => {
|
|
|
76
44
|
});
|
|
77
45
|
}, logLevel);
|
|
78
46
|
let envVariables = (0, get_env_1.getEnvironmentVariables)((newEnvVariables) => {
|
|
79
|
-
|
|
47
|
+
studio_1.StudioInternals.waitForLiveEventsListener().then((listener) => {
|
|
80
48
|
envVariables = newEnvVariables;
|
|
81
49
|
listener.sendEventToClient({
|
|
82
50
|
type: 'new-env-variables',
|
|
@@ -84,74 +52,34 @@ const studioCommand = async (remotionRoot, args, logLevel) => {
|
|
|
84
52
|
});
|
|
85
53
|
});
|
|
86
54
|
}, logLevel);
|
|
87
|
-
const
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
const staticHash = `${staticHashPrefix}${hash}`;
|
|
96
|
-
(0, public_folder_1.initPublicFolderWatch)({
|
|
97
|
-
publicDir,
|
|
98
|
-
remotionRoot,
|
|
99
|
-
onUpdate: () => {
|
|
100
|
-
(0, live_events_1.waitForLiveEventsListener)().then((listener) => {
|
|
101
|
-
const files = (0, public_folder_1.getFiles)();
|
|
102
|
-
listener.sendEventToClient({
|
|
103
|
-
type: 'new-public-folder',
|
|
104
|
-
files,
|
|
105
|
-
folderExists: files.length > 0
|
|
106
|
-
? publicDir
|
|
107
|
-
: (0, node_fs_1.existsSync)(publicDir)
|
|
108
|
-
? publicDir
|
|
109
|
-
: null,
|
|
110
|
-
});
|
|
111
|
-
});
|
|
112
|
-
},
|
|
113
|
-
staticHash,
|
|
114
|
-
});
|
|
115
|
-
(0, watch_root_file_1.watchRootFile)(remotionRoot);
|
|
116
|
-
const { port, liveEventsServer } = await (0, start_server_1.startServer)({
|
|
117
|
-
entry: node_path_1.default.resolve(__dirname, 'previewEntry.js'),
|
|
118
|
-
userDefinedComponent: fullEntryPath,
|
|
55
|
+
const maxTimelineTracks = config_1.ConfigInternals.getMaxTimelineTracks();
|
|
56
|
+
const keyboardShortcutsEnabled = config_1.ConfigInternals.getKeyboardShortcutsEnabled();
|
|
57
|
+
await studio_1.StudioInternals.startStudio({
|
|
58
|
+
browserArgs: parse_command_line_1.parsedCli['browser-args'],
|
|
59
|
+
browserFlag: parse_command_line_1.parsedCli.browser,
|
|
60
|
+
logLevel,
|
|
61
|
+
configValueShouldOpenBrowser: config_1.ConfigInternals.getShouldOpenBrowser(),
|
|
62
|
+
fullEntryPath,
|
|
119
63
|
getCurrentInputProps: () => inputProps,
|
|
120
64
|
getEnvVariables: () => envVariables,
|
|
121
|
-
|
|
122
|
-
|
|
65
|
+
desiredPort,
|
|
66
|
+
keyboardShortcutsEnabled,
|
|
67
|
+
maxTimelineTracks,
|
|
123
68
|
remotionRoot,
|
|
124
|
-
|
|
125
|
-
publicDir,
|
|
69
|
+
userPassedPublicDir: config_1.ConfigInternals.getPublicDir(),
|
|
126
70
|
webpackOverride: config_1.ConfigInternals.getWebpackOverrideFn(),
|
|
127
71
|
poll: config_1.ConfigInternals.getWebpackPolling(),
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
72
|
+
getRenderDefaults: get_render_defaults_1.getRenderDefaults,
|
|
73
|
+
getRenderQueue: queue_1.getRenderQueue,
|
|
74
|
+
numberOfAudioTags: (_a = parse_command_line_1.parsedCli['number-of-shared-audio-tags']) !== null && _a !== void 0 ? _a : (0, number_of_shared_audio_tags_1.getNumberOfSharedAudioTags)(),
|
|
75
|
+
queueMethods: {
|
|
76
|
+
addJob: queue_1.addJob,
|
|
77
|
+
cancelJob: queue_1.cancelJob,
|
|
78
|
+
removeJob: queue_1.removeJob,
|
|
79
|
+
},
|
|
80
|
+
// Minimist quirk: Adding `--no-open` flag will result in {['no-open']: false, open: true}
|
|
81
|
+
// @ts-expect-error
|
|
82
|
+
parsedCliOpen: parse_command_line_1.parsedCli.open,
|
|
134
83
|
});
|
|
135
|
-
(0, live_events_1.setLiveEventsListener)(liveEventsServer);
|
|
136
|
-
const networkAddress = (0, get_network_address_1.getNetworkAddress)();
|
|
137
|
-
if (networkAddress) {
|
|
138
|
-
(0, server_ready_comment_1.setServerReadyComment)(`Local: ${chalk_1.chalk.underline(`http://localhost:${port}`)}, Network: ${chalk_1.chalk.underline(`http://${networkAddress}:${port}`)}`);
|
|
139
|
-
}
|
|
140
|
-
else {
|
|
141
|
-
(0, server_ready_comment_1.setServerReadyComment)(`http://localhost:${port}`);
|
|
142
|
-
}
|
|
143
|
-
(0, server_ready_comment_1.printServerReadyComment)('Server ready');
|
|
144
|
-
const { reasonForBrowserDecision, shouldOpenBrowser } = getShouldOpenBrowser();
|
|
145
|
-
if (shouldOpenBrowser) {
|
|
146
|
-
await (0, better_opn_1.openBrowser)({
|
|
147
|
-
url: `http://localhost:${port}`,
|
|
148
|
-
browserArgs: parse_command_line_1.parsedCli['browser-args'],
|
|
149
|
-
browserFlag: parse_command_line_1.parsedCli.browser,
|
|
150
|
-
});
|
|
151
|
-
}
|
|
152
|
-
else {
|
|
153
|
-
log_1.Log.verbose({ indent: false, logLevel }, `Not opening browser, reason: ${reasonForBrowserDecision}`);
|
|
154
|
-
}
|
|
155
|
-
await new Promise(noop);
|
|
156
84
|
};
|
|
157
85
|
exports.studioCommand = studioCommand;
|
package/dist/upgrade.js
CHANGED
|
@@ -5,12 +5,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.upgrade = void 0;
|
|
7
7
|
const renderer_1 = require("@remotion/renderer");
|
|
8
|
+
const studio_1 = require("@remotion/studio");
|
|
8
9
|
const node_path_1 = __importDefault(require("node:path"));
|
|
9
10
|
const config_1 = require("./config");
|
|
10
|
-
const get_latest_remotion_version_1 = require("./get-latest-remotion-version");
|
|
11
11
|
const list_of_remotion_packages_1 = require("./list-of-remotion-packages");
|
|
12
12
|
const log_1 = require("./log");
|
|
13
|
-
const get_package_manager_1 = require("./preview-server/get-package-manager");
|
|
14
13
|
const getUpgradeCommand = ({ manager, packages, version, }) => {
|
|
15
14
|
const pkgList = packages.map((p) => `${p}@${version}`);
|
|
16
15
|
const commands = {
|
|
@@ -35,12 +34,12 @@ const upgrade = async (remotionRoot, packageManager, version) => {
|
|
|
35
34
|
log_1.Log.info('Upgrading to specified version: ' + version);
|
|
36
35
|
}
|
|
37
36
|
else {
|
|
38
|
-
targetVersion = await
|
|
37
|
+
targetVersion = await studio_1.StudioInternals.getLatestRemotionVersion();
|
|
39
38
|
log_1.Log.info('Newest Remotion version is', targetVersion);
|
|
40
39
|
}
|
|
41
|
-
const manager =
|
|
40
|
+
const manager = studio_1.StudioInternals.getPackageManager(remotionRoot, packageManager);
|
|
42
41
|
if (manager === 'unknown') {
|
|
43
|
-
throw new Error(`No lockfile was found in your project (one of ${
|
|
42
|
+
throw new Error(`No lockfile was found in your project (one of ${studio_1.StudioInternals.lockFilePaths
|
|
44
43
|
.map((p) => p.path)
|
|
45
44
|
.join(', ')}). Install dependencies using your favorite manager!`);
|
|
46
45
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getOutputLocation = exports.getUserPassedOutputLocation = void 0;
|
|
4
|
+
const studio_1 = require("@remotion/studio");
|
|
4
5
|
const config_1 = require("./config");
|
|
5
|
-
const get_default_out_name_1 = require("./get-default-out-name");
|
|
6
6
|
const parse_command_line_1 = require("./parse-command-line");
|
|
7
7
|
const getUserPassedOutputLocation = (args, uiPassedOutName) => {
|
|
8
8
|
var _a, _b;
|
|
@@ -16,7 +16,7 @@ const getOutputLocation = ({ compositionId, defaultExtension, args, type, output
|
|
|
16
16
|
typeof parse_command_line_1.parsedCli.output !== 'undefined') {
|
|
17
17
|
throw new Error('Both an output flag (--output) and an output location as a positional argument were passed. Please choose only one of the ways.');
|
|
18
18
|
}
|
|
19
|
-
return ((_a = (0, exports.getUserPassedOutputLocation)(args, outputLocationFromUi)) !== null && _a !== void 0 ? _a :
|
|
19
|
+
return ((_a = (0, exports.getUserPassedOutputLocation)(args, outputLocationFromUi)) !== null && _a !== void 0 ? _a : studio_1.StudioInternals.getDefaultOutLocation({
|
|
20
20
|
compositionName: compositionId,
|
|
21
21
|
defaultExtension,
|
|
22
22
|
type,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.81",
|
|
4
4
|
"description": "CLI for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -29,17 +29,14 @@
|
|
|
29
29
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"dotenv": "9.0.2",
|
|
32
|
-
"memfs": "3.4.3",
|
|
33
32
|
"minimist": "1.2.6",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"@remotion/
|
|
39
|
-
"
|
|
40
|
-
"@remotion/
|
|
41
|
-
"@remotion/renderer": "4.0.77",
|
|
42
|
-
"remotion": "4.0.77"
|
|
33
|
+
"prompts": "2.4.2",
|
|
34
|
+
"@remotion/bundler": "4.0.81",
|
|
35
|
+
"@remotion/media-utils": "4.0.81",
|
|
36
|
+
"@remotion/player": "4.0.81",
|
|
37
|
+
"@remotion/renderer": "4.0.81",
|
|
38
|
+
"remotion": "4.0.81",
|
|
39
|
+
"@remotion/studio": "4.0.81"
|
|
43
40
|
},
|
|
44
41
|
"peerDependencies": {
|
|
45
42
|
"react": ">=16.8.0",
|
|
@@ -54,7 +51,6 @@
|
|
|
54
51
|
"@types/react": "18.0.26",
|
|
55
52
|
"@types/prettier": "^2.7.2",
|
|
56
53
|
"@types/react-dom": "18.0.11",
|
|
57
|
-
"@types/semver": "^7.3.4",
|
|
58
54
|
"eslint": "8.42.0",
|
|
59
55
|
"eslint-plugin-10x": "1.5.2",
|
|
60
56
|
"eslint-plugin-react": "7.32.2",
|
|
@@ -65,8 +61,8 @@
|
|
|
65
61
|
"react-dom": "18.2.0",
|
|
66
62
|
"vitest": "0.31.1",
|
|
67
63
|
"zod": "^3.22.3",
|
|
68
|
-
"@remotion/zod-types": "4.0.
|
|
69
|
-
"@remotion/tailwind": "4.0.
|
|
64
|
+
"@remotion/zod-types": "4.0.81",
|
|
65
|
+
"@remotion/tailwind": "4.0.81"
|
|
70
66
|
},
|
|
71
67
|
"keywords": [
|
|
72
68
|
"remotion",
|
package/styles/styles.css
DELETED
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
html {
|
|
2
|
-
--remotion-cli-internals-blue: #0b84f3;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
body {
|
|
6
|
-
overscroll-behavior-y: none;
|
|
7
|
-
overscroll-behavior-x: none;
|
|
8
|
-
/* Override Chakra UI position: relative on body */
|
|
9
|
-
position: static !important;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.remotion-splitter {
|
|
13
|
-
user-select: none;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.remotion-splitter-horizontal {
|
|
17
|
-
transform: scaleY(2);
|
|
18
|
-
background: linear-gradient(
|
|
19
|
-
to bottom,
|
|
20
|
-
transparent 25%,
|
|
21
|
-
black 25%,
|
|
22
|
-
black 75%,
|
|
23
|
-
transparent
|
|
24
|
-
);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.remotion-splitter-horizontal:hover,
|
|
28
|
-
.remotion-splitter-horizontal.remotion-splitter-active {
|
|
29
|
-
background: linear-gradient(
|
|
30
|
-
to bottom,
|
|
31
|
-
var(--remotion-cli-internals-blue),
|
|
32
|
-
var(--remotion-cli-internals-blue)
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.remotion-splitter-vertical {
|
|
37
|
-
transform: scaleX(2);
|
|
38
|
-
background: linear-gradient(
|
|
39
|
-
to right,
|
|
40
|
-
transparent 25%,
|
|
41
|
-
black 25%,
|
|
42
|
-
black 75%,
|
|
43
|
-
transparent
|
|
44
|
-
);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.remotion-splitter-vertical:hover,
|
|
48
|
-
.remotion-splitter-vertical.remotion-splitter-active {
|
|
49
|
-
background: linear-gradient(
|
|
50
|
-
to right,
|
|
51
|
-
var(--remotion-cli-internals-blue),
|
|
52
|
-
var(--remotion-cli-internals-blue)
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
input::-webkit-outer-spin-button,
|
|
57
|
-
input::-webkit-inner-spin-button {
|
|
58
|
-
-webkit-appearance: none;
|
|
59
|
-
margin: 0;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
input:focus,
|
|
63
|
-
textarea:focus,
|
|
64
|
-
button:focus,
|
|
65
|
-
a:focus {
|
|
66
|
-
outline: none;
|
|
67
|
-
box-shadow:
|
|
68
|
-
inset 1px 1px #555,
|
|
69
|
-
inset -1px -1px #555,
|
|
70
|
-
inset 1px -1px #555,
|
|
71
|
-
inset -1px 1px #555;
|
|
72
|
-
border-radius: 0 !important;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
input[type='color'].__remotion_color_picker::-webkit-color-swatch-wrapper {
|
|
76
|
-
padding: 0;
|
|
77
|
-
}
|
|
78
|
-
input[type='color'].__remotion_color_picker::-webkit-color-swatch {
|
|
79
|
-
border: none;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.__remotion_thumb,
|
|
83
|
-
.__remotion_thumb::-webkit-slider-thumb {
|
|
84
|
-
-webkit-appearance: none;
|
|
85
|
-
-webkit-tap-highlight-color: transparent;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.__remotion_thumb {
|
|
89
|
-
pointer-events: none;
|
|
90
|
-
position: absolute;
|
|
91
|
-
height: 0;
|
|
92
|
-
outline: none;
|
|
93
|
-
top: 15.5px;
|
|
94
|
-
width: 221px;
|
|
95
|
-
margin-left: -2px;
|
|
96
|
-
z-index: 2;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/* For Firefox browsers */
|
|
100
|
-
.__remotion_thumb::-moz-range-thumb {
|
|
101
|
-
border: 1px solid black;
|
|
102
|
-
border-radius: 2px;
|
|
103
|
-
cursor: pointer;
|
|
104
|
-
height: 37px;
|
|
105
|
-
width: 10px;
|
|
106
|
-
pointer-events: all;
|
|
107
|
-
border-color: black;
|
|
108
|
-
background-color: white;
|
|
109
|
-
position: relative;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
/* For Chrome browsers */
|
|
113
|
-
.__remotion_thumb::-webkit-slider-thumb {
|
|
114
|
-
border: 1px solid black;
|
|
115
|
-
border-radius: 2px;
|
|
116
|
-
cursor: pointer;
|
|
117
|
-
height: 39px;
|
|
118
|
-
width: 10px;
|
|
119
|
-
pointer-events: all;
|
|
120
|
-
border-color: black;
|
|
121
|
-
background-color: white;
|
|
122
|
-
position: relative;
|
|
123
|
-
}
|
package/types/global.d.ts
DELETED
package/web/favicon.png
DELETED
|
Binary file
|