@remotion/renderer 4.0.502 → 4.0.503
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 +37 -0
- package/dist/client.js +6 -1
- package/dist/esm/client.mjs +772 -652
- package/dist/esm/index.mjs +20 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -1
- package/dist/options/default-editor.d.ts +28 -0
- package/dist/options/default-editor.js +84 -0
- package/dist/options/index.d.ts +35 -0
- package/dist/options/index.js +4 -0
- package/dist/options/skip-skills.d.ts +19 -0
- package/dist/options/skip-skills.js +29 -0
- package/package.json +13 -13
package/dist/client.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { AvailableOptions, TypeOfOption } from './options';
|
|
2
|
+
export { customEditorColumnNumberPlaceholder, customEditorLineNumberPlaceholder, customEditorTargetPathPlaceholder, defaultEditorIds, } from './options/default-editor';
|
|
3
|
+
export type { BuiltInEditor, CustomEditor, DefaultEditor, } from './options/default-editor';
|
|
2
4
|
export { HardwareAccelerationOption } from './options/hardware-acceleration';
|
|
3
5
|
export { ProResProfile } from './options/prores-profile';
|
|
4
6
|
export declare const BrowserSafeApis: {
|
|
@@ -1278,6 +1280,22 @@ export declare const BrowserSafeApis: {
|
|
|
1278
1280
|
setConfig: (value: boolean) => void;
|
|
1279
1281
|
id: "dark-mode";
|
|
1280
1282
|
};
|
|
1283
|
+
defaultEditorOption: {
|
|
1284
|
+
name: string;
|
|
1285
|
+
cliFlag: "editor";
|
|
1286
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1287
|
+
ssrName: null;
|
|
1288
|
+
docLink: string;
|
|
1289
|
+
type: import("./client").DefaultEditor | null;
|
|
1290
|
+
getValue: ({ commandLine }: {
|
|
1291
|
+
commandLine: Record<string, unknown>;
|
|
1292
|
+
}) => {
|
|
1293
|
+
value: import("./client").DefaultEditor | null;
|
|
1294
|
+
source: string;
|
|
1295
|
+
};
|
|
1296
|
+
setConfig(value: import("./client").DefaultEditor | null): void;
|
|
1297
|
+
id: "editor";
|
|
1298
|
+
};
|
|
1281
1299
|
publicLicenseKeyOption: {
|
|
1282
1300
|
name: string;
|
|
1283
1301
|
cliFlag: "public-license-key";
|
|
@@ -1617,6 +1635,25 @@ export declare const BrowserSafeApis: {
|
|
|
1617
1635
|
type: string | null;
|
|
1618
1636
|
id: "package-manager";
|
|
1619
1637
|
};
|
|
1638
|
+
skipSkillsOption: {
|
|
1639
|
+
name: string;
|
|
1640
|
+
cliFlag: "skip-skills";
|
|
1641
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1642
|
+
ssrName: null;
|
|
1643
|
+
docLink: string;
|
|
1644
|
+
getValue: ({ commandLine }: {
|
|
1645
|
+
commandLine: Record<string, unknown>;
|
|
1646
|
+
}) => {
|
|
1647
|
+
source: string;
|
|
1648
|
+
value: true;
|
|
1649
|
+
} | {
|
|
1650
|
+
source: string;
|
|
1651
|
+
value: false;
|
|
1652
|
+
};
|
|
1653
|
+
setConfig: () => never;
|
|
1654
|
+
type: boolean;
|
|
1655
|
+
id: "skip-skills";
|
|
1656
|
+
};
|
|
1620
1657
|
sampleRateOption: {
|
|
1621
1658
|
name: string;
|
|
1622
1659
|
cliFlag: "sample-rate";
|
package/dist/client.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BrowserSafeApis = void 0;
|
|
3
|
+
exports.BrowserSafeApis = exports.defaultEditorIds = exports.customEditorTargetPathPlaceholder = exports.customEditorLineNumberPlaceholder = exports.customEditorColumnNumberPlaceholder = void 0;
|
|
4
4
|
const no_react_1 = require("remotion/no-react");
|
|
5
5
|
const TimeoutSettings_1 = require("./browser/TimeoutSettings");
|
|
6
6
|
const codec_1 = require("./codec");
|
|
@@ -22,6 +22,11 @@ const video_codec_1 = require("./options/video-codec");
|
|
|
22
22
|
const x264_preset_1 = require("./options/x264-preset");
|
|
23
23
|
const pixel_format_1 = require("./pixel-format");
|
|
24
24
|
const validate_output_filename_1 = require("./validate-output-filename");
|
|
25
|
+
const default_editor_1 = require("./options/default-editor");
|
|
26
|
+
Object.defineProperty(exports, "customEditorColumnNumberPlaceholder", { enumerable: true, get: function () { return default_editor_1.customEditorColumnNumberPlaceholder; } });
|
|
27
|
+
Object.defineProperty(exports, "customEditorLineNumberPlaceholder", { enumerable: true, get: function () { return default_editor_1.customEditorLineNumberPlaceholder; } });
|
|
28
|
+
Object.defineProperty(exports, "customEditorTargetPathPlaceholder", { enumerable: true, get: function () { return default_editor_1.customEditorTargetPathPlaceholder; } });
|
|
29
|
+
Object.defineProperty(exports, "defaultEditorIds", { enumerable: true, get: function () { return default_editor_1.defaultEditorIds; } });
|
|
25
30
|
exports.BrowserSafeApis = {
|
|
26
31
|
getFileExtensionFromCodec: get_extension_from_codec_1.getFileExtensionFromCodec,
|
|
27
32
|
validCodecs: codec_1.validCodecs,
|