remotion 4.0.445 → 4.0.446

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.
@@ -3,4 +3,4 @@
3
3
  * @see [Documentation](https://remotion.dev/docs/version)
4
4
  * @returns {string} The current version of the remotion package
5
5
  */
6
- export declare const VERSION = "4.0.445";
6
+ export declare const VERSION = "4.0.446";
@@ -7,4 +7,4 @@ exports.VERSION = void 0;
7
7
  * @see [Documentation](https://remotion.dev/docs/version)
8
8
  * @returns {string} The current version of the remotion package
9
9
  */
10
- exports.VERSION = '4.0.445';
10
+ exports.VERSION = '4.0.446';
@@ -1237,7 +1237,7 @@ var addSequenceStackTraces = (component) => {
1237
1237
  };
1238
1238
 
1239
1239
  // src/version.ts
1240
- var VERSION = "4.0.445";
1240
+ var VERSION = "4.0.446";
1241
1241
 
1242
1242
  // src/multiple-versions-warning.ts
1243
1243
  var checkMultipleRemotionVersions = () => {
@@ -1,5 +1,5 @@
1
1
  // src/version.ts
2
- var VERSION = "4.0.445";
2
+ var VERSION = "4.0.446";
3
3
  export {
4
4
  VERSION
5
5
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/core"
4
4
  },
5
5
  "name": "remotion",
6
- "version": "4.0.445",
6
+ "version": "4.0.446",
7
7
  "description": "Make videos programmatically",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
@@ -35,7 +35,7 @@
35
35
  "react-dom": "19.2.3",
36
36
  "webpack": "5.105.0",
37
37
  "zod": "4.3.6",
38
- "@remotion/eslint-config-internal": "4.0.445",
38
+ "@remotion/eslint-config-internal": "4.0.446",
39
39
  "eslint": "9.19.0",
40
40
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
41
41
  },
@@ -1,19 +0,0 @@
1
- /**
2
- * Visual-mode fields for clip timing. Used by `<Sequence>` and merged into media schemas (e.g. `@remotion/media` `<Video>`).
3
- */
4
- export declare const SEQUENCE_TIMING_SCHEMA: {
5
- readonly from: {
6
- readonly type: "number";
7
- readonly min: 0;
8
- readonly step: 1;
9
- readonly default: 0;
10
- readonly description: "From";
11
- };
12
- readonly durationInFrames: {
13
- readonly type: "number";
14
- readonly min: 0.01;
15
- readonly step: 0.01;
16
- readonly default: undefined;
17
- readonly description: "Duration in frames";
18
- };
19
- };
@@ -1,22 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SEQUENCE_TIMING_SCHEMA = void 0;
4
- /**
5
- * Visual-mode fields for clip timing. Used by `<Sequence>` and merged into media schemas (e.g. `@remotion/media` `<Video>`).
6
- */
7
- exports.SEQUENCE_TIMING_SCHEMA = {
8
- from: {
9
- type: 'number',
10
- min: 0,
11
- step: 1,
12
- default: 0,
13
- description: 'From',
14
- },
15
- durationInFrames: {
16
- type: 'number',
17
- min: 0.01,
18
- step: 0.01,
19
- default: undefined,
20
- description: 'Duration in frames',
21
- },
22
- };