1
- /*! JointJS v3.5.4 (2022-03-04 ) - JavaScript diagramming library
1
+ /*! JointJS v3.5.5 (2022-04-08 ) - JavaScript diagramming library
2
2
3
3
4
4
This Source Code Form is subject to the terms of the Mozilla Public
@@ -20701,18 +20701,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20701
20701
sourceTangent: opt.sourceTangent ? new Point(opt.sourceTangent) : null,
20702
20702
targetTangent: opt.targetTangent ? new Point(opt.targetTangent) : null
20703
20703
};
20704
- if (typeof opt.sourceDirection === 'string')
20704
+ if (typeof opt.sourceDirection === 'string')
20705
20705
{ options.sourceDirection = opt.sourceDirection; }
20706
20706
else if (typeof opt.sourceDirection === 'number')
20707
20707
{ options.sourceDirection = new Point(1, 0).rotate(null, opt.sourceDirection); }
20708
20708
else
20709
20709
{ options.sourceDirection = opt.sourceDirection ? new Point(opt.sourceDirection).normalize() : null; }
20710
20710
20711
- if (typeof opt.targetDirection === 'string')
20711
+ if (typeof opt.targetDirection === 'string')
20712
20712
{ options.targetDirection = opt.targetDirection; }
20713
20713
else if (typeof opt.targetDirection === 'number')
20714
20714
{ options.targetDirection = new Point(1, 0).rotate(null, opt.targetDirection); }
20715
- else
20715
+ else
20716
20716
{ options.targetDirection = opt.targetDirection ? new Point(opt.targetDirection).normalize() : null; }
20717
20717
20718
20718
var completeRoute = [sourcePoint ].concat( route.map(function (p) { return new Point(p); }), [targetPoint]);
@@ -20751,7 +20751,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20751
20751
targetTangent = targetDirection.clone().scale(tangentLength$1, tangentLength$1);
20752
20752
}
20753
20753
}
20754
-
20754
+
20755
20755
var catmullRomCurves = createCatmullRomCurves(completeRoute, sourceTangent, targetTangent, options);
20756
20756
var bezierCurves = catmullRomCurves.map(function (curve) { return catmullRomToBezier(curve, options); });
20757
20757
var path = new Path(bezierCurves).round(precision);
@@ -20768,20 +20768,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20768
20768
if (!sourceBBox.width || !sourceBBox.height) {
20769
20769
if (sourceBBox.x > route[1].x)
20770
20770
{ sourceSide = 'right'; }
20771
- else
20771
+ else
20772
20772
{ sourceSide = 'left'; }
20773
20773
} else {
20774
20774
sourceSide = sourceBBox.sideNearestToPoint(route[0]);
20775
20775
}
20776
20776
20777
20777
switch (sourceSide) {
20778
- case 'left': {
20778
+ case 'left':
20779
20779
return new Point(-1, 0);
20780
- }
20781
20780
case 'right':
20782
- default: {
20781
+ default:
20783
20782
return new Point(1, 0);
20784
- }
20785
20783
}
20786
20784
}
20787
20785
@@ -20792,20 +20790,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20792
20790
if (!targetBBox.width || !targetBBox.height) {
20793
20791
if (targetBBox.x > route[route.length - 2].x)
20794
20792
{ targetSide = 'left'; }
20795
- else
20793
+ else
20796
20794
{ targetSide = 'right'; }
20797
20795
} else {
20798
20796
targetSide = targetBBox.sideNearestToPoint(route[route.length - 1]);
20799
20797
}
20800
20798
20801
20799
switch (targetSide) {
20802
- case 'left': {
20800
+ case 'left':
20803
20801
return new Point(-1, 0);
20804
- }
20805
20802
case 'right':
20806
- default: {
20803
+ default:
20807
20804
return new Point(1, 0);
20808
- }
20809
20805
}
20810
20806
}
20811
20807
@@ -20816,20 +20812,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20816
20812
if (!sourceBBox.width || !sourceBBox.height) {
20817
20813
if (sourceBBox.y > route[1].y)
20818
20814
{ sourceSide = 'bottom'; }
20819
- else
20815
+ else
20820
20816
{ sourceSide = 'top'; }
20821
20817
} else {
20822
20818
sourceSide = sourceBBox.sideNearestToPoint(route[0]);
20823
20819
}
20824
20820
20825
20821
switch (sourceSide) {
20826
- case 'top': {
20822
+ case 'top':
20827
20823
return new Point(0, -1);
20828
- }
20829
20824
case 'bottom':
20830
- default: {
20825
+ default:
20831
20826
return new Point(0, 1);
20832
- }
20833
20827
}
20834
20828
}
20835
20829
@@ -20840,20 +20834,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20840
20834
if (!targetBBox.width || !targetBBox.height) {
20841
20835
if (targetBBox.y > route[route.length - 2].y)
20842
20836
{ targetSide = 'top'; }
20843
- else
20837
+ else
20844
20838
{ targetSide = 'bottom'; }
20845
20839
} else {
20846
20840
targetSide = targetBBox.sideNearestToPoint(route[route.length - 1]);
20847
20841
}
20848
20842
20849
20843
switch (targetSide) {
20850
- case 'top': {
20844
+ case 'top':
20851
20845
return new Point(0, -1);
20852
- }
20853
20846
case 'bottom':
20854
- default: {
20847
+ default:
20855
20848
return new Point(0, 1);
20856
- }
20857
20849
}
20858
20850
}
20859
20851
@@ -20881,7 +20873,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20881
20873
20882
20874
function getAutoTargetDirection(linkView, route, options) {
20883
20875
var targetBBox = linkView.targetBBox;
20884
-
20876
+
20885
20877
var targetSide;
20886
20878
if (!targetBBox.width || !targetBBox.height) {
20887
20879
targetSide = targetBBox.sideNearestToPoint(route[route.length - 2]);
@@ -20924,27 +20916,26 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20924
20916
20925
20917
function getSourceTangentDirection(linkView, route, direction, options) {
20926
20918
if (options.sourceDirection) {
20927
- switch(options.sourceDirection) {
20919
+ switch (options.sourceDirection) {
20928
20920
case TangentDirections.UP:
20929
20921
return new Point(0, -1);
20930
20922
case TangentDirections.DOWN:
20931
20923
return new Point(0, 1);
20932
20924
case TangentDirections.LEFT:
20933
20925
return new Point(-1, 0);
20934
20926
case TangentDirections.RIGHT:
20935
- return new Point(0, 1 );
20927
+ return new Point(1, 0 );
20936
20928
case TangentDirections.AUTO:
20937
- return getAutoSourceDirection(linkView, route);
20929
+ return getAutoSourceDirection(linkView, route);
20938
20930
case TangentDirections.CLOSEST_POINT:
20939
20931
return getClosestPointSourceDirection(linkView, route);
20940
- case TangentDirections.OUTWARDS: {
20932
+ case TangentDirections.OUTWARDS:
20941
20933
return getOutwardsSourceDirection(linkView, route);
20942
- }
20943
20934
default:
20944
20935
return options.sourceDirection;
20945
20936
}
20946
20937
}
20947
-
20938
+
20948
20939
switch (direction) {
20949
20940
case Directions.HORIZONTAL:
20950
20941
return getHorizontalSourceDirection(linkView, route);
@@ -20953,16 +20944,16 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20953
20944
case Directions.CLOSEST_POINT:
20954
20945
return getClosestPointSourceDirection(linkView, route);
20955
20946
case Directions.OUTWARDS:
20956
- return getOutwardsSourceDirection(linkView, route);
20947
+ return getOutwardsSourceDirection(linkView, route);
20957
20948
case Directions.AUTO:
20958
20949
default:
20959
- return getAutoSourceDirection(linkView, route);
20960
- }
20950
+ return getAutoSourceDirection(linkView, route);
20951
+ }
20961
20952
}
20962
20953
20963
20954
function getTargetTangentDirection(linkView, route, direction, options) {
20964
20955
if (options.targetDirection) {
20965
- switch(options.targetDirection) {
20956
+ switch (options.targetDirection) {
20966
20957
case TangentDirections.UP:
20967
20958
return new Point(0, -1);
20968
20959
case TangentDirections.DOWN:
@@ -20972,30 +20963,29 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
20972
20963
case TangentDirections.RIGHT:
20973
20964
return new Point(0, 1);
20974
20965
case TangentDirections.AUTO:
20975
- return getAutoTargetDirection(linkView, route);
20966
+ return getAutoTargetDirection(linkView, route);
20976
20967
case TangentDirections.CLOSEST_POINT:
20977
20968
return getClosestPointTargetDirection(linkView, route);
20978
- case TangentDirections.OUTWARDS: {
20969
+ case TangentDirections.OUTWARDS:
20979
20970
return getOutwardsTargetDirection(linkView, route);
20980
- }
20981
20971
default:
20982
20972
return options.targetDirection;
20983
20973
}
20984
20974
}
20985
-
20975
+
20986
20976
switch (direction) {
20987
20977
case Directions.HORIZONTAL:
20988
- return getHorizontalTargetDirection(linkView, route);
20978
+ return getHorizontalTargetDirection(linkView, route);
20989
20979
case Directions.VERTICAL:
20990
20980
return getVerticalTargetDirection(linkView, route);
20991
20981
case Directions.CLOSEST_POINT:
20992
20982
return getClosestPointTargetDirection(linkView, route);
20993
20983
case Directions.OUTWARDS:
20994
- return getOutwardsTargetDirection(linkView, route);
20984
+ return getOutwardsTargetDirection(linkView, route);
20995
20985
case Directions.AUTO:
20996
20986
default:
20997
- return getAutoTargetDirection(linkView, route);
20998
- }
20987
+ return getAutoTargetDirection(linkView, route);
20988
+ }
20999
20989
}
21000
20990
21001
20991
function rotateVector(vector, angle) {
@@ -21023,15 +21013,15 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
21023
21013
var coeff = options.coeff;
21024
21014
var distances = [];
21025
21015
var tangents = [];
21026
- var catmullRomCurves = [];
21016
+ var catmullRomCurves = [];
21027
21017
var n = points.length - 1;
21028
21018
21029
21019
for (var i = 0; i < n; i++) {
21030
21020
distances[i] = points[i].distance(points[i + 1]);
21031
21021
}
21032
21022
21033
21023
tangents[0] = sourceTangent;
21034
- tangents[n] = targetTangent;
21024
+ tangents[n] = targetTangent;
21035
21025
21036
21026
// The calculation of tangents of vertices
21037
21027
for (var i$1 = 1; i$1 < n; i$1++) {
@@ -21043,13 +21033,13 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
21043
21033
tpPrev = points[i$1 - 1].clone();
21044
21034
}
21045
21035
if (i$1 === n - 1) {
21046
- tpNext = points[i$1 + 1].clone().offset(tangents[i$1 + 1].x, tangents[i$1 + 1].y);
21036
+ tpNext = points[i$1 + 1].clone().offset(tangents[i$1 + 1].x, tangents[i$1 + 1].y);
21047
21037
} else {
21048
21038
tpNext = points[i$1 + 1].clone();
21049
21039
}
21050
21040
var v1 = tpPrev.difference(points[i$1]).normalize();
21051
21041
var v2 = tpNext.difference(points[i$1]).normalize();
21052
- var vAngle = angleBetweenVectors(v1, v2);
21042
+ var vAngle = angleBetweenVectors(v1, v2);
21053
21043
21054
21044
var rot = (Math.PI - vAngle) / 2;
21055
21045
var t = (void 0);
@@ -21064,7 +21054,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
21064
21054
}
21065
21055
t = v2.clone();
21066
21056
rotateVector(t, rot);
21067
-
21057
+
21068
21058
var t1 = t.clone();
21069
21059
var t2 = t.clone();
21070
21060
var scaleFactor1 = distances[i$1 - 1] * coeff;
@@ -21080,7 +21070,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
21080
21070
var p0 = (void 0);
21081
21071
var p3 = (void 0);
21082
21072
if (i$2 === 0) {
21083
- p0 = points[i$2 + 1].difference(tangents[i$2].x / tau, tangents[i$2].y / tau);
21073
+ p0 = points[i$2 + 1].difference(tangents[i$2].x / tau, tangents[i$2].y / tau);
21084
21074
} else {
21085
21075
p0 = points[i$2 + 1].difference(tangents[i$2][1].x / tau, tangents[i$2][1].y / tau);
21086
21076
}
@@ -29211,15 +29201,29 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
29211
29201
29212
29202
evt = normalizeEvent(evt);
29213
29203
29214
- var view = this.findView(evt.target);
29204
+ var target = evt.target;
29205
+ var relatedTarget = evt.relatedTarget;
29206
+ var currentTarget = evt.currentTarget;
29207
+ var view = this.findView(target);
29215
29208
if (this.guard(evt, view)) { return; }
29216
- var relatedView = this.findView(evt. relatedTarget);
29209
+ var relatedView = this.findView(relatedTarget);
29217
29210
if (view) {
29218
- // mouse moved from tool over view?
29219
- if (relatedView === view) { return; }
29211
+ if (relatedView === view) {
29212
+ // Mouse left a cell tool
29213
+ return;
29214
+ }
29220
29215
view.mouseenter(evt);
29221
- } else {
29222
- if (relatedView) { return; }
29216
+ if (this.el.contains(relatedTarget)) {
29217
+ // The pointer remains inside the paper.
29218
+ return;
29219
+ }
29220
+ }
29221
+ if (relatedView) {
29222
+ return;
29223
+ }
29224
+ // prevent double `mouseenter` event if the `relatedTarget` is outside the paper
29225
+ // (mouseenter method would be fired twice)
29226
+ if (currentTarget === this.el) {
29223
29227
// `paper` (more descriptive), not `blank`
29224
29228
this.trigger('paper:mouseenter', evt);
29225
29229
}
@@ -29231,6 +29235,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
29231
29235
29232
29236
var target = evt.target;
29233
29237
var relatedTarget = evt.relatedTarget;
29238
+ var currentTarget = evt.currentTarget;
29234
29239
var view = this.findView(target);
29235
29240
if (this.guard(evt, view)) { return; }
29236
29241
var relatedView = this.findView(relatedTarget);
@@ -29239,9 +29244,6 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
29239
29244
// Mouse entered a cell tool
29240
29245
return;
29241
29246
}
29242
- // prevent double `mouseleave` event if the `relatedTarget` is outside the paper
29243
- // (mouseleave method would be fired twice)
29244
- evt.stopPropagation();
29245
29247
view.mouseleave(evt);
29246
29248
if (this.el.contains(relatedTarget)) {
29247
29249
// The pointer has exited a cellView. The pointer is still inside of the paper.
@@ -29252,8 +29254,12 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
29252
29254
// The pointer has entered a new cellView
29253
29255
return;
29254
29256
}
29255
- // There is no cellView under the pointer, nor the blank area of the paper
29256
- this.trigger('paper:mouseleave', evt);
29257
+ // prevent double `mouseleave` event if the `relatedTarget` is outside the paper
29258
+ // (mouseleave method would be fired twice)
29259
+ if (currentTarget === this.el) {
29260
+ // There is no cellView under the pointer, nor the blank area of the paper
29261
+ this.trigger('paper:mouseleave', evt);
29262
+ }
29257
29263
},
29258
29264
29259
29265
mousewheel: function(evt) {
@@ -31634,7 +31640,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
31634
31640
Control: Control
31635
31641
});
31636
31642
31637
- var version = "3.5.4 ";
31643
+ var version = "3.5.5 ";
31638
31644
31639
31645
var Vectorizer = V;
31640
31646
var layout = { PortLabel: PortLabel, Port: Port };
0 commit comments