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
@@ -16,7 +16,7 @@ const StraightEdge: FunctionalComponent<EdgeProps> = function ({
markerEnd,
markerStart,
style,
pointerRadius,
interactionWidth,
}) {
const [path, labelX, labelY] = getStraightPath({ sourceX, sourceY, targetX, targetY })
@@ -33,7 +33,7 @@ const StraightEdge: FunctionalComponent<EdgeProps> = function ({
style,
markerEnd,
markerStart,
pointerRadius,
interactionWidth,
})
}
@@ -51,7 +51,7 @@ StraightEdge.props = [
'markerEnd',
'markerStart',
'style',
'pointerRadius',
'interactionWidth',
]
StraightEdge.inheritAttrs = false