From e6c8f10153fbd7b837bb794170063d388de53535 Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Mon, 19 May 2025 16:43:43 -0500 Subject: [PATCH] Updated API Report Signed-off-by: Andre Wanlin --- plugins/home/report.api.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/home/report.api.md b/plugins/home/report.api.md index 61ce9a77f8..dd33b952ee 100644 --- a/plugins/home/report.api.md +++ b/plugins/home/report.api.md @@ -23,6 +23,7 @@ import { ReactNode } from 'react'; import { RendererProps as RendererProps_2 } from '@backstage/plugin-home-react'; import { RouteRef } from '@backstage/core-plugin-api'; import { StorageApi } from '@backstage/core-plugin-api'; +import { Variant } from '@material-ui/core/styles/createTypography'; // @public export type Breakpoint = 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl'; @@ -336,10 +337,12 @@ export type VisitsWebStorageApiOptions = { // @public export const WelcomeTitle: ({ language, + variant, }: WelcomeTitleLanguageProps) => JSX_2.Element; // @public (undocumented) export type WelcomeTitleLanguageProps = { language?: string[]; + variant?: Variant | 'inherit'; }; ```