@remotion/transitions 4.0.442 → 4.0.444

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.
@@ -15,9 +15,9 @@ type SeriesSequenceProps = PropsWithChildren<{
15
15
  readonly stack?: string;
16
16
  } & LayoutBasedProps & Pick<SequencePropsWithoutDuration, 'name'>>;
17
17
  declare const SeriesSequence: ({ children }: SeriesSequenceProps) => import("react/jsx-runtime").JSX.Element;
18
- export declare const TransitionSeries: FC<SequencePropsWithoutDuration> & {
18
+ declare const TransitionSeries: FC<SequencePropsWithoutDuration> & {
19
19
  Sequence: typeof SeriesSequence;
20
20
  Transition: typeof TransitionSeriesTransition;
21
21
  Overlay: typeof SeriesOverlay;
22
22
  };
23
- export {};
23
+ export { TransitionSeries };
@@ -253,9 +253,9 @@ const TransitionSeries = ({ children, name, layout: passedLayout, ...otherProps
253
253
  return (jsx_runtime_1.jsx(remotion_1.Sequence, { name: displayName, layout: layout, ...otherProps, children: jsx_runtime_1.jsx(TransitionSeriesChildren, { children: children }) }));
254
254
  };
255
255
  exports.TransitionSeries = TransitionSeries;
256
- exports.TransitionSeries.Sequence = SeriesSequence;
257
- exports.TransitionSeries.Transition = TransitionSeriesTransition;
258
- exports.TransitionSeries.Overlay = SeriesOverlay;
259
- remotion_1.Internals.addSequenceStackTraces(exports.TransitionSeries);
256
+ TransitionSeries.Sequence = SeriesSequence;
257
+ TransitionSeries.Transition = TransitionSeriesTransition;
258
+ TransitionSeries.Overlay = SeriesOverlay;
259
+ remotion_1.Internals.addSequenceStackTraces(TransitionSeries);
260
260
  remotion_1.Internals.addSequenceStackTraces(SeriesSequence);
261
261
  remotion_1.Internals.addSequenceStackTraces(SeriesOverlay);
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.442",
6
+ "version": "4.0.444",
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.442",
27
- "@remotion/shapes": "4.0.442",
28
- "@remotion/paths": "4.0.442"
26
+ "remotion": "4.0.444",
27
+ "@remotion/shapes": "4.0.444",
28
+ "@remotion/paths": "4.0.444"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@happy-dom/global-registrator": "14.5.1",
32
- "remotion": "4.0.442",
32
+ "remotion": "4.0.444",
33
33
  "react": "19.2.3",
34
34
  "react-dom": "19.2.3",
35
- "@remotion/test-utils": "4.0.442",
36
- "@remotion/player": "4.0.442",
37
- "@remotion/eslint-config-internal": "4.0.442",
35
+ "@remotion/test-utils": "4.0.444",
36
+ "@remotion/player": "4.0.444",
37
+ "@remotion/eslint-config-internal": "4.0.444",
38
38
  "eslint": "9.19.0",
39
39
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
40
40
  },