Merge pull request #11330 from marcus-crane/export-sortview

Export the SortView frontend component from the Bazaar plugin for direct use
This commit is contained in:
Fredrik Adelöw
2022-05-06 15:58:56 +02:00
committed by GitHub
3 changed files with 11 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-bazaar': patch
---
Exported the SortView component from the Bazaar plugin for use directly
+5
View File
@@ -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)
```
+1
View File
@@ -16,3 +16,4 @@
export { bazaarPlugin, BazaarPage } from './plugin';
export { EntityBazaarInfoCard } from './components/EntityBazaarInfoCard';
export { SortView } from './components/SortView';