Skip to content

Releases: dash14/v-network-graph

v0.5.13

24 Apr 15:16
Compare
Choose a tag to compare
  • Change that dbl-click and wheel zoom are also disabled if view.zoomEnabled config is set to false.

v0.5.12

24 Apr 15:14
Compare
Choose a tag to compare

Bug Fix

  • Fix an exception when deleting a node to which an edge is connected when edge type is "curve". (#54)

v0.5.11

17 Apr 15:59
Compare
Choose a tag to compare

Bug Fixes

  • Fix: the focus ring was not shown when modifying selected-nodes. (#51)
  • Fix: double-clicking on a node would unexpectedly zoom in. (update @dash14/svg-pan-zoom library)

v0.5.10

16 Apr 17:42
Compare
Choose a tag to compare

Features

  • Expose <v-shape /> components for the use case that specify raw event handlers to the nodes. [example]
  • Remove unnecessary event.preventDefault().

v0.5.9

07 Apr 13:54
Compare
Choose a tag to compare

Bug Fix

  • Fix wheel events being propagated outside the graph area.

v0.5.8

04 Apr 15:24
Compare
Choose a tag to compare

Bug Fix

  • Fix an issue where the view:click event would not work after view:contextmenu (#47)

v0.5.7

22 Mar 16:41
Compare
Choose a tag to compare

Bug Fixes

  • Fix an issue where right-clicking on node/edge/path would also trigger "view:contextmenu" event. (#45)

v0.5.5

16 Mar 16:43
Compare
Choose a tag to compare

Bug Fixes

  • Fix below bugs on touch devices.
    • "dblclick" event was not fired.
    • Multiple edge selection was not working properly.

v0.5.4

13 Mar 15:54
Compare
Choose a tag to compare

Bug Fix

  • Fix an issue with incorrect offsetX and offsetY values for click events. (#43)

v0.5.3

08 Mar 16:55
Compare
Choose a tag to compare

Bug Fix

  • Fix a bug in mobile browsers that did not recognize taps on nodes and edges.
    • The touch event preventDefault() was being executed in the svg-pan-zoom library, and therefore the click event was not being fired. Even after addressing this, still the click event was not fired in the multi-touch state, thus changed to get user interaction by pointer event.