@glissade/lottie 0.55.0-pre.1 → 0.55.0-pre.2
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 +2 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Circle, Group, ImageNode, Path, Rect, Text, breakLines, createScene, meshRasterSize, rasterizeMesh } from "@glissade/scene";
|
|
2
2
|
import { compileTimeline, cubicBezier, formatColor, parseColor, sampleTrack, track } from "@glissade/core";
|
|
3
|
-
import { Camera, cameraLayerMatrix } from "@glissade/scene/motion";
|
|
3
|
+
import { Camera, cameraLayerMatrix, shakenSpec } from "@glissade/scene/motion";
|
|
4
4
|
import "@glissade/core/expr";
|
|
5
5
|
//#region src/spec.ts
|
|
6
6
|
var LottieImportError = class extends Error {
|
|
@@ -1786,6 +1786,7 @@ function computeOp(tl, fr) {
|
|
|
1786
1786
|
function walkChildren(ctx, children, parentInd, byNode, opacity) {
|
|
1787
1787
|
for (let i = children.length - 1; i >= 0; i--) {
|
|
1788
1788
|
const node = children[i];
|
|
1789
|
+
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)`);
|
|
1789
1790
|
const kind = classify(node);
|
|
1790
1791
|
if (kind === "drop") {
|
|
1791
1792
|
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.55.0-pre.
|
|
3
|
+
"version": "0.55.0-pre.2",
|
|
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.55.0-pre.
|
|
22
|
-
"@glissade/scene": "0.55.0-pre.
|
|
21
|
+
"@glissade/core": "0.55.0-pre.2",
|
|
22
|
+
"@glissade/scene": "0.55.0-pre.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@glissade/backend-skia": "0.55.0-pre.
|
|
25
|
+
"@glissade/backend-skia": "0.55.0-pre.2"
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|