@remotion/transitions 4.0.437 → 4.0.439

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.
@@ -106,6 +106,7 @@ const TransitionSeriesChildren = ({ children, }) => {
106
106
  halfDuration,
107
107
  children: overlayProps.children,
108
108
  index: i,
109
+ stack: overlayProps.stack,
109
110
  });
110
111
  return null;
111
112
  }
@@ -231,7 +232,7 @@ const TransitionSeriesChildren = ({ children, }) => {
231
232
  // Now render overlay sequences
232
233
  const overlayElements = overlayRenders.map((overlayInfo) => {
233
234
  const info = overlayInfo;
234
- return (jsx_runtime_1.jsx(remotion_1.Sequence, { from: Math.round(info.overlayFrom), durationInFrames: info.durationInFrames, name: "<TS.Overlay>", layout: "absolute-fill", children: info.children }, `overlay-${info.index}`));
235
+ return (jsx_runtime_1.jsx(remotion_1.Sequence, { from: Math.round(info.overlayFrom), durationInFrames: info.durationInFrames, name: "<TS.Overlay>", layout: "absolute-fill", ...(info.stack ? { stack: info.stack } : {}), children: info.children }, `overlay-${info.index}`));
235
236
  });
236
237
  return [...(mainChildren || []), ...overlayElements];
237
238
  }, [children, fps, frame]);
@@ -256,7 +256,8 @@ var TransitionSeriesChildren = ({
256
256
  overlayOffset,
257
257
  halfDuration,
258
258
  children: overlayProps.children,
259
- index: i
259
+ index: i,
260
+ stack: overlayProps.stack
260
261
  });
261
262
  return null;
262
263
  }
@@ -422,6 +423,7 @@ var TransitionSeriesChildren = ({
422
423
  durationInFrames: info.durationInFrames,
423
424
  name: "<TS.Overlay>",
424
425
  layout: "absolute-fill",
426
+ ...info.stack ? { stack: info.stack } : {},
425
427
  children: info.children
426
428
  }, `overlay-${info.index}`);
427
429
  });
package/dist/types.d.ts CHANGED
@@ -29,5 +29,9 @@ export type TransitionSeriesOverlayProps = {
29
29
  readonly durationInFrames: number;
30
30
  readonly offset?: number;
31
31
  readonly children: React.ReactNode;
32
+ /**
33
+ * @deprecated For internal use only
34
+ */
35
+ readonly stack?: string;
32
36
  };
33
37
  export {};
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/transitions"
4
4
  },
5
5
  "name": "@remotion/transitions",
6
- "version": "4.0.437",
6
+ "version": "4.0.439",
7
7
  "description": "Library for creating transitions in Remotion",
8
8
  "sideEffects": false,
9
9
  "main": "dist/esm/index.mjs",
@@ -23,18 +23,18 @@
23
23
  "url": "https://github.com/remotion-dev/remotion/issues"
24
24
  },
25
25
  "dependencies": {
26
- "remotion": "4.0.437",
27
- "@remotion/shapes": "4.0.437",
28
- "@remotion/paths": "4.0.437"
26
+ "remotion": "4.0.439",
27
+ "@remotion/shapes": "4.0.439",
28
+ "@remotion/paths": "4.0.439"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@happy-dom/global-registrator": "14.5.1",
32
- "remotion": "4.0.437",
32
+ "remotion": "4.0.439",
33
33
  "react": "19.2.3",
34
34
  "react-dom": "19.2.3",
35
- "@remotion/test-utils": "4.0.437",
36
- "@remotion/player": "4.0.437",
37
- "@remotion/eslint-config-internal": "4.0.437",
35
+ "@remotion/test-utils": "4.0.439",
36
+ "@remotion/player": "4.0.439",
37
+ "@remotion/eslint-config-internal": "4.0.439",
38
38
  "eslint": "9.19.0",
39
39
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
40
40
  },