From bbc2712d061a8a7ab3cb3d8143967ba6b7ece46f Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 18 Dec 2022 21:06:41 +0100 Subject: [PATCH] feat(core,edges): add `focusable` and `ariaLabel` options to edge type Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --- packages/core/src/types/edge.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/core/src/types/edge.ts b/packages/core/src/types/edge.ts index 0ab54872..452357a0 100644 --- a/packages/core/src/types/edge.ts +++ b/packages/core/src/types/edge.ts @@ -83,6 +83,8 @@ interface DefaultEdge> /** Additional styles, can be an object or a callback returning an object (receives current flow element) */ @@ -97,6 +99,8 @@ interface DefaultEdge> + /** Aria label for edge (a11y) */ + ariaLabel?: string | null } export interface SmoothStepPathOptions {