We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e9c87 commit 3a7b1bfCopy full SHA for 3a7b1bf
7 files changed
bower.json
@@ -1,6 +1,6 @@
1
{
2
"name": "dagre-d3",
3
- "version": "0.3.3-pre",
+ "version": "0.3.3",
4
"main": [
5
"dist/dagre-d3.core.js",
6
"dist/dagre-d3.core.min.js"
@@ -13,6 +13,7 @@
13
"browser.js",
14
"dist/dagre-d3.js",
15
"dist/dagre-d3.min.js",
16
+ "dist/demo/**",
17
"index.js",
18
"karma*",
19
"lib/**",
@@ -22,7 +23,7 @@
22
23
],
24
"dependencies": {
25
"d3": "^3.3.8",
- "dagre": "^0.6.2",
26
+ "dagre": "^0.6.3",
27
"graphlib": "^1.0.1",
28
"lodash": "^2.4.1"
29
}
dist/dagre-d3.core.js
@@ -293,7 +293,7 @@ function createNodes(selection, g, shapes) {
293
labelGroup = thisGroup.append("g").attr("class", "label"),
294
labelDom = addLabel(labelGroup, node),
295
shape = shapes[node.shape],
296
- bbox = labelDom.node().getBBox();
+ bbox = _.pick(labelDom.node().getBBox(), "width", "height");
297
298
node.elem = this;
299
@@ -1041,7 +1041,7 @@ function applyTransition(selection, g) {
1041
1042
1043
},{"./lodash":20}],26:[function(require,module,exports){
1044
-module.exports = "0.3.3-pre";
+module.exports = "0.3.3";
1045
1046
},{}]},{},[1])(1)
1047
});
dist/dagre-d3.core.min.js
dist/dagre-d3.js
},{}],27:[function(require,module,exports){
/*
@@ -3906,7 +3906,7 @@ function notime(name, fn) {
3906
3907
3908
},{"./graphlib":33,"./lodash":36}],56:[function(require,module,exports){
3909
-module.exports = "0.6.2";
+module.exports = "0.6.3";
3910
3911
},{}],57:[function(require,module,exports){
3912
/**
dist/dagre-d3.min.js
lib/version.js
@@ -1 +1 @@
package.json
"description": "A D3-based renderer for Dagre",
"author": "Chris Pettitt <chris@samsarin.com>",
"keywords": [
0 commit comments