@remotion/transitions 4.0.89 → 4.0.90
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.
|
@@ -11,7 +11,7 @@ type SeriesSequenceProps = PropsWithChildren<{
|
|
|
11
11
|
*/
|
|
12
12
|
stack?: string;
|
|
13
13
|
} & LayoutAndStyle & Pick<SequencePropsWithoutDuration, 'name'>>;
|
|
14
|
-
declare const SeriesSequence: ({ children }: SeriesSequenceProps) => JSX.Element;
|
|
14
|
+
declare const SeriesSequence: ({ children }: SeriesSequenceProps) => import("react/jsx-runtime.js").JSX.Element;
|
|
15
15
|
declare const TransitionSeries: FC<SequencePropsWithoutDuration> & {
|
|
16
16
|
Sequence: typeof SeriesSequence;
|
|
17
17
|
Transition: typeof TransitionSeriesTransition;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare const flattenChildren: (children: React.ReactNode) => (string | number | React.ReactElement<any, string | React.JSXElementConstructor<any>> | React.
|
|
2
|
+
export declare const flattenChildren: (children: React.ReactNode) => (string | number | React.ReactElement<any, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | React.ReactPortal)[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/transitions",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.90",
|
|
4
4
|
"description": "Transition presets for Remotion",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/esm/index.mjs",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"remotion": "4.0.
|
|
20
|
-
"@remotion/
|
|
21
|
-
"@remotion/
|
|
19
|
+
"remotion": "4.0.90",
|
|
20
|
+
"@remotion/paths": "4.0.90",
|
|
21
|
+
"@remotion/shapes": "4.0.90"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@jonny/eslint-config": "3.0.276",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"react": "18.2.0",
|
|
29
29
|
"react-dom": "18.2.0",
|
|
30
30
|
"vitest": "0.31.1",
|
|
31
|
-
"@types/react": "18.
|
|
32
|
-
"@types/react-dom": "18.
|
|
31
|
+
"@types/react": "18.2.48",
|
|
32
|
+
"@types/react-dom": "18.2.18",
|
|
33
33
|
"@vitejs/plugin-react": "^2.0.0",
|
|
34
34
|
"rollup": "^2.70.1",
|
|
35
35
|
"@rollup/plugin-typescript": "^8.2.0",
|
|
36
|
-
"remotion": "4.0.
|
|
37
|
-
"@remotion/test-utils": "4.0.
|
|
36
|
+
"remotion": "4.0.90",
|
|
37
|
+
"@remotion/test-utils": "4.0.90"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": ">=16.8.0",
|
|
@@ -106,6 +106,7 @@
|
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
108
|
"scripts": {
|
|
109
|
+
"test": "vitest --run",
|
|
109
110
|
"lint": "eslint src --ext ts,tsx",
|
|
110
111
|
"formatting": "prettier src --check",
|
|
111
112
|
"watch": "tsc -w",
|