@remotion/transitions 4.0.438 → 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.
- package/dist/TransitionSeries.js +2 -1
- package/dist/esm/index.mjs +3 -1
- package/dist/types.d.ts +4 -0
- package/package.json +8 -8
package/dist/TransitionSeries.js
CHANGED
|
@@ -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]);
|
package/dist/esm/index.mjs
CHANGED
|
@@ -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
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.
|
|
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.
|
|
27
|
-
"@remotion/shapes": "4.0.
|
|
28
|
-
"@remotion/paths": "4.0.
|
|
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.
|
|
32
|
+
"remotion": "4.0.439",
|
|
33
33
|
"react": "19.2.3",
|
|
34
34
|
"react-dom": "19.2.3",
|
|
35
|
-
"@remotion/test-utils": "4.0.
|
|
36
|
-
"@remotion/player": "4.0.
|
|
37
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
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
|
},
|