@leafer-ui/worker 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/worker.cjs +12 -0
- package/dist/worker.esm.js +12 -0
- package/dist/worker.esm.min.js +1 -1
- package/dist/worker.js +46 -38
- package/dist/worker.min.cjs +1 -1
- package/dist/worker.min.js +1 -1
- package/dist/worker.module.js +46 -38
- package/dist/worker.module.min.js +1 -1
- package/package.json +9 -9
package/dist/worker.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
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
5981
5978
|
get allowBackgroundColor() { return true; }
|
|
@@ -7405,11 +7402,15 @@ let UI = UI_1 = class UI extends Leaf {
|
|
|
7405
7402
|
super(data);
|
|
7406
7403
|
}
|
|
7407
7404
|
reset(_data) { }
|
|
7408
|
-
set(data,
|
|
7409
|
-
if (
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
|
|
7405
|
+
set(data, transition) {
|
|
7406
|
+
if (transition) {
|
|
7407
|
+
if (transition === 'temp') {
|
|
7408
|
+
this.lockNormalStyle = true;
|
|
7409
|
+
Object.assign(this, data);
|
|
7410
|
+
this.lockNormalStyle = false;
|
|
7411
|
+
}
|
|
7412
|
+
else
|
|
7413
|
+
this.animate(data, transition);
|
|
7413
7414
|
}
|
|
7414
7415
|
else
|
|
7415
7416
|
Object.assign(this, data);
|
|
@@ -7719,17 +7720,17 @@ let Group = class Group extends UI {
|
|
|
7719
7720
|
if (!this.children)
|
|
7720
7721
|
this.children = [];
|
|
7721
7722
|
}
|
|
7722
|
-
set(data,
|
|
7723
|
+
set(data, transition) {
|
|
7723
7724
|
if (data.children) {
|
|
7724
7725
|
const { children } = data;
|
|
7725
7726
|
delete data.children;
|
|
7726
7727
|
this.children ? this.clear() : this.__setBranch();
|
|
7727
|
-
super.set(data,
|
|
7728
|
+
super.set(data, transition);
|
|
7728
7729
|
children.forEach(child => this.add(child));
|
|
7729
7730
|
data.children = children;
|
|
7730
7731
|
}
|
|
7731
7732
|
else
|
|
7732
|
-
super.set(data,
|
|
7733
|
+
super.set(data, transition);
|
|
7733
7734
|
}
|
|
7734
7735
|
toJSON(options) {
|
|
7735
7736
|
const data = super.toJSON(options);
|
|
@@ -7842,8 +7843,8 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7842
7843
|
}
|
|
7843
7844
|
onInit() { }
|
|
7844
7845
|
initType(_type) { }
|
|
7845
|
-
set(data) {
|
|
7846
|
-
this.waitInit(() => { super.set(data); });
|
|
7846
|
+
set(data, transition) {
|
|
7847
|
+
this.waitInit(() => { super.set(data, transition); });
|
|
7847
7848
|
}
|
|
7848
7849
|
start() {
|
|
7849
7850
|
clearTimeout(this.__startTimer);
|
|
@@ -9032,10 +9033,8 @@ let DragEvent = class DragEvent extends PointerEvent {
|
|
|
9032
9033
|
this.data = data;
|
|
9033
9034
|
}
|
|
9034
9035
|
static getValidMove(leaf, start, total) {
|
|
9035
|
-
const { draggable, dragBounds
|
|
9036
|
-
|
|
9037
|
-
move.x += start.x - x;
|
|
9038
|
-
move.y += start.y - y;
|
|
9036
|
+
const { draggable, dragBounds } = leaf, move = leaf.getLocalPoint(total, null, true);
|
|
9037
|
+
PointHelper.move(move, start.x - leaf.x, start.y - leaf.y);
|
|
9039
9038
|
if (dragBounds)
|
|
9040
9039
|
this.getMoveInDragBounds(leaf.__local, dragBounds === 'parent' ? leaf.parent.boxBounds : dragBounds, move, true);
|
|
9041
9040
|
if (draggable === 'x')
|
|
@@ -9045,8 +9044,7 @@ let DragEvent = class DragEvent extends PointerEvent {
|
|
|
9045
9044
|
return move;
|
|
9046
9045
|
}
|
|
9047
9046
|
static getMoveInDragBounds(childBox, dragBounds, move, change) {
|
|
9048
|
-
const x = childBox.x + move.x, y = childBox.y + move.y;
|
|
9049
|
-
const right = x + childBox.width, bottom = y + childBox.height;
|
|
9047
|
+
const x = childBox.x + move.x, y = childBox.y + move.y, right = x + childBox.width, bottom = y + childBox.height;
|
|
9050
9048
|
const boundsRight = dragBounds.x + dragBounds.width, boundsBottom = dragBounds.y + dragBounds.height;
|
|
9051
9049
|
if (!change)
|
|
9052
9050
|
move = Object.assign({}, move);
|
|
@@ -9098,9 +9096,7 @@ let DragEvent = class DragEvent extends PointerEvent {
|
|
|
9098
9096
|
return this.getLocalMove(relative, true);
|
|
9099
9097
|
}
|
|
9100
9098
|
getPageBounds() {
|
|
9101
|
-
const total = this.getPageTotal();
|
|
9102
|
-
const start = this.getPagePoint();
|
|
9103
|
-
const bounds = {};
|
|
9099
|
+
const total = this.getPageTotal(), start = this.getPagePoint(), bounds = {};
|
|
9104
9100
|
BoundsHelper.set(bounds, start.x - total.x, start.y - total.y, total.x, total.y);
|
|
9105
9101
|
BoundsHelper.unsign(bounds);
|
|
9106
9102
|
return bounds;
|
|
@@ -10488,6 +10484,8 @@ function stroke(stroke, ui, canvas) {
|
|
|
10488
10484
|
case 'center':
|
|
10489
10485
|
canvas.setStroke(stroke, __strokeWidth, options);
|
|
10490
10486
|
canvas.stroke();
|
|
10487
|
+
if (options.__useArrow)
|
|
10488
|
+
strokeArrow(ui, canvas);
|
|
10491
10489
|
break;
|
|
10492
10490
|
case 'inside':
|
|
10493
10491
|
canvas.save();
|
|
@@ -10525,6 +10523,8 @@ function strokes(strokes, ui, canvas) {
|
|
|
10525
10523
|
case 'center':
|
|
10526
10524
|
canvas.setStroke(undefined, __strokeWidth, options);
|
|
10527
10525
|
drawStrokesStyle(strokes, false, ui, canvas);
|
|
10526
|
+
if (options.__useArrow)
|
|
10527
|
+
strokeArrow(ui, canvas);
|
|
10528
10528
|
break;
|
|
10529
10529
|
case 'inside':
|
|
10530
10530
|
canvas.save();
|
|
@@ -10550,6 +10550,14 @@ function strokes(strokes, ui, canvas) {
|
|
|
10550
10550
|
}
|
|
10551
10551
|
}
|
|
10552
10552
|
}
|
|
10553
|
+
function strokeArrow(ui, canvas) {
|
|
10554
|
+
if (ui.__.dashPattern) {
|
|
10555
|
+
canvas.beginPath();
|
|
10556
|
+
ui.__drawPathByData(canvas, ui.__.__pathForArrow);
|
|
10557
|
+
canvas.dashPattern = null;
|
|
10558
|
+
canvas.stroke();
|
|
10559
|
+
}
|
|
10560
|
+
}
|
|
10553
10561
|
|
|
10554
10562
|
const { getSpread, getOuterOf, getByMove, getIntersectData } = BoundsHelper;
|
|
10555
10563
|
function shape(ui, current, options) {
|