diff --git a/.changeset/empty-planes-destroy.md b/.changeset/empty-planes-destroy.md new file mode 100644 index 0000000000..350dcc6b44 --- /dev/null +++ b/.changeset/empty-planes-destroy.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-bazaar': patch +--- + +Exported the SortView component from the Bazaar plugin for use directly diff --git a/plugins/bazaar/api-report.md b/plugins/bazaar/api-report.md index de94d7a48e..e7816757b3 100644 --- a/plugins/bazaar/api-report.md +++ b/plugins/bazaar/api-report.md @@ -28,5 +28,10 @@ export const bazaarPlugin: BackstagePlugin< // @public (undocumented) export const EntityBazaarInfoCard: () => JSX.Element | null; +// Warning: (ae-missing-release-tag) "SortView" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export const SortView: () => JSX.Element; + // (No @packageDocumentation comment for this package) ``` diff --git a/plugins/bazaar/src/index.ts b/plugins/bazaar/src/index.ts index e9b388d736..895469c031 100644 --- a/plugins/bazaar/src/index.ts +++ b/plugins/bazaar/src/index.ts @@ -16,3 +16,4 @@ export { bazaarPlugin, BazaarPage } from './plugin'; export { EntityBazaarInfoCard } from './components/EntityBazaarInfoCard'; +export { SortView } from './components/SortView';