Skip to content

Commit

Permalink
Release v3.6.5 (#1944)
Browse files Browse the repository at this point in the history
  • Loading branch information
zbynekstara authored Dec 15, 2022
1 parent 81deb10 commit aa58637
Show file tree
Hide file tree
Showing 37 changed files with 67 additions and 52 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
15-12-2022 (v3.6.5)

* dia.Paper - remove element unprefixed user-drag property
* linkTools.Anchor - fix area bounding box when the link is connected to a link

08-12-2022 (v3.6.4)

* dia.Paper - preserve contextmenu events hierarchy
Expand Down
2 changes: 1 addition & 1 deletion dist/geometry.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/geometry.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/joint.core.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions dist/joint.core.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library


This Source Code Form is subject to the terms of the Mozilla Public
Expand Down Expand Up @@ -32095,7 +32095,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
if (!isFinite(padding)) { padding = 0; }
var bbox, angle, center;
if (view.isNodeConnection(magnet)) {
bbox = view.getBBox();
bbox = view.getNodeBBox(magnet);
angle = 0;
center = bbox.center();
} else {
Expand All @@ -32113,7 +32113,11 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
areaNode.setAttribute('transform', 'translate(' + center.x + ',' + center.y + ') rotate(' + angle + ')');
},
toggleArea: function(visible) {
this.childNodes.area.style.display = (visible) ? '' : 'none';
var childNodes = this.childNodes;
if (!childNodes) { return; }
var areaNode = childNodes.area;
if (!areaNode) { return; }
areaNode.style.display = (visible) ? '' : 'none';
},
onPointerDown: function(evt) {
if (this.guard(evt)) { return; }
Expand Down Expand Up @@ -32841,7 +32845,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
Control: Control
});

var version = "3.6.4";
var version = "3.6.5";

var Vectorizer = V;
var layout = { PortLabel: PortLabel, Port: Port };
Expand Down
4 changes: 2 additions & 2 deletions dist/joint.core.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/joint.core.min.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions dist/joint.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
12 changes: 8 additions & 4 deletions dist/joint.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library


This Source Code Form is subject to the terms of the Mozilla Public
Expand Down Expand Up @@ -33667,7 +33667,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
if (!isFinite(padding)) { padding = 0; }
var bbox, angle, center;
if (view.isNodeConnection(magnet)) {
bbox = view.getBBox();
bbox = view.getNodeBBox(magnet);
angle = 0;
center = bbox.center();
} else {
Expand All @@ -33685,7 +33685,11 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
areaNode.setAttribute('transform', 'translate(' + center.x + ',' + center.y + ') rotate(' + angle + ')');
},
toggleArea: function(visible) {
this.childNodes.area.style.display = (visible) ? '' : 'none';
var childNodes = this.childNodes;
if (!childNodes) { return; }
var areaNode = childNodes.area;
if (!areaNode) { return; }
areaNode.style.display = (visible) ? '' : 'none';
},
onPointerDown: function(evt) {
if (this.guard(evt)) { return; }
Expand Down Expand Up @@ -34413,7 +34417,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
Control: Control
});

var version = "3.6.4";
var version = "3.6.5";

var Vectorizer = V;
var layout = { PortLabel: PortLabel, Port: Port };
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.layout.DirectedGraph.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.layout.DirectedGraph.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/joint.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/joint.min.js

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions dist/joint.nowrap.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library


This Source Code Form is subject to the terms of the Mozilla Public
Expand Down Expand Up @@ -33664,7 +33664,7 @@ var joint = (function (exports, Backbone, _, $) {
if (!isFinite(padding)) { padding = 0; }
var bbox, angle, center;
if (view.isNodeConnection(magnet)) {
bbox = view.getBBox();
bbox = view.getNodeBBox(magnet);
angle = 0;
center = bbox.center();
} else {
Expand All @@ -33682,7 +33682,11 @@ var joint = (function (exports, Backbone, _, $) {
areaNode.setAttribute('transform', 'translate(' + center.x + ',' + center.y + ') rotate(' + angle + ')');
},
toggleArea: function(visible) {
this.childNodes.area.style.display = (visible) ? '' : 'none';
var childNodes = this.childNodes;
if (!childNodes) { return; }
var areaNode = childNodes.area;
if (!areaNode) { return; }
areaNode.style.display = (visible) ? '' : 'none';
},
onPointerDown: function(evt) {
if (this.guard(evt)) { return; }
Expand Down Expand Up @@ -34410,7 +34414,7 @@ var joint = (function (exports, Backbone, _, $) {
Control: Control
});

var version = "3.6.4";
var version = "3.6.5";

var Vectorizer = V;
var layout = { PortLabel: PortLabel, Port: Port };
Expand Down
4 changes: 2 additions & 2 deletions dist/joint.nowrap.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/joint.shapes.chess.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.chess.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.devs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.devs.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.erd.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.erd.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.fsa.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.fsa.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.logic.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.logic.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.org.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.org.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.pn.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.pn.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/joint.shapes.uml.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/joint.shapes.uml.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vectorizer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JointJS v3.6.4 (2022-12-08) - JavaScript diagramming library
/*! JointJS v3.6.5 (2022-12-15) - JavaScript diagramming library
This Source Code Form is subject to the terms of the Mozilla Public
Expand Down
2 changes: 1 addition & 1 deletion dist/vectorizer.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/version.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
var version = "3.6.4";
var version = "3.6.5";

export { version };
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint:fix": "npm run lint -- --fix"
},
"sideEffects": false,
"version": "3.6.4",
"version": "3.6.5",
"main": "dist/joint.min.js",
"module": "joint.mjs",
"style": "./dist/joint.min.css",
Expand Down

0 comments on commit aa58637

Please sign in to comment.