remotion 4.0.476 → 4.0.477

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.
@@ -1232,10 +1232,17 @@ var fromField = {
1232
1232
  step: 1,
1233
1233
  hiddenFromList: true
1234
1234
  };
1235
+ var freezeField = {
1236
+ type: "number",
1237
+ default: null,
1238
+ step: 1,
1239
+ hiddenFromList: true
1240
+ };
1235
1241
  var sequenceSchema = extendSchemaWithSequenceName({
1236
1242
  hidden: hiddenField,
1237
1243
  showInTimeline: showInTimelineField,
1238
1244
  from: fromField,
1245
+ freeze: freezeField,
1239
1246
  durationInFrames: durationInFramesField,
1240
1247
  layout: {
1241
1248
  type: "enum",
@@ -1250,6 +1257,7 @@ var sequenceSchema = extendSchemaWithSequenceName({
1250
1257
  var sequenceSchemaWithoutFrom = extendSchemaWithSequenceName({
1251
1258
  hidden: hiddenField,
1252
1259
  showInTimeline: showInTimelineField,
1260
+ freeze: freezeField,
1253
1261
  durationInFrames: durationInFramesField,
1254
1262
  layout: sequenceSchema.layout
1255
1263
  });
@@ -1,5 +1,5 @@
1
1
  // src/version.ts
2
- var VERSION = "4.0.476";
2
+ var VERSION = "4.0.477";
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.476",
6
+ "version": "4.0.477",
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.476",
38
+ "@remotion/eslint-config-internal": "4.0.477",
39
39
  "eslint": "9.19.0",
40
40
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
41
41
  },