Skip to content

Commit 5ea29ab

Browse files
authored
Release v3.5.5 (#1646)
1 parent 367a12d commit 5ea29ab

37 files changed

+253
-228
lines changed

CHANGELOG

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
08-04-2022 (v3.5.5)
2+
* Add Marey Chart Demo
3+
* dia.Paper - prevent `mouseout` being stopped on `mouseleave`
4+
* dia.Paper - make sure `paper:mouseenter` event is always triggered
5+
* connectors.Curve - fix TangentDirections.RIGHT
6+
* fix various typescript issues
7+
18
04-03-2022 (v3.5.4)
29
* dia.Cell - fix `transition` events order
310
* dia.Cell - support custom `idAttribute`

dist/geometry.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.5.4 (2022-03-04) - JavaScript diagramming library
1+
/*! JointJS v3.5.5 (2022-04-08) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/geometry.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/joint.core.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/joint.core.js

+68-62
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.5.4 (2022-03-04) - JavaScript diagramming library
1+
/*! JointJS v3.5.5 (2022-04-08) - JavaScript diagramming library
22

33

44
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/.
2070120701
sourceTangent: opt.sourceTangent ? new Point(opt.sourceTangent) : null,
2070220702
targetTangent: opt.targetTangent ? new Point(opt.targetTangent) : null
2070320703
};
20704-
if (typeof opt.sourceDirection === 'string')
20704+
if (typeof opt.sourceDirection === 'string')
2070520705
{ options.sourceDirection = opt.sourceDirection; }
2070620706
else if (typeof opt.sourceDirection === 'number')
2070720707
{ options.sourceDirection = new Point(1, 0).rotate(null, opt.sourceDirection); }
2070820708
else
2070920709
{ options.sourceDirection = opt.sourceDirection ? new Point(opt.sourceDirection).normalize() : null; }
2071020710

20711-
if (typeof opt.targetDirection === 'string')
20711+
if (typeof opt.targetDirection === 'string')
2071220712
{ options.targetDirection = opt.targetDirection; }
2071320713
else if (typeof opt.targetDirection === 'number')
2071420714
{ options.targetDirection = new Point(1, 0).rotate(null, opt.targetDirection); }
20715-
else
20715+
else
2071620716
{ options.targetDirection = opt.targetDirection ? new Point(opt.targetDirection).normalize() : null; }
2071720717

2071820718
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/.
2075120751
targetTangent = targetDirection.clone().scale(tangentLength$1, tangentLength$1);
2075220752
}
2075320753
}
20754-
20754+
2075520755
var catmullRomCurves = createCatmullRomCurves(completeRoute, sourceTangent, targetTangent, options);
2075620756
var bezierCurves = catmullRomCurves.map(function (curve) { return catmullRomToBezier(curve, options); });
2075720757
var path = new Path(bezierCurves).round(precision);
@@ -20768,20 +20768,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2076820768
if (!sourceBBox.width || !sourceBBox.height) {
2076920769
if (sourceBBox.x > route[1].x)
2077020770
{ sourceSide = 'right'; }
20771-
else
20771+
else
2077220772
{ sourceSide = 'left'; }
2077320773
} else {
2077420774
sourceSide = sourceBBox.sideNearestToPoint(route[0]);
2077520775
}
2077620776

2077720777
switch (sourceSide) {
20778-
case 'left': {
20778+
case 'left':
2077920779
return new Point(-1, 0);
20780-
}
2078120780
case 'right':
20782-
default: {
20781+
default:
2078320782
return new Point(1, 0);
20784-
}
2078520783
}
2078620784
}
2078720785

@@ -20792,20 +20790,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2079220790
if (!targetBBox.width || !targetBBox.height) {
2079320791
if (targetBBox.x > route[route.length - 2].x)
2079420792
{ targetSide = 'left'; }
20795-
else
20793+
else
2079620794
{ targetSide = 'right'; }
2079720795
} else {
2079820796
targetSide = targetBBox.sideNearestToPoint(route[route.length - 1]);
2079920797
}
2080020798

2080120799
switch (targetSide) {
20802-
case 'left': {
20800+
case 'left':
2080320801
return new Point(-1, 0);
20804-
}
2080520802
case 'right':
20806-
default: {
20803+
default:
2080720804
return new Point(1, 0);
20808-
}
2080920805
}
2081020806
}
2081120807

@@ -20816,20 +20812,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2081620812
if (!sourceBBox.width || !sourceBBox.height) {
2081720813
if (sourceBBox.y > route[1].y)
2081820814
{ sourceSide = 'bottom'; }
20819-
else
20815+
else
2082020816
{ sourceSide = 'top'; }
2082120817
} else {
2082220818
sourceSide = sourceBBox.sideNearestToPoint(route[0]);
2082320819
}
2082420820

2082520821
switch (sourceSide) {
20826-
case 'top': {
20822+
case 'top':
2082720823
return new Point(0, -1);
20828-
}
2082920824
case 'bottom':
20830-
default: {
20825+
default:
2083120826
return new Point(0, 1);
20832-
}
2083320827
}
2083420828
}
2083520829

@@ -20840,20 +20834,18 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2084020834
if (!targetBBox.width || !targetBBox.height) {
2084120835
if (targetBBox.y > route[route.length - 2].y)
2084220836
{ targetSide = 'top'; }
20843-
else
20837+
else
2084420838
{ targetSide = 'bottom'; }
2084520839
} else {
2084620840
targetSide = targetBBox.sideNearestToPoint(route[route.length - 1]);
2084720841
}
2084820842

2084920843
switch (targetSide) {
20850-
case 'top': {
20844+
case 'top':
2085120845
return new Point(0, -1);
20852-
}
2085320846
case 'bottom':
20854-
default: {
20847+
default:
2085520848
return new Point(0, 1);
20856-
}
2085720849
}
2085820850
}
2085920851

@@ -20881,7 +20873,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2088120873

2088220874
function getAutoTargetDirection(linkView, route, options) {
2088320875
var targetBBox = linkView.targetBBox;
20884-
20876+
2088520877
var targetSide;
2088620878
if (!targetBBox.width || !targetBBox.height) {
2088720879
targetSide = targetBBox.sideNearestToPoint(route[route.length - 2]);
@@ -20924,27 +20916,26 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2092420916

2092520917
function getSourceTangentDirection(linkView, route, direction, options) {
2092620918
if (options.sourceDirection) {
20927-
switch(options.sourceDirection) {
20919+
switch (options.sourceDirection) {
2092820920
case TangentDirections.UP:
2092920921
return new Point(0, -1);
2093020922
case TangentDirections.DOWN:
2093120923
return new Point(0, 1);
2093220924
case TangentDirections.LEFT:
2093320925
return new Point(-1, 0);
2093420926
case TangentDirections.RIGHT:
20935-
return new Point(0, 1);
20927+
return new Point(1, 0);
2093620928
case TangentDirections.AUTO:
20937-
return getAutoSourceDirection(linkView, route);
20929+
return getAutoSourceDirection(linkView, route);
2093820930
case TangentDirections.CLOSEST_POINT:
2093920931
return getClosestPointSourceDirection(linkView, route);
20940-
case TangentDirections.OUTWARDS: {
20932+
case TangentDirections.OUTWARDS:
2094120933
return getOutwardsSourceDirection(linkView, route);
20942-
}
2094320934
default:
2094420935
return options.sourceDirection;
2094520936
}
2094620937
}
20947-
20938+
2094820939
switch (direction) {
2094920940
case Directions.HORIZONTAL:
2095020941
return getHorizontalSourceDirection(linkView, route);
@@ -20953,16 +20944,16 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2095320944
case Directions.CLOSEST_POINT:
2095420945
return getClosestPointSourceDirection(linkView, route);
2095520946
case Directions.OUTWARDS:
20956-
return getOutwardsSourceDirection(linkView, route);
20947+
return getOutwardsSourceDirection(linkView, route);
2095720948
case Directions.AUTO:
2095820949
default:
20959-
return getAutoSourceDirection(linkView, route);
20960-
}
20950+
return getAutoSourceDirection(linkView, route);
20951+
}
2096120952
}
2096220953

2096320954
function getTargetTangentDirection(linkView, route, direction, options) {
2096420955
if (options.targetDirection) {
20965-
switch(options.targetDirection) {
20956+
switch (options.targetDirection) {
2096620957
case TangentDirections.UP:
2096720958
return new Point(0, -1);
2096820959
case TangentDirections.DOWN:
@@ -20972,30 +20963,29 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2097220963
case TangentDirections.RIGHT:
2097320964
return new Point(0, 1);
2097420965
case TangentDirections.AUTO:
20975-
return getAutoTargetDirection(linkView, route);
20966+
return getAutoTargetDirection(linkView, route);
2097620967
case TangentDirections.CLOSEST_POINT:
2097720968
return getClosestPointTargetDirection(linkView, route);
20978-
case TangentDirections.OUTWARDS: {
20969+
case TangentDirections.OUTWARDS:
2097920970
return getOutwardsTargetDirection(linkView, route);
20980-
}
2098120971
default:
2098220972
return options.targetDirection;
2098320973
}
2098420974
}
20985-
20975+
2098620976
switch (direction) {
2098720977
case Directions.HORIZONTAL:
20988-
return getHorizontalTargetDirection(linkView, route);
20978+
return getHorizontalTargetDirection(linkView, route);
2098920979
case Directions.VERTICAL:
2099020980
return getVerticalTargetDirection(linkView, route);
2099120981
case Directions.CLOSEST_POINT:
2099220982
return getClosestPointTargetDirection(linkView, route);
2099320983
case Directions.OUTWARDS:
20994-
return getOutwardsTargetDirection(linkView, route);
20984+
return getOutwardsTargetDirection(linkView, route);
2099520985
case Directions.AUTO:
2099620986
default:
20997-
return getAutoTargetDirection(linkView, route);
20998-
}
20987+
return getAutoTargetDirection(linkView, route);
20988+
}
2099920989
}
2100020990

2100120991
function rotateVector(vector, angle) {
@@ -21023,15 +21013,15 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2102321013
var coeff = options.coeff;
2102421014
var distances = [];
2102521015
var tangents = [];
21026-
var catmullRomCurves = [];
21016+
var catmullRomCurves = [];
2102721017
var n = points.length - 1;
2102821018

2102921019
for (var i = 0; i < n; i++) {
2103021020
distances[i] = points[i].distance(points[i + 1]);
2103121021
}
2103221022

2103321023
tangents[0] = sourceTangent;
21034-
tangents[n] = targetTangent;
21024+
tangents[n] = targetTangent;
2103521025

2103621026
// The calculation of tangents of vertices
2103721027
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/.
2104321033
tpPrev = points[i$1 - 1].clone();
2104421034
}
2104521035
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);
2104721037
} else {
2104821038
tpNext = points[i$1 + 1].clone();
2104921039
}
2105021040
var v1 = tpPrev.difference(points[i$1]).normalize();
2105121041
var v2 = tpNext.difference(points[i$1]).normalize();
21052-
var vAngle = angleBetweenVectors(v1, v2);
21042+
var vAngle = angleBetweenVectors(v1, v2);
2105321043

2105421044
var rot = (Math.PI - vAngle) / 2;
2105521045
var t = (void 0);
@@ -21064,7 +21054,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2106421054
}
2106521055
t = v2.clone();
2106621056
rotateVector(t, rot);
21067-
21057+
2106821058
var t1 = t.clone();
2106921059
var t2 = t.clone();
2107021060
var scaleFactor1 = distances[i$1 - 1] * coeff;
@@ -21080,7 +21070,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2108021070
var p0 = (void 0);
2108121071
var p3 = (void 0);
2108221072
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);
2108421074
} else {
2108521075
p0 = points[i$2 + 1].difference(tangents[i$2][1].x / tau, tangents[i$2][1].y / tau);
2108621076
}
@@ -29211,15 +29201,29 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2921129201

2921229202
evt = normalizeEvent(evt);
2921329203

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);
2921529208
if (this.guard(evt, view)) { return; }
29216-
var relatedView = this.findView(evt.relatedTarget);
29209+
var relatedView = this.findView(relatedTarget);
2921729210
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+
}
2922029215
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) {
2922329227
// `paper` (more descriptive), not `blank`
2922429228
this.trigger('paper:mouseenter', evt);
2922529229
}
@@ -29231,6 +29235,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2923129235

2923229236
var target = evt.target;
2923329237
var relatedTarget = evt.relatedTarget;
29238+
var currentTarget = evt.currentTarget;
2923429239
var view = this.findView(target);
2923529240
if (this.guard(evt, view)) { return; }
2923629241
var relatedView = this.findView(relatedTarget);
@@ -29239,9 +29244,6 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
2923929244
// Mouse entered a cell tool
2924029245
return;
2924129246
}
29242-
// prevent double `mouseleave` event if the `relatedTarget` is outside the paper
29243-
// (mouseleave method would be fired twice)
29244-
evt.stopPropagation();
2924529247
view.mouseleave(evt);
2924629248
if (this.el.contains(relatedTarget)) {
2924729249
// 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/.
2925229254
// The pointer has entered a new cellView
2925329255
return;
2925429256
}
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+
}
2925729263
},
2925829264

2925929265
mousewheel: function(evt) {
@@ -31634,7 +31640,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
3163431640
Control: Control
3163531641
});
3163631642

31637-
var version = "3.5.4";
31643+
var version = "3.5.5";
3163831644

3163931645
var Vectorizer = V;
3164031646
var layout = { PortLabel: PortLabel, Port: Port };

dist/joint.core.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)