Skip to content

Commit 3a7b1bf

Browse files
committed
Prep v0.3.3 release
1 parent 80e9c87 commit 3a7b1bf

7 files changed

Lines changed: 14 additions & 13 deletions

File tree

bower.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dagre-d3",
3-
"version": "0.3.3-pre",
3+
"version": "0.3.3",
44
"main": [
55
"dist/dagre-d3.core.js",
66
"dist/dagre-d3.core.min.js"
@@ -13,6 +13,7 @@
1313
"browser.js",
1414
"dist/dagre-d3.js",
1515
"dist/dagre-d3.min.js",
16+
"dist/demo/**",
1617
"index.js",
1718
"karma*",
1819
"lib/**",
@@ -22,7 +23,7 @@
2223
],
2324
"dependencies": {
2425
"d3": "^3.3.8",
25-
"dagre": "^0.6.2",
26+
"dagre": "^0.6.3",
2627
"graphlib": "^1.0.1",
2728
"lodash": "^2.4.1"
2829
}

dist/dagre-d3.core.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ function createNodes(selection, g, shapes) {
293293
labelGroup = thisGroup.append("g").attr("class", "label"),
294294
labelDom = addLabel(labelGroup, node),
295295
shape = shapes[node.shape],
296-
bbox = labelDom.node().getBBox();
296+
bbox = _.pick(labelDom.node().getBBox(), "width", "height");
297297

298298
node.elem = this;
299299

@@ -1041,7 +1041,7 @@ function applyTransition(selection, g) {
10411041
}
10421042

10431043
},{"./lodash":20}],26:[function(require,module,exports){
1044-
module.exports = "0.3.3-pre";
1044+
module.exports = "0.3.3";
10451045

10461046
},{}]},{},[1])(1)
10471047
});

dist/dagre-d3.core.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dagre-d3.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ function createNodes(selection, g, shapes) {
293293
labelGroup = thisGroup.append("g").attr("class", "label"),
294294
labelDom = addLabel(labelGroup, node),
295295
shape = shapes[node.shape],
296-
bbox = labelDom.node().getBBox();
296+
bbox = _.pick(labelDom.node().getBBox(), "width", "height");
297297

298298
node.elem = this;
299299

@@ -1041,7 +1041,7 @@ function applyTransition(selection, g) {
10411041
}
10421042

10431043
},{"./lodash":20}],26:[function(require,module,exports){
1044-
module.exports = "0.3.3-pre";
1044+
module.exports = "0.3.3";
10451045

10461046
},{}],27:[function(require,module,exports){
10471047
/*
@@ -3906,7 +3906,7 @@ function notime(name, fn) {
39063906
}
39073907

39083908
},{"./graphlib":33,"./lodash":36}],56:[function(require,module,exports){
3909-
module.exports = "0.6.2";
3909+
module.exports = "0.6.3";
39103910

39113911
},{}],57:[function(require,module,exports){
39123912
/**

dist/dagre-d3.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = "0.3.3-pre";
1+
module.exports = "0.3.3";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dagre-d3",
3-
"version": "0.3.3-pre",
3+
"version": "0.3.3",
44
"description": "A D3-based renderer for Dagre",
55
"author": "Chris Pettitt <chris@samsarin.com>",
66
"keywords": [

0 commit comments

Comments
 (0)