Skip to content

Commit

Permalink
Publishing dagre v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rustedgrail committed Jun 28, 2024
1 parent 8bfee29 commit 7e7f212
Show file tree
Hide file tree
Showing 4 changed files with 5,166 additions and 6 deletions.
8 changes: 4 additions & 4 deletions project/dagre/latest/dagre.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,12 +456,12 @@ function layout(g, opts) {
time("layout", () => {
let layoutGraph =
time(" buildLayoutGraph", () => buildLayoutGraph(g));
time(" runLayout", () => runLayout(layoutGraph, time));
time(" runLayout", () => runLayout(layoutGraph, time, opts));
time(" updateInputGraph", () => updateInputGraph(g, layoutGraph));
});
}

function runLayout(g, time) {
function runLayout(g, time, opts) {
time(" makeSpaceForEdgeLabels", () => makeSpaceForEdgeLabels(g));
time(" removeSelfEdges", () => removeSelfEdges(g));
time(" acyclic", () => acyclic.run(g));
Expand All @@ -476,7 +476,7 @@ function runLayout(g, time) {
time(" normalize.run", () => normalize.run(g));
time(" parentDummyChains", () => parentDummyChains(g));
time(" addBorderSegments", () => addBorderSegments(g));
time(" order", () => order(g));
time(" order", () => order(g, opts));
time(" insertSelfEdges", () => insertSelfEdges(g));
time(" adjustCoordinateSystem", () => coordinateSystem.adjust(g));
time(" position", () => position(g));
Expand Down Expand Up @@ -2959,7 +2959,7 @@ function zipObject(props, values) {
}

},{"@dagrejs/graphlib":29}],28:[function(require,module,exports){
module.exports = "1.1.2";
module.exports = "1.1.3";

},{}],29:[function(require,module,exports){
/**
Expand Down
4 changes: 2 additions & 2 deletions project/dagre/latest/dagre.min.js

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

Loading

0 comments on commit 7e7f212

Please sign in to comment.