From bac98930da15fe049ab8f1ac65f09dd67e0000fb Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 25 Dec 2022 15:47:22 +0100 Subject: [PATCH] chore: add changeset Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --- .changeset/chatty-ducks-fetch.md | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .changeset/chatty-ducks-fetch.md diff --git a/.changeset/chatty-ducks-fetch.md b/.changeset/chatty-ducks-fetch.md new file mode 100644 index 00000000..6a5b7009 --- /dev/null +++ b/.changeset/chatty-ducks-fetch.md @@ -0,0 +1,65 @@ +--- +'@vue-flow/core': patch +--- + +⚠️ Deprecate options API utils `addEdge` and `updateEdge`. This utils will be removed soon! + +## Resolve deprecation warnings + +Instead of using these utils, use `addEdges` and `updateEdge` found on the VueFlow store instance. +You receive a store instance by using either a template-ref or listening to the `onPaneReady` event. + +### Example + +```vue + + + +```