From b580cb3bd2a4edac08035b1a081bb31aa9ec4998 Mon Sep 17 00:00:00 2001 From: Joe Patterson Date: Tue, 22 Nov 2022 20:50:50 +1000 Subject: [PATCH] update api report Signed-off-by: Joe Patterson --- plugins/org/api-report.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/org/api-report.md b/plugins/org/api-report.md index f8cf8afe22..67c5cd5e0a 100644 --- a/plugins/org/api-report.md +++ b/plugins/org/api-report.md @@ -13,6 +13,7 @@ import { InfoCardVariants } from '@backstage/core-components'; // @public (undocumented) export const EntityGroupProfileCard: (props: { variant?: InfoCardVariants | undefined; + hideLinks?: boolean | undefined; }) => JSX.Element; // @public (undocumented) @@ -32,11 +33,13 @@ export const EntityOwnershipCard: (props: { // @public (undocumented) export const EntityUserProfileCard: (props: { variant?: InfoCardVariants | undefined; + hideLinks?: boolean | undefined; }) => JSX.Element; // @public (undocumented) export const GroupProfileCard: (props: { variant?: InfoCardVariants; + hideLinks?: boolean; }) => JSX.Element; // @public (undocumented) @@ -75,5 +78,6 @@ export const OwnershipCard: (props: { // @public (undocumented) export const UserProfileCard: (props: { variant?: InfoCardVariants; + hideLinks?: boolean; }) => JSX.Element; ```