@remotion/transitions 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.
- package/dist/TransitionSeries.js +23 -22
- package/dist/esm/index.mjs +13 -23
- package/package.json +8 -8
package/dist/TransitionSeries.js
CHANGED
|
@@ -43,9 +43,9 @@ const flatten_children_js_1 = require("./flatten-children.js");
|
|
|
43
43
|
const slide_js_1 = require("./presentations/slide.js");
|
|
44
44
|
const validate_js_1 = require("./validate.js");
|
|
45
45
|
const { SequenceWithoutSchema } = remotion_1.Internals;
|
|
46
|
-
const TransitionSeriesTransitionInner = ({
|
|
46
|
+
const TransitionSeriesTransitionInner = ({ _remotionInternalRender = null, ...props }) => {
|
|
47
47
|
if (_remotionInternalRender) {
|
|
48
|
-
return _remotionInternalRender(
|
|
48
|
+
return _remotionInternalRender(props);
|
|
49
49
|
}
|
|
50
50
|
return null;
|
|
51
51
|
};
|
|
@@ -57,9 +57,9 @@ const TransitionSeriesTransition = remotion_1.Interactive.withSchema({
|
|
|
57
57
|
schema: transitionSeriesTransitionSchema,
|
|
58
58
|
supportsEffects: false,
|
|
59
59
|
});
|
|
60
|
-
const SeriesOverlayInner = ({
|
|
60
|
+
const SeriesOverlayInner = ({ _remotionInternalRender = null, ...props }) => {
|
|
61
61
|
if (_remotionInternalRender) {
|
|
62
|
-
return _remotionInternalRender(
|
|
62
|
+
return _remotionInternalRender(props);
|
|
63
63
|
}
|
|
64
64
|
return null;
|
|
65
65
|
};
|
|
@@ -80,13 +80,12 @@ const transitionSeriesSequenceSchema = {
|
|
|
80
80
|
trimBefore: remotion_1.Internals.sequenceSchema.trimBefore,
|
|
81
81
|
layout: remotion_1.Internals.sequenceSchema.layout,
|
|
82
82
|
};
|
|
83
|
-
const SeriesSequenceInner = ({ offset = 0, className = '',
|
|
83
|
+
const SeriesSequenceInner = ({ offset = 0, className = '', _remotionInternalRender = null, ...props }) => {
|
|
84
84
|
if (_remotionInternalRender) {
|
|
85
85
|
return _remotionInternalRender({
|
|
86
86
|
...props,
|
|
87
87
|
offset,
|
|
88
88
|
className: className || undefined,
|
|
89
|
-
stack,
|
|
90
89
|
});
|
|
91
90
|
}
|
|
92
91
|
// eslint-disable-next-line react/jsx-no-useless-fragment
|
|
@@ -150,8 +149,8 @@ const TransitionSeriesChildren = ({ children, }) => {
|
|
|
150
149
|
const { index: i, transitionOffsets, startFrame, overlayRenders, sequenceDurations, pendingOverlayValidation, } = state;
|
|
151
150
|
if (i === flattedChildren.length) {
|
|
152
151
|
return overlayRenders.map((info) => {
|
|
153
|
-
var _a
|
|
154
|
-
return (jsx_runtime_1.jsx(SequenceWithoutSchema, { from: Math.round(info.overlayFrom), durationInFrames: info.durationInFrames, name: "<TS.Overlay>", _remotionInternalDocumentationLink: "https://www.remotion.dev/docs/transitions/transitionseries",
|
|
152
|
+
var _a;
|
|
153
|
+
return (jsx_runtime_1.jsx(SequenceWithoutSchema, { from: Math.round(info.overlayFrom), durationInFrames: info.durationInFrames, name: "<TS.Overlay>", _remotionInternalDocumentationLink: "https://www.remotion.dev/docs/transitions/transitionseries", controls: (_a = info.controls) !== null && _a !== void 0 ? _a : undefined, layout: "absolute-fill", children: info.children }, `overlay-${info.index}`));
|
|
155
154
|
});
|
|
156
155
|
}
|
|
157
156
|
const child = flattedChildren[i];
|
|
@@ -234,7 +233,6 @@ const TransitionSeriesChildren = ({ children, }) => {
|
|
|
234
233
|
children: overlayProps.children,
|
|
235
234
|
index: i,
|
|
236
235
|
controls: overlayProps.controls,
|
|
237
|
-
stack: overlayProps.stack,
|
|
238
236
|
};
|
|
239
237
|
return renderNext({
|
|
240
238
|
overlayRenders: [...overlayRenders, overlayRender],
|
|
@@ -253,10 +251,10 @@ const TransitionSeriesChildren = ({ children, }) => {
|
|
|
253
251
|
const castedTransition = current;
|
|
254
252
|
return react_1.default.cloneElement(castedTransition, {
|
|
255
253
|
_remotionInternalRender: (transitionProps) => {
|
|
256
|
-
var _a
|
|
254
|
+
var _a;
|
|
257
255
|
const transitionDuration = transitionProps.timing.getDurationInFrames({ fps });
|
|
258
256
|
const transitionFrom = startFrame + transitionOffsets - transitionDuration;
|
|
259
|
-
return (jsx_runtime_1.jsxs(jsx_runtime_1.Fragment, { children: [transitionDuration > 0 ? (jsx_runtime_1.jsx(SequenceWithoutSchema, { from: transitionFrom, durationInFrames: transitionDuration, name: "<TS.Transition>", _remotionInternalDocumentationLink: "https://www.remotion.dev/docs/transitions/transitionseries",
|
|
257
|
+
return (jsx_runtime_1.jsxs(jsx_runtime_1.Fragment, { children: [transitionDuration > 0 ? (jsx_runtime_1.jsx(SequenceWithoutSchema, { from: transitionFrom, durationInFrames: transitionDuration, name: "<TS.Transition>", _remotionInternalDocumentationLink: "https://www.remotion.dev/docs/transitions/transitionseries", controls: (_a = transitionProps.controls) !== null && _a !== void 0 ? _a : undefined, layout: "none" })) : null, renderNext()] }));
|
|
260
258
|
},
|
|
261
259
|
});
|
|
262
260
|
}
|
|
@@ -279,7 +277,11 @@ const TransitionSeriesChildren = ({ children, }) => {
|
|
|
279
277
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
280
278
|
const durationInFramesProp = resolvedProps.durationInFrames;
|
|
281
279
|
const debugInfo = `index = ${i}, duration = ${durationInFramesProp}`;
|
|
282
|
-
const { durationInFrames, children: sequenceChildren, offset: offsetProp, controls,
|
|
280
|
+
const { durationInFrames, children: sequenceChildren, offset: offsetProp, controls, from: _from, ...passedProps } = resolvedProps;
|
|
281
|
+
const propsForSequence = {
|
|
282
|
+
...passedProps,
|
|
283
|
+
_remotionInternalSingleChildComponent: remotion_1.Internals.getSingleChildComponent(sequenceChildren),
|
|
284
|
+
};
|
|
283
285
|
(0, validate_js_1.validateDurationInFrames)(durationInFramesProp, {
|
|
284
286
|
component: `of a <TransitionSeries.Sequence /> component`,
|
|
285
287
|
allowFloats: true,
|
|
@@ -366,9 +368,9 @@ const TransitionSeriesChildren = ({ children, }) => {
|
|
|
366
368
|
const prevPresentation = (_b = prev.props.presentation) !== null && _b !== void 0 ? _b : (0, slide_js_1.slide)();
|
|
367
369
|
const UppercaseNextPresentation = nextPresentation.component;
|
|
368
370
|
const UppercasePrevPresentation = prevPresentation.component;
|
|
369
|
-
return renderSequenceAndRest(jsx_runtime_1.jsx(SequenceWithoutSchema, { from: actualStartFrame, durationInFrames: durationInFramesProp, ...
|
|
371
|
+
return renderSequenceAndRest(jsx_runtime_1.jsx(SequenceWithoutSchema, { from: actualStartFrame, durationInFrames: durationInFramesProp, ...propsForSequence, name: passedProps.name || '<TS.Sequence>', _remotionInternalDocumentationLink: passedProps.name
|
|
370
372
|
? undefined
|
|
371
|
-
: 'https://www.remotion.dev/docs/transitions/transitionseries',
|
|
373
|
+
: 'https://www.remotion.dev/docs/transitions/transitionseries', controls: controls !== null && controls !== void 0 ? controls : undefined, children: jsx_runtime_1.jsx(UppercaseNextPresentation, { passedProps: (_c = nextPresentation.props) !== null && _c !== void 0 ? _c : {}, presentationDirection: "exiting", presentationProgress: nextProgress, presentationDurationInFrames: next.props.timing.getDurationInFrames({ fps }), onElementImage: () => {
|
|
372
374
|
throw new Error('Should not call when exiting');
|
|
373
375
|
}, onUnmount: () => {
|
|
374
376
|
throw new Error('Should not call when exiting');
|
|
@@ -383,24 +385,24 @@ const TransitionSeriesChildren = ({ children, }) => {
|
|
|
383
385
|
if (prevProgress !== null && prev) {
|
|
384
386
|
const prevPresentation = (_e = prev.props.presentation) !== null && _e !== void 0 ? _e : (0, slide_js_1.slide)();
|
|
385
387
|
const UppercasePrevPresentation = prevPresentation.component;
|
|
386
|
-
return renderSequenceAndRest(jsx_runtime_1.jsx(SequenceWithoutSchema, { from: actualStartFrame, durationInFrames: durationInFramesProp, ...
|
|
388
|
+
return renderSequenceAndRest(jsx_runtime_1.jsx(SequenceWithoutSchema, { from: actualStartFrame, durationInFrames: durationInFramesProp, ...propsForSequence, name: passedProps.name || '<TS.Sequence>', _remotionInternalDocumentationLink: passedProps.name
|
|
387
389
|
? undefined
|
|
388
|
-
: 'https://www.remotion.dev/docs/transitions/transitionseries',
|
|
390
|
+
: 'https://www.remotion.dev/docs/transitions/transitionseries', controls: controls !== null && controls !== void 0 ? controls : undefined, children: jsx_runtime_1.jsx(UppercasePrevPresentation, { passedProps: (_f = prevPresentation.props) !== null && _f !== void 0 ? _f : {}, presentationDirection: "entering", presentationProgress: prevProgress, presentationDurationInFrames: prev.props.timing.getDurationInFrames({ fps }), onElementImage: (elementImage, draw) => onNextElementImage(elementImage, prevProgress, draw, i - 1), onUnmount: () => {
|
|
389
391
|
onNextElementImage(null, null, null, i - 1);
|
|
390
392
|
}, bothEnteringAndExiting: false, children: jsx_runtime_1.jsx(context_js_1.WrapInEnteringProgressContext, { presentationProgress: prevProgress, children: sequenceChildren }) }) }, i));
|
|
391
393
|
}
|
|
392
394
|
if (nextProgress !== null && next) {
|
|
393
395
|
const nextPresentation = (_g = next.props.presentation) !== null && _g !== void 0 ? _g : (0, slide_js_1.slide)();
|
|
394
396
|
const UppercaseNextPresentation = nextPresentation.component;
|
|
395
|
-
return renderSequenceAndRest(jsx_runtime_1.jsx(SequenceWithoutSchema, { from: actualStartFrame, durationInFrames: durationInFramesProp, ...
|
|
397
|
+
return renderSequenceAndRest(jsx_runtime_1.jsx(SequenceWithoutSchema, { from: actualStartFrame, durationInFrames: durationInFramesProp, ...propsForSequence, name: passedProps.name || '<TS.Sequence>', _remotionInternalDocumentationLink: passedProps.name
|
|
396
398
|
? undefined
|
|
397
|
-
: 'https://www.remotion.dev/docs/transitions/transitionseries',
|
|
399
|
+
: 'https://www.remotion.dev/docs/transitions/transitionseries', controls: controls !== null && controls !== void 0 ? controls : undefined, children: jsx_runtime_1.jsx(UppercaseNextPresentation, { passedProps: (_h = nextPresentation.props) !== null && _h !== void 0 ? _h : {}, presentationDirection: "exiting", presentationProgress: nextProgress, presentationDurationInFrames: next.props.timing.getDurationInFrames({ fps }), onElementImage: (elementImage, draw) => onPrevElementImage(elementImage, nextProgress, draw, i + 1), onUnmount: () => {
|
|
398
400
|
onPrevElementImage(null, null, null, i + 1);
|
|
399
401
|
}, bothEnteringAndExiting: false, children: jsx_runtime_1.jsx(context_js_1.WrapInExitingProgressContext, { presentationProgress: nextProgress, children: sequenceChildren }) }) }, i));
|
|
400
402
|
}
|
|
401
|
-
return renderSequenceAndRest(jsx_runtime_1.jsx(SequenceWithoutSchema, { from: actualStartFrame, durationInFrames: durationInFramesProp, ...
|
|
403
|
+
return renderSequenceAndRest(jsx_runtime_1.jsx(SequenceWithoutSchema, { from: actualStartFrame, durationInFrames: durationInFramesProp, ...propsForSequence, name: passedProps.name || '<TS.Sequence>', _remotionInternalDocumentationLink: passedProps.name
|
|
402
404
|
? undefined
|
|
403
|
-
: 'https://www.remotion.dev/docs/transitions/transitionseries',
|
|
405
|
+
: 'https://www.remotion.dev/docs/transitions/transitionseries', controls: controls !== null && controls !== void 0 ? controls : undefined, children: sequenceChildren }, i));
|
|
404
406
|
},
|
|
405
407
|
});
|
|
406
408
|
};
|
|
@@ -422,7 +424,6 @@ const TransitionSeriesChildren = ({ children, }) => {
|
|
|
422
424
|
*/
|
|
423
425
|
const TransitionSeriesInner = (props) => {
|
|
424
426
|
const { children, name, layout: passedLayout, controls, ...otherProps } = props;
|
|
425
|
-
const { stack, ...propsForSequence } = otherProps;
|
|
426
427
|
const displayName = name !== null && name !== void 0 ? name : '<TransitionSeries>';
|
|
427
428
|
const layout = passedLayout !== null && passedLayout !== void 0 ? passedLayout : 'absolute-fill';
|
|
428
429
|
if (no_react_1.NoReactInternals.ENABLE_V5_BREAKING_CHANGES &&
|
|
@@ -431,7 +432,7 @@ const TransitionSeriesInner = (props) => {
|
|
|
431
432
|
}
|
|
432
433
|
return (jsx_runtime_1.jsx(remotion_1.Sequence, { name: displayName, layout: layout, _remotionInternalDocumentationLink: name === undefined
|
|
433
434
|
? 'https://www.remotion.dev/docs/transitions/transitionseries'
|
|
434
|
-
: undefined, ...
|
|
435
|
+
: undefined, ...otherProps, controls: controls !== null && controls !== void 0 ? controls : undefined, children: jsx_runtime_1.jsx(TransitionSeriesChildren, { children: children }) }));
|
|
435
436
|
};
|
|
436
437
|
const TransitionSeries = remotion_1.Interactive.withSchema({
|
|
437
438
|
Component: TransitionSeriesInner,
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1352,12 +1352,11 @@ var validateDurationInFrames = NoReactInternals.validateDurationInFrames;
|
|
|
1352
1352
|
import { jsx as jsx5, jsxs as jsxs3, Fragment } from "react/jsx-runtime";
|
|
1353
1353
|
var { SequenceWithoutSchema } = Internals2;
|
|
1354
1354
|
var TransitionSeriesTransitionInner = ({
|
|
1355
|
-
stack = null,
|
|
1356
1355
|
_remotionInternalRender = null,
|
|
1357
1356
|
...props
|
|
1358
1357
|
}) => {
|
|
1359
1358
|
if (_remotionInternalRender) {
|
|
1360
|
-
return _remotionInternalRender(
|
|
1359
|
+
return _remotionInternalRender(props);
|
|
1361
1360
|
}
|
|
1362
1361
|
return null;
|
|
1363
1362
|
};
|
|
@@ -1370,12 +1369,11 @@ var TransitionSeriesTransition = Interactive.withSchema({
|
|
|
1370
1369
|
supportsEffects: false
|
|
1371
1370
|
});
|
|
1372
1371
|
var SeriesOverlayInner = ({
|
|
1373
|
-
stack = null,
|
|
1374
1372
|
_remotionInternalRender = null,
|
|
1375
1373
|
...props
|
|
1376
1374
|
}) => {
|
|
1377
1375
|
if (_remotionInternalRender) {
|
|
1378
|
-
return _remotionInternalRender(
|
|
1376
|
+
return _remotionInternalRender(props);
|
|
1379
1377
|
}
|
|
1380
1378
|
return null;
|
|
1381
1379
|
};
|
|
@@ -1399,7 +1397,6 @@ var transitionSeriesSequenceSchema = {
|
|
|
1399
1397
|
var SeriesSequenceInner = ({
|
|
1400
1398
|
offset = 0,
|
|
1401
1399
|
className = "",
|
|
1402
|
-
stack = null,
|
|
1403
1400
|
_remotionInternalRender = null,
|
|
1404
1401
|
...props
|
|
1405
1402
|
}) => {
|
|
@@ -1407,8 +1404,7 @@ var SeriesSequenceInner = ({
|
|
|
1407
1404
|
return _remotionInternalRender({
|
|
1408
1405
|
...props,
|
|
1409
1406
|
offset,
|
|
1410
|
-
className: className || undefined
|
|
1411
|
-
stack
|
|
1407
|
+
className: className || undefined
|
|
1412
1408
|
});
|
|
1413
1409
|
}
|
|
1414
1410
|
return /* @__PURE__ */ jsx5(Fragment, {
|
|
@@ -1482,7 +1478,6 @@ var TransitionSeriesChildren = ({
|
|
|
1482
1478
|
durationInFrames: info.durationInFrames,
|
|
1483
1479
|
name: "<TS.Overlay>",
|
|
1484
1480
|
_remotionInternalDocumentationLink: "https://www.remotion.dev/docs/transitions/transitionseries",
|
|
1485
|
-
_remotionInternalStack: info.stack ?? undefined,
|
|
1486
1481
|
controls: info.controls ?? undefined,
|
|
1487
1482
|
layout: "absolute-fill",
|
|
1488
1483
|
children: info.children
|
|
@@ -1552,8 +1547,7 @@ var TransitionSeriesChildren = ({
|
|
|
1552
1547
|
halfDuration,
|
|
1553
1548
|
children: overlayProps.children,
|
|
1554
1549
|
index: i,
|
|
1555
|
-
controls: overlayProps.controls
|
|
1556
|
-
stack: overlayProps.stack
|
|
1550
|
+
controls: overlayProps.controls
|
|
1557
1551
|
};
|
|
1558
1552
|
return renderNext({
|
|
1559
1553
|
overlayRenders: [...overlayRenders, overlayRender],
|
|
@@ -1581,7 +1575,6 @@ var TransitionSeriesChildren = ({
|
|
|
1581
1575
|
durationInFrames: transitionDuration,
|
|
1582
1576
|
name: "<TS.Transition>",
|
|
1583
1577
|
_remotionInternalDocumentationLink: "https://www.remotion.dev/docs/transitions/transitionseries",
|
|
1584
|
-
_remotionInternalStack: transitionProps.stack ?? undefined,
|
|
1585
1578
|
controls: transitionProps.controls ?? undefined,
|
|
1586
1579
|
layout: "none"
|
|
1587
1580
|
}) : null,
|
|
@@ -1606,10 +1599,13 @@ var TransitionSeriesChildren = ({
|
|
|
1606
1599
|
children: sequenceChildren,
|
|
1607
1600
|
offset: offsetProp,
|
|
1608
1601
|
controls,
|
|
1609
|
-
stack,
|
|
1610
1602
|
from: _from,
|
|
1611
1603
|
...passedProps
|
|
1612
1604
|
} = resolvedProps;
|
|
1605
|
+
const propsForSequence = {
|
|
1606
|
+
...passedProps,
|
|
1607
|
+
_remotionInternalSingleChildComponent: Internals2.getSingleChildComponent(sequenceChildren)
|
|
1608
|
+
};
|
|
1613
1609
|
validateDurationInFrames(durationInFramesProp, {
|
|
1614
1610
|
component: `of a <TransitionSeries.Sequence /> component`,
|
|
1615
1611
|
allowFloats: true
|
|
@@ -1691,10 +1687,9 @@ var TransitionSeriesChildren = ({
|
|
|
1691
1687
|
return renderSequenceAndRest(/* @__PURE__ */ jsx5(SequenceWithoutSchema, {
|
|
1692
1688
|
from: actualStartFrame,
|
|
1693
1689
|
durationInFrames: durationInFramesProp,
|
|
1694
|
-
...
|
|
1690
|
+
...propsForSequence,
|
|
1695
1691
|
name: passedProps.name || "<TS.Sequence>",
|
|
1696
1692
|
_remotionInternalDocumentationLink: passedProps.name ? undefined : "https://www.remotion.dev/docs/transitions/transitionseries",
|
|
1697
|
-
_remotionInternalStack: stack ?? undefined,
|
|
1698
1693
|
controls: controls ?? undefined,
|
|
1699
1694
|
children: /* @__PURE__ */ jsx5(UppercaseNextPresentation, {
|
|
1700
1695
|
passedProps: nextPresentation.props ?? {},
|
|
@@ -1739,10 +1734,9 @@ var TransitionSeriesChildren = ({
|
|
|
1739
1734
|
return renderSequenceAndRest(/* @__PURE__ */ jsx5(SequenceWithoutSchema, {
|
|
1740
1735
|
from: actualStartFrame,
|
|
1741
1736
|
durationInFrames: durationInFramesProp,
|
|
1742
|
-
...
|
|
1737
|
+
...propsForSequence,
|
|
1743
1738
|
name: passedProps.name || "<TS.Sequence>",
|
|
1744
1739
|
_remotionInternalDocumentationLink: passedProps.name ? undefined : "https://www.remotion.dev/docs/transitions/transitionseries",
|
|
1745
|
-
_remotionInternalStack: stack ?? undefined,
|
|
1746
1740
|
controls: controls ?? undefined,
|
|
1747
1741
|
children: /* @__PURE__ */ jsx5(UppercasePrevPresentation, {
|
|
1748
1742
|
passedProps: prevPresentation.props ?? {},
|
|
@@ -1767,10 +1761,9 @@ var TransitionSeriesChildren = ({
|
|
|
1767
1761
|
return renderSequenceAndRest(/* @__PURE__ */ jsx5(SequenceWithoutSchema, {
|
|
1768
1762
|
from: actualStartFrame,
|
|
1769
1763
|
durationInFrames: durationInFramesProp,
|
|
1770
|
-
...
|
|
1764
|
+
...propsForSequence,
|
|
1771
1765
|
name: passedProps.name || "<TS.Sequence>",
|
|
1772
1766
|
_remotionInternalDocumentationLink: passedProps.name ? undefined : "https://www.remotion.dev/docs/transitions/transitionseries",
|
|
1773
|
-
_remotionInternalStack: stack ?? undefined,
|
|
1774
1767
|
controls: controls ?? undefined,
|
|
1775
1768
|
children: /* @__PURE__ */ jsx5(UppercaseNextPresentation, {
|
|
1776
1769
|
passedProps: nextPresentation.props ?? {},
|
|
@@ -1792,10 +1785,9 @@ var TransitionSeriesChildren = ({
|
|
|
1792
1785
|
return renderSequenceAndRest(/* @__PURE__ */ jsx5(SequenceWithoutSchema, {
|
|
1793
1786
|
from: actualStartFrame,
|
|
1794
1787
|
durationInFrames: durationInFramesProp,
|
|
1795
|
-
...
|
|
1788
|
+
...propsForSequence,
|
|
1796
1789
|
name: passedProps.name || "<TS.Sequence>",
|
|
1797
1790
|
_remotionInternalDocumentationLink: passedProps.name ? undefined : "https://www.remotion.dev/docs/transitions/transitionseries",
|
|
1798
|
-
_remotionInternalStack: stack ?? undefined,
|
|
1799
1791
|
controls: controls ?? undefined,
|
|
1800
1792
|
children: sequenceChildren
|
|
1801
1793
|
}, i));
|
|
@@ -1823,7 +1815,6 @@ var TransitionSeriesInner = (props) => {
|
|
|
1823
1815
|
controls,
|
|
1824
1816
|
...otherProps
|
|
1825
1817
|
} = props;
|
|
1826
|
-
const { stack, ...propsForSequence } = otherProps;
|
|
1827
1818
|
const displayName = name ?? "<TransitionSeries>";
|
|
1828
1819
|
const layout = passedLayout ?? "absolute-fill";
|
|
1829
1820
|
if (NoReactInternals2.ENABLE_V5_BREAKING_CHANGES && layout !== "absolute-fill") {
|
|
@@ -1833,8 +1824,7 @@ var TransitionSeriesInner = (props) => {
|
|
|
1833
1824
|
name: displayName,
|
|
1834
1825
|
layout,
|
|
1835
1826
|
_remotionInternalDocumentationLink: name === undefined ? "https://www.remotion.dev/docs/transitions/transitionseries" : undefined,
|
|
1836
|
-
...
|
|
1837
|
-
_remotionInternalStack: stack ?? undefined,
|
|
1827
|
+
...otherProps,
|
|
1838
1828
|
controls: controls ?? undefined,
|
|
1839
1829
|
children: /* @__PURE__ */ jsx5(TransitionSeriesChildren, {
|
|
1840
1830
|
children
|
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.501",
|
|
7
7
|
"description": "Library for creating transitions in Remotion",
|
|
8
8
|
"main": "dist/esm/index.mjs",
|
|
9
9
|
"module": "dist/esm/index.js",
|
|
@@ -22,18 +22,18 @@
|
|
|
22
22
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"remotion": "4.0.
|
|
26
|
-
"@remotion/shapes": "4.0.
|
|
27
|
-
"@remotion/paths": "4.0.
|
|
25
|
+
"remotion": "4.0.501",
|
|
26
|
+
"@remotion/shapes": "4.0.501",
|
|
27
|
+
"@remotion/paths": "4.0.501"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@happy-dom/global-registrator": "14.5.1",
|
|
31
|
-
"remotion": "4.0.
|
|
31
|
+
"remotion": "4.0.501",
|
|
32
32
|
"react": "19.2.3",
|
|
33
33
|
"react-dom": "19.2.3",
|
|
34
|
-
"@remotion/test-utils": "4.0.
|
|
35
|
-
"@remotion/player": "4.0.
|
|
36
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
34
|
+
"@remotion/test-utils": "4.0.501",
|
|
35
|
+
"@remotion/player": "4.0.501",
|
|
36
|
+
"@remotion/eslint-config-internal": "4.0.501",
|
|
37
37
|
"eslint": "9.19.0",
|
|
38
38
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
39
39
|
},
|