@leafer-draw/miniapp 2.1.3 → 2.1.5
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/miniapp.cjs +1 -1
- package/dist/miniapp.esm.js +1 -1
- package/dist/miniapp.esm.min.js +1 -1
- package/dist/miniapp.esm.min.js.map +1 -1
- package/dist/miniapp.min.cjs +1 -1
- package/dist/miniapp.min.cjs.map +1 -1
- package/dist/miniapp.module.js +39 -212
- package/dist/miniapp.module.min.js +1 -1
- package/dist/miniapp.module.min.js.map +1 -1
- package/package.json +7 -7
package/dist/miniapp.module.js
CHANGED
|
@@ -221,7 +221,7 @@ const IncrementId = {
|
|
|
221
221
|
RUNTIME: "runtime",
|
|
222
222
|
LEAF: "leaf",
|
|
223
223
|
TASK: "task",
|
|
224
|
-
|
|
224
|
+
CANVAS: "canvas",
|
|
225
225
|
IMAGE: "image",
|
|
226
226
|
types: {},
|
|
227
227
|
create(typeName) {
|
|
@@ -875,7 +875,7 @@ const PointHelper = {
|
|
|
875
875
|
return quick ? t.x === point.x && t.y === point.y : float$1(t.x) === float$1(point.x) && float$1(t.y) === float$1(point.y);
|
|
876
876
|
},
|
|
877
877
|
reset(t) {
|
|
878
|
-
|
|
878
|
+
t.x = t.y = 0;
|
|
879
879
|
}
|
|
880
880
|
};
|
|
881
881
|
|
|
@@ -1084,6 +1084,7 @@ class Matrix {
|
|
|
1084
1084
|
}
|
|
1085
1085
|
reset() {
|
|
1086
1086
|
MatrixHelper.reset(this);
|
|
1087
|
+
return this;
|
|
1087
1088
|
}
|
|
1088
1089
|
}
|
|
1089
1090
|
|
|
@@ -2346,7 +2347,7 @@ class LeaferCanvasBase extends Canvas$1 {
|
|
|
2346
2347
|
this.worldTransform = {};
|
|
2347
2348
|
if (!config) config = minSize;
|
|
2348
2349
|
this.manager = manager;
|
|
2349
|
-
this.innerId = IncrementId.create(IncrementId.
|
|
2350
|
+
this.innerId = IncrementId.create(IncrementId.CANVAS);
|
|
2350
2351
|
const {width: width, height: height, pixelRatio: pixelRatio} = config;
|
|
2351
2352
|
this.autoLayout = !width || !height;
|
|
2352
2353
|
this.size.pixelRatio = pixelRatio || Platform.devicePixelRatio;
|
|
@@ -2496,6 +2497,7 @@ class LeaferCanvasBase extends Canvas$1 {
|
|
|
2496
2497
|
}
|
|
2497
2498
|
useGrayscaleAlpha(bounds) {
|
|
2498
2499
|
this.setTempPixelBounds(bounds, true, true);
|
|
2500
|
+
if (!tempPixelBounds.width || !tempPixelBounds.height) return;
|
|
2499
2501
|
let alpha, pixel;
|
|
2500
2502
|
const {context: context} = this, imageData = context.getImageData(tempPixelBounds.x, tempPixelBounds.y, tempPixelBounds.width, tempPixelBounds.height), {data: data} = imageData;
|
|
2501
2503
|
for (let i = 0, len = data.length; i < len; i += 4) {
|
|
@@ -3048,7 +3050,8 @@ const PathConvert = {
|
|
|
3048
3050
|
current.length = PathCommandLengthMap[char];
|
|
3049
3051
|
current.index = 0;
|
|
3050
3052
|
pushData(data, current.name);
|
|
3051
|
-
if (char === "m") current.name = PathCommandMap["l"]; else if (char === "M") current.name = PathCommandMap["L"];
|
|
3053
|
+
if (char === "m") current.name = PathCommandMap["l"]; else if (char === "M") current.name = PathCommandMap["L"];
|
|
3054
|
+
if (!needConvert && convertCommand[char]) needConvert = true;
|
|
3052
3055
|
} else {
|
|
3053
3056
|
if (char === "-" || char === "+") {
|
|
3054
3057
|
if (lastChar === "e" || lastChar === "E") {
|
|
@@ -3124,8 +3127,8 @@ const PathConvert = {
|
|
|
3124
3127
|
|
|
3125
3128
|
case S:
|
|
3126
3129
|
smooth = lastCommand === C$3 || lastCommand === S;
|
|
3127
|
-
x1 = smooth ? x * 2 - controlX :
|
|
3128
|
-
y1 = smooth ? y * 2 - controlY :
|
|
3130
|
+
x1 = smooth ? x * 2 - controlX : x;
|
|
3131
|
+
y1 = smooth ? y * 2 - controlY : y;
|
|
3129
3132
|
controlX = old[i + 1];
|
|
3130
3133
|
controlY = old[i + 2];
|
|
3131
3134
|
x = old[i + 3];
|
|
@@ -3159,8 +3162,8 @@ const PathConvert = {
|
|
|
3159
3162
|
|
|
3160
3163
|
case T:
|
|
3161
3164
|
smooth = lastCommand === Q$3 || lastCommand === T;
|
|
3162
|
-
controlX = smooth ? x * 2 - controlX :
|
|
3163
|
-
controlY = smooth ? y * 2 - controlY :
|
|
3165
|
+
controlX = smooth ? x * 2 - controlX : x;
|
|
3166
|
+
controlY = smooth ? y * 2 - controlY : y;
|
|
3164
3167
|
curveMode ? quadraticCurveTo$1(data, x, y, controlX, controlY, old[i + 1], old[i + 2]) : data.push(Q$3, controlX, controlY, old[i + 1], old[i + 2]);
|
|
3165
3168
|
x = old[i + 1];
|
|
3166
3169
|
y = old[i + 2];
|
|
@@ -4865,10 +4868,10 @@ const LeafHelper = {
|
|
|
4865
4868
|
y: y
|
|
4866
4869
|
}, transition) : (t.x = x, t.y = y);
|
|
4867
4870
|
},
|
|
4868
|
-
zoomOfWorld(t, origin, scaleX, scaleY, resize, transition) {
|
|
4869
|
-
L.zoomOfLocal(t, getTempLocal(t, origin), scaleX, scaleY, resize, transition);
|
|
4871
|
+
zoomOfWorld(t, origin, scaleX, scaleY, resize, transition, boundsType) {
|
|
4872
|
+
L.zoomOfLocal(t, getTempLocal(t, origin), scaleX, scaleY, resize, transition, boundsType);
|
|
4870
4873
|
},
|
|
4871
|
-
zoomOfLocal(t, origin, scaleX, scaleY = scaleX, resize, transition) {
|
|
4874
|
+
zoomOfLocal(t, origin, scaleX, scaleY = scaleX, resize, transition, boundsType) {
|
|
4872
4875
|
const o = t.__localMatrix;
|
|
4873
4876
|
if (!isNumber(scaleY)) {
|
|
4874
4877
|
if (scaleY) transition = scaleY;
|
|
@@ -4877,7 +4880,7 @@ const LeafHelper = {
|
|
|
4877
4880
|
copy$5(matrix, o);
|
|
4878
4881
|
scaleOfOuter$2(matrix, origin, scaleX, scaleY);
|
|
4879
4882
|
if (L.hasHighPosition(t)) {
|
|
4880
|
-
L.setTransform(t, matrix, resize, transition);
|
|
4883
|
+
L.setTransform(t, matrix, resize, transition, boundsType);
|
|
4881
4884
|
} else {
|
|
4882
4885
|
const x = t.x + matrix.e - o.e, y = t.y + matrix.f - o.f;
|
|
4883
4886
|
if (transition && !resize) t.animate({
|
|
@@ -4885,7 +4888,7 @@ const LeafHelper = {
|
|
|
4885
4888
|
y: y,
|
|
4886
4889
|
scaleX: t.scaleX * scaleX,
|
|
4887
4890
|
scaleY: t.scaleY * scaleY
|
|
4888
|
-
}, transition); else t.x = x, t.y = y, t.scaleResize(scaleX, scaleY, resize !== true);
|
|
4891
|
+
}, transition); else t.x = x, t.y = y, t.scaleResize(scaleX, scaleY, resize !== true, boundsType);
|
|
4889
4892
|
}
|
|
4890
4893
|
},
|
|
4891
4894
|
rotateOfWorld(t, origin, angle, transition) {
|
|
@@ -4909,18 +4912,18 @@ const LeafHelper = {
|
|
|
4909
4912
|
skewOfOuter(matrix, origin, skewX, skewY);
|
|
4910
4913
|
L.setTransform(t, matrix, resize, transition);
|
|
4911
4914
|
},
|
|
4912
|
-
transformWorld(t, transform, resize, transition) {
|
|
4915
|
+
transformWorld(t, transform, resize, transition, boundsType) {
|
|
4913
4916
|
copy$5(matrix, t.worldTransform);
|
|
4914
4917
|
multiplyParent$3(matrix, transform);
|
|
4915
4918
|
if (t.parent) divideParent(matrix, t.parent.scrollWorldTransform);
|
|
4916
|
-
L.setTransform(t, matrix, resize, transition);
|
|
4919
|
+
L.setTransform(t, matrix, resize, transition, boundsType);
|
|
4917
4920
|
},
|
|
4918
|
-
transform(t, transform, resize, transition) {
|
|
4921
|
+
transform(t, transform, resize, transition, boundsType) {
|
|
4919
4922
|
copy$5(matrix, t.localTransform);
|
|
4920
4923
|
multiplyParent$3(matrix, transform);
|
|
4921
|
-
L.setTransform(t, matrix, resize, transition);
|
|
4924
|
+
L.setTransform(t, matrix, resize, transition, boundsType);
|
|
4922
4925
|
},
|
|
4923
|
-
setTransform(t, transform, resize, transition) {
|
|
4926
|
+
setTransform(t, transform, resize, transition, boundsType) {
|
|
4924
4927
|
const data = t.__, originPoint = data.origin && L.getInnerOrigin(t, data.origin);
|
|
4925
4928
|
const layout = getLayout(transform, originPoint, data.around && L.getInnerOrigin(t, data.around));
|
|
4926
4929
|
if (L.hasOffset(t)) {
|
|
@@ -4936,7 +4939,7 @@ const LeafHelper = {
|
|
|
4936
4939
|
PointHelper.move(layout, originPoint.x - changedPoint.x, originPoint.y - changedPoint.y);
|
|
4937
4940
|
}
|
|
4938
4941
|
t.set(layout);
|
|
4939
|
-
t.scaleResize(scaleX, scaleY, false);
|
|
4942
|
+
t.scaleResize(scaleX, scaleY, false, boundsType);
|
|
4940
4943
|
} else t.set(layout, transition);
|
|
4941
4944
|
},
|
|
4942
4945
|
getFlipTransform(t, axis) {
|
|
@@ -5518,6 +5521,7 @@ class LeafLayout {
|
|
|
5518
5521
|
this.renderChanged = true;
|
|
5519
5522
|
this.renderSpread || (this.renderSpread = 1);
|
|
5520
5523
|
this.boundsChanged = true;
|
|
5524
|
+
this.hitCanvasChanged = true;
|
|
5521
5525
|
}
|
|
5522
5526
|
scaleChange() {
|
|
5523
5527
|
this.scaleChanged = true;
|
|
@@ -6458,10 +6462,6 @@ let Leaf = class Leaf {
|
|
|
6458
6462
|
}
|
|
6459
6463
|
}
|
|
6460
6464
|
}
|
|
6461
|
-
set(_data, _isTemp) {}
|
|
6462
|
-
get(_name) {
|
|
6463
|
-
return undefined;
|
|
6464
|
-
}
|
|
6465
6465
|
setAttr(name, value) {
|
|
6466
6466
|
this[name] = value;
|
|
6467
6467
|
}
|
|
@@ -6478,37 +6478,10 @@ let Leaf = class Leaf {
|
|
|
6478
6478
|
toString(options) {
|
|
6479
6479
|
return JSON.stringify(this.toJSON(options));
|
|
6480
6480
|
}
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
__SVG(_data) {}
|
|
6485
|
-
toHTML() {
|
|
6486
|
-
return undefined;
|
|
6487
|
-
}
|
|
6488
|
-
__setAttr(_attrName, _newValue) {
|
|
6489
|
-
return true;
|
|
6490
|
-
}
|
|
6491
|
-
__getAttr(_attrName) {
|
|
6492
|
-
return undefined;
|
|
6493
|
-
}
|
|
6494
|
-
setProxyAttr(_attrName, _newValue) {}
|
|
6495
|
-
getProxyAttr(_attrName) {
|
|
6496
|
-
return undefined;
|
|
6497
|
-
}
|
|
6498
|
-
find(_condition, _options) {
|
|
6499
|
-
return undefined;
|
|
6500
|
-
}
|
|
6501
|
-
findTag(_tag) {
|
|
6502
|
-
return undefined;
|
|
6503
|
-
}
|
|
6504
|
-
findOne(_condition, _options) {
|
|
6505
|
-
return undefined;
|
|
6506
|
-
}
|
|
6507
|
-
findId(_id) {
|
|
6508
|
-
return undefined;
|
|
6481
|
+
scaleResize(scaleX, scaleY = scaleX, _noResize, _boundsType) {
|
|
6482
|
+
this.scaleX *= scaleX;
|
|
6483
|
+
this.scaleY *= scaleY;
|
|
6509
6484
|
}
|
|
6510
|
-
focus(_value) {}
|
|
6511
|
-
updateState() {}
|
|
6512
6485
|
updateLayout() {
|
|
6513
6486
|
this.__layout.update();
|
|
6514
6487
|
}
|
|
@@ -6524,27 +6497,6 @@ let Leaf = class Leaf {
|
|
|
6524
6497
|
__extraUpdate() {
|
|
6525
6498
|
if (this.leaferIsReady) this.leafer.layouter.addExtra(this);
|
|
6526
6499
|
}
|
|
6527
|
-
__updateWorldMatrix() {}
|
|
6528
|
-
__updateLocalMatrix() {}
|
|
6529
|
-
__updateWorldBounds() {}
|
|
6530
|
-
__updateLocalBounds() {}
|
|
6531
|
-
__updateLocalBoxBounds() {}
|
|
6532
|
-
__updateLocalStrokeBounds() {}
|
|
6533
|
-
__updateLocalRenderBounds() {}
|
|
6534
|
-
__updateBoxBounds(_secondLayout, _bounds) {}
|
|
6535
|
-
__updateContentBounds() {}
|
|
6536
|
-
__updateStrokeBounds(_bounds) {}
|
|
6537
|
-
__updateRenderBounds(_bounds) {}
|
|
6538
|
-
__updateAutoLayout() {}
|
|
6539
|
-
__updateFlowLayout() {}
|
|
6540
|
-
__updateNaturalSize() {}
|
|
6541
|
-
__updateStrokeSpread() {
|
|
6542
|
-
return 0;
|
|
6543
|
-
}
|
|
6544
|
-
__updateRenderSpread() {
|
|
6545
|
-
return 0;
|
|
6546
|
-
}
|
|
6547
|
-
__onUpdateSize() {}
|
|
6548
6500
|
__updateEraser(value) {
|
|
6549
6501
|
this.__hasEraser = value ? true : this.children.some(item => item.__.eraser);
|
|
6550
6502
|
}
|
|
@@ -6558,7 +6510,6 @@ let Leaf = class Leaf {
|
|
|
6558
6510
|
__updateMask(_value) {
|
|
6559
6511
|
this.__hasMask = this.children.some(item => item.__.mask && item.__.visible && item.__.opacity);
|
|
6560
6512
|
}
|
|
6561
|
-
__renderMask(_canvas, _options) {}
|
|
6562
6513
|
__getNowWorld(options) {
|
|
6563
6514
|
if (options.matrix) {
|
|
6564
6515
|
if (!this.__cameraWorld) this.__cameraWorld = {};
|
|
@@ -6675,11 +6626,11 @@ let Leaf = class Leaf {
|
|
|
6675
6626
|
const layer = this.leafer ? this.leafer.zoomLayer : this;
|
|
6676
6627
|
return layer.getWorldPoint(page, relative, distance, change);
|
|
6677
6628
|
}
|
|
6678
|
-
setTransform(matrix, resize, transition) {
|
|
6679
|
-
setTransform(this, matrix, resize, transition);
|
|
6629
|
+
setTransform(matrix, resize, transition, boundsType) {
|
|
6630
|
+
setTransform(this, matrix, resize, transition, boundsType);
|
|
6680
6631
|
}
|
|
6681
|
-
transform(matrix, resize, transition) {
|
|
6682
|
-
transform(this, matrix, resize, transition);
|
|
6632
|
+
transform(matrix, resize, transition, boundsType) {
|
|
6633
|
+
transform(this, matrix, resize, transition, boundsType);
|
|
6683
6634
|
}
|
|
6684
6635
|
move(x, y, transition) {
|
|
6685
6636
|
moveLocal(this, x, y, transition);
|
|
@@ -6687,8 +6638,8 @@ let Leaf = class Leaf {
|
|
|
6687
6638
|
moveInner(x, y, transition) {
|
|
6688
6639
|
moveWorld(this, x, y, true, transition);
|
|
6689
6640
|
}
|
|
6690
|
-
scaleOf(origin, scaleX, scaleY, resize, transition) {
|
|
6691
|
-
zoomOfLocal(this, getLocalOrigin(this, origin), scaleX, scaleY, resize, transition);
|
|
6641
|
+
scaleOf(origin, scaleX, scaleY, resize, transition, boundsType) {
|
|
6642
|
+
zoomOfLocal(this, getLocalOrigin(this, origin), scaleX, scaleY, resize, transition, boundsType);
|
|
6692
6643
|
}
|
|
6693
6644
|
rotateOf(origin, rotation, transition) {
|
|
6694
6645
|
rotateOfLocal(this, getLocalOrigin(this, origin), rotation, transition);
|
|
@@ -6696,14 +6647,14 @@ let Leaf = class Leaf {
|
|
|
6696
6647
|
skewOf(origin, skewX, skewY, resize, transition) {
|
|
6697
6648
|
skewOfLocal(this, getLocalOrigin(this, origin), skewX, skewY, resize, transition);
|
|
6698
6649
|
}
|
|
6699
|
-
transformWorld(worldTransform, resize, transition) {
|
|
6700
|
-
transformWorld(this, worldTransform, resize, transition);
|
|
6650
|
+
transformWorld(worldTransform, resize, transition, boundsType) {
|
|
6651
|
+
transformWorld(this, worldTransform, resize, transition, boundsType);
|
|
6701
6652
|
}
|
|
6702
6653
|
moveWorld(x, y, transition) {
|
|
6703
6654
|
moveWorld(this, x, y, false, transition);
|
|
6704
6655
|
}
|
|
6705
|
-
scaleOfWorld(worldOrigin, scaleX, scaleY, resize, transition) {
|
|
6706
|
-
zoomOfWorld(this, worldOrigin, scaleX, scaleY, resize, transition);
|
|
6656
|
+
scaleOfWorld(worldOrigin, scaleX, scaleY, resize, transition, boundsType) {
|
|
6657
|
+
zoomOfWorld(this, worldOrigin, scaleX, scaleY, resize, transition, boundsType);
|
|
6707
6658
|
}
|
|
6708
6659
|
rotateOfWorld(worldOrigin, rotation) {
|
|
6709
6660
|
rotateOfWorld(this, worldOrigin, rotation);
|
|
@@ -6714,76 +6665,12 @@ let Leaf = class Leaf {
|
|
|
6714
6665
|
flip(axis, transition) {
|
|
6715
6666
|
transform(this, getFlipTransform(this, axis), false, transition);
|
|
6716
6667
|
}
|
|
6717
|
-
scaleResize(scaleX, scaleY = scaleX, _noResize) {
|
|
6718
|
-
this.scaleX *= scaleX;
|
|
6719
|
-
this.scaleY *= scaleY;
|
|
6720
|
-
}
|
|
6721
|
-
__scaleResize(_scaleX, _scaleY) {}
|
|
6722
|
-
resizeWidth(_width) {}
|
|
6723
|
-
resizeHeight(_height) {}
|
|
6724
|
-
hit(_world, _hitRadius) {
|
|
6725
|
-
return true;
|
|
6726
|
-
}
|
|
6727
|
-
__hitWorld(_point, _forceHitFill) {
|
|
6728
|
-
return true;
|
|
6729
|
-
}
|
|
6730
|
-
__hit(_local, _forceHitFill) {
|
|
6731
|
-
return true;
|
|
6732
|
-
}
|
|
6733
|
-
__hitFill(_inner) {
|
|
6734
|
-
return true;
|
|
6735
|
-
}
|
|
6736
|
-
__hitStroke(_inner, _strokeWidth) {
|
|
6737
|
-
return true;
|
|
6738
|
-
}
|
|
6739
|
-
__hitPixel(_inner) {
|
|
6740
|
-
return true;
|
|
6741
|
-
}
|
|
6742
|
-
__drawHitPath(_canvas) {}
|
|
6743
|
-
__updateHitCanvas() {}
|
|
6744
|
-
__render(_canvas, _options) {}
|
|
6745
|
-
__drawFast(_canvas, _options) {}
|
|
6746
|
-
__draw(_canvas, _options, _originCanvas) {}
|
|
6747
|
-
__clip(_canvas, _options) {}
|
|
6748
|
-
__renderShape(_canvas, _options) {}
|
|
6749
|
-
__drawShape(_canvas, _options) {}
|
|
6750
|
-
__updateWorldOpacity() {}
|
|
6751
|
-
__updateChange() {}
|
|
6752
|
-
__drawPath(_canvas) {}
|
|
6753
|
-
__drawRenderPath(_canvas) {}
|
|
6754
|
-
__updatePath() {}
|
|
6755
|
-
__updateRenderPath(_updateCache) {}
|
|
6756
|
-
getMotionPathData() {
|
|
6757
|
-
return Plugin.need("path");
|
|
6758
|
-
}
|
|
6759
|
-
getMotionPoint(_motionDistance) {
|
|
6760
|
-
return Plugin.need("path");
|
|
6761
|
-
}
|
|
6762
|
-
getMotionTotal() {
|
|
6763
|
-
return 0;
|
|
6764
|
-
}
|
|
6765
|
-
__updateMotionPath() {}
|
|
6766
|
-
__runAnimation(_type, _complete) {}
|
|
6767
|
-
__updateSortChildren() {}
|
|
6768
|
-
add(_child, _index) {}
|
|
6769
6668
|
remove(_child, destroy) {
|
|
6770
6669
|
if (this.parent) this.parent.remove(this, destroy);
|
|
6771
6670
|
}
|
|
6772
6671
|
dropTo(parent, index, resize) {
|
|
6773
6672
|
drop(this, parent, index, resize);
|
|
6774
6673
|
}
|
|
6775
|
-
on(_type, _listener, _options) {}
|
|
6776
|
-
off(_type, _listener, _options) {}
|
|
6777
|
-
on_(_type, _listener, _bind, _options) {
|
|
6778
|
-
return undefined;
|
|
6779
|
-
}
|
|
6780
|
-
off_(_id) {}
|
|
6781
|
-
once(_type, _listener, _captureOrBind, _capture) {}
|
|
6782
|
-
emit(_type, _event, _capture) {}
|
|
6783
|
-
emitEvent(_event, _capture) {}
|
|
6784
|
-
hasEvent(_type, _capture) {
|
|
6785
|
-
return false;
|
|
6786
|
-
}
|
|
6787
6674
|
static changeAttr(attrName, defaultValue, fn) {
|
|
6788
6675
|
fn ? this.addAttr(attrName, defaultValue, fn) : defineDataProcessor(this.prototype, attrName, defaultValue);
|
|
6789
6676
|
}
|
|
@@ -7089,7 +6976,7 @@ class LeafLevelList {
|
|
|
7089
6976
|
}
|
|
7090
6977
|
}
|
|
7091
6978
|
|
|
7092
|
-
const version = "2.1.
|
|
6979
|
+
const version = "2.1.5";
|
|
7093
6980
|
|
|
7094
6981
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
7095
6982
|
get allowBackgroundColor() {
|
|
@@ -8535,17 +8422,12 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
8535
8422
|
if (!path) this.__drawPathByBox(pen);
|
|
8536
8423
|
return pen;
|
|
8537
8424
|
}
|
|
8538
|
-
reset(_data) {}
|
|
8539
8425
|
set(data, _transition) {
|
|
8540
8426
|
if (data) Object.assign(this, data);
|
|
8541
8427
|
}
|
|
8542
8428
|
get(name) {
|
|
8543
8429
|
return isString(name) ? this.__.__getInput(name) : this.__.__getInputData(name);
|
|
8544
8430
|
}
|
|
8545
|
-
createProxyData() {
|
|
8546
|
-
return undefined;
|
|
8547
|
-
}
|
|
8548
|
-
clearProxyData() {}
|
|
8549
8431
|
find(_condition, _options) {
|
|
8550
8432
|
return Plugin.need("find");
|
|
8551
8433
|
}
|
|
@@ -8583,6 +8465,7 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
8583
8465
|
data.lazy && !this.__inLazyBounds && !Export.running ? data.__needComputePaint = true : data.__computePaint();
|
|
8584
8466
|
}
|
|
8585
8467
|
}
|
|
8468
|
+
__updatePath() {}
|
|
8586
8469
|
__updateRenderPath(updateCache) {
|
|
8587
8470
|
const data = this.__;
|
|
8588
8471
|
if (data.path) {
|
|
@@ -8618,7 +8501,6 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
8618
8501
|
this.set(keyframe);
|
|
8619
8502
|
return Plugin.need("animate");
|
|
8620
8503
|
}
|
|
8621
|
-
killAnimate(_type, _nextStyle) {}
|
|
8622
8504
|
export(_filename, _options) {
|
|
8623
8505
|
return Plugin.need("export");
|
|
8624
8506
|
}
|
|
@@ -8794,8 +8676,6 @@ __decorate([ dataType(100) ], UI.prototype, "placeholderDelay", void 0);
|
|
|
8794
8676
|
|
|
8795
8677
|
__decorate([ dataType({}) ], UI.prototype, "data", void 0);
|
|
8796
8678
|
|
|
8797
|
-
__decorate([ rewrite(Leaf.prototype.reset) ], UI.prototype, "reset", null);
|
|
8798
|
-
|
|
8799
8679
|
UI = UI_1 = __decorate([ useModule(UIBounds), useModule(UIRender), rewriteAble() ], UI);
|
|
8800
8680
|
|
|
8801
8681
|
let Group = class Group extends UI {
|
|
@@ -8832,9 +8712,6 @@ let Group = class Group extends UI {
|
|
|
8832
8712
|
}
|
|
8833
8713
|
return data;
|
|
8834
8714
|
}
|
|
8835
|
-
pick(_hitPoint, _options) {
|
|
8836
|
-
return undefined;
|
|
8837
|
-
}
|
|
8838
8715
|
addAt(child, index) {
|
|
8839
8716
|
this.add(child, index);
|
|
8840
8717
|
}
|
|
@@ -8844,11 +8721,6 @@ let Group = class Group extends UI {
|
|
|
8844
8721
|
addBefore(child, before) {
|
|
8845
8722
|
this.add(child, this.children.indexOf(before));
|
|
8846
8723
|
}
|
|
8847
|
-
add(_child, _index) {}
|
|
8848
|
-
addMany(..._children) {}
|
|
8849
|
-
remove(_child, _destroy) {}
|
|
8850
|
-
removeAll(_destroy) {}
|
|
8851
|
-
clear() {}
|
|
8852
8724
|
};
|
|
8853
8725
|
|
|
8854
8726
|
__decorate([ dataProcessor(GroupData) ], Group.prototype, "__", void 0);
|
|
@@ -9822,51 +9694,6 @@ let Pen = class Pen extends Group {
|
|
|
9822
9694
|
this.add(path);
|
|
9823
9695
|
return this;
|
|
9824
9696
|
}
|
|
9825
|
-
beginPath() {
|
|
9826
|
-
return this;
|
|
9827
|
-
}
|
|
9828
|
-
moveTo(_x, _y) {
|
|
9829
|
-
return this;
|
|
9830
|
-
}
|
|
9831
|
-
lineTo(_x, _y) {
|
|
9832
|
-
return this;
|
|
9833
|
-
}
|
|
9834
|
-
bezierCurveTo(_x1, _y1, _x2, _y2, _x, _y) {
|
|
9835
|
-
return this;
|
|
9836
|
-
}
|
|
9837
|
-
quadraticCurveTo(_x1, _y1, _x, _y) {
|
|
9838
|
-
return this;
|
|
9839
|
-
}
|
|
9840
|
-
closePath() {
|
|
9841
|
-
return this;
|
|
9842
|
-
}
|
|
9843
|
-
rect(_x, _y, _width, _height) {
|
|
9844
|
-
return this;
|
|
9845
|
-
}
|
|
9846
|
-
roundRect(_x, _y, _width, _height, _cornerRadius) {
|
|
9847
|
-
return this;
|
|
9848
|
-
}
|
|
9849
|
-
ellipse(_x, _y, _radiusX, _radiusY, _rotation, _startAngle, _endAngle, _anticlockwise) {
|
|
9850
|
-
return this;
|
|
9851
|
-
}
|
|
9852
|
-
arc(_x, _y, _radius, _startAngle, _endAngle, _anticlockwise) {
|
|
9853
|
-
return this;
|
|
9854
|
-
}
|
|
9855
|
-
arcTo(_x1, _y1, _x2, _y2, _radius) {
|
|
9856
|
-
return this;
|
|
9857
|
-
}
|
|
9858
|
-
drawEllipse(_x, _y, _radiusX, _radiusY, _rotation, _startAngle, _endAngle, _anticlockwise) {
|
|
9859
|
-
return this;
|
|
9860
|
-
}
|
|
9861
|
-
drawArc(_x, _y, _radius, _startAngle, _endAngle, _anticlockwise) {
|
|
9862
|
-
return this;
|
|
9863
|
-
}
|
|
9864
|
-
drawPoints(_points, _curve, _close) {
|
|
9865
|
-
return this;
|
|
9866
|
-
}
|
|
9867
|
-
clearPath() {
|
|
9868
|
-
return this;
|
|
9869
|
-
}
|
|
9870
9697
|
paint() {
|
|
9871
9698
|
const {pathElement: pathElement} = this;
|
|
9872
9699
|
if (!pathElement.__layout.boxChanged) pathElement.forceUpdate("path");
|
|
@@ -10332,7 +10159,7 @@ function checkSizeAndCreateData(ui, attrName, paint, image, leafPaint, boxBounds
|
|
|
10332
10159
|
needUpdate = false;
|
|
10333
10160
|
}
|
|
10334
10161
|
}
|
|
10335
|
-
if (paint.mode === "brush") PaintImage.brush(leafPaint, ui);
|
|
10162
|
+
if (paint.mode === "brush") PaintImage.brush(leafPaint, ui, attrName);
|
|
10336
10163
|
if (!leafPaint.data) {
|
|
10337
10164
|
PaintImage.createData(leafPaint, image, paint, boxBounds);
|
|
10338
10165
|
const {transform: transform} = leafPaint.data, {opacity: opacity} = paint;
|