We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eb5e5a commit d2c1c51Copy full SHA for d2c1c51
packages/core/src/components/Edges/BaseEdge.ts
@@ -41,6 +41,7 @@ const BaseEdge: FunctionalComponent<BaseEdgeProps> = function (
41
'fill': 'none',
42
'stroke-opacity': 0,
43
'stroke-width': interactionWidth,
44
+ 'class': 'vue-flow__edge-interaction',
45
})
46
: null,
47
label && isNumber(labelX) && isNumber(labelY)
packages/core/src/style.css
@@ -78,6 +78,11 @@
78
animation: dashdraw 0.5s linear infinite;
79
}
80
81
+ &.animated path.vue-flow__edge-interaction {
82
+ stroke-dasharray: none;
83
+ animation: none;
84
+ }
85
+
86
&.inactive {
87
pointer-events: none;
88
0 commit comments