Skip to content

Releases: dash14/v-network-graph

v0.6.3

30 Jun 14:20
Compare
Choose a tag to compare

Bug Fix

  • Fix to not raise an error even if the node pointed to by the edge does not exist, in ForceLayout. (#68)

v0.6.2

28 Jun 14:22
Compare
Choose a tag to compare

Bug Fix

  • Fix a bug in box-selection that the box remains when the cmd key is released before the mouse. (#21)

v0.6.1

26 Jun 16:20
Compare
Choose a tag to compare

Features

Bug Fix

  • Fix that node selectability and max selection configs were not reflected in the "box-selection" mode.

v0.6.0

21 Jun 02:00
Compare
Choose a tag to compare

Feature

  • Add a feature to select nodes with a rectangle.

v0.5.19

13 Jun 15:32
Compare
Choose a tag to compare

Features

  • Change to not block wheel event when zoom by mouse wheel is disabled.
  • Change to not block touch operation when pan/zoom/draggable are all disabled.

v0.5.18

07 Jun 16:36
Compare
Choose a tag to compare

Feature

  • Add transitionWhile() method to <v-network-graph> instance.
    • When the position of a node changes within the function specified by the argument, a transition animation is triggered.

v0.5.17

26 May 16:18
Compare
Choose a tag to compare

Feature

  • The width and height of a css can now be specified directly for <v-network-graph> component.

v0.5.16

19 May 14:07
Compare
Choose a tag to compare

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 same display 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.

v0.5.15

15 May 16:02
Compare
Choose a tag to compare

Bug Fix

  • Fix incorrect gap calculation between rectangular nodes and arrow-headed edges. (#57)

Feature

  • Add getViewBox and setViewBox 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.

v0.5.14

10 May 16:08
Compare
Choose a tag to compare

Bug Fix

  • Fix a problem where ForceLayout would detect any property change of the edge and recalculate force simulation. (#56)
    • Recalculation is now only performed by detecting node increases/decreases and changes in the links of the nodes indicated by the edges.