Introduction
This plugin enables more feedback to users when selecting multiple nodes on the canvas.
Usage
Import the Plugin
Start by importing the plugin:
import { WeaveNodesMultiSelectionFeedbackPlugin } from "@inditextech/weave-sdk";
Register the Plugin
Then register the plugin on the Weave class instance.
const instance = new Weave({
...
plugins: [
...,
new WeaveNodesMultiSelectionFeedbackPlugin(), (1)
]
})
| 1 | Added in this step. |
You can also:
-
Customize the transformer style.
For more information check the WeaveNodesMultiSelectionFeedbackPlugin plugin API.