chore(core): rename pointerRadius prop to interactionWidth

This commit is contained in:
braks
2022-11-13 08:42:06 +01:00
committed by Braks
parent a11edae9ec
commit ec6f870bfd
10 changed files with 26 additions and 27 deletions
@@ -20,7 +20,7 @@ const BezierEdge: FunctionalComponent<EdgeProps> = function ({
markerEnd,
markerStart,
style,
pointerRadius,
interactionWidth,
}) {
const [path, labelX, labelY] = getBezierPath({
sourceX,
@@ -45,7 +45,7 @@ const BezierEdge: FunctionalComponent<EdgeProps> = function ({
style,
markerEnd,
markerStart,
pointerRadius,
interactionWidth,
})
}
@@ -66,7 +66,7 @@ BezierEdge.props = [
'markerEnd',
'markerStart',
'style',
'pointerRadius',
'interactionWidth',
]
BezierEdge.inheritAttrs = false