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
@@ -21,7 +21,7 @@ const SmoothStepEdge: FunctionalComponent<SmoothStepEdgeProps> = function ({
borderRadius,
offset,
style,
pointerRadius,
interactionWidth,
}) {
const [path, labelX, labelY] = getSmoothStepPath({
sourceX,
@@ -47,7 +47,7 @@ const SmoothStepEdge: FunctionalComponent<SmoothStepEdgeProps> = function ({
style,
markerEnd,
markerStart,
pointerRadius,
interactionWidth,
})
}
@@ -69,7 +69,7 @@ SmoothStepEdge.props = [
'markerEnd',
'markerStart',
'style',
'pointerRadius',
'interactionWidth',
]
SmoothStepEdge.inheritAttrs = false