@glissade/lottie 0.58.0 → 0.58.1-pre.0
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/index.js +3 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Circle, Group, ImageNode, Path, Rect, Text, breakLines, createScene, meshRasterSize, rasterizeMesh } from "@glissade/scene";
|
|
1
|
+
import { Circle, Echo, Group, ImageNode, MotionBlur, Path, Rect, Text, breakLines, createScene, meshRasterSize, rasterizeMesh } from "@glissade/scene";
|
|
2
2
|
import { compileTimeline, cubicBezier, formatColor, parseColor, sampleTrack, track } from "@glissade/core";
|
|
3
3
|
import { Camera, cameraLayerMatrix, shakenSpec } from "@glissade/scene/motion";
|
|
4
4
|
import { densifyStops } from "@glissade/scene/gradient";
|
|
@@ -1788,6 +1788,8 @@ function walkChildren(ctx, children, parentInd, byNode, opacity) {
|
|
|
1788
1788
|
for (let i = children.length - 1; i >= 0; i--) {
|
|
1789
1789
|
const node = children[i];
|
|
1790
1790
|
if (shakenSpec(node) !== void 0) ctx.warn(`${describe(node)}: shake() jitter is render-only — NOT exported to Lottie (it is a closed-form jitter, not a keyframe track)`);
|
|
1791
|
+
if (node instanceof MotionBlur) ctx.warn(`${describe(node)}: motionBlur (analog-shutter smear) is render-only — NOT exported to Lottie (the round-trip shows the un-blurred shape)`);
|
|
1792
|
+
else if (node instanceof Echo) ctx.warn(`${describe(node)}: echo trails are render-only — NOT exported to Lottie (only the base shape exports, no ghost copies)`);
|
|
1791
1793
|
const kind = classify(node);
|
|
1792
1794
|
if (kind === "drop") {
|
|
1793
1795
|
ctx.warn(`${describe(node)} is not exportable (MVP: Group / Rect / Circle / Path / Text) — dropped`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glissade/lottie",
|
|
3
|
-
"version": "0.58.0",
|
|
3
|
+
"version": "0.58.1-pre.0",
|
|
4
4
|
"description": "glissade Lottie import (S1 MVP): pure .json (Lottie/bodymovin) → node specs + a v1 Timeline. Fail-fast feature audit; no DOM/Node dependencies.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"engines": {
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@glissade/core": "0.58.0",
|
|
22
|
-
"@glissade/scene": "0.58.0"
|
|
21
|
+
"@glissade/core": "0.58.1-pre.0",
|
|
22
|
+
"@glissade/scene": "0.58.1-pre.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@glissade/backend-skia": "0.58.0"
|
|
25
|
+
"@glissade/backend-skia": "0.58.1-pre.0"
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|