diff --git a/.changeset/warm-bikes-warn.md b/.changeset/warm-bikes-warn.md new file mode 100644 index 0000000000..a0f6fa73af --- /dev/null +++ b/.changeset/warm-bikes-warn.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog': patch +--- + +Exported AboutCard contents and utility functions diff --git a/plugins/catalog/src/components/AboutCard/index.ts b/plugins/catalog/src/components/AboutCard/index.ts index 93765ff942..262f0bedd3 100644 --- a/plugins/catalog/src/components/AboutCard/index.ts +++ b/plugins/catalog/src/components/AboutCard/index.ts @@ -15,3 +15,6 @@ */ export { AboutCard } from './AboutCard'; +export { AboutContent } from './AboutContent'; +export { AboutField } from './AboutField'; +export { ScmIntegrationIcon } from './ScmIntegrationIcon'; diff --git a/plugins/catalog/src/index.ts b/plugins/catalog/src/index.ts index 052f055dc0..0eb646de41 100644 --- a/plugins/catalog/src/index.ts +++ b/plugins/catalog/src/index.ts @@ -21,6 +21,8 @@ export { EntityPageLayout } from './components/EntityPageLayout'; export { CatalogTable } from './components/CatalogTable'; export * from './components/EntitySwitch'; export { Router } from './components/Router'; +export * from './components/EntityOrphanWarning'; +export * from './components/AboutCard'; export { CatalogEntityPage, CatalogIndexPage, @@ -36,4 +38,4 @@ export { EntityLinksCard, EntitySystemDiagramCard, } from './plugin'; -export * from './components/EntityOrphanWarning'; +export * from './utils';