remotion 4.0.494 → 4.0.495

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.
@@ -768,15 +768,19 @@ var premountSchema = {
768
768
  description: "Premount For",
769
769
  min: 0,
770
770
  step: 1,
771
- hiddenFromList: false
771
+ hiddenFromList: false,
772
+ keyframable: false
772
773
  },
773
774
  postmountFor: {
774
775
  type: "number",
775
776
  default: 0,
776
777
  min: 0,
777
778
  step: 1,
778
- hiddenFromList: true
779
- },
779
+ hiddenFromList: true,
780
+ keyframable: false
781
+ }
782
+ };
783
+ var premountStyleSchema = {
780
784
  styleWhilePremounted: {
781
785
  type: "hidden"
782
786
  },
@@ -784,9 +788,13 @@ var premountSchema = {
784
788
  type: "hidden"
785
789
  }
786
790
  };
791
+ var sequencePremountSchema = {
792
+ ...premountSchema,
793
+ ...premountStyleSchema
794
+ };
787
795
  var sequenceStyleSchema = {
788
796
  ...transformSchema,
789
- ...premountSchema
797
+ ...sequencePremountSchema
790
798
  };
791
799
  var hiddenField = {
792
800
  type: "boolean",
@@ -1,5 +1,5 @@
1
1
  // src/version.ts
2
- var VERSION = "4.0.494";
2
+ var VERSION = "4.0.495";
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.494",
6
+ "version": "4.0.495",
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.494",
38
+ "@remotion/eslint-config-internal": "4.0.495",
39
39
  "eslint": "9.19.0",
40
40
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
41
41
  },