From e7b9c3d713c6af6da80085caad704e88a25bcb4f Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 18 Feb 2022 16:29:33 +0100 Subject: [PATCH] catalog: remove columnFactories export Signed-off-by: Patrik Oldsberg --- .changeset/fair-otters-happen.md | 5 +++++ plugins/catalog/api-report.md | 17 ----------------- plugins/catalog/src/index.ts | 1 - 3 files changed, 5 insertions(+), 18 deletions(-) create mode 100644 .changeset/fair-otters-happen.md diff --git a/.changeset/fair-otters-happen.md b/.changeset/fair-otters-happen.md new file mode 100644 index 0000000000..3d029824ab --- /dev/null +++ b/.changeset/fair-otters-happen.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog': minor +--- + +Removed `columnFactories`, which was accidentally exported on the previous release. diff --git a/plugins/catalog/api-report.md b/plugins/catalog/api-report.md index 053a46bc35..bd5edcbfa6 100644 --- a/plugins/catalog/api-report.md +++ b/plugins/catalog/api-report.md @@ -160,23 +160,6 @@ export interface CatalogTableRow { }; } -// @public (undocumented) -export const columnFactories: Readonly<{ - createNameColumn( - options?: - | { - defaultKind?: string | undefined; - } - | undefined, - ): TableColumn; - createSystemColumn(): TableColumn; - createOwnerColumn(): TableColumn; - createSpecTypeColumn(): TableColumn; - createSpecLifecycleColumn(): TableColumn; - createMetadataDescriptionColumn(): TableColumn; - createTagsColumn(): TableColumn; -}>; - // @public export interface DefaultCatalogPageProps { // (undocumented) diff --git a/plugins/catalog/src/index.ts b/plugins/catalog/src/index.ts index 0cda2fe6f6..fef420d6d3 100644 --- a/plugins/catalog/src/index.ts +++ b/plugins/catalog/src/index.ts @@ -24,7 +24,6 @@ export * from './components/AboutCard'; export * from './components/CatalogKindHeader'; export * from './components/CatalogSearchResultListItem'; export * from './components/CatalogTable'; -export * from './components/CatalogTable/columns'; export * from './components/EntityLayout'; export * from './components/EntityOrphanWarning'; export * from './components/EntityProcessingErrorsPanel';