@remotion/bundler 4.0.447 → 4.0.449

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.
@@ -73,6 +73,9 @@ exports.injectCSS = injectCSS;
73
73
  color: #0584f2
74
74
  }
75
75
 
76
+ .__remotion-vertical-scrollbar {
77
+ scrollbar-gutter: stable;
78
+ }
76
79
  .__remotion-vertical-scrollbar::-webkit-scrollbar {
77
80
  width: 6px;
78
81
  }
@@ -16,7 +16,7 @@ const enableProxy = (api) => {
16
16
  apply(target, thisArg, argArray) {
17
17
  if (componentsToAddStacksTo.includes(argArray[0])) {
18
18
  const [first, props, ...rest] = argArray;
19
- const newProps = props.stack
19
+ const newProps = (props === null || props === void 0 ? void 0 : props.stack)
20
20
  ? props
21
21
  : {
22
22
  ...(props !== null && props !== void 0 ? props : {}),
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/bundler"
4
4
  },
5
5
  "name": "@remotion/bundler",
6
- "version": "4.0.447",
6
+ "version": "4.0.449",
7
7
  "description": "Bundle Remotion compositions using Webpack",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -27,10 +27,10 @@
27
27
  "postcss-value-parser": "4.2.0",
28
28
  "esbuild": "0.25.0",
29
29
  "react-refresh": "0.18.0",
30
- "remotion": "4.0.447",
31
- "@remotion/studio": "4.0.447",
32
- "@remotion/studio-shared": "4.0.447",
33
- "@remotion/media-parser": "4.0.447",
30
+ "remotion": "4.0.448",
31
+ "@remotion/studio": "4.0.448",
32
+ "@remotion/studio-shared": "4.0.448",
33
+ "@remotion/media-parser": "4.0.448",
34
34
  "style-loader": "4.0.0",
35
35
  "source-map": "0.7.3",
36
36
  "webpack": "5.105.0"
@@ -42,7 +42,7 @@
42
42
  "devDependencies": {
43
43
  "react": "19.2.3",
44
44
  "react-dom": "19.2.3",
45
- "@remotion/eslint-config-internal": "4.0.447",
45
+ "@remotion/eslint-config-internal": "4.0.448",
46
46
  "eslint": "9.19.0",
47
47
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
48
48
  },