catalog: remove columnFactories export

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2022-02-18 16:29:33 +01:00
parent c4760992a5
commit e7b9c3d713
3 changed files with 5 additions and 18 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': minor
---
Removed `columnFactories`, which was accidentally exported on the previous release.
-17
View File
@@ -160,23 +160,6 @@ export interface CatalogTableRow {
};
}
// @public (undocumented)
export const columnFactories: Readonly<{
createNameColumn(
options?:
| {
defaultKind?: string | undefined;
}
| undefined,
): TableColumn<CatalogTableRow>;
createSystemColumn(): TableColumn<CatalogTableRow>;
createOwnerColumn(): TableColumn<CatalogTableRow>;
createSpecTypeColumn(): TableColumn<CatalogTableRow>;
createSpecLifecycleColumn(): TableColumn<CatalogTableRow>;
createMetadataDescriptionColumn(): TableColumn<CatalogTableRow>;
createTagsColumn(): TableColumn<CatalogTableRow>;
}>;
// @public
export interface DefaultCatalogPageProps {
// (undocumented)
-1
View File
@@ -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';