Releases: dash14/v-network-graph
Releases · dash14/v-network-graph
v0.9.21
30 Mar 06:39
Compare
Sorry, something went wrong.
No results found
Bug Fix
Fix type check error due to missing slot type declaration. (#169 )
Full Changelog : v0.9.20...v0.9.21
v0.9.20
24 Feb 08:48
Compare
Sorry, something went wrong.
No results found
v0.9.18
27 Oct 16:32
Compare
Sorry, something went wrong.
No results found
Bug Fix
Fixed a problem that changes to the fixed property of the node position were not reflected in the network graph using d3 force-layout.
v0.9.17
24 Sep 16:20
Compare
Sorry, something went wrong.
No results found
Bug Fixes
Fixed import error when running vue-tsc on a project containing v-network-graph. (#156 )
v0.9.16
25 Jun 23:49
Compare
Sorry, something went wrong.
No results found
v0.9.15
06 Feb 13:23
Compare
Sorry, something went wrong.
No results found
Bug Fix
Fixed path drawing not being updated when edges in path prop are updated. (#143 )
v0.9.14
20 Dec 14:18
Compare
Sorry, something went wrong.
No results found
Bug Fix
Fixed not using the specified node position when restoring a deleted node. (#137 )
v0.9.13
11 Nov 15:50
Compare
Sorry, something went wrong.
No results found
Bug Fix
Fixed incorrect zoom value calculation results in some cases when "fit-content" was specified in configs.view.autoPanAndZoomOnLoad.
The v0.9.12 is missing because it was found that more corrections were needed after the "v0.9.12" was tagged.
v0.9.11
07 Nov 15:59
Compare
Sorry, something went wrong.
No results found
Features
Supported for fitting graphs to the edge of the display area.
There are two ways to do this:
Specify the configs as follows
const configs = defineConfigs ( {
view : {
autoPanAndZoomOnLoad : "fit-content" ,
fitContentMargin : 0 , // default: "8%"
}
} ;
Specify as an argument to fitToContents() method
const graph = ref < VNetworkGraphInstance > ( ) ;
// ...
graph . value ?. fitToContents ( { margin : 0 } ) ;
See below for details, including the format of the values that can be specified:
v0.9.10
05 Oct 15:02
Compare
Sorry, something went wrong.
No results found
Bug Fix
Fixed an error when calculating a curve with two nodes in the same position by @hpawa in #134 (Issue #133 ) 😍