add changeset and api report
Signed-off-by: Brian Fletcher <brian@roadie.io>
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-bazaar': patch
|
||||
---
|
||||
|
||||
Allow customisation of title and subtitle on bazaar page.
|
||||
@@ -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';
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user