add changeset and api report

Signed-off-by: Brian Fletcher <brian@roadie.io>
This commit is contained in:
Brian Fletcher
2023-01-13 16:24:58 +00:00
parent 35f7332d61
commit 99d52523c7
5 changed files with 15 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-bazaar': patch
---
Allow customisation of title and subtitle on bazaar page.
+7 -1
View File
@@ -24,7 +24,7 @@ export type BazaarOverviewCardProps = {
};
// @public (undocumented)
export const BazaarPage: () => JSX.Element;
export const BazaarPage: (props: HomePageProps) => JSX.Element;
// @public (undocumented)
export const bazaarPlugin: BackstagePlugin<
@@ -38,6 +38,12 @@ export const bazaarPlugin: BackstagePlugin<
// @public (undocumented)
export const EntityBazaarInfoCard: () => JSX.Element | null;
// @public (undocumented)
export type HomePageProps = {
title?: string;
subtitle?: string;
};
// @public (undocumented)
export const isBazaarAvailable: (
entity: Entity,
@@ -19,6 +19,7 @@ import { Header, RoutedTabs } from '@backstage/core-components';
import { SortView } from '../SortView';
import { About } from '../About';
/** @public */
export type HomePageProps = {
title?: string;
subtitle?: string;
@@ -15,3 +15,4 @@
*/
export { HomePage } from './HomePage';
export type { HomePageProps } from './HomePage';
+1
View File
@@ -20,3 +20,4 @@ export { BazaarOverviewCard } from './components/BazaarOverviewCard';
export type { BazaarOverviewCardProps } from './components/BazaarOverviewCard';
export { EntityBazaarInfoCard } from './components/EntityBazaarInfoCard';
export { SortView } from './components/SortView';
export type { HomePageProps } from './components/HomePage';