@remotion/transitions 4.0.476 → 4.0.477

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.
@@ -9,7 +9,7 @@ type SeriesSequenceProps = PropsWithChildren<{
9
9
  readonly durationInFrames: number;
10
10
  readonly offset?: number;
11
11
  readonly className?: string;
12
- } & LayoutBasedProps & Pick<SequencePropsWithoutDuration, 'name' | 'showInTimeline'>>;
12
+ } & LayoutBasedProps & Pick<SequencePropsWithoutDuration, 'name' | 'showInTimeline' | 'freeze'>>;
13
13
  declare const SeriesSequence: ({ children }: SeriesSequenceProps) => import("react/jsx-runtime").JSX.Element;
14
14
  export type DrawFunction = (prevImage: ElementImage | null, nextImage: ElementImage | null, progress: number) => void;
15
15
  declare const TransitionSeries: FC<SequencePropsWithoutDuration> & {
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.476",
6
+ "version": "4.0.477",
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.476",
26
- "@remotion/shapes": "4.0.476",
27
- "@remotion/paths": "4.0.476"
25
+ "remotion": "4.0.477",
26
+ "@remotion/shapes": "4.0.477",
27
+ "@remotion/paths": "4.0.477"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@happy-dom/global-registrator": "14.5.1",
31
- "remotion": "4.0.476",
31
+ "remotion": "4.0.477",
32
32
  "react": "19.2.3",
33
33
  "react-dom": "19.2.3",
34
- "@remotion/test-utils": "4.0.476",
35
- "@remotion/player": "4.0.476",
36
- "@remotion/eslint-config-internal": "4.0.476",
34
+ "@remotion/test-utils": "4.0.477",
35
+ "@remotion/player": "4.0.477",
36
+ "@remotion/eslint-config-internal": "4.0.477",
37
37
  "eslint": "9.19.0",
38
38
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
39
39
  },