Releases: dash14/v-network-graph
Releases · dash14/v-network-graph
v0.6.3
v0.6.2
v0.6.1
Features
- Add a slot
edge-overlay
for drawing objects on edges. - Add a config to start box selection mode with ctrl/cmd key (
configs.view.boxSelectionEnabled
).
Bug Fix
- Fix that node selectability and max selection configs were not reflected in the "box-selection" mode.
v0.6.0
v0.5.19
v0.5.18
v0.5.17
v0.5.16
Bug Fix
- Fixed an issue where, in a situation with multiple v-network-graph instances, if there is an edge marker with the same parameters and the forward instance is hidden with
display:none
, the edge marker of the back instance will disappear. (#55)- Inside v-network-graph, markers have the same
id
value. Even though they are separate SVG documents, they seem to share the samedisplay
state within the page. - This issue has been confirmed to be reproducible in Chrome and Firefox. (Not tested on other browsers.)
- Workaround: Include a unique number for each instance of v-network-graph to generate unique marker IDs in the page.
- Inside v-network-graph, markers have the same
v0.5.15
Bug Fix
- Fix incorrect gap calculation between rectangular nodes and arrow-headed edges. (#57)
Feature
- Add
getViewBox
andsetViewBox
functions to get and set view area. (example)
BREAKING CHANGE
- Change to calculate the gap between an edge and a node by taking into account the stroke width of the node.