From 96788761e2c1fd2927f7aa28db98ef4d418027e7 Mon Sep 17 00:00:00 2001 From: nikolar Date: Mon, 23 Oct 2023 22:03:47 -0700 Subject: [PATCH] update changeset and api report Signed-off-by: nikolar --- .changeset/wet-cats-allow.md | 2 ++ plugins/home/api-report.md | 14 +++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.changeset/wet-cats-allow.md b/.changeset/wet-cats-allow.md index c3e79ac25a..b7de0f71ef 100644 --- a/.changeset/wet-cats-allow.md +++ b/.changeset/wet-cats-allow.md @@ -17,6 +17,8 @@ import { FeaturedDocs } from '@backstage/plugin-home'; subLinkText="More Details" color="secondary" emptyState={emptyStateReactNode} + path={'/customPath'} + responseLimit={5} /> ``` diff --git a/plugins/home/api-report.md b/plugins/home/api-report.md index 09b1be16ba..779ece75fe 100644 --- a/plugins/home/api-report.md +++ b/plugins/home/api-report.md @@ -109,13 +109,13 @@ export const FeaturedDocs: (props: FeaturedDocsProps) => JSX_2.Element; // @public export type FeaturedDocsProps = { filter: EntityFilterQuery; - color?: 'inherit' | 'primary' | 'secondary' | undefined; - customStyles?: ClassNameMap | undefined; - emptyState?: React_2.ReactNode | undefined; - path?: string | undefined; - responseLimit?: number | undefined; - subLinkText?: string | undefined; - title?: React_2.ReactNode | string | undefined; + color?: 'inherit' | 'primary' | 'secondary'; + customStyles?: ClassNameMap; + emptyState?: React_2.ReactNode; + path?: string; + responseLimit?: number; + subLinkText?: string; + title?: React_2.ReactNode | string; }; // @public