@leafer/worker 1.12.1 → 1.12.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/worker.js +297 -187
- package/dist/worker.min.js +1 -1
- package/dist/worker.min.js.map +1 -1
- package/dist/worker.module.js +304 -187
- package/dist/worker.module.min.js +1 -1
- package/dist/worker.module.min.js.map +1 -1
- package/package.json +23 -23
package/dist/worker.module.js
CHANGED
|
@@ -216,7 +216,7 @@ class LeafData {
|
|
|
216
216
|
}
|
|
217
217
|
}
|
|
218
218
|
|
|
219
|
-
const {floor: floor$3, max: max$
|
|
219
|
+
const {floor: floor$3, max: max$7} = Math;
|
|
220
220
|
|
|
221
221
|
const Platform = {
|
|
222
222
|
toURL(text, fileType) {
|
|
@@ -242,7 +242,7 @@ const Platform = {
|
|
|
242
242
|
return url;
|
|
243
243
|
},
|
|
244
244
|
resize(image, width, height, xGap, yGap, clip, smooth, opacity, _filters) {
|
|
245
|
-
const canvas = Platform.origin.createCanvas(max$
|
|
245
|
+
const canvas = Platform.origin.createCanvas(max$7(floor$3(width + (xGap || 0)), 1), max$7(floor$3(height + (yGap || 0)), 1));
|
|
246
246
|
const ctx = canvas.getContext("2d");
|
|
247
247
|
if (opacity) ctx.globalAlpha = opacity;
|
|
248
248
|
ctx.imageSmoothingEnabled = smooth === false ? false : true;
|
|
@@ -289,7 +289,7 @@ const I$2 = IncrementId;
|
|
|
289
289
|
|
|
290
290
|
let tempA, tempB, tempTo;
|
|
291
291
|
|
|
292
|
-
const {max: max$
|
|
292
|
+
const {max: max$6} = Math, tempFour = [ 0, 0, 0, 0 ];
|
|
293
293
|
|
|
294
294
|
const FourNumberHelper = {
|
|
295
295
|
zero: [ ...tempFour ],
|
|
@@ -341,9 +341,9 @@ const FourNumberHelper = {
|
|
|
341
341
|
return data;
|
|
342
342
|
},
|
|
343
343
|
max(t, other, change) {
|
|
344
|
-
if (isNumber(t) && isNumber(other)) return max$
|
|
344
|
+
if (isNumber(t) && isNumber(other)) return max$6(t, other);
|
|
345
345
|
toTempAB(t, other, change);
|
|
346
|
-
return set$2(tempTo, max$
|
|
346
|
+
return set$2(tempTo, max$6(tempA[0], tempB[0]), max$6(tempA[1], tempB[1]), max$6(tempA[2], tempB[2]), max$6(tempA[3], tempB[3]));
|
|
347
347
|
},
|
|
348
348
|
add(t, other, change) {
|
|
349
349
|
if (isNumber(t) && isNumber(other)) return t + other;
|
|
@@ -360,7 +360,7 @@ const FourNumberHelper = {
|
|
|
360
360
|
|
|
361
361
|
const {set: set$2, get: get$5, setTemp: setTemp, toTempAB: toTempAB} = FourNumberHelper;
|
|
362
362
|
|
|
363
|
-
const {round: round$6, pow: pow$2, max: max$
|
|
363
|
+
const {round: round$6, pow: pow$2, max: max$5, floor: floor$2, PI: PI$4} = Math;
|
|
364
364
|
|
|
365
365
|
const MathHelper = {
|
|
366
366
|
within(value, min, max) {
|
|
@@ -414,7 +414,7 @@ const MathHelper = {
|
|
|
414
414
|
}
|
|
415
415
|
},
|
|
416
416
|
getFloorScale(num, min = 1) {
|
|
417
|
-
return max$
|
|
417
|
+
return max$5(floor$2(num), min) / num;
|
|
418
418
|
},
|
|
419
419
|
randInt: randInt,
|
|
420
420
|
randColor(opacity) {
|
|
@@ -461,9 +461,9 @@ function getMatrixData() {
|
|
|
461
461
|
|
|
462
462
|
const {sin: sin$6, cos: cos$6, acos: acos, sqrt: sqrt$5} = Math;
|
|
463
463
|
|
|
464
|
-
const {float: float$
|
|
464
|
+
const {float: float$5} = MathHelper;
|
|
465
465
|
|
|
466
|
-
const tempPoint$
|
|
466
|
+
const tempPoint$5 = {};
|
|
467
467
|
|
|
468
468
|
function getWorld() {
|
|
469
469
|
return Object.assign(Object.assign(Object.assign({}, getMatrixData()), getBoundsData()), {
|
|
@@ -522,8 +522,8 @@ const MatrixHelper = {
|
|
|
522
522
|
to.f = t.f * pixelRatio;
|
|
523
523
|
},
|
|
524
524
|
scaleOfOuter(t, origin, scaleX, scaleY) {
|
|
525
|
-
M$b.toInnerPoint(t, origin, tempPoint$
|
|
526
|
-
M$b.scaleOfInner(t, tempPoint$
|
|
525
|
+
M$b.toInnerPoint(t, origin, tempPoint$5);
|
|
526
|
+
M$b.scaleOfInner(t, tempPoint$5, scaleX, scaleY);
|
|
527
527
|
},
|
|
528
528
|
scaleOfInner(t, origin, scaleX, scaleY = scaleX) {
|
|
529
529
|
M$b.translateInner(t, origin.x, origin.y);
|
|
@@ -541,8 +541,8 @@ const MatrixHelper = {
|
|
|
541
541
|
t.d = c * sinR + d * cosR;
|
|
542
542
|
},
|
|
543
543
|
rotateOfOuter(t, origin, rotation) {
|
|
544
|
-
M$b.toInnerPoint(t, origin, tempPoint$
|
|
545
|
-
M$b.rotateOfInner(t, tempPoint$
|
|
544
|
+
M$b.toInnerPoint(t, origin, tempPoint$5);
|
|
545
|
+
M$b.rotateOfInner(t, tempPoint$5, rotation);
|
|
546
546
|
},
|
|
547
547
|
rotateOfInner(t, origin, rotation) {
|
|
548
548
|
M$b.translateInner(t, origin.x, origin.y);
|
|
@@ -563,8 +563,8 @@ const MatrixHelper = {
|
|
|
563
563
|
}
|
|
564
564
|
},
|
|
565
565
|
skewOfOuter(t, origin, skewX, skewY) {
|
|
566
|
-
M$b.toInnerPoint(t, origin, tempPoint$
|
|
567
|
-
M$b.skewOfInner(t, tempPoint$
|
|
566
|
+
M$b.toInnerPoint(t, origin, tempPoint$5);
|
|
567
|
+
M$b.skewOfInner(t, tempPoint$5, skewX, skewY);
|
|
568
568
|
},
|
|
569
569
|
skewOfInner(t, origin, skewX, skewY = 0) {
|
|
570
570
|
M$b.translateInner(t, origin.x, origin.y);
|
|
@@ -712,12 +712,12 @@ const MatrixHelper = {
|
|
|
712
712
|
const cosR = c / scaleY;
|
|
713
713
|
rotation = PI_2 - (d > 0 ? acos(-cosR) : -acos(cosR));
|
|
714
714
|
}
|
|
715
|
-
const cosR = float$
|
|
715
|
+
const cosR = float$5(cos$6(rotation));
|
|
716
716
|
const sinR = sin$6(rotation);
|
|
717
|
-
scaleX = float$
|
|
718
|
-
skewX = cosR ? float$
|
|
719
|
-
skewY = cosR ? float$
|
|
720
|
-
rotation = float$
|
|
717
|
+
scaleX = float$5(scaleX), scaleY = float$5(scaleY);
|
|
718
|
+
skewX = cosR ? float$5((c / scaleY + sinR) / cosR / OneRadian, 9) : 0;
|
|
719
|
+
skewY = cosR ? float$5((b / scaleX - sinR) / cosR / OneRadian, 9) : 0;
|
|
720
|
+
rotation = float$5(rotation / OneRadian);
|
|
721
721
|
} else {
|
|
722
722
|
scaleX = a;
|
|
723
723
|
scaleY = d;
|
|
@@ -761,9 +761,11 @@ const MatrixHelper = {
|
|
|
761
761
|
|
|
762
762
|
const M$b = MatrixHelper;
|
|
763
763
|
|
|
764
|
+
const {float: float$4} = MathHelper;
|
|
765
|
+
|
|
764
766
|
const {toInnerPoint: toInnerPoint$2, toOuterPoint: toOuterPoint$3} = MatrixHelper;
|
|
765
767
|
|
|
766
|
-
const {sin: sin$5, cos: cos$5, abs: abs$a, sqrt: sqrt$4, atan2: atan2$2, min: min$
|
|
768
|
+
const {sin: sin$5, cos: cos$5, abs: abs$a, sqrt: sqrt$4, atan2: atan2$2, min: min$3, round: round$5} = Math;
|
|
767
769
|
|
|
768
770
|
const PointHelper = {
|
|
769
771
|
defaultPoint: getPointData(),
|
|
@@ -812,22 +814,27 @@ const PointHelper = {
|
|
|
812
814
|
},
|
|
813
815
|
tempToInnerOf(t, matrix) {
|
|
814
816
|
const {tempPoint: temp} = P$7;
|
|
815
|
-
copy$
|
|
817
|
+
copy$c(temp, t);
|
|
816
818
|
toInnerPoint$2(matrix, temp, temp);
|
|
817
819
|
return temp;
|
|
818
820
|
},
|
|
819
821
|
tempToOuterOf(t, matrix) {
|
|
820
822
|
const {tempPoint: temp} = P$7;
|
|
821
|
-
copy$
|
|
823
|
+
copy$c(temp, t);
|
|
822
824
|
toOuterPoint$3(matrix, temp, temp);
|
|
823
825
|
return temp;
|
|
824
826
|
},
|
|
825
827
|
tempToInnerRadiusPointOf(t, matrix) {
|
|
826
828
|
const {tempRadiusPoint: temp} = P$7;
|
|
827
|
-
copy$
|
|
829
|
+
copy$c(temp, t);
|
|
828
830
|
P$7.toInnerRadiusPointOf(t, matrix, temp);
|
|
829
831
|
return temp;
|
|
830
832
|
},
|
|
833
|
+
copyRadiusPoint(t, point, x, y) {
|
|
834
|
+
copy$c(t, point);
|
|
835
|
+
setRadius(t, x, y);
|
|
836
|
+
return t;
|
|
837
|
+
},
|
|
831
838
|
toInnerRadiusPointOf(t, matrix, to) {
|
|
832
839
|
to || (to = t);
|
|
833
840
|
toInnerPoint$2(matrix, t, to);
|
|
@@ -861,7 +868,7 @@ const PointHelper = {
|
|
|
861
868
|
return sqrt$4(x * x + y * y);
|
|
862
869
|
},
|
|
863
870
|
getMinDistanceFrom(x1, y1, x2, y2, x3, y3) {
|
|
864
|
-
return min$
|
|
871
|
+
return min$3(getDistanceFrom(x1, y1, x2, y2), getDistanceFrom(x2, y2, x3, y3));
|
|
865
872
|
},
|
|
866
873
|
getAngle(t, to) {
|
|
867
874
|
return getAtan2(t, to) / OneRadian;
|
|
@@ -895,7 +902,7 @@ const PointHelper = {
|
|
|
895
902
|
return points;
|
|
896
903
|
},
|
|
897
904
|
isSame(t, point) {
|
|
898
|
-
return t.x === point.x && t.y === point.y;
|
|
905
|
+
return float$4(t.x) === float$4(point.x) && float$4(t.y) === float$4(point.y);
|
|
899
906
|
},
|
|
900
907
|
reset(t) {
|
|
901
908
|
P$7.reset(t);
|
|
@@ -904,7 +911,7 @@ const PointHelper = {
|
|
|
904
911
|
|
|
905
912
|
const P$7 = PointHelper;
|
|
906
913
|
|
|
907
|
-
const {getDistanceFrom: getDistanceFrom, copy: copy$
|
|
914
|
+
const {getDistanceFrom: getDistanceFrom, copy: copy$c, setRadius: setRadius, getAtan2: getAtan2} = P$7;
|
|
908
915
|
|
|
909
916
|
class Point {
|
|
910
917
|
constructor(x, y) {
|
|
@@ -979,7 +986,7 @@ class Point {
|
|
|
979
986
|
}
|
|
980
987
|
}
|
|
981
988
|
|
|
982
|
-
const tempPoint$
|
|
989
|
+
const tempPoint$4 = new Point;
|
|
983
990
|
|
|
984
991
|
class Matrix {
|
|
985
992
|
constructor(a, b, c, d, e, f) {
|
|
@@ -1250,7 +1257,7 @@ const {tempPointBounds: tempPointBounds$1, setPoint: setPoint$5, addPoint: addPo
|
|
|
1250
1257
|
|
|
1251
1258
|
const {toOuterPoint: toOuterPoint$2} = MatrixHelper;
|
|
1252
1259
|
|
|
1253
|
-
const {float: float$
|
|
1260
|
+
const {float: float$3, fourNumber: fourNumber$1} = MathHelper;
|
|
1254
1261
|
|
|
1255
1262
|
const {floor: floor$1, ceil: ceil$2} = Math;
|
|
1256
1263
|
|
|
@@ -1315,7 +1322,7 @@ const BoundsHelper = {
|
|
|
1315
1322
|
return t;
|
|
1316
1323
|
},
|
|
1317
1324
|
toOffsetOutBounds(t, to, offsetBounds) {
|
|
1318
|
-
if (!to) to = t; else copy$
|
|
1325
|
+
if (!to) to = t; else copy$b(to, t);
|
|
1319
1326
|
if (!offsetBounds) offsetBounds = t;
|
|
1320
1327
|
to.offsetX = B.maxX(offsetBounds);
|
|
1321
1328
|
to.offsetY = B.maxY(offsetBounds);
|
|
@@ -1425,10 +1432,10 @@ const BoundsHelper = {
|
|
|
1425
1432
|
}
|
|
1426
1433
|
},
|
|
1427
1434
|
float(t, maxLength) {
|
|
1428
|
-
t.x = float$
|
|
1429
|
-
t.y = float$
|
|
1430
|
-
t.width = float$
|
|
1431
|
-
t.height = float$
|
|
1435
|
+
t.x = float$3(t.x, maxLength);
|
|
1436
|
+
t.y = float$3(t.y, maxLength);
|
|
1437
|
+
t.width = float$3(t.width, maxLength);
|
|
1438
|
+
t.height = float$3(t.height, maxLength);
|
|
1432
1439
|
},
|
|
1433
1440
|
add(t, bounds, isPoint) {
|
|
1434
1441
|
right$4 = t.x + t.width;
|
|
@@ -1462,7 +1469,7 @@ const BoundsHelper = {
|
|
|
1462
1469
|
if (bounds && (bounds.width || bounds.height)) {
|
|
1463
1470
|
if (first) {
|
|
1464
1471
|
first = false;
|
|
1465
|
-
if (!addMode) copy$
|
|
1472
|
+
if (!addMode) copy$b(t, bounds);
|
|
1466
1473
|
} else {
|
|
1467
1474
|
add$2(t, bounds);
|
|
1468
1475
|
}
|
|
@@ -1549,7 +1556,7 @@ const BoundsHelper = {
|
|
|
1549
1556
|
|
|
1550
1557
|
const B = BoundsHelper;
|
|
1551
1558
|
|
|
1552
|
-
const {add: add$2, copy: copy$
|
|
1559
|
+
const {add: add$2, copy: copy$b} = B;
|
|
1553
1560
|
|
|
1554
1561
|
class Bounds {
|
|
1555
1562
|
get minX() {
|
|
@@ -2247,7 +2254,7 @@ __decorate([ contextMethod() ], Canvas$1.prototype, "measureText", null);
|
|
|
2247
2254
|
|
|
2248
2255
|
__decorate([ contextMethod() ], Canvas$1.prototype, "strokeText", null);
|
|
2249
2256
|
|
|
2250
|
-
const {copy: copy$
|
|
2257
|
+
const {copy: copy$a, multiplyParent: multiplyParent$4, pixelScale: pixelScale} = MatrixHelper, {round: round$4} = Math, tempPixelBounds = new Bounds, tempPixelBounds2 = new Bounds;
|
|
2251
2258
|
|
|
2252
2259
|
const minSize = {
|
|
2253
2260
|
width: 1,
|
|
@@ -2407,7 +2414,7 @@ class LeaferCanvasBase extends Canvas$1 {
|
|
|
2407
2414
|
const {pixelRatio: pixelRatio} = this;
|
|
2408
2415
|
this.filter = `blur(${blur * pixelRatio}px)`;
|
|
2409
2416
|
}
|
|
2410
|
-
copyWorld(canvas, from, to, blendMode, ceilPixel
|
|
2417
|
+
copyWorld(canvas, from, to, blendMode, ceilPixel) {
|
|
2411
2418
|
if (blendMode) this.blendMode = blendMode;
|
|
2412
2419
|
if (from) {
|
|
2413
2420
|
this.setTempPixelBounds(from, ceilPixel);
|
|
@@ -2418,7 +2425,7 @@ class LeaferCanvasBase extends Canvas$1 {
|
|
|
2418
2425
|
}
|
|
2419
2426
|
if (blendMode) this.blendMode = "source-over";
|
|
2420
2427
|
}
|
|
2421
|
-
copyWorldToInner(canvas, fromWorld, toInnerBounds, blendMode, ceilPixel
|
|
2428
|
+
copyWorldToInner(canvas, fromWorld, toInnerBounds, blendMode, ceilPixel) {
|
|
2422
2429
|
if (fromWorld.b || fromWorld.c) {
|
|
2423
2430
|
this.save();
|
|
2424
2431
|
this.resetTransform();
|
|
@@ -2431,7 +2438,7 @@ class LeaferCanvasBase extends Canvas$1 {
|
|
|
2431
2438
|
if (blendMode) this.blendMode = "source-over";
|
|
2432
2439
|
}
|
|
2433
2440
|
}
|
|
2434
|
-
copyWorldByReset(canvas, from, to, blendMode, onlyResetTransform, ceilPixel
|
|
2441
|
+
copyWorldByReset(canvas, from, to, blendMode, onlyResetTransform, ceilPixel) {
|
|
2435
2442
|
this.resetTransform();
|
|
2436
2443
|
this.copyWorld(canvas, from, to, blendMode, ceilPixel);
|
|
2437
2444
|
if (!onlyResetTransform) this.useWorldTransform();
|
|
@@ -2501,7 +2508,7 @@ class LeaferCanvasBase extends Canvas$1 {
|
|
|
2501
2508
|
getSameCanvas(useSameWorldTransform, useSameSmooth) {
|
|
2502
2509
|
const {size: size, pixelSnap: pixelSnap} = this, canvas = this.manager ? this.manager.get(size) : Creator.canvas(Object.assign({}, size));
|
|
2503
2510
|
canvas.save();
|
|
2504
|
-
if (useSameWorldTransform) copy$
|
|
2511
|
+
if (useSameWorldTransform) copy$a(canvas.worldTransform, this.worldTransform), canvas.useWorldTransform();
|
|
2505
2512
|
if (useSameSmooth) canvas.smooth = this.smooth;
|
|
2506
2513
|
canvas.pixelSnap !== pixelSnap && (canvas.pixelSnap = pixelSnap);
|
|
2507
2514
|
return canvas;
|
|
@@ -2642,7 +2649,7 @@ const RectHelper = {
|
|
|
2642
2649
|
}
|
|
2643
2650
|
};
|
|
2644
2651
|
|
|
2645
|
-
const {sin: sin$4, cos: cos$4, hypot: hypot, atan2: atan2$1, ceil: ceil$1, abs: abs$9, PI: PI$3, sqrt: sqrt$3, pow: pow$1} = Math;
|
|
2652
|
+
const {sin: sin$4, cos: cos$4, hypot: hypot$1, atan2: atan2$1, ceil: ceil$1, abs: abs$9, PI: PI$3, sqrt: sqrt$3, pow: pow$1} = Math;
|
|
2646
2653
|
|
|
2647
2654
|
const {setPoint: setPoint$4, addPoint: addPoint$2} = TwoPointBoundsHelper;
|
|
2648
2655
|
|
|
@@ -2650,7 +2657,7 @@ const {set: set$1, toNumberPoints: toNumberPoints$1} = PointHelper;
|
|
|
2650
2657
|
|
|
2651
2658
|
const {M: M$a, L: L$a, C: C$8, Q: Q$7, Z: Z$8} = PathCommandMap;
|
|
2652
2659
|
|
|
2653
|
-
const tempPoint$
|
|
2660
|
+
const tempPoint$3 = {};
|
|
2654
2661
|
|
|
2655
2662
|
const BezierHelper = {
|
|
2656
2663
|
points(data, originPoints, curve, close) {
|
|
@@ -2658,7 +2665,7 @@ const BezierHelper = {
|
|
|
2658
2665
|
data.push(M$a, points[0], points[1]);
|
|
2659
2666
|
if (curve && points.length > 5) {
|
|
2660
2667
|
let aX, aY, bX, bY, cX, cY, c1X, c1Y, c2X, c2Y;
|
|
2661
|
-
let ba, cb, d, len = points.length;
|
|
2668
|
+
let baX, baY, ba, cb, d, len = points.length;
|
|
2662
2669
|
const t = curve === true ? .5 : curve;
|
|
2663
2670
|
if (close) {
|
|
2664
2671
|
points = [ points[len - 2], points[len - 1], ...points, points[0], points[1], points[2], points[3] ];
|
|
@@ -2671,7 +2678,9 @@ const BezierHelper = {
|
|
|
2671
2678
|
bY = points[i + 1];
|
|
2672
2679
|
cX = points[i + 2];
|
|
2673
2680
|
cY = points[i + 3];
|
|
2674
|
-
|
|
2681
|
+
baX = bX - aX;
|
|
2682
|
+
baY = bY - aY;
|
|
2683
|
+
ba = sqrt$3(pow$1(baX, 2) + pow$1(baY, 2));
|
|
2675
2684
|
cb = sqrt$3(pow$1(cX - bX, 2) + pow$1(cY - bY, 2));
|
|
2676
2685
|
if (!ba && !cb) continue;
|
|
2677
2686
|
d = ba + cb;
|
|
@@ -2684,7 +2693,7 @@ const BezierHelper = {
|
|
|
2684
2693
|
if (i === 2) {
|
|
2685
2694
|
if (!close) data.push(Q$7, c1X, c1Y, bX, bY);
|
|
2686
2695
|
} else {
|
|
2687
|
-
data.push(C$8, c2X, c2Y, c1X, c1Y, bX, bY);
|
|
2696
|
+
if (baX || baY) data.push(C$8, c2X, c2Y, c1X, c1Y, bX, bY);
|
|
2688
2697
|
}
|
|
2689
2698
|
c2X = bX + cb * cX;
|
|
2690
2699
|
c2Y = bY + cb * cY;
|
|
@@ -2713,8 +2722,8 @@ const BezierHelper = {
|
|
|
2713
2722
|
const CBy = toY - y1;
|
|
2714
2723
|
let startRadian = atan2$1(BAy, BAx);
|
|
2715
2724
|
let endRadian = atan2$1(CBy, CBx);
|
|
2716
|
-
const lenBA = hypot(BAx, BAy);
|
|
2717
|
-
const lenCB = hypot(CBx, CBy);
|
|
2725
|
+
const lenBA = hypot$1(BAx, BAy);
|
|
2726
|
+
const lenCB = hypot$1(CBx, CBy);
|
|
2718
2727
|
let totalRadian = endRadian - startRadian;
|
|
2719
2728
|
if (totalRadian < 0) totalRadian += PI2;
|
|
2720
2729
|
if (lenBA < 1e-12 || lenCB < 1e-12 || totalRadian < 1e-12 || abs$9(totalRadian - PI$3) < 1e-12) {
|
|
@@ -2819,8 +2828,8 @@ const BezierHelper = {
|
|
|
2819
2828
|
addMode ? addPoint$2(pointBounds, fromX, fromY) : setPoint$4(pointBounds, fromX, fromY);
|
|
2820
2829
|
addPoint$2(pointBounds, toX, toY);
|
|
2821
2830
|
for (let i = 0, len = tList.length; i < len; i++) {
|
|
2822
|
-
getPointAndSet(tList[i], fromX, fromY, x1, y1, x2, y2, toX, toY, tempPoint$
|
|
2823
|
-
addPoint$2(pointBounds, tempPoint$
|
|
2831
|
+
getPointAndSet(tList[i], fromX, fromY, x1, y1, x2, y2, toX, toY, tempPoint$3);
|
|
2832
|
+
addPoint$2(pointBounds, tempPoint$3.x, tempPoint$3.y);
|
|
2824
2833
|
}
|
|
2825
2834
|
},
|
|
2826
2835
|
getPointAndSet(t, fromX, fromY, x1, y1, x2, y2, toX, toY, setPoint) {
|
|
@@ -3230,7 +3239,7 @@ const {M: M$8, L: L$8, C: C$6, Q: Q$5, Z: Z$6, N: N$4, D: D$5, X: X$4, G: G$4, F
|
|
|
3230
3239
|
|
|
3231
3240
|
const {getMinDistanceFrom: getMinDistanceFrom, getRadianFrom: getRadianFrom} = PointHelper;
|
|
3232
3241
|
|
|
3233
|
-
const {tan: tan, min: min$
|
|
3242
|
+
const {tan: tan, min: min$2, abs: abs$8} = Math;
|
|
3234
3243
|
|
|
3235
3244
|
const startPoint = {};
|
|
3236
3245
|
|
|
@@ -3269,6 +3278,7 @@ const PathCommandDataHelper = {
|
|
|
3269
3278
|
}
|
|
3270
3279
|
},
|
|
3271
3280
|
ellipse(data, x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise) {
|
|
3281
|
+
if (radiusX === radiusY) return arc$2(data, x, y, radiusX, startAngle, endAngle, anticlockwise);
|
|
3272
3282
|
if (isNull(rotation)) {
|
|
3273
3283
|
data.push(F$5, x, y, radiusX, radiusY);
|
|
3274
3284
|
} else {
|
|
@@ -3281,6 +3291,7 @@ const PathCommandDataHelper = {
|
|
|
3281
3291
|
if (isNull(startAngle)) {
|
|
3282
3292
|
data.push(P$4, x, y, radius);
|
|
3283
3293
|
} else {
|
|
3294
|
+
if (isNull(startAngle)) startAngle = 0;
|
|
3284
3295
|
if (isNull(endAngle)) endAngle = 360;
|
|
3285
3296
|
data.push(O$5, x, y, radius, startAngle, endAngle, anticlockwise ? 1 : 0);
|
|
3286
3297
|
}
|
|
@@ -3288,7 +3299,7 @@ const PathCommandDataHelper = {
|
|
|
3288
3299
|
arcTo(data, x1, y1, x2, y2, radius, lastX, lastY) {
|
|
3289
3300
|
if (!isUndefined(lastX)) {
|
|
3290
3301
|
const d = getMinDistanceFrom(lastX, lastY, x1, y1, x2, y2);
|
|
3291
|
-
radius = min$
|
|
3302
|
+
radius = min$2(radius, min$2(d / 2, d / 2 * abs$8(tan(getRadianFrom(lastX, lastY, x1, y1, x2, y2) / 2))));
|
|
3292
3303
|
}
|
|
3293
3304
|
data.push(U$4, x1, y1, x2, y2, radius);
|
|
3294
3305
|
},
|
|
@@ -3490,7 +3501,7 @@ const {M: M$6, L: L$6, C: C$4, Q: Q$3, Z: Z$4, N: N$2, D: D$3, X: X$2, G: G$2, F
|
|
|
3490
3501
|
|
|
3491
3502
|
const {toTwoPointBounds: toTwoPointBounds, toTwoPointBoundsByQuadraticCurve: toTwoPointBoundsByQuadraticCurve, arcTo: arcTo$1, arc: arc, ellipse: ellipse$1} = BezierHelper;
|
|
3492
3503
|
|
|
3493
|
-
const {addPointBounds: addPointBounds, copy: copy$
|
|
3504
|
+
const {addPointBounds: addPointBounds, copy: copy$9, addPoint: addPoint$1, setPoint: setPoint$3, addBounds: addBounds, toBounds: toBounds$2} = TwoPointBoundsHelper;
|
|
3494
3505
|
|
|
3495
3506
|
const debug$d = Debug.get("PathBounds");
|
|
3496
3507
|
|
|
@@ -3572,7 +3583,7 @@ const PathBounds = {
|
|
|
3572
3583
|
|
|
3573
3584
|
case G$2:
|
|
3574
3585
|
ellipse$1(null, data[i + 1], data[i + 2], data[i + 3], data[i + 4], data[i + 5], data[i + 6], data[i + 7], data[i + 8], tempPointBounds, setEndPoint);
|
|
3575
|
-
i === 0 ? copy$
|
|
3586
|
+
i === 0 ? copy$9(setPointBounds, tempPointBounds) : addPointBounds(setPointBounds, tempPointBounds);
|
|
3576
3587
|
x = setEndPoint.x;
|
|
3577
3588
|
y = setEndPoint.y;
|
|
3578
3589
|
i += 9;
|
|
@@ -3590,7 +3601,7 @@ const PathBounds = {
|
|
|
3590
3601
|
|
|
3591
3602
|
case O$3:
|
|
3592
3603
|
arc(null, data[i + 1], data[i + 2], data[i + 3], data[i + 4], data[i + 5], data[i + 6], tempPointBounds, setEndPoint);
|
|
3593
|
-
i === 0 ? copy$
|
|
3604
|
+
i === 0 ? copy$9(setPointBounds, tempPointBounds) : addPointBounds(setPointBounds, tempPointBounds);
|
|
3594
3605
|
x = setEndPoint.x;
|
|
3595
3606
|
y = setEndPoint.y;
|
|
3596
3607
|
i += 7;
|
|
@@ -3607,7 +3618,7 @@ const PathBounds = {
|
|
|
3607
3618
|
|
|
3608
3619
|
case U$2:
|
|
3609
3620
|
arcTo$1(null, x, y, data[i + 1], data[i + 2], data[i + 3], data[i + 4], data[i + 5], tempPointBounds, setEndPoint);
|
|
3610
|
-
i === 0 ? copy$
|
|
3621
|
+
i === 0 ? copy$9(setPointBounds, tempPointBounds) : addPointBounds(setPointBounds, tempPointBounds);
|
|
3611
3622
|
x = setEndPoint.x;
|
|
3612
3623
|
y = setEndPoint.y;
|
|
3613
3624
|
i += 6;
|
|
@@ -3631,6 +3642,7 @@ const PathCorner = {
|
|
|
3631
3642
|
smooth(data, cornerRadius, _cornerSmoothing) {
|
|
3632
3643
|
let command, lastCommand, commandLen;
|
|
3633
3644
|
let i = 0, x = 0, y = 0, startX = 0, startY = 0, secondX = 0, secondY = 0, lastX = 0, lastY = 0;
|
|
3645
|
+
if (isArray(cornerRadius)) cornerRadius = cornerRadius[0] || 0;
|
|
3634
3646
|
const len = data.length;
|
|
3635
3647
|
const smooth = [];
|
|
3636
3648
|
while (i < len) {
|
|
@@ -4046,7 +4058,9 @@ const R = Resource;
|
|
|
4046
4058
|
const ImageManager = {
|
|
4047
4059
|
maxRecycled: 10,
|
|
4048
4060
|
recycledList: [],
|
|
4049
|
-
patternTasker: new TaskProcessor
|
|
4061
|
+
patternTasker: new TaskProcessor({
|
|
4062
|
+
parallel: 1
|
|
4063
|
+
}),
|
|
4050
4064
|
get(config) {
|
|
4051
4065
|
let image = Resource.get(config.url);
|
|
4052
4066
|
if (!image) Resource.set(config.url, image = Creator.image(config));
|
|
@@ -4627,7 +4641,7 @@ function registerUIEvent() {
|
|
|
4627
4641
|
};
|
|
4628
4642
|
}
|
|
4629
4643
|
|
|
4630
|
-
const {copy: copy$
|
|
4644
|
+
const {copy: copy$8, toInnerPoint: toInnerPoint$1, toOuterPoint: toOuterPoint$1, scaleOfOuter: scaleOfOuter$2, rotateOfOuter: rotateOfOuter$2, skewOfOuter: skewOfOuter, multiplyParent: multiplyParent$3, divideParent: divideParent, getLayout: getLayout} = MatrixHelper;
|
|
4631
4645
|
|
|
4632
4646
|
const matrix$3 = {}, {round: round$3} = Math;
|
|
4633
4647
|
|
|
@@ -4725,7 +4739,7 @@ const LeafHelper = {
|
|
|
4725
4739
|
if (scaleY) transition = scaleY;
|
|
4726
4740
|
scaleY = scaleX;
|
|
4727
4741
|
}
|
|
4728
|
-
copy$
|
|
4742
|
+
copy$8(matrix$3, o);
|
|
4729
4743
|
scaleOfOuter$2(matrix$3, origin, scaleX, scaleY);
|
|
4730
4744
|
if (L$4.hasHighPosition(t)) {
|
|
4731
4745
|
L$4.setTransform(t, matrix$3, resize, transition);
|
|
@@ -4744,7 +4758,7 @@ const LeafHelper = {
|
|
|
4744
4758
|
},
|
|
4745
4759
|
rotateOfLocal(t, origin, angle, transition) {
|
|
4746
4760
|
const o = t.__localMatrix;
|
|
4747
|
-
copy$
|
|
4761
|
+
copy$8(matrix$3, o);
|
|
4748
4762
|
rotateOfOuter$2(matrix$3, origin, angle);
|
|
4749
4763
|
if (L$4.hasHighPosition(t)) L$4.setTransform(t, matrix$3, false, transition); else t.set({
|
|
4750
4764
|
x: t.x + matrix$3.e - o.e,
|
|
@@ -4756,18 +4770,18 @@ const LeafHelper = {
|
|
|
4756
4770
|
L$4.skewOfLocal(t, getTempLocal(t, origin), skewX, skewY, resize, transition);
|
|
4757
4771
|
},
|
|
4758
4772
|
skewOfLocal(t, origin, skewX, skewY = 0, resize, transition) {
|
|
4759
|
-
copy$
|
|
4773
|
+
copy$8(matrix$3, t.__localMatrix);
|
|
4760
4774
|
skewOfOuter(matrix$3, origin, skewX, skewY);
|
|
4761
4775
|
L$4.setTransform(t, matrix$3, resize, transition);
|
|
4762
4776
|
},
|
|
4763
4777
|
transformWorld(t, transform, resize, transition) {
|
|
4764
|
-
copy$
|
|
4778
|
+
copy$8(matrix$3, t.worldTransform);
|
|
4765
4779
|
multiplyParent$3(matrix$3, transform);
|
|
4766
4780
|
if (t.parent) divideParent(matrix$3, t.parent.scrollWorldTransform);
|
|
4767
4781
|
L$4.setTransform(t, matrix$3, resize, transition);
|
|
4768
4782
|
},
|
|
4769
4783
|
transform(t, transform, resize, transition) {
|
|
4770
|
-
copy$
|
|
4784
|
+
copy$8(matrix$3, t.localTransform);
|
|
4771
4785
|
multiplyParent$3(matrix$3, transform);
|
|
4772
4786
|
L$4.setTransform(t, matrix$3, resize, transition);
|
|
4773
4787
|
},
|
|
@@ -4805,7 +4819,7 @@ const LeafHelper = {
|
|
|
4805
4819
|
return innerOrigin;
|
|
4806
4820
|
},
|
|
4807
4821
|
getRelativeWorld(t, relative, temp) {
|
|
4808
|
-
copy$
|
|
4822
|
+
copy$8(matrix$3, t.worldTransform);
|
|
4809
4823
|
divideParent(matrix$3, relative.scrollWorldTransform);
|
|
4810
4824
|
return temp ? matrix$3 : Object.assign({}, matrix$3);
|
|
4811
4825
|
},
|
|
@@ -5013,7 +5027,7 @@ const WaitHelper = {
|
|
|
5013
5027
|
|
|
5014
5028
|
const {getRelativeWorld: getRelativeWorld$1, updateBounds: updateBounds$3} = LeafHelper;
|
|
5015
5029
|
|
|
5016
|
-
const {toOuterOf: toOuterOf$3, getPoints: getPoints, copy: copy$
|
|
5030
|
+
const {toOuterOf: toOuterOf$3, getPoints: getPoints, copy: copy$7} = BoundsHelper;
|
|
5017
5031
|
|
|
5018
5032
|
const localContent = "_localContentBounds";
|
|
5019
5033
|
|
|
@@ -5252,7 +5266,7 @@ class LeafLayout {
|
|
|
5252
5266
|
matrix = getRelativeWorld$1(leaf, relative, true);
|
|
5253
5267
|
}
|
|
5254
5268
|
if (!layoutBounds) layoutBounds = MatrixHelper.getLayout(matrix);
|
|
5255
|
-
copy$
|
|
5269
|
+
copy$7(layoutBounds, bounds);
|
|
5256
5270
|
PointHelper.copy(layoutBounds, point);
|
|
5257
5271
|
if (unscale) {
|
|
5258
5272
|
const {scaleX: scaleX, scaleY: scaleY} = layoutBounds;
|
|
@@ -5874,7 +5888,7 @@ const LeafDataProxy = {
|
|
|
5874
5888
|
|
|
5875
5889
|
const {setLayout: setLayout, multiplyParent: multiplyParent$2, translateInner: translateInner, defaultWorld: defaultWorld} = MatrixHelper;
|
|
5876
5890
|
|
|
5877
|
-
const {toPoint: toPoint$4, tempPoint: tempPoint$
|
|
5891
|
+
const {toPoint: toPoint$4, tempPoint: tempPoint$2} = AroundHelper;
|
|
5878
5892
|
|
|
5879
5893
|
const LeafMatrix = {
|
|
5880
5894
|
__updateWorldMatrix() {
|
|
@@ -5894,8 +5908,8 @@ const LeafMatrix = {
|
|
|
5894
5908
|
local.e = data.x + data.offsetX;
|
|
5895
5909
|
local.f = data.y + data.offsetY;
|
|
5896
5910
|
if (data.around || data.origin) {
|
|
5897
|
-
toPoint$4(data.around || data.origin, layout.boxBounds, tempPoint$
|
|
5898
|
-
translateInner(local, -tempPoint$
|
|
5911
|
+
toPoint$4(data.around || data.origin, layout.boxBounds, tempPoint$2);
|
|
5912
|
+
translateInner(local, -tempPoint$2.x, -tempPoint$2.y, !data.around);
|
|
5899
5913
|
}
|
|
5900
5914
|
}
|
|
5901
5915
|
this.__layout.matrixChanged = undefined;
|
|
@@ -5906,7 +5920,7 @@ const {updateMatrix: updateMatrix$3, updateAllMatrix: updateAllMatrix$3} = LeafH
|
|
|
5906
5920
|
|
|
5907
5921
|
const {updateBounds: updateBounds$2} = BranchHelper;
|
|
5908
5922
|
|
|
5909
|
-
const {toOuterOf: toOuterOf$2, copyAndSpread: copyAndSpread$3, copy: copy$
|
|
5923
|
+
const {toOuterOf: toOuterOf$2, copyAndSpread: copyAndSpread$3, copy: copy$6} = BoundsHelper;
|
|
5910
5924
|
|
|
5911
5925
|
const {toBounds: toBounds$1} = PathBounds;
|
|
5912
5926
|
|
|
@@ -6017,7 +6031,7 @@ const LeafBounds = {
|
|
|
6017
6031
|
},
|
|
6018
6032
|
__updateRenderBounds(_bounds) {
|
|
6019
6033
|
const layout = this.__layout, {renderSpread: renderSpread} = layout;
|
|
6020
|
-
isNumber(renderSpread) && renderSpread <= 0 ? copy$
|
|
6034
|
+
isNumber(renderSpread) && renderSpread <= 0 ? copy$6(layout.renderBounds, layout.strokeBounds) : copyAndSpread$3(layout.renderBounds, layout.boxBounds, renderSpread);
|
|
6021
6035
|
}
|
|
6022
6036
|
};
|
|
6023
6037
|
|
|
@@ -6122,7 +6136,7 @@ const {toInnerPoint: toInnerPoint, toOuterPoint: toOuterPoint, multiplyParent: m
|
|
|
6122
6136
|
|
|
6123
6137
|
const {toOuterOf: toOuterOf$1} = BoundsHelper;
|
|
6124
6138
|
|
|
6125
|
-
const {copy: copy$
|
|
6139
|
+
const {copy: copy$5, move: move$8} = PointHelper;
|
|
6126
6140
|
|
|
6127
6141
|
const {moveLocal: moveLocal, zoomOfLocal: zoomOfLocal, rotateOfLocal: rotateOfLocal, skewOfLocal: skewOfLocal, moveWorld: moveWorld, zoomOfWorld: zoomOfWorld, rotateOfWorld: rotateOfWorld, skewOfWorld: skewOfWorld, transform: transform, transformWorld: transformWorld, setTransform: setTransform, getFlipTransform: getFlipTransform, getLocalOrigin: getLocalOrigin, getRelativeWorld: getRelativeWorld, drop: drop} = LeafHelper;
|
|
6128
6142
|
|
|
@@ -6441,14 +6455,14 @@ let Leaf = class Leaf {
|
|
|
6441
6455
|
if (this.parent) {
|
|
6442
6456
|
this.parent.worldToInner(world, to, distance, relative);
|
|
6443
6457
|
} else {
|
|
6444
|
-
if (to) copy$
|
|
6458
|
+
if (to) copy$5(to, world);
|
|
6445
6459
|
}
|
|
6446
6460
|
}
|
|
6447
6461
|
localToWorld(local, to, distance, relative) {
|
|
6448
6462
|
if (this.parent) {
|
|
6449
6463
|
this.parent.innerToWorld(local, to, distance, relative);
|
|
6450
6464
|
} else {
|
|
6451
|
-
if (to) copy$
|
|
6465
|
+
if (to) copy$5(to, local);
|
|
6452
6466
|
}
|
|
6453
6467
|
}
|
|
6454
6468
|
worldToInner(world, to, distance, relative) {
|
|
@@ -6923,7 +6937,7 @@ class LeafLevelList {
|
|
|
6923
6937
|
}
|
|
6924
6938
|
}
|
|
6925
6939
|
|
|
6926
|
-
const version = "1.12.
|
|
6940
|
+
const version = "1.12.2";
|
|
6927
6941
|
|
|
6928
6942
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
6929
6943
|
get allowBackgroundColor() {
|
|
@@ -7572,6 +7586,10 @@ class Renderer {
|
|
|
7572
7586
|
|
|
7573
7587
|
Renderer.clipSpread = 10;
|
|
7574
7588
|
|
|
7589
|
+
const tempPoint$1 = {};
|
|
7590
|
+
|
|
7591
|
+
const {copyRadiusPoint: copyRadiusPoint$1} = PointHelper;
|
|
7592
|
+
|
|
7575
7593
|
const {hitRadiusPoint: hitRadiusPoint$1} = BoundsHelper;
|
|
7576
7594
|
|
|
7577
7595
|
class Picker {
|
|
@@ -7698,15 +7716,15 @@ class Picker {
|
|
|
7698
7716
|
this.eachFind(branch.children, branch.__onlyHitMask);
|
|
7699
7717
|
}
|
|
7700
7718
|
eachFind(children, hitMask) {
|
|
7701
|
-
let child, hit;
|
|
7719
|
+
let child, hit, data;
|
|
7702
7720
|
const {point: point} = this, len = children.length;
|
|
7703
7721
|
for (let i = len - 1; i > -1; i--) {
|
|
7704
|
-
child = children[i];
|
|
7705
|
-
if (!
|
|
7706
|
-
hit = child.
|
|
7722
|
+
child = children[i], data = child.__;
|
|
7723
|
+
if (!data.visible || hitMask && !data.mask) continue;
|
|
7724
|
+
hit = hitRadiusPoint$1(child.__world, data.hitRadius ? copyRadiusPoint$1(tempPoint$1, point, data.hitRadius) : point);
|
|
7707
7725
|
if (child.isBranch) {
|
|
7708
7726
|
if (hit || child.__ignoreHitWorld) {
|
|
7709
|
-
if (child.isBranchLeaf &&
|
|
7727
|
+
if (child.isBranchLeaf && data.__clipAfterFill && !child.__hitWorld(point, true)) continue;
|
|
7710
7728
|
if (child.topChildren) this.eachFind(child.topChildren, false);
|
|
7711
7729
|
this.eachFind(child.children, child.__onlyHitMask);
|
|
7712
7730
|
if (child.isBranchLeaf) this.hitChild(child, point);
|
|
@@ -8193,7 +8211,7 @@ class CanvasData extends RectData {
|
|
|
8193
8211
|
}
|
|
8194
8212
|
}
|
|
8195
8213
|
|
|
8196
|
-
const {max: max$
|
|
8214
|
+
const {max: max$4, add: add$1} = FourNumberHelper;
|
|
8197
8215
|
|
|
8198
8216
|
const UIBounds = {
|
|
8199
8217
|
__updateStrokeSpread() {
|
|
@@ -8209,7 +8227,7 @@ const UIBounds = {
|
|
|
8209
8227
|
}
|
|
8210
8228
|
if (data.__useArrow) spread += strokeWidth * 5;
|
|
8211
8229
|
if (box) {
|
|
8212
|
-
spread = max$
|
|
8230
|
+
spread = max$4(spread, box.__layout.strokeSpread = box.__updateStrokeSpread());
|
|
8213
8231
|
boxSpread = Math.max(boxSpread, box.__layout.strokeBoxSpread);
|
|
8214
8232
|
}
|
|
8215
8233
|
this.__layout.strokeBoxSpread = boxSpread;
|
|
@@ -8219,15 +8237,15 @@ const UIBounds = {
|
|
|
8219
8237
|
let spread = 0;
|
|
8220
8238
|
const {shadow: shadow, innerShadow: innerShadow, blur: blur, backgroundBlur: backgroundBlur, filter: filter, renderSpread: renderSpread} = this.__, {strokeSpread: strokeSpread} = this.__layout, box = this.__box;
|
|
8221
8239
|
if (shadow) spread = Effect.getShadowRenderSpread(this, shadow);
|
|
8222
|
-
if (blur) spread = max$
|
|
8240
|
+
if (blur) spread = max$4(spread, blur);
|
|
8223
8241
|
if (filter) spread = add$1(spread, Filter.getSpread(filter));
|
|
8224
8242
|
if (renderSpread) spread = add$1(spread, renderSpread);
|
|
8225
8243
|
if (strokeSpread) spread = add$1(spread, strokeSpread);
|
|
8226
8244
|
let shapeSpread = spread;
|
|
8227
|
-
if (innerShadow) shapeSpread = max$
|
|
8228
|
-
if (backgroundBlur) shapeSpread = max$
|
|
8245
|
+
if (innerShadow) shapeSpread = max$4(shapeSpread, Effect.getInnerShadowSpread(this, innerShadow));
|
|
8246
|
+
if (backgroundBlur) shapeSpread = max$4(shapeSpread, backgroundBlur);
|
|
8229
8247
|
this.__layout.renderShapeSpread = shapeSpread;
|
|
8230
|
-
return box ? max$
|
|
8248
|
+
return box ? max$4(box.__updateRenderSpread(), spread) : spread;
|
|
8231
8249
|
}
|
|
8232
8250
|
};
|
|
8233
8251
|
|
|
@@ -8283,7 +8301,7 @@ const UIRender = {
|
|
|
8283
8301
|
if (stroke && !__fillAfterStroke) data.__isStrokes ? Paint.strokes(stroke, this, canvas, options) : Paint.stroke(stroke, this, canvas, options);
|
|
8284
8302
|
}
|
|
8285
8303
|
} else {
|
|
8286
|
-
if (data.
|
|
8304
|
+
if (data.__pathForRender) drawFast(this, canvas, options); else this.__drawFast(canvas, options);
|
|
8287
8305
|
}
|
|
8288
8306
|
},
|
|
8289
8307
|
__drawShape(canvas, options) {
|
|
@@ -8407,7 +8425,7 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
8407
8425
|
getPath(curve, pathForRender) {
|
|
8408
8426
|
this.__layout.update();
|
|
8409
8427
|
let path = pathForRender ? this.__.__pathForRender : this.__.path;
|
|
8410
|
-
if (!path) pen.set(path = []), this.__drawPathByBox(pen);
|
|
8428
|
+
if (!path) pen.set(path = []), this.__drawPathByBox(pen, !pathForRender);
|
|
8411
8429
|
return curve ? PathConvert.toCanvasData(path, true) : path;
|
|
8412
8430
|
}
|
|
8413
8431
|
getPathString(curve, pathForRender, floatLength) {
|
|
@@ -8435,17 +8453,18 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
8435
8453
|
}
|
|
8436
8454
|
__drawPath(canvas) {
|
|
8437
8455
|
canvas.beginPath();
|
|
8438
|
-
this.__drawPathByData(canvas, this.__.path);
|
|
8456
|
+
this.__drawPathByData(canvas, this.__.path, true);
|
|
8439
8457
|
}
|
|
8440
|
-
__drawPathByData(drawer, data) {
|
|
8441
|
-
data ? PathDrawer.drawPathByData(drawer, data) : this.__drawPathByBox(drawer);
|
|
8458
|
+
__drawPathByData(drawer, data, ignoreCornerRadius) {
|
|
8459
|
+
data ? PathDrawer.drawPathByData(drawer, data) : this.__drawPathByBox(drawer, ignoreCornerRadius);
|
|
8442
8460
|
}
|
|
8443
|
-
__drawPathByBox(drawer) {
|
|
8461
|
+
__drawPathByBox(drawer, ignoreCornerRadius) {
|
|
8444
8462
|
const {x: x, y: y, width: width, height: height} = this.__layout.boxBounds;
|
|
8445
|
-
if (this.__.cornerRadius) {
|
|
8463
|
+
if (this.__.cornerRadius && !ignoreCornerRadius) {
|
|
8446
8464
|
const {cornerRadius: cornerRadius} = this.__;
|
|
8447
8465
|
drawer.roundRect(x, y, width, height, isNumber(cornerRadius) ? [ cornerRadius ] : cornerRadius);
|
|
8448
8466
|
} else drawer.rect(x, y, width, height);
|
|
8467
|
+
drawer.closePath();
|
|
8449
8468
|
}
|
|
8450
8469
|
drawImagePlaceholder(_paint, canvas, renderOptions) {
|
|
8451
8470
|
Paint.fill(this.__.placeholderColor, this, canvas, renderOptions);
|
|
@@ -8714,6 +8733,9 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
8714
8733
|
get layoutLocked() {
|
|
8715
8734
|
return !this.layouter.running;
|
|
8716
8735
|
}
|
|
8736
|
+
get view() {
|
|
8737
|
+
return this.canvas && this.canvas.view;
|
|
8738
|
+
}
|
|
8717
8739
|
get FPS() {
|
|
8718
8740
|
return this.renderer ? this.renderer.FPS : 60;
|
|
8719
8741
|
}
|
|
@@ -8765,7 +8787,6 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
8765
8787
|
this.__controllers.push(this.renderer = Creator.renderer(this, canvas, config), this.watcher = Creator.watcher(this, config), this.layouter = Creator.layouter(this, config));
|
|
8766
8788
|
if (this.isApp) this.__setApp();
|
|
8767
8789
|
this.__checkAutoLayout();
|
|
8768
|
-
this.view = canvas.view;
|
|
8769
8790
|
if (!parentApp) {
|
|
8770
8791
|
this.selector = Creator.selector(this);
|
|
8771
8792
|
this.interaction = Creator.interaction(this, canvas, this.selector, config);
|
|
@@ -9045,7 +9066,7 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
9045
9066
|
if (this.canvasManager) this.canvasManager.destroy();
|
|
9046
9067
|
}
|
|
9047
9068
|
if (this.canvas) this.canvas.destroy();
|
|
9048
|
-
this.config.view = this.
|
|
9069
|
+
this.config.view = this.parentApp = null;
|
|
9049
9070
|
if (this.userConfig) this.userConfig.view = null;
|
|
9050
9071
|
super.destroy();
|
|
9051
9072
|
setTimeout(() => {
|
|
@@ -9229,7 +9250,6 @@ let Ellipse = class Ellipse extends UI {
|
|
|
9229
9250
|
if (startAngle || endAngle) {
|
|
9230
9251
|
if (innerRadius < 1) ellipse(path, rx, ry, rx * innerRadius, ry * innerRadius, 0, startAngle, endAngle, false);
|
|
9231
9252
|
ellipse(path, rx, ry, rx, ry, 0, endAngle, startAngle, true);
|
|
9232
|
-
if (innerRadius < 1) closePath$2(path);
|
|
9233
9253
|
} else {
|
|
9234
9254
|
if (innerRadius < 1) {
|
|
9235
9255
|
ellipse(path, rx, ry, rx * innerRadius, ry * innerRadius);
|
|
@@ -9237,16 +9257,16 @@ let Ellipse = class Ellipse extends UI {
|
|
|
9237
9257
|
}
|
|
9238
9258
|
ellipse(path, rx, ry, rx, ry, 0, 360, 0, true);
|
|
9239
9259
|
}
|
|
9240
|
-
if (Platform.ellipseToCurve) this.__.path = this.getPath(true);
|
|
9241
9260
|
} else {
|
|
9242
9261
|
if (startAngle || endAngle) {
|
|
9243
9262
|
moveTo$3(path, rx, ry);
|
|
9244
9263
|
ellipse(path, rx, ry, rx, ry, 0, startAngle, endAngle, false);
|
|
9245
|
-
closePath$2(path);
|
|
9246
9264
|
} else {
|
|
9247
9265
|
ellipse(path, rx, ry, rx, ry);
|
|
9248
9266
|
}
|
|
9249
9267
|
}
|
|
9268
|
+
closePath$2(path);
|
|
9269
|
+
if (Platform.ellipseToCurve) this.__.path = this.getPath(true);
|
|
9250
9270
|
}
|
|
9251
9271
|
};
|
|
9252
9272
|
|
|
@@ -9897,7 +9917,7 @@ class UIEvent extends Event {
|
|
|
9897
9917
|
}
|
|
9898
9918
|
}
|
|
9899
9919
|
|
|
9900
|
-
const {min: min, max: max$
|
|
9920
|
+
const {min: min$1, max: max$3, abs: abs$7} = Math, {float: float$2, sign: sign$2} = MathHelper, {minX: minX, maxX: maxX, minY: minY, maxY: maxY} = BoundsHelper;
|
|
9901
9921
|
|
|
9902
9922
|
const tempContent = new Bounds, tempDragBounds = new Bounds;
|
|
9903
9923
|
|
|
@@ -9937,8 +9957,8 @@ const DragBoundsHelper = {
|
|
|
9937
9957
|
} else {
|
|
9938
9958
|
if (y < dragBounds.y) move.y += dragBounds.y - y; else if (bottom > boundsBottom) move.y += boundsBottom - bottom;
|
|
9939
9959
|
}
|
|
9940
|
-
move.x = float$
|
|
9941
|
-
move.y = float$
|
|
9960
|
+
move.x = float$2(move.x);
|
|
9961
|
+
move.y = float$2(move.y);
|
|
9942
9962
|
return move;
|
|
9943
9963
|
},
|
|
9944
9964
|
getValidScaleOf(content, dragBounds, dragBoundsType, origin, scale, lockRatio, change) {
|
|
@@ -9950,44 +9970,44 @@ const DragBoundsHelper = {
|
|
|
9950
9970
|
let correctScaleX = 1, correctScaleY = 1, aScale, bScale, aSize, bSize;
|
|
9951
9971
|
if (D$2.isInnerMode(content, dragBounds, dragBoundsType, "width")) {
|
|
9952
9972
|
if (scale.x < 0) tempContent.scaleOf(origin, correctScaleX = 1 / scale.x, 1);
|
|
9953
|
-
aSize = float$
|
|
9954
|
-
bSize = float$
|
|
9973
|
+
aSize = float$2(tempContent.minX - tempDragBounds.minX);
|
|
9974
|
+
bSize = float$2(tempDragBounds.maxX - tempContent.maxX);
|
|
9955
9975
|
aScale = originLeftScale && aSize > 0 ? 1 + aSize / (originLeftScale * tempContent.width) : 1;
|
|
9956
9976
|
bScale = originRightScale && bSize > 0 ? 1 + bSize / (originRightScale * tempContent.width) : 1;
|
|
9957
|
-
correctScaleX *= max$
|
|
9977
|
+
correctScaleX *= max$3(aScale, bScale);
|
|
9958
9978
|
} else {
|
|
9959
9979
|
if (scale.x < 0) {
|
|
9960
|
-
if (float$
|
|
9980
|
+
if (float$2(minX(content) - minX(dragBounds)) <= 0 || float$2(maxX(dragBounds) - maxX(content)) <= 0) tempContent.scaleOf(origin, correctScaleX = 1 / scale.x, 1);
|
|
9961
9981
|
tempContent.unsign();
|
|
9962
9982
|
}
|
|
9963
|
-
aSize = float$
|
|
9964
|
-
bSize = float$
|
|
9983
|
+
aSize = float$2(tempDragBounds.minX - tempContent.minX);
|
|
9984
|
+
bSize = float$2(tempContent.maxX - tempDragBounds.maxX);
|
|
9965
9985
|
aScale = originLeftScale && aSize > 0 ? 1 - aSize / (originLeftScale * tempContent.width) : 1;
|
|
9966
9986
|
bScale = originRightScale && bSize > 0 ? 1 - bSize / (originRightScale * tempContent.width) : 1;
|
|
9967
|
-
correctScaleX *= min(aScale, bScale);
|
|
9987
|
+
correctScaleX *= min$1(aScale, bScale);
|
|
9968
9988
|
}
|
|
9969
9989
|
if (D$2.isInnerMode(content, dragBounds, dragBoundsType, "height")) {
|
|
9970
9990
|
if (scale.y < 0) tempContent.scaleOf(origin, 1, correctScaleY = 1 / scale.y);
|
|
9971
|
-
aSize = float$
|
|
9972
|
-
bSize = float$
|
|
9991
|
+
aSize = float$2(tempContent.minY - tempDragBounds.minY);
|
|
9992
|
+
bSize = float$2(tempDragBounds.maxY - tempContent.maxY);
|
|
9973
9993
|
aScale = originTopScale && aSize > 0 ? 1 + aSize / (originTopScale * tempContent.height) : 1;
|
|
9974
9994
|
bScale = originBottomScale && bSize > 0 ? 1 + bSize / (originBottomScale * tempContent.height) : 1;
|
|
9975
|
-
correctScaleY *= max$
|
|
9995
|
+
correctScaleY *= max$3(aScale, bScale);
|
|
9976
9996
|
if (lockRatio) {
|
|
9977
|
-
aScale = max$
|
|
9997
|
+
aScale = max$3(abs$7(correctScaleX), abs$7(correctScaleY));
|
|
9978
9998
|
correctScaleX = sign$2(correctScaleX) * aScale;
|
|
9979
9999
|
correctScaleY = sign$2(correctScaleY) * aScale;
|
|
9980
10000
|
}
|
|
9981
10001
|
} else {
|
|
9982
10002
|
if (scale.y < 0) {
|
|
9983
|
-
if (float$
|
|
10003
|
+
if (float$2(minY(content) - minY(dragBounds)) <= 0 || float$2(maxY(dragBounds) - maxY(content)) <= 0) tempContent.scaleOf(origin, 1, correctScaleY = 1 / scale.y);
|
|
9984
10004
|
tempContent.unsign();
|
|
9985
10005
|
}
|
|
9986
|
-
aSize = float$
|
|
9987
|
-
bSize = float$
|
|
10006
|
+
aSize = float$2(tempDragBounds.minY - tempContent.minY);
|
|
10007
|
+
bSize = float$2(tempContent.maxY - tempDragBounds.maxY);
|
|
9988
10008
|
aScale = originTopScale && aSize > 0 ? 1 - aSize / (originTopScale * tempContent.height) : 1;
|
|
9989
10009
|
bScale = originBottomScale && bSize > 0 ? 1 - bSize / (originBottomScale * tempContent.height) : 1;
|
|
9990
|
-
correctScaleY *= min(aScale, bScale);
|
|
10010
|
+
correctScaleY *= min$1(aScale, bScale);
|
|
9991
10011
|
}
|
|
9992
10012
|
scale.x *= isFinite$1(correctScaleX) ? correctScaleX : 1;
|
|
9993
10013
|
scale.y *= isFinite$1(correctScaleY) ? correctScaleY : 1;
|
|
@@ -10136,6 +10156,8 @@ MoveEvent.START = "move.start";
|
|
|
10136
10156
|
|
|
10137
10157
|
MoveEvent.MOVE = "move";
|
|
10138
10158
|
|
|
10159
|
+
MoveEvent.DRAG_ANIMATE = "move.drag_animate";
|
|
10160
|
+
|
|
10139
10161
|
MoveEvent.END = "move.end";
|
|
10140
10162
|
|
|
10141
10163
|
MoveEvent = __decorate([ registerUIEvent() ], MoveEvent);
|
|
@@ -10234,6 +10256,7 @@ const InteractionHelper = {
|
|
|
10234
10256
|
ctrlKey: e.ctrlKey,
|
|
10235
10257
|
shiftKey: e.shiftKey,
|
|
10236
10258
|
metaKey: e.metaKey,
|
|
10259
|
+
time: Date.now(),
|
|
10237
10260
|
buttons: isUndefined(e.buttons) ? 1 : e.buttons === 0 ? pointerUpButtons : e.buttons,
|
|
10238
10261
|
origin: e
|
|
10239
10262
|
};
|
|
@@ -10269,6 +10292,7 @@ const {getDragEventData: getDragEventData, getDropEventData: getDropEventData, g
|
|
|
10269
10292
|
|
|
10270
10293
|
class Dragger {
|
|
10271
10294
|
constructor(interaction) {
|
|
10295
|
+
this.dragDataList = [];
|
|
10272
10296
|
this.interaction = interaction;
|
|
10273
10297
|
}
|
|
10274
10298
|
setDragData(data) {
|
|
@@ -10331,6 +10355,7 @@ class Dragger {
|
|
|
10331
10355
|
this.dragData = getDragEventData(downData, dragData, data);
|
|
10332
10356
|
if (throughPath) this.dragData.throughPath = throughPath;
|
|
10333
10357
|
this.dragData.path = path;
|
|
10358
|
+
this.dragDataList.push(this.dragData);
|
|
10334
10359
|
if (this.moving) {
|
|
10335
10360
|
data.moving = true;
|
|
10336
10361
|
this.dragData.moveType = "drag";
|
|
@@ -10381,9 +10406,9 @@ class Dragger {
|
|
|
10381
10406
|
interaction.emit(DragEvent.ENTER, data, path, dragEnterPath);
|
|
10382
10407
|
this.dragEnterPath = path;
|
|
10383
10408
|
}
|
|
10384
|
-
dragEnd(data
|
|
10409
|
+
dragEnd(data) {
|
|
10385
10410
|
if (!this.dragging && !this.moving) return;
|
|
10386
|
-
if (this.checkDragEndAnimate(data
|
|
10411
|
+
if (this.checkDragEndAnimate(data)) return;
|
|
10387
10412
|
this.dragEndReal(data);
|
|
10388
10413
|
}
|
|
10389
10414
|
dragEndReal(data) {
|
|
@@ -10425,11 +10450,13 @@ class Dragger {
|
|
|
10425
10450
|
}
|
|
10426
10451
|
dragReset() {
|
|
10427
10452
|
DragEvent.list = DragEvent.data = this.draggableList = this.dragData = this.downData = this.dragOverPath = this.dragEnterPath = null;
|
|
10453
|
+
this.dragDataList = [];
|
|
10428
10454
|
}
|
|
10429
10455
|
checkDragEndAnimate(_data, _speed) {
|
|
10430
10456
|
return false;
|
|
10431
10457
|
}
|
|
10432
10458
|
animate(_func, _off) {}
|
|
10459
|
+
stopAnimate() {}
|
|
10433
10460
|
checkDragOut(_data) {}
|
|
10434
10461
|
autoMoveOnDragOut(_data) {}
|
|
10435
10462
|
autoMoveCancel() {}
|
|
@@ -10823,6 +10850,9 @@ class InteractionBase {
|
|
|
10823
10850
|
this.pointerHover(hoverData);
|
|
10824
10851
|
}
|
|
10825
10852
|
}
|
|
10853
|
+
stopDragAnimate() {
|
|
10854
|
+
this.dragger.stopAnimate();
|
|
10855
|
+
}
|
|
10826
10856
|
updateDownData(data, options, merge) {
|
|
10827
10857
|
const {downData: downData} = this;
|
|
10828
10858
|
if (!data && downData) data = downData;
|
|
@@ -11006,7 +11036,7 @@ Platform.getSelector = function(leaf) {
|
|
|
11006
11036
|
return leaf.leafer ? leaf.leafer.selector : Platform.selector || (Platform.selector = Creator.selector());
|
|
11007
11037
|
};
|
|
11008
11038
|
|
|
11009
|
-
const {toInnerRadiusPointOf: toInnerRadiusPointOf,
|
|
11039
|
+
const {toInnerRadiusPointOf: toInnerRadiusPointOf, copyRadiusPoint: copyRadiusPoint} = PointHelper;
|
|
11010
11040
|
|
|
11011
11041
|
const {hitRadiusPoint: hitRadiusPoint, hitPoint: hitPoint} = BoundsHelper;
|
|
11012
11042
|
|
|
@@ -11016,8 +11046,7 @@ const leaf$1 = Leaf.prototype;
|
|
|
11016
11046
|
|
|
11017
11047
|
leaf$1.hit = function(worldPoint, hitRadius = 0) {
|
|
11018
11048
|
this.updateLayout();
|
|
11019
|
-
|
|
11020
|
-
setRadius(worldRadiusPoint, hitRadius);
|
|
11049
|
+
copyRadiusPoint(worldRadiusPoint, worldPoint, hitRadius);
|
|
11021
11050
|
const world = this.__world;
|
|
11022
11051
|
if (hitRadius ? !hitRadiusPoint(world, worldRadiusPoint) : !hitPoint(world, worldRadiusPoint)) return false;
|
|
11023
11052
|
return this.isBranch ? Platform.getSelector(this).hitPoint(Object.assign({}, worldRadiusPoint), hitRadius, {
|
|
@@ -11031,8 +11060,8 @@ leaf$1.__hitWorld = function(point, forceHitFill) {
|
|
|
11031
11060
|
const world = this.__world, layout = this.__layout;
|
|
11032
11061
|
const isSmall = world.width < 10 && world.height < 10;
|
|
11033
11062
|
if (data.hitRadius) {
|
|
11034
|
-
|
|
11035
|
-
|
|
11063
|
+
copyRadiusPoint(inner, point, data.hitRadius);
|
|
11064
|
+
point = inner;
|
|
11036
11065
|
}
|
|
11037
11066
|
toInnerRadiusPointOf(point, world, inner);
|
|
11038
11067
|
if (data.hitBox || isSmall) {
|
|
@@ -11840,10 +11869,12 @@ const {getFloorScale: getFloorScale} = MathHelper, {abs: abs$6} = Math;
|
|
|
11840
11869
|
function createPatternTask(paint, ui, canvas, renderOptions) {
|
|
11841
11870
|
if (!paint.patternTask) {
|
|
11842
11871
|
paint.patternTask = ImageManager.patternTasker.add(() => __awaiter(this, void 0, void 0, function*() {
|
|
11843
|
-
paint
|
|
11844
|
-
if (canvas.bounds.hit(ui.__nowWorld)) PaintImage.createPattern(paint, ui, canvas, renderOptions);
|
|
11872
|
+
PaintImage.createPattern(paint, ui, canvas, renderOptions);
|
|
11845
11873
|
ui.forceUpdate("surface");
|
|
11846
|
-
}),
|
|
11874
|
+
}), 0, () => {
|
|
11875
|
+
paint.patternTask = null;
|
|
11876
|
+
return canvas.bounds.hit(ui.__nowWorld);
|
|
11877
|
+
});
|
|
11847
11878
|
}
|
|
11848
11879
|
}
|
|
11849
11880
|
|
|
@@ -12093,7 +12124,7 @@ const PaintGradientModule = {
|
|
|
12093
12124
|
getTransform: getTransform
|
|
12094
12125
|
};
|
|
12095
12126
|
|
|
12096
|
-
const {copy: copy$3, move: move$6, toOffsetOutBounds: toOffsetOutBounds$1} = BoundsHelper, {max: max$
|
|
12127
|
+
const {copy: copy$3, move: move$6, toOffsetOutBounds: toOffsetOutBounds$1} = BoundsHelper, {max: max$2, abs: abs$5} = Math;
|
|
12097
12128
|
|
|
12098
12129
|
const tempBounds = {}, tempMatrix = new Matrix;
|
|
12099
12130
|
|
|
@@ -12138,10 +12169,10 @@ function getShadowRenderSpread(_ui, shadow) {
|
|
|
12138
12169
|
let top = 0, right = 0, bottom = 0, left = 0, x, y, spread, blur;
|
|
12139
12170
|
shadow.forEach(item => {
|
|
12140
12171
|
x = item.x || 0, y = item.y || 0, blur = (item.blur || 0) * 1.5, spread = abs$5(item.spread || 0);
|
|
12141
|
-
top = max$
|
|
12142
|
-
right = max$
|
|
12143
|
-
bottom = max$
|
|
12144
|
-
left = max$
|
|
12172
|
+
top = max$2(top, spread + blur - y);
|
|
12173
|
+
right = max$2(right, spread + blur + x);
|
|
12174
|
+
bottom = max$2(bottom, spread + blur + y);
|
|
12175
|
+
left = max$2(left, spread + blur - x);
|
|
12145
12176
|
});
|
|
12146
12177
|
return top === right && right === bottom && bottom === left ? top : [ top, right, bottom, left ];
|
|
12147
12178
|
}
|
|
@@ -13020,7 +13051,11 @@ class Stroker extends UI {
|
|
|
13020
13051
|
matrix$1.half = strokeWidth % 2;
|
|
13021
13052
|
canvas.setWorld(matrix$1, options.matrix);
|
|
13022
13053
|
canvas.beginPath();
|
|
13023
|
-
if (
|
|
13054
|
+
if (this.strokePathType === "path") {
|
|
13055
|
+
leaf.__drawPath(canvas);
|
|
13056
|
+
} else {
|
|
13057
|
+
if (leaf.__.__useArrow) leaf.__drawPath(canvas); else leaf.__.__pathForRender ? leaf.__drawRenderPath(canvas) : leaf.__drawPathByBox(canvas);
|
|
13058
|
+
}
|
|
13024
13059
|
data.strokeWidth = strokeWidth / Math.max(aScaleX, aScaleY);
|
|
13025
13060
|
if (stroke) isString(stroke) ? Paint.stroke(stroke, this, canvas, options) : Paint.strokes(stroke, this, canvas, options);
|
|
13026
13061
|
if (fill) isString(fill) ? Paint.fill(fill, this, canvas, options) : Paint.fills(fill, this, canvas, options);
|
|
@@ -13037,6 +13072,8 @@ class Stroker extends UI {
|
|
|
13037
13072
|
|
|
13038
13073
|
__decorate([ targetAttr(onTarget$1) ], Stroker.prototype, "target", void 0);
|
|
13039
13074
|
|
|
13075
|
+
__decorate([ surfaceType("render-path") ], Stroker.prototype, "strokePathType", void 0);
|
|
13076
|
+
|
|
13040
13077
|
function onTarget$1(stroker) {
|
|
13041
13078
|
const value = stroker.target;
|
|
13042
13079
|
stroker.list = value ? isArray(value) ? value : [ value ] : [];
|
|
@@ -13151,10 +13188,11 @@ class EditSelect extends Group {
|
|
|
13151
13188
|
}
|
|
13152
13189
|
update() {
|
|
13153
13190
|
this.hoverStroker.update();
|
|
13154
|
-
const {stroke: stroke, strokeWidth: strokeWidth, selectedStyle: selectedStyle} = this.editor.mergedConfig;
|
|
13191
|
+
const {stroke: stroke, strokeWidth: strokeWidth, selectedPathType: selectedPathType, selectedStyle: selectedStyle} = this.editor.mergedConfig;
|
|
13155
13192
|
this.targetStroker.update(Object.assign({
|
|
13156
13193
|
stroke: stroke,
|
|
13157
|
-
strokeWidth: strokeWidth && Math.max(1, strokeWidth / 2)
|
|
13194
|
+
strokeWidth: strokeWidth && Math.max(1, strokeWidth / 2),
|
|
13195
|
+
strokePathType: selectedPathType
|
|
13158
13196
|
}, selectedStyle || {}));
|
|
13159
13197
|
}
|
|
13160
13198
|
onPointerMove(e) {
|
|
@@ -14539,7 +14577,7 @@ class TransformTool {
|
|
|
14539
14577
|
const {target: target, mergeConfig: mergeConfig, single: single, dragStartData: dragStartData} = this.editBox;
|
|
14540
14578
|
let {around: around, lockRatio: lockRatio, flipable: flipable, editSize: editSize} = mergeConfig, totalMove;
|
|
14541
14579
|
if (e instanceof ZoomEvent) {
|
|
14542
|
-
around = target.getBoxPoint(e);
|
|
14580
|
+
if (!around) around = target.getBoxPoint(e);
|
|
14543
14581
|
totalMove = e.totalScale;
|
|
14544
14582
|
} else {
|
|
14545
14583
|
totalMove = e.getInnerTotal(target);
|
|
@@ -15850,7 +15888,11 @@ function addViewport(leafer, mergeConfig, custom) {
|
|
|
15850
15888
|
addViewportConfig(leafer.parentApp ? leafer.parentApp : leafer, mergeConfig);
|
|
15851
15889
|
if (leafer.isApp || custom) return;
|
|
15852
15890
|
leafer.__eventIds.push(leafer.on_(MoveEvent.BEFORE_MOVE, e => {
|
|
15853
|
-
|
|
15891
|
+
const move = leafer.getValidMove(e.moveX, e.moveY, false);
|
|
15892
|
+
leafer.zoomLayer.move(move);
|
|
15893
|
+
}), leafer.on_(MoveEvent.DRAG_ANIMATE, () => {
|
|
15894
|
+
const move = leafer.getValidMove(0, 0);
|
|
15895
|
+
if (move.x || move.y) leafer.interaction.stopDragAnimate();
|
|
15854
15896
|
}), leafer.on_(MoveEvent.END, e => {
|
|
15855
15897
|
LeafHelper.animateMove(leafer.zoomLayer, leafer.getValidMove(e.moveX, e.moveY));
|
|
15856
15898
|
}), leafer.on_(ZoomEvent.BEFORE_ZOOM, e => {
|
|
@@ -16001,7 +16043,7 @@ const MultiTouchHelper = {
|
|
|
16001
16043
|
|
|
16002
16044
|
const M$3 = MultiTouchHelper;
|
|
16003
16045
|
|
|
16004
|
-
const {abs: abs$2, max: max} = Math, {sign: sign, within: within$2} = MathHelper;
|
|
16046
|
+
const {abs: abs$2, max: max$1} = Math, {sign: sign, within: within$2} = MathHelper;
|
|
16005
16047
|
|
|
16006
16048
|
const WheelEventHelper = {
|
|
16007
16049
|
getMove(event, config) {
|
|
@@ -16012,8 +16054,8 @@ const WheelEventHelper = {
|
|
|
16012
16054
|
deltaY = 0;
|
|
16013
16055
|
}
|
|
16014
16056
|
const absX = abs$2(deltaX), absY = abs$2(deltaY);
|
|
16015
|
-
if (absX > 50) deltaX = max(50, absX / 3) * sign(deltaX);
|
|
16016
|
-
if (absY > 50) deltaY = max(50, absY / 3) * sign(deltaY);
|
|
16057
|
+
if (absX > 50) deltaX = max$1(50, absX / 3) * sign(deltaX);
|
|
16058
|
+
if (absY > 50) deltaY = max$1(50, absY / 3) * sign(deltaY);
|
|
16017
16059
|
return {
|
|
16018
16060
|
x: -deltaX * moveSpeed * 2,
|
|
16019
16061
|
y: -deltaY * moveSpeed * 2
|
|
@@ -16163,7 +16205,7 @@ leafer.getValidMove = function(moveX, moveY, checkLimit = true) {
|
|
|
16163
16205
|
if (type.includes("x")) move$4.y = 0; else if (type.includes("y")) move$4.x = 0; else Math.abs(move$4.x) > Math.abs(move$4.y) ? move$4.y = 0 : move$4.x = 0;
|
|
16164
16206
|
if (checkLimit && type.includes("limit")) {
|
|
16165
16207
|
bounds.set(this.__world).addPoint(this.zoomLayer);
|
|
16166
|
-
DragBoundsHelper.getValidMove(bounds, this.canvas.bounds, "
|
|
16208
|
+
DragBoundsHelper.getValidMove(bounds, this.canvas.bounds, "auto", move$4, true);
|
|
16167
16209
|
if (type.includes("x")) move$4.y = 0; else if (type.includes("y")) move$4.x = 0;
|
|
16168
16210
|
}
|
|
16169
16211
|
}
|
|
@@ -16271,22 +16313,52 @@ interaction.multiTouch = function(data, list) {
|
|
|
16271
16313
|
|
|
16272
16314
|
const dragger = Dragger.prototype;
|
|
16273
16315
|
|
|
16274
|
-
const {abs: abs$1} = Math;
|
|
16316
|
+
const {abs: abs$1, min: min, max: max, hypot: hypot} = Math;
|
|
16275
16317
|
|
|
16276
|
-
dragger.checkDragEndAnimate = function(data
|
|
16277
|
-
const {
|
|
16278
|
-
const
|
|
16279
|
-
const dragAnimate = this.canAnimate && this.moving && (absMoveX > minMove || absMoveY > minMove) && this.interaction.m.dragAnimate;
|
|
16318
|
+
dragger.checkDragEndAnimate = function(data) {
|
|
16319
|
+
const {interaction: interaction} = this;
|
|
16320
|
+
const dragAnimate = this.canAnimate && this.moving && interaction.m.dragAnimate;
|
|
16280
16321
|
if (dragAnimate) {
|
|
16281
|
-
const inertia =
|
|
16282
|
-
|
|
16283
|
-
|
|
16284
|
-
|
|
16285
|
-
|
|
16286
|
-
this.
|
|
16287
|
-
|
|
16288
|
-
|
|
16289
|
-
|
|
16322
|
+
const inertia = isNumber(dragAnimate) ? dragAnimate : .95;
|
|
16323
|
+
const stopMove = .15;
|
|
16324
|
+
const maxMove = 150;
|
|
16325
|
+
let moveX = 0, moveY = 0, flickSpeed = 0;
|
|
16326
|
+
let totalWeight = 0, weight, w = 3, s, frame;
|
|
16327
|
+
const {dragDataList: dragDataList} = this, len = dragDataList.length;
|
|
16328
|
+
for (let i = len - 1; i >= max(len - 3, 0); i--) {
|
|
16329
|
+
frame = dragDataList[i];
|
|
16330
|
+
if (frame.time && Date.now() - frame.time > 100) break;
|
|
16331
|
+
weight = w--;
|
|
16332
|
+
moveX += frame.moveX * weight;
|
|
16333
|
+
moveY += frame.moveY * weight;
|
|
16334
|
+
totalWeight += weight;
|
|
16335
|
+
s = hypot(frame.moveX, frame.moveY);
|
|
16336
|
+
if (s > flickSpeed) flickSpeed = s;
|
|
16337
|
+
}
|
|
16338
|
+
if (totalWeight) moveX /= totalWeight, moveY /= totalWeight;
|
|
16339
|
+
if (flickSpeed > 8) {
|
|
16340
|
+
const t = min((flickSpeed - 8) / 17, 1);
|
|
16341
|
+
const boost = 1.15 + t * (1.6 - 1.15);
|
|
16342
|
+
moveX *= boost;
|
|
16343
|
+
moveY *= boost;
|
|
16344
|
+
}
|
|
16345
|
+
const maxAbs = max(abs$1(moveX), abs$1(moveY));
|
|
16346
|
+
if (maxAbs > maxMove) {
|
|
16347
|
+
s = maxMove / maxAbs;
|
|
16348
|
+
moveX *= s;
|
|
16349
|
+
moveY *= s;
|
|
16350
|
+
}
|
|
16351
|
+
const step = () => {
|
|
16352
|
+
moveX *= inertia;
|
|
16353
|
+
moveY *= inertia;
|
|
16354
|
+
data = Object.assign({}, data);
|
|
16355
|
+
if (abs$1(moveX) < stopMove && abs$1(moveY) < stopMove) return this.dragEndReal(data);
|
|
16356
|
+
PointHelper.move(data, moveX, moveY);
|
|
16357
|
+
this.drag(data);
|
|
16358
|
+
this.animate(step);
|
|
16359
|
+
interaction.emit(MoveEvent.DRAG_ANIMATE, data);
|
|
16360
|
+
};
|
|
16361
|
+
this.animate(step);
|
|
16290
16362
|
}
|
|
16291
16363
|
return dragAnimate;
|
|
16292
16364
|
};
|
|
@@ -16297,6 +16369,13 @@ dragger.animate = function(func, off) {
|
|
|
16297
16369
|
this.animateWait = func;
|
|
16298
16370
|
};
|
|
16299
16371
|
|
|
16372
|
+
dragger.stopAnimate = function() {
|
|
16373
|
+
this.animate(null, "off");
|
|
16374
|
+
this.interaction.target.nextRender(() => {
|
|
16375
|
+
if (this.dragData) this.dragEndReal(this.dragData);
|
|
16376
|
+
});
|
|
16377
|
+
};
|
|
16378
|
+
|
|
16300
16379
|
dragger.checkDragOut = function(data) {
|
|
16301
16380
|
const {interaction: interaction} = this;
|
|
16302
16381
|
this.autoMoveCancel();
|
|
@@ -16368,7 +16447,6 @@ function getFixBounds(bounds, scaleBounds) {
|
|
|
16368
16447
|
Plugin.add("view");
|
|
16369
16448
|
|
|
16370
16449
|
Leafer.prototype.zoom = function(zoomType, optionsOrPadding, scroll, transition) {
|
|
16371
|
-
this.killAnimate();
|
|
16372
16450
|
let padding;
|
|
16373
16451
|
if (isData(optionsOrPadding)) {
|
|
16374
16452
|
padding = optionsOrPadding.padding;
|
|
@@ -16381,8 +16459,9 @@ Leafer.prototype.zoom = function(zoomType, optionsOrPadding, scroll, transition)
|
|
|
16381
16459
|
x: limitBounds.x + limitBounds.width / 2,
|
|
16382
16460
|
y: limitBounds.y + limitBounds.height / 2
|
|
16383
16461
|
};
|
|
16462
|
+
zoomLayer.killAnimate();
|
|
16384
16463
|
let changeScale;
|
|
16385
|
-
const {x: x, y: y, scaleX: scaleX, scaleY: scaleY} = zoomLayer.__;
|
|
16464
|
+
const {x: x, y: y, scaleX: scaleX, scaleY: scaleY} = zoomLayer.__, {boxBounds: boxBounds} = zoomLayer;
|
|
16386
16465
|
if (isString(zoomType)) {
|
|
16387
16466
|
switch (zoomType) {
|
|
16388
16467
|
case "in":
|
|
@@ -16394,16 +16473,16 @@ Leafer.prototype.zoom = function(zoomType, optionsOrPadding, scroll, transition)
|
|
|
16394
16473
|
break;
|
|
16395
16474
|
|
|
16396
16475
|
case "fit":
|
|
16397
|
-
zoomType =
|
|
16476
|
+
zoomType = boxBounds;
|
|
16398
16477
|
break;
|
|
16399
16478
|
|
|
16400
16479
|
case "fit-width":
|
|
16401
|
-
zoomType = new Bounds(
|
|
16480
|
+
zoomType = new Bounds(boxBounds);
|
|
16402
16481
|
zoomType.height = 0;
|
|
16403
16482
|
break;
|
|
16404
16483
|
|
|
16405
16484
|
case "fit-height":
|
|
16406
|
-
zoomType = new Bounds(
|
|
16485
|
+
zoomType = new Bounds(boxBounds);
|
|
16407
16486
|
zoomType.width = 0;
|
|
16408
16487
|
break;
|
|
16409
16488
|
}
|
|
@@ -17805,6 +17884,8 @@ let Animate = class Animate extends Eventer {
|
|
|
17805
17884
|
}
|
|
17806
17885
|
constructor(target, keyframe, options, isTemp) {
|
|
17807
17886
|
super();
|
|
17887
|
+
this.nowIndex = 0;
|
|
17888
|
+
this.playedTotalTime = 0;
|
|
17808
17889
|
if (keyframe) {
|
|
17809
17890
|
if (keyframe.keyframes) options = keyframe, keyframe = keyframe.keyframes; else if (keyframe.style) options = keyframe,
|
|
17810
17891
|
keyframe = keyframe.style;
|
|
@@ -17851,7 +17932,7 @@ let Animate = class Animate extends Eventer {
|
|
|
17851
17932
|
play() {
|
|
17852
17933
|
if (this.destroyed) return;
|
|
17853
17934
|
this.running = true;
|
|
17854
|
-
if (!this.started) this.clearTimer(), this.start(); else if (!this.timer) this.
|
|
17935
|
+
if (!this.started) this.clearTimer(), this.start(); else if (!this.timer) this.startRequestAnimate();
|
|
17855
17936
|
this.emitType(AnimateEvent.PLAY);
|
|
17856
17937
|
}
|
|
17857
17938
|
pause() {
|
|
@@ -17865,14 +17946,28 @@ let Animate = class Animate extends Eventer {
|
|
|
17865
17946
|
this.complete();
|
|
17866
17947
|
this.emitType(AnimateEvent.STOP);
|
|
17867
17948
|
}
|
|
17868
|
-
seek(time) {
|
|
17949
|
+
seek(time, includeDelay) {
|
|
17869
17950
|
if (this.destroyed) return;
|
|
17870
|
-
|
|
17951
|
+
const {delay: delay} = this;
|
|
17952
|
+
if (isObject(time)) time = UnitConvert.number(time, this.duration + (includeDelay ? delay : 0));
|
|
17953
|
+
if (includeDelay) time -= delay;
|
|
17871
17954
|
if (time) time /= this.speed;
|
|
17872
|
-
|
|
17955
|
+
let waitBeginTime;
|
|
17956
|
+
if (time < 0) {
|
|
17957
|
+
waitBeginTime = -time;
|
|
17958
|
+
time = 0;
|
|
17959
|
+
}
|
|
17960
|
+
if (!this.started || time < this.time || !time) this.start(true);
|
|
17873
17961
|
this.time = time;
|
|
17874
|
-
this.animate(0, true);
|
|
17875
|
-
this.clearTimer(() =>
|
|
17962
|
+
if (!waitBeginTime) this.animate(0, true);
|
|
17963
|
+
this.clearTimer(() => {
|
|
17964
|
+
if (waitBeginTime) {
|
|
17965
|
+
this.timer = setTimeout(() => {
|
|
17966
|
+
this.timer = 0;
|
|
17967
|
+
this.begin();
|
|
17968
|
+
}, waitBeginTime * 1e3);
|
|
17969
|
+
} else this.startRequestAnimate();
|
|
17970
|
+
});
|
|
17876
17971
|
this.emitType(AnimateEvent.SEEK);
|
|
17877
17972
|
}
|
|
17878
17973
|
kill(complete = true, killStyle) {
|
|
@@ -17955,14 +18050,24 @@ let Animate = class Animate extends Eventer {
|
|
|
17955
18050
|
}
|
|
17956
18051
|
}
|
|
17957
18052
|
}
|
|
17958
|
-
|
|
18053
|
+
startRequestAnimate() {
|
|
17959
18054
|
this.requestAnimateTime = Date.now();
|
|
18055
|
+
this.requestAnimatePageTime = 0;
|
|
18056
|
+
if (!this.waitRequestRender) this.requestAnimate();
|
|
18057
|
+
}
|
|
18058
|
+
requestAnimate() {
|
|
18059
|
+
this.waitRequestRender = true;
|
|
17960
18060
|
Platform.requestRender(this.animate.bind(this));
|
|
17961
18061
|
}
|
|
17962
|
-
animate(
|
|
18062
|
+
animate(pageTime, seek) {
|
|
17963
18063
|
if (!seek) {
|
|
18064
|
+
this.waitRequestRender = false;
|
|
17964
18065
|
if (!this.running) return;
|
|
17965
|
-
|
|
18066
|
+
let frameTime;
|
|
18067
|
+
if (pageTime && this.requestAnimatePageTime) frameTime = pageTime - this.requestAnimatePageTime; else frameTime = Date.now() - this.requestAnimateTime;
|
|
18068
|
+
this.time += frameTime / 1e3;
|
|
18069
|
+
this.requestAnimatePageTime = pageTime;
|
|
18070
|
+
this.requestAnimateTime = Date.now();
|
|
17966
18071
|
}
|
|
17967
18072
|
const {duration: duration} = this, realTime = this.time * this.speed;
|
|
17968
18073
|
if (realTime < duration) {
|
|
@@ -18003,21 +18108,24 @@ let Animate = class Animate extends Eventer {
|
|
|
18003
18108
|
}
|
|
18004
18109
|
start(seek) {
|
|
18005
18110
|
this.requestAnimateTime = 1;
|
|
18006
|
-
const {reverse: reverse} = this;
|
|
18111
|
+
const {reverse: reverse, jump: jump} = this;
|
|
18007
18112
|
if (reverse || this.mainReverse) this.mainReverse = reverse;
|
|
18008
18113
|
if (this.looped) this.looped = 0;
|
|
18009
18114
|
if (seek) this.begin(true); else {
|
|
18010
18115
|
const {delay: delay} = this;
|
|
18011
|
-
if (delay)
|
|
18012
|
-
this.
|
|
18013
|
-
this.
|
|
18014
|
-
|
|
18116
|
+
if (delay) {
|
|
18117
|
+
if (jump) this.begin(true);
|
|
18118
|
+
this.timer = setTimeout(() => {
|
|
18119
|
+
this.timer = 0;
|
|
18120
|
+
this.begin();
|
|
18121
|
+
}, delay / this.speed * 1e3);
|
|
18122
|
+
} else this.begin();
|
|
18015
18123
|
}
|
|
18016
18124
|
}
|
|
18017
18125
|
begin(seek) {
|
|
18018
18126
|
this.playedTotalTime = this.time = 0;
|
|
18019
18127
|
this.mainReverse ? this.setTo() : this.setFrom();
|
|
18020
|
-
if (!seek) this.
|
|
18128
|
+
if (!seek) this.startRequestAnimate();
|
|
18021
18129
|
}
|
|
18022
18130
|
end() {
|
|
18023
18131
|
this.mainReverse ? this.setFrom() : this.setTo();
|
|
@@ -18133,6 +18241,8 @@ __decorate([ animateAttr(true) ], Animate.prototype, "autoplay", void 0);
|
|
|
18133
18241
|
|
|
18134
18242
|
__decorate([ animateAttr() ], Animate.prototype, "join", void 0);
|
|
18135
18243
|
|
|
18244
|
+
__decorate([ animateAttr() ], Animate.prototype, "jump", void 0);
|
|
18245
|
+
|
|
18136
18246
|
__decorate([ animateAttr() ], Animate.prototype, "attrs", void 0);
|
|
18137
18247
|
|
|
18138
18248
|
Animate = __decorate([ useModule(LeafEventer) ], Animate);
|
|
@@ -18371,7 +18481,7 @@ const hslMatch = /^hsl\((\d+),\s*(\d+)%\s*,\s*(\d+)%/i;
|
|
|
18371
18481
|
|
|
18372
18482
|
const hslaMatch = /^hsla\((\d+),\s*(\d+)%\s*,\s*(\d+)%\s*,\s*(\d*\.?\d+)/i;
|
|
18373
18483
|
|
|
18374
|
-
const int = parseInt, float = parseFloat, {round: round$1} = Math;
|
|
18484
|
+
const int = parseInt, float$1 = parseFloat, {round: round$1} = Math;
|
|
18375
18485
|
|
|
18376
18486
|
let cache = {}, totalCache = 0;
|
|
18377
18487
|
|
|
@@ -18484,18 +18594,18 @@ function rgbaToRGBA(color) {
|
|
|
18484
18594
|
r: int(match[1]),
|
|
18485
18595
|
g: int(match[2]),
|
|
18486
18596
|
b: int(match[3]),
|
|
18487
|
-
a: float(match[4])
|
|
18597
|
+
a: float$1(match[4])
|
|
18488
18598
|
};
|
|
18489
18599
|
}
|
|
18490
18600
|
|
|
18491
18601
|
function hslToRGBA(color) {
|
|
18492
18602
|
const match = hslMatch.exec(color);
|
|
18493
|
-
return hsla(float(match[1]), float(match[2]), float(match[3]), 1);
|
|
18603
|
+
return hsla(float$1(match[1]), float$1(match[2]), float$1(match[3]), 1);
|
|
18494
18604
|
}
|
|
18495
18605
|
|
|
18496
18606
|
function hslaToRGBA(color) {
|
|
18497
18607
|
const match = hslaMatch.exec(color);
|
|
18498
|
-
return hsla(float(match[1]), float(match[2]), float(match[3]), float(match[4]));
|
|
18608
|
+
return hsla(float$1(match[1]), float$1(match[2]), float$1(match[3]), float$1(match[4]));
|
|
18499
18609
|
}
|
|
18500
18610
|
|
|
18501
18611
|
const n1 = 1 / 6, n2 = .5, n3 = 2 / 3, n4 = 1 / 3;
|
|
@@ -18734,7 +18844,7 @@ const HighBezierHelper = {
|
|
|
18734
18844
|
|
|
18735
18845
|
const {getDistance: getDistance} = HighBezierHelper;
|
|
18736
18846
|
|
|
18737
|
-
const {M: M, L: L, C: C, Z: Z} = PathCommandMap;
|
|
18847
|
+
const {M: M, L: L, C: C, Z: Z} = PathCommandMap, {float: float} = MathHelper;
|
|
18738
18848
|
|
|
18739
18849
|
const tempPoint = {}, tempFrom = {};
|
|
18740
18850
|
|
|
@@ -18871,7 +18981,7 @@ const HighCurveHelper = {
|
|
|
18871
18981
|
getDistancePath(distanceData, motionDistance, motionPrecision) {
|
|
18872
18982
|
const {segments: segments, data: data} = distanceData, path = [];
|
|
18873
18983
|
motionDistance = UnitConvert.number(motionDistance, distanceData.total);
|
|
18874
|
-
let total = 0, distance, to = {};
|
|
18984
|
+
let total = 0, distance, cutDistance, to = {};
|
|
18875
18985
|
let i = 0, index = 0, x = 0, y = 0, toX, toY, command;
|
|
18876
18986
|
let x1, y1, x2, y2, t;
|
|
18877
18987
|
const len = data.length;
|
|
@@ -18883,14 +18993,17 @@ const HighCurveHelper = {
|
|
|
18883
18993
|
toX = data[i + 1];
|
|
18884
18994
|
toY = data[i + 2];
|
|
18885
18995
|
distance = segments[index];
|
|
18886
|
-
if (total + distance
|
|
18996
|
+
if (total + distance > motionDistance || !distanceData.total) {
|
|
18887
18997
|
if (!i) x = toX, y = toY;
|
|
18888
18998
|
tempFrom.x = x;
|
|
18889
18999
|
tempFrom.y = y;
|
|
18890
19000
|
to.x = toX;
|
|
18891
19001
|
to.y = toY;
|
|
18892
|
-
|
|
18893
|
-
|
|
19002
|
+
cutDistance = float(motionDistance - total);
|
|
19003
|
+
if (cutDistance) {
|
|
19004
|
+
PointHelper.getDistancePoint(tempFrom, to, cutDistance, true);
|
|
19005
|
+
path.push(command, to.x, to.y);
|
|
19006
|
+
}
|
|
18894
19007
|
return path;
|
|
18895
19008
|
}
|
|
18896
19009
|
x = toX;
|
|
@@ -18904,9 +19017,12 @@ const HighCurveHelper = {
|
|
|
18904
19017
|
toX = data[i + 5];
|
|
18905
19018
|
toY = data[i + 6];
|
|
18906
19019
|
distance = segments[index];
|
|
18907
|
-
if (total + distance
|
|
18908
|
-
|
|
18909
|
-
|
|
19020
|
+
if (total + distance > motionDistance) {
|
|
19021
|
+
cutDistance = float(motionDistance - total);
|
|
19022
|
+
if (cutDistance) {
|
|
19023
|
+
t = HighBezierHelper.getT(cutDistance, distance, x, y, x1, y1, x2, y2, toX, toY, motionPrecision);
|
|
19024
|
+
HighBezierHelper.cut(path, t, x, y, x1, y1, x2, y2, toX, toY);
|
|
19025
|
+
}
|
|
18910
19026
|
return path;
|
|
18911
19027
|
}
|
|
18912
19028
|
x = toX;
|
|
@@ -19637,6 +19753,7 @@ class Finder {
|
|
|
19637
19753
|
for (let i = 0, len = children.length; i < len; i++) {
|
|
19638
19754
|
child = children[i];
|
|
19639
19755
|
result = method(child, options);
|
|
19756
|
+
if (typeof result === "boolean") result = result ? 1 : 0;
|
|
19640
19757
|
if (result === Yes || result === YesAndSkip) {
|
|
19641
19758
|
if (list) {
|
|
19642
19759
|
list.push(child);
|
|
@@ -19980,4 +20097,4 @@ Plugin.add("bright");
|
|
|
19980
20097
|
|
|
19981
20098
|
UI.addAttr("bright", false, dimType);
|
|
19982
20099
|
|
|
19983
|
-
export { AlignHelper, Animate, AnimateEasing, AnimateEvent, AnimateList, Answer, App, AroundHelper, Arrow, ArrowData, AutoBounds, BezierHelper, Bounds, BoundsEvent, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, Cursor, DataHelper, Debug, Direction4, Direction9, DragBoundsHelper, DragEvent, Dragger, DropEvent, EditBox, EditDataHelper, EditPoint, EditSelect, EditSelectHelper, EditTool, EditToolCreator, Editor, EditorEvent, EditorGroupEvent, EditorHelper, EditorMoveEvent, EditorRotateEvent, EditorScaleEvent, EditorSkewEvent, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Filter, Finder, Flow, FourNumberHelper, Frame, FrameData, Group, GroupData, HTMLText, HTMLTextData, HighBezierHelper, HighCurveHelper, HitCanvasManager, Image, ImageData, ImageEvent, ImageManager, IncrementId, InnerEditor, InnerEditorEvent, InteractionBase, InteractionHelper, KeyEvent, Keyboard, LayoutEvent, Layouter, Leaf, LeafBounds, LeafBoundsHelper, LeafData, LeafDataProxy, LeafEventer, LeafHelper, LeafLayout, LeafLevelList, LeafList, LeafMatrix, LeafRender, Leafer, LeaferCanvas, LeaferCanvasBase, LeaferData, LeaferEvent, LeaferImage, LeaferTypeCreator, Line, LineData, LineEditTool, MathHelper, Matrix, MatrixHelper, MoveEvent, MultiTouchHelper, MyDragEvent, MyImage, MyPointerEvent, MyTouchEvent, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathArrowModule, PathBounds, PathCommandDataHelper, PathCommandMap, PathCommandNodeHelper, PathConvert, PathCorner, PathCreator, PathData, PathDrawer, PathHelper, PathMatrixHelper, PathNodeHandleType, PathNumberCommandLengthMap, PathNumberCommandMap, PathScaler, Pen, PenData, Picker, Platform, Plugin, Point, PointHelper, PointerButton, PointerEvent, Polygon, PolygonData, PropertyEvent, Rect, RectData, RectHelper, RectRender, RenderEvent, Renderer, ResizeEvent, Resource, Robot, RobotData, RotateEvent, Run, ScrollBar, SelectArea, Selector, Star, StarData, State, StringNumberMap, Stroker, SwipeEvent, TaskItem, TaskProcessor, Text, TextConvert, TextData, TextEditor, TouchEvent, TransformTool, Transformer, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIEvent, UIRender, UnitConvert, WaitHelper, WatchEvent, Watcher, WheelEventHelper, ZoomEvent, addViewport, addViewportConfig, affectRenderBoundsType, affectStrokeBoundsType, arrowType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, createAttr, createDescriptor, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, dimType, doBoundsType, doStrokeType, effectType, emptyData, eraserType, extraPropertyEventMap, getBoundsData, getDescriptor, getMatrixData, getPointData, hitType, isArray, isData, isEmptyData, isFinite$1 as isFinite, isNull, isNumber, isObject, isString, isUndefined, layoutProcessor, leaferTransformAttrMap, maskType, motionPathType, naturalBoundsType, opacityType, path, pathInputType, pathType, pen, positionType, registerEditTool, registerInnerEditor, registerUI, registerUIEvent, resizeType, rewrite, rewriteAble, rotationType, scaleResize, scaleResizeFontSize, scaleResizeGroup, scaleResizePath, scaleResizePoints, scaleType, scrollType, sortType, stateStyleType, stateType, strokeType, surfaceType, tempBounds$2 as tempBounds, tempMatrix$2 as tempMatrix, tempPoint$
|
|
20100
|
+
export { AlignHelper, Animate, AnimateEasing, AnimateEvent, AnimateList, Answer, App, AroundHelper, Arrow, ArrowData, AutoBounds, BezierHelper, Bounds, BoundsEvent, BoundsHelper, Box, BoxData, Branch, BranchHelper, BranchRender, Canvas, CanvasData, CanvasManager, ChildEvent, ColorConvert, Creator, Cursor, DataHelper, Debug, Direction4, Direction9, DragBoundsHelper, DragEvent, Dragger, DropEvent, EditBox, EditDataHelper, EditPoint, EditSelect, EditSelectHelper, EditTool, EditToolCreator, Editor, EditorEvent, EditorGroupEvent, EditorHelper, EditorMoveEvent, EditorRotateEvent, EditorScaleEvent, EditorSkewEvent, Effect, Ellipse, EllipseData, EllipseHelper, Event, EventCreator, Eventer, Export, FileHelper, Filter, Finder, Flow, FourNumberHelper, Frame, FrameData, Group, GroupData, HTMLText, HTMLTextData, HighBezierHelper, HighCurveHelper, HitCanvasManager, Image, ImageData, ImageEvent, ImageManager, IncrementId, InnerEditor, InnerEditorEvent, InteractionBase, InteractionHelper, KeyEvent, Keyboard, LayoutEvent, Layouter, Leaf, LeafBounds, LeafBoundsHelper, LeafData, LeafDataProxy, LeafEventer, LeafHelper, LeafLayout, LeafLevelList, LeafList, LeafMatrix, LeafRender, Leafer, LeaferCanvas, LeaferCanvasBase, LeaferData, LeaferEvent, LeaferImage, LeaferTypeCreator, Line, LineData, LineEditTool, MathHelper, Matrix, MatrixHelper, MoveEvent, MultiTouchHelper, MyDragEvent, MyImage, MyPointerEvent, MyTouchEvent, NeedConvertToCanvasCommandMap, OneRadian, PI2, PI_2, Paint, PaintGradient, PaintImage, Path, PathArrow, PathArrowModule, PathBounds, PathCommandDataHelper, PathCommandMap, PathCommandNodeHelper, PathConvert, PathCorner, PathCreator, PathData, PathDrawer, PathHelper, PathMatrixHelper, PathNodeHandleType, PathNumberCommandLengthMap, PathNumberCommandMap, PathScaler, Pen, PenData, Picker, Platform, Plugin, Point, PointHelper, PointerButton, PointerEvent, Polygon, PolygonData, PropertyEvent, Rect, RectData, RectHelper, RectRender, RenderEvent, Renderer, ResizeEvent, Resource, Robot, RobotData, RotateEvent, Run, ScrollBar, SelectArea, Selector, Star, StarData, State, StringNumberMap, Stroker, SwipeEvent, TaskItem, TaskProcessor, Text, TextConvert, TextData, TextEditor, TouchEvent, TransformTool, Transformer, Transition, TwoPointBoundsHelper, UI, UIBounds, UICreator, UIData, UIEvent, UIRender, UnitConvert, WaitHelper, WatchEvent, Watcher, WheelEventHelper, ZoomEvent, addViewport, addViewportConfig, affectRenderBoundsType, affectStrokeBoundsType, arrowType, attr, autoLayoutType, boundsType, canvasPatch, canvasSizeAttrs, createAttr, createDescriptor, cursorType, dataProcessor, dataType, decorateLeafAttr, defineDataProcessor, defineKey, defineLeafAttr, dimType, doBoundsType, doStrokeType, effectType, emptyData, eraserType, extraPropertyEventMap, getBoundsData, getDescriptor, getMatrixData, getPointData, hitType, isArray, isData, isEmptyData, isFinite$1 as isFinite, isNull, isNumber, isObject, isString, isUndefined, layoutProcessor, leaferTransformAttrMap, maskType, motionPathType, naturalBoundsType, opacityType, path, pathInputType, pathType, pen, positionType, registerEditTool, registerInnerEditor, registerUI, registerUIEvent, resizeType, rewrite, rewriteAble, rotationType, scaleResize, scaleResizeFontSize, scaleResizeGroup, scaleResizePath, scaleResizePoints, scaleType, scrollType, sortType, stateStyleType, stateType, strokeType, surfaceType, tempBounds$2 as tempBounds, tempMatrix$2 as tempMatrix, tempPoint$4 as tempPoint, tryToNumber, useCanvas, useModule, version, visibleType, zoomLayerType };
|