leafer-draw 1.0.10 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/web.cjs +12 -0
- package/dist/web.esm.js +12 -0
- package/dist/web.esm.min.js +1 -1
- package/dist/web.js +42 -29
- package/dist/web.min.cjs +1 -1
- package/dist/web.min.js +1 -1
- package/dist/web.module.js +42 -29
- package/dist/web.module.min.js +1 -1
- package/package.json +2 -2
package/dist/web.module.js
CHANGED
|
@@ -108,7 +108,7 @@ const MathHelper = {
|
|
|
108
108
|
return rotation - oldRotation;
|
|
109
109
|
},
|
|
110
110
|
float(num, maxLength) {
|
|
111
|
-
const a = maxLength ? pow$1(10, maxLength) : 1000000000000;
|
|
111
|
+
const a = maxLength !== undefined ? pow$1(10, maxLength) : 1000000000000;
|
|
112
112
|
num = round(num * a) / a;
|
|
113
113
|
return num === -0 ? 0 : num;
|
|
114
114
|
},
|
|
@@ -4165,20 +4165,17 @@ const LeafHelper = {
|
|
|
4165
4165
|
}
|
|
4166
4166
|
return true;
|
|
4167
4167
|
},
|
|
4168
|
-
moveWorld(t, x, y = 0, isInnerPoint) {
|
|
4168
|
+
moveWorld(t, x, y = 0, isInnerPoint, transition) {
|
|
4169
4169
|
const local = typeof x === 'object' ? Object.assign({}, x) : { x, y };
|
|
4170
4170
|
isInnerPoint ? toOuterPoint$1(t.localTransform, local, local, true) : (t.parent && toInnerPoint$1(t.parent.worldTransform, local, local, true));
|
|
4171
|
-
L.moveLocal(t, local.x, local.y);
|
|
4171
|
+
L.moveLocal(t, local.x, local.y, transition);
|
|
4172
4172
|
},
|
|
4173
|
-
moveLocal(t, x, y = 0) {
|
|
4174
|
-
if (typeof x === 'object')
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
t.x += x;
|
|
4180
|
-
t.y += y;
|
|
4181
|
-
}
|
|
4173
|
+
moveLocal(t, x, y = 0, transition) {
|
|
4174
|
+
if (typeof x === 'object')
|
|
4175
|
+
y = x.y, x = x.x;
|
|
4176
|
+
x += t.x;
|
|
4177
|
+
y += t.y;
|
|
4178
|
+
transition ? t.animate({ x, y }, transition) : (t.x = x, t.y = y);
|
|
4182
4179
|
},
|
|
4183
4180
|
zoomOfWorld(t, origin, scaleX, scaleY, resize) {
|
|
4184
4181
|
L.zoomOfLocal(t, getTempLocal(t, origin), scaleX, scaleY, resize);
|
|
@@ -5558,11 +5555,11 @@ let Leaf = class Leaf {
|
|
|
5558
5555
|
transform(matrix, resize) {
|
|
5559
5556
|
transform(this, matrix, resize);
|
|
5560
5557
|
}
|
|
5561
|
-
move(x, y) {
|
|
5562
|
-
moveLocal(this, x, y);
|
|
5558
|
+
move(x, y, transition) {
|
|
5559
|
+
moveLocal(this, x, y, transition);
|
|
5563
5560
|
}
|
|
5564
|
-
moveInner(x, y) {
|
|
5565
|
-
moveWorld(this, x, y, true);
|
|
5561
|
+
moveInner(x, y, transition) {
|
|
5562
|
+
moveWorld(this, x, y, true, transition);
|
|
5566
5563
|
}
|
|
5567
5564
|
scaleOf(origin, scaleX, scaleY, resize) {
|
|
5568
5565
|
zoomOfLocal(this, getLocalOrigin(this, origin), scaleX, scaleY, resize);
|
|
@@ -5576,8 +5573,8 @@ let Leaf = class Leaf {
|
|
|
5576
5573
|
transformWorld(worldTransform, resize) {
|
|
5577
5574
|
transformWorld(this, worldTransform, resize);
|
|
5578
5575
|
}
|
|
5579
|
-
moveWorld(x, y) {
|
|
5580
|
-
moveWorld(this, x, y);
|
|
5576
|
+
moveWorld(x, y, transition) {
|
|
5577
|
+
moveWorld(this, x, y, false, transition);
|
|
5581
5578
|
}
|
|
5582
5579
|
scaleOfWorld(worldOrigin, scaleX, scaleY, resize) {
|
|
5583
5580
|
zoomOfWorld(this, worldOrigin, scaleX, scaleY, resize);
|
|
@@ -5975,7 +5972,7 @@ class LeafLevelList {
|
|
|
5975
5972
|
}
|
|
5976
5973
|
}
|
|
5977
5974
|
|
|
5978
|
-
const version = "1.0
|
|
5975
|
+
const version = "1.1.0";
|
|
5979
5976
|
|
|
5980
5977
|
const debug$5 = Debug.get('LeaferCanvas');
|
|
5981
5978
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
@@ -7305,11 +7302,15 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
7305
7302
|
super(data);
|
|
7306
7303
|
}
|
|
7307
7304
|
reset(_data) { }
|
|
7308
|
-
set(data,
|
|
7309
|
-
if (
|
|
7310
|
-
|
|
7311
|
-
|
|
7312
|
-
|
|
7305
|
+
set(data, transition) {
|
|
7306
|
+
if (transition) {
|
|
7307
|
+
if (transition === 'temp') {
|
|
7308
|
+
this.lockNormalStyle = true;
|
|
7309
|
+
Object.assign(this, data);
|
|
7310
|
+
this.lockNormalStyle = false;
|
|
7311
|
+
}
|
|
7312
|
+
else
|
|
7313
|
+
this.animate(data, transition);
|
|
7313
7314
|
}
|
|
7314
7315
|
else
|
|
7315
7316
|
Object.assign(this, data);
|
|
@@ -7619,17 +7620,17 @@ let Group = class Group extends UI {
|
|
|
7619
7620
|
if (!this.children)
|
|
7620
7621
|
this.children = [];
|
|
7621
7622
|
}
|
|
7622
|
-
set(data,
|
|
7623
|
+
set(data, transition) {
|
|
7623
7624
|
if (data.children) {
|
|
7624
7625
|
const { children } = data;
|
|
7625
7626
|
delete data.children;
|
|
7626
7627
|
this.children ? this.clear() : this.__setBranch();
|
|
7627
|
-
super.set(data,
|
|
7628
|
+
super.set(data, transition);
|
|
7628
7629
|
children.forEach(child => this.add(child));
|
|
7629
7630
|
data.children = children;
|
|
7630
7631
|
}
|
|
7631
7632
|
else
|
|
7632
|
-
super.set(data,
|
|
7633
|
+
super.set(data, transition);
|
|
7633
7634
|
}
|
|
7634
7635
|
toJSON(options) {
|
|
7635
7636
|
const data = super.toJSON(options);
|
|
@@ -7742,8 +7743,8 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7742
7743
|
}
|
|
7743
7744
|
onInit() { }
|
|
7744
7745
|
initType(_type) { }
|
|
7745
|
-
set(data) {
|
|
7746
|
-
this.waitInit(() => { super.set(data); });
|
|
7746
|
+
set(data, transition) {
|
|
7747
|
+
this.waitInit(() => { super.set(data, transition); });
|
|
7747
7748
|
}
|
|
7748
7749
|
start() {
|
|
7749
7750
|
clearTimeout(this.__startTimer);
|
|
@@ -8838,6 +8839,8 @@ function stroke(stroke, ui, canvas) {
|
|
|
8838
8839
|
case 'center':
|
|
8839
8840
|
canvas.setStroke(stroke, __strokeWidth, options);
|
|
8840
8841
|
canvas.stroke();
|
|
8842
|
+
if (options.__useArrow)
|
|
8843
|
+
strokeArrow(ui, canvas);
|
|
8841
8844
|
break;
|
|
8842
8845
|
case 'inside':
|
|
8843
8846
|
canvas.save();
|
|
@@ -8875,6 +8878,8 @@ function strokes(strokes, ui, canvas) {
|
|
|
8875
8878
|
case 'center':
|
|
8876
8879
|
canvas.setStroke(undefined, __strokeWidth, options);
|
|
8877
8880
|
drawStrokesStyle(strokes, false, ui, canvas);
|
|
8881
|
+
if (options.__useArrow)
|
|
8882
|
+
strokeArrow(ui, canvas);
|
|
8878
8883
|
break;
|
|
8879
8884
|
case 'inside':
|
|
8880
8885
|
canvas.save();
|
|
@@ -8900,6 +8905,14 @@ function strokes(strokes, ui, canvas) {
|
|
|
8900
8905
|
}
|
|
8901
8906
|
}
|
|
8902
8907
|
}
|
|
8908
|
+
function strokeArrow(ui, canvas) {
|
|
8909
|
+
if (ui.__.dashPattern) {
|
|
8910
|
+
canvas.beginPath();
|
|
8911
|
+
ui.__drawPathByData(canvas, ui.__.__pathForArrow);
|
|
8912
|
+
canvas.dashPattern = null;
|
|
8913
|
+
canvas.stroke();
|
|
8914
|
+
}
|
|
8915
|
+
}
|
|
8903
8916
|
|
|
8904
8917
|
const { getSpread, getOuterOf, getByMove, getIntersectData } = BoundsHelper;
|
|
8905
8918
|
function shape(ui, current, options) {
|