Skip to content

Commit f95eb4f

Browse files
committed
Release 2.0.0-rc2
1 parent 0374b09 commit f95eb4f

20 files changed

+6270
-3958
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Change Log
22

3+
## [2.0.0-rc2](https://github.com/danielcaldas/react-d3-graph/tree/2.0.0-rc2)
4+
5+
[Full Changelog](https://github.com/danielcaldas/react-d3-graph/compare/2.0.0-rc1...2.0.0-rc2)
6+
7+
**Implemented enhancements:**
8+
9+
* Allow nodes to override strokeColor [\#122](https://github.com/danielcaldas/react-d3-graph/issues/122)
10+
11+
**Fixed bugs:**
12+
13+
* Custom onNodeClick handler not triggering on collapsible nodes [\#136](https://github.com/danielcaldas/react-d3-graph/issues/136)
14+
* 🐛 Global `viewGenerator` not been applied to the nodes [\#130](https://github.com/danielcaldas/react-d3-graph/issues/130)
15+
16+
**Closed issues:**
17+
18+
* graph constantly re-rendering even when app is idle? [\#145](https://github.com/danielcaldas/react-d3-graph/issues/145)
19+
* Allow users to pass in a function in node.labelProperty [\#133](https://github.com/danielcaldas/react-d3-graph/issues/133)
20+
* Drop yarn support for development \(stick to npm only\) [\#127](https://github.com/danielcaldas/react-d3-graph/issues/127)
21+
* Link mouse cursor property [\#119](https://github.com/danielcaldas/react-d3-graph/issues/119)
22+
* Center graph on a specific node [\#102](https://github.com/danielcaldas/react-d3-graph/issues/102)
23+
* Links with directional arrow [\#88](https://github.com/danielcaldas/react-d3-graph/issues/88)
24+
25+
**Merged pull requests:**
26+
27+
* Fix/right clicks [\#140](https://github.com/danielcaldas/react-d3-graph/pull/140) ([danielcaldas](https://github.com/danielcaldas))
28+
* Refactor/clean link component [\#139](https://github.com/danielcaldas/react-d3-graph/pull/139) ([danielcaldas](https://github.com/danielcaldas))
29+
* fix: Trigger custom click handler in collapsible nodes [\#137](https://github.com/danielcaldas/react-d3-graph/pull/137) ([LonelyPrincess](https://github.com/LonelyPrincess))
30+
* Add Support to pass a function to node.labelProperty [\#135](https://github.com/danielcaldas/react-d3-graph/pull/135) ([dgautsch](https://github.com/dgautsch))
31+
* Support Development on Windows Machines [\#134](https://github.com/danielcaldas/react-d3-graph/pull/134) ([dgautsch](https://github.com/dgautsch))
32+
* Feature/directional graph [\#132](https://github.com/danielcaldas/react-d3-graph/pull/132) ([danielcaldas](https://github.com/danielcaldas))
33+
* Global `viewGenerator` included in default config object [\#131](https://github.com/danielcaldas/react-d3-graph/pull/131) ([LonelyPrincess](https://github.com/LonelyPrincess))
34+
* Remove Yarn [\#128](https://github.com/danielcaldas/react-d3-graph/pull/128) ([sasalx](https://github.com/sasalx))
35+
* Feature/right clicking [\#124](https://github.com/danielcaldas/react-d3-graph/pull/124) ([ghardin137](https://github.com/ghardin137))
36+
* Allow nodes to override strokeColor [\#123](https://github.com/danielcaldas/react-d3-graph/pull/123) ([Andras-Simon](https://github.com/Andras-Simon))
37+
* fix: \#119 Add mouseCursor prop to \<Link\> [\#120](https://github.com/danielcaldas/react-d3-graph/pull/120) ([kaungmyatlwin](https://github.com/kaungmyatlwin))
38+
* Add onClick handler to the canvas, for use in eg. unselecting nodes [\#113](https://github.com/danielcaldas/react-d3-graph/pull/113) ([smilykoch](https://github.com/smilykoch))
39+
* Focus view on a node [\#107](https://github.com/danielcaldas/react-d3-graph/pull/107) ([LonelyPrincess](https://github.com/LonelyPrincess))
40+
341
## [2.0.0-rc1](https://github.com/danielcaldas/react-d3-graph/tree/2.0.0-rc1)
442

543
[Full Changelog](https://github.com/danielcaldas/react-d3-graph/compare/2.0.0-rc0...2.0.0-rc1)

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020

2121
You can also load different datasets and configurations via URL query parameter, here are the links:
2222

23-
* [small dataset](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=small)
24-
* [custom node dataset](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=custom-node)
23+
* [small dataset](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=small) - small example.
24+
* [custom node dataset](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=custom-node) - sample config with custom views.
25+
* [marvel dataset!](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=marvel) - sample config with directed collapsible graph and custom svg nodes.
2526

2627
Do you want to visualize your own data set on the live sandbox? Just submit a PR! You're welcome 😁
2728

docs/0.3.0.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
2121
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
2222
<h5>Versions</h5>
2323
<ul>
24-
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
24+
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
2525
<li><a href="./1.3.0.html">1.3.0</a></li>
2626
<li><a href="./1.2.2.html">1.2.2</a></li>
2727
<li><a href="./1.2.0.html">1.2.0</a></li>

docs/0.4.0.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
2121
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
2222
<h5>Versions</h5>
2323
<ul>
24-
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
24+
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
2525
<li><a href="./1.3.0.html">1.3.0</a></li>
2626
<li><a href="./1.2.2.html">1.2.2</a></li>
2727
<li><a href="./1.2.0.html">1.2.0</a></li>

docs/1.0.0.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
2121
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
2222
<h5>Versions</h5>
2323
<ul>
24-
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
24+
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
2525
<li><a href="./1.3.0.html">1.3.0</a></li>
2626
<li><a href="./1.2.2.html">1.2.2</a></li>
2727
<li><a href="./1.2.0.html">1.2.0</a></li>

docs/1.0.1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
2121
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
2222
<h5>Versions</h5>
2323
<ul>
24-
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
24+
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
2525
<li><a href="./1.3.0.html">1.3.0</a></li>
2626
<li><a href="./1.2.2.html">1.2.2</a></li>
2727
<li><a href="./1.2.0.html">1.2.0</a></li>

docs/1.2.0.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
2121
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
2222
<h5>Versions</h5>
2323
<ul>
24-
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
24+
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
2525
<li><a href="./1.3.0.html">1.3.0</a></li>
2626
<li><a href="./1.2.2.html">1.2.2</a></li>
2727
<li><a href="./1.2.0.html">1.2.0</a></li>

docs/1.2.2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
2121
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
2222
<h5>Versions</h5>
2323
<ul>
24-
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
24+
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
2525
<li><a href="./1.3.0.html">1.3.0</a></li>
2626
<li><a href="./1.2.2.html">1.2.2</a></li>
2727
<li><a href="./1.2.0.html">1.2.0</a></li>

docs/1.3.0.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
2121
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
2222
<h5>Versions</h5>
2323
<ul>
24-
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
24+
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
2525
<li><a href="./1.3.0.html">1.3.0</a></li>
2626
<li><a href="./1.2.2.html">1.2.2</a></li>
2727
<li><a href="./1.2.0.html">1.2.0</a></li>

0 commit comments

Comments
 (0)