From 142066ff0cf43576e7d8f2d9f10dcbe7f7955f6c Mon Sep 17 00:00:00 2001 From: Trevor Ing Date: Tue, 6 Feb 2024 16:13:45 -0500 Subject: [PATCH 1/4] feat: support aria-label in Link --- packages/odyssey-react-mui/src/Link.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/odyssey-react-mui/src/Link.tsx b/packages/odyssey-react-mui/src/Link.tsx index ef3446dea4..16b7ba5129 100644 --- a/packages/odyssey-react-mui/src/Link.tsx +++ b/packages/odyssey-react-mui/src/Link.tsx @@ -20,6 +20,10 @@ import { Link as MuiLink, LinkProps as MuiLinkProps } from "@mui/material"; export const linkVariantValues = ["default", "monochrome"] as const; export type LinkProps = { + /** + * The ARIA label for the Link + */ + ariaLabel?: string; /** * The content within the Link */ @@ -60,6 +64,7 @@ export type LinkProps = { } & HtmlProps; const Link = ({ + ariaLabel, children, href, icon, @@ -86,6 +91,7 @@ const Link = ({ return ( Date: Tue, 6 Feb 2024 17:16:46 -0500 Subject: [PATCH 2/4] fix: empty commit for CI From 057e56d0a73ffb48374a9aae1fe9eeb35d7621bb Mon Sep 17 00:00:00 2001 From: Trevor Ing Date: Wed, 7 Feb 2024 11:09:45 -0500 Subject: [PATCH 3/4] fix: empty commit for CI From a54ecfad52687f9f03abb0f2f1ba22a06d4e6e12 Mon Sep 17 00:00:00 2001 From: Trevor Ing Date: Wed, 7 Feb 2024 14:27:44 -0500 Subject: [PATCH 4/4] fix: empty commit for CI