remotion 4.0.500 → 4.0.501

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.
Files changed (49) hide show
  1. package/dist/cjs/AbsoluteFill.d.ts +237 -1
  2. package/dist/cjs/AbsoluteFill.js +40 -103
  3. package/dist/cjs/AbsoluteFillElement.d.ts +3 -0
  4. package/dist/cjs/AbsoluteFillElement.js +111 -0
  5. package/dist/cjs/Composition.js +2 -1
  6. package/dist/cjs/Folder.js +2 -1
  7. package/dist/cjs/HtmlInCanvas.d.ts +41 -0
  8. package/dist/cjs/HtmlInCanvas.js +1 -0
  9. package/dist/cjs/Img.d.ts +41 -8
  10. package/dist/cjs/Img.js +6 -5
  11. package/dist/cjs/Interactive.d.ts +93 -6
  12. package/dist/cjs/Interactive.js +5 -2
  13. package/dist/cjs/Sequence.js +9 -7
  14. package/dist/cjs/animated-image/AnimatedImage.d.ts +41 -0
  15. package/dist/cjs/animated-image/AnimatedImage.js +1 -0
  16. package/dist/cjs/audio/AudioForPreview.d.ts +0 -1
  17. package/dist/cjs/audio/AudioForPreview.js +1 -1
  18. package/dist/cjs/audio/html5-audio.d.ts +2 -2
  19. package/dist/cjs/audio/html5-audio.js +2 -2
  20. package/dist/cjs/canvas-image/CanvasImage.d.ts +42 -3
  21. package/dist/cjs/canvas-image/CanvasImage.js +3 -2
  22. package/dist/cjs/canvas-image/props.d.ts +1 -6
  23. package/dist/cjs/effects/Solid.d.ts +41 -0
  24. package/dist/cjs/effects/Solid.js +1 -0
  25. package/dist/cjs/enable-sequence-stack-traces.d.ts +4 -0
  26. package/dist/cjs/enable-sequence-stack-traces.js +16 -1
  27. package/dist/cjs/index.d.ts +2 -2
  28. package/dist/cjs/interactivity-schema.d.ts +181 -1
  29. package/dist/cjs/interactivity-schema.js +53 -1
  30. package/dist/cjs/internals.d.ts +84 -1
  31. package/dist/cjs/internals.js +2 -0
  32. package/dist/cjs/no-react.d.ts +41 -0
  33. package/dist/cjs/sequence-crop.d.ts +4 -3
  34. package/dist/cjs/sequence-crop.js +16 -2
  35. package/dist/cjs/series/index.js +4 -4
  36. package/dist/cjs/static-file.js +10 -0
  37. package/dist/cjs/truncate-src-for-label.js +5 -1
  38. package/dist/cjs/use-crop-style.js +1 -1
  39. package/dist/cjs/version.d.ts +1 -1
  40. package/dist/cjs/version.js +1 -1
  41. package/dist/cjs/video/OffthreadVideo.js +6 -6
  42. package/dist/cjs/video/html5-video.d.ts +2 -2
  43. package/dist/cjs/video/html5-video.js +5 -5
  44. package/dist/cjs/video/props.d.ts +1 -1
  45. package/dist/cjs/with-interactivity-schema.js +18 -10
  46. package/dist/esm/index.mjs +2598 -2435
  47. package/dist/esm/no-react.mjs +44 -0
  48. package/dist/esm/version.mjs +1 -1
  49. package/package.json +2 -2
@@ -793,6 +793,49 @@ var borderSchema = {
793
793
  description: "Border color"
794
794
  }
795
795
  };
796
+ var borderRadiusSchema = {
797
+ "style.borderRadius": {
798
+ type: "number",
799
+ default: 0,
800
+ min: 0,
801
+ step: 1,
802
+ description: "Border radius",
803
+ hiddenFromList: false,
804
+ keyframable: true
805
+ },
806
+ "style.borderTopLeftRadius": {
807
+ type: "number",
808
+ default: 0,
809
+ min: 0,
810
+ step: 1,
811
+ description: "Top left radius",
812
+ hiddenFromList: false
813
+ },
814
+ "style.borderTopRightRadius": {
815
+ type: "number",
816
+ default: 0,
817
+ min: 0,
818
+ step: 1,
819
+ description: "Top right radius",
820
+ hiddenFromList: false
821
+ },
822
+ "style.borderBottomRightRadius": {
823
+ type: "number",
824
+ default: 0,
825
+ min: 0,
826
+ step: 1,
827
+ description: "Bottom right radius",
828
+ hiddenFromList: false
829
+ },
830
+ "style.borderBottomLeftRadius": {
831
+ type: "number",
832
+ default: 0,
833
+ min: 0,
834
+ step: 1,
835
+ description: "Bottom left radius",
836
+ hiddenFromList: false
837
+ }
838
+ };
796
839
  var backgroundSchema = {
797
840
  "style.backgroundColor": {
798
841
  type: "color",
@@ -893,6 +936,7 @@ var sequenceStyleSchema = {
893
936
  ...transformSchema,
894
937
  ...backgroundSchema,
895
938
  ...borderSchema,
939
+ ...borderRadiusSchema,
896
940
  ...sequencePremountSchema
897
941
  };
898
942
  var hiddenField = {
@@ -1,5 +1,5 @@
1
1
  // src/version.ts
2
- var VERSION = "4.0.500";
2
+ var VERSION = "4.0.501";
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.500",
6
+ "version": "4.0.501",
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.4.3",
38
- "@remotion/eslint-config-internal": "4.0.500",
38
+ "@remotion/eslint-config-internal": "4.0.501",
39
39
  "eslint": "9.19.0",
40
40
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
41
41
  },