diff --git a/.changeset/big-seals-drum.md b/.changeset/big-seals-drum.md new file mode 100644 index 0000000000..9b4ab16701 --- /dev/null +++ b/.changeset/big-seals-drum.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-home': patch +--- + +Exported `QuickStartCard` component. diff --git a/plugins/home/report.api.md b/plugins/home/report.api.md index 878d8ef646..1cff56f50c 100644 --- a/plugins/home/report.api.md +++ b/plugins/home/report.api.md @@ -187,6 +187,11 @@ export type LayoutConfiguration = { // @public export type Operators = '<' | '<=' | '==' | '!=' | '>' | '>=' | 'contains'; +// @public +export const QuickStartCard: ( + props: CardExtensionProps_2, +) => JSX_2.Element; + // @public export type QuickStartCardProps = { modalTitle?: string | React_2.JSX.Element; diff --git a/plugins/home/src/index.ts b/plugins/home/src/index.ts index 154186f169..3a6f152d03 100644 --- a/plugins/home/src/index.ts +++ b/plugins/home/src/index.ts @@ -35,6 +35,7 @@ export { HomePageTopVisited, HomePageRecentlyVisited, FeaturedDocsCard, + QuickStartCard, } from './plugin'; export * from './components'; export * from './assets';