@remotion/lottie 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.
- package/dist/cjs/Lottie.js +1 -1
- package/dist/cjs/index.js +2 -2
- package/package.json +7 -6
package/dist/cjs/Lottie.js
CHANGED
|
@@ -123,6 +123,6 @@ const Lottie = ({ animationData, className, direction, loop, playbackRate, style
|
|
|
123
123
|
img.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', img.href.baseVal);
|
|
124
124
|
});
|
|
125
125
|
}, [direction, frame, loop, playbackRate, delayRender, continueRender]);
|
|
126
|
-
return
|
|
126
|
+
return jsx_runtime_1.jsx("div", { ref: containerRef, className: className, style: style });
|
|
127
127
|
};
|
|
128
128
|
exports.Lottie = Lottie;
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Lottie = exports.getLottieMetadata = void 0;
|
|
4
|
-
|
|
4
|
+
const get_lottie_metadata_1 = require("./get-lottie-metadata");
|
|
5
5
|
Object.defineProperty(exports, "getLottieMetadata", { enumerable: true, get: function () { return get_lottie_metadata_1.getLottieMetadata; } });
|
|
6
|
-
|
|
6
|
+
const Lottie_1 = require("./Lottie");
|
|
7
7
|
Object.defineProperty(exports, "Lottie", { enumerable: true, get: function () { return Lottie_1.Lottie; } });
|
package/package.json
CHANGED
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/lottie"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/lottie",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.425",
|
|
7
7
|
"description": "Include Lottie animations in Remotion",
|
|
8
8
|
"main": "dist/cjs/index.js",
|
|
9
9
|
"types": "dist/cjs/index.d.ts",
|
|
10
10
|
"module": "dist/esm/index.mjs",
|
|
11
11
|
"sideEffects": false,
|
|
12
12
|
"scripts": {
|
|
13
|
-
"formatting": "prettier
|
|
13
|
+
"formatting": "prettier src --check",
|
|
14
14
|
"lint": "eslint src",
|
|
15
15
|
"test": "bun test src",
|
|
16
|
-
"make": "
|
|
16
|
+
"make": "tsgo -d && bun --env-file=../.env.bundle bundle.ts"
|
|
17
17
|
},
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"remotion": "4.0.
|
|
28
|
+
"remotion": "4.0.425"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"lottie-web": "^5",
|
|
@@ -45,8 +45,9 @@
|
|
|
45
45
|
"react": "19.2.3",
|
|
46
46
|
"react-dom": "19.2.3",
|
|
47
47
|
"lottie-web": "5.13.0",
|
|
48
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
49
|
-
"eslint": "9.19.0"
|
|
48
|
+
"@remotion/eslint-config-internal": "4.0.425",
|
|
49
|
+
"eslint": "9.19.0",
|
|
50
|
+
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
50
51
|
},
|
|
51
52
|
"keywords": [
|
|
52
53
|
"remotion",
|