Merge pull request #9667 from backstage/rugvip/nocols

catalog: remove columnFactories export
This commit is contained in:
Patrik Oldsberg
2022-02-18 19:10:16 +01:00
committed by GitHub
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';