@remotion/rive 4.0.423 → 4.0.425
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.
|
@@ -167,6 +167,6 @@ const RemotionRiveCanvasForwardRefFunction = ({ src, fit = 'contain', alignment
|
|
|
167
167
|
height,
|
|
168
168
|
width,
|
|
169
169
|
}), [height, width]);
|
|
170
|
-
return
|
|
170
|
+
return jsx_runtime_1.jsx("canvas", { ref: canvas, width: width, height: height, style: style });
|
|
171
171
|
};
|
|
172
172
|
exports.RemotionRiveCanvas = (0, react_1.forwardRef)(RemotionRiveCanvasForwardRefFunction);
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.RemotionRiveCanvas = void 0;
|
|
4
|
-
|
|
4
|
+
const RemotionRiveCanvas_js_1 = require("./RemotionRiveCanvas.js");
|
|
5
5
|
Object.defineProperty(exports, "RemotionRiveCanvas", { enumerable: true, get: function () { return RemotionRiveCanvas_js_1.RemotionRiveCanvas; } });
|
package/package.json
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/rive"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/rive",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.425",
|
|
7
7
|
"description": "Embed Rive animations in a Remotion video",
|
|
8
8
|
"main": "dist/cjs/index.js",
|
|
9
9
|
"types": "dist/cjs/index.d.ts",
|
|
10
10
|
"module": "dist/esm/index.mjs",
|
|
11
11
|
"scripts": {
|
|
12
|
-
"formatting": "prettier
|
|
12
|
+
"formatting": "prettier src --check",
|
|
13
13
|
"lint": "eslint src",
|
|
14
|
-
"make": "
|
|
14
|
+
"make": "tsgo -d && bun --env-file=../.env.bundle bundle.ts"
|
|
15
15
|
},
|
|
16
16
|
"bugs": {
|
|
17
17
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"license": "See LICENSE.md",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@rive-app/canvas-advanced": "2.31.5",
|
|
24
|
-
"remotion": "4.0.
|
|
24
|
+
"remotion": "4.0.425"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"react": ">=18.2.0",
|
|
@@ -30,8 +30,9 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"react": "19.2.3",
|
|
32
32
|
"react-dom": "19.2.3",
|
|
33
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
34
|
-
"eslint": "9.19.0"
|
|
33
|
+
"@remotion/eslint-config-internal": "4.0.425",
|
|
34
|
+
"eslint": "9.19.0",
|
|
35
|
+
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
35
36
|
},
|
|
36
37
|
"publishConfig": {
|
|
37
38
|
"access": "public"
|