diff --git a/plugins/catalog/api-report.md b/plugins/catalog/api-report.md index 535269dfca..4017e8d494 100644 --- a/plugins/catalog/api-report.md +++ b/plugins/catalog/api-report.md @@ -134,6 +134,12 @@ export const CatalogSearchResultListItem: ( props: SearchResultListItemExtensionProps, ) => JSX.Element | null; +// @public (undocumented) +export type CatalogSearchResultListItemClassKey = + | 'item' + | 'flexContainer' + | 'itemText'; + // @public export interface CatalogSearchResultListItemProps { // (undocumented) @@ -662,8 +668,4 @@ export type SystemDiagramCardClassKey = | 'componentNode' | 'apiNode' | 'resourceNode'; - -// Warnings were encountered during analysis: -// -// src/overridableComponents.d.ts:14:5 - (ae-forgotten-export) The symbol "CatalogSearchResultListItemClassKey" needs to be exported by the entry point index.d.ts ``` diff --git a/plugins/catalog/src/index.ts b/plugins/catalog/src/index.ts index 806ea40c66..f3cc7d3d0b 100644 --- a/plugins/catalog/src/index.ts +++ b/plugins/catalog/src/index.ts @@ -38,6 +38,7 @@ export * from './components/EntitySwitch'; export * from './components/FilteredEntityLayout'; export * from './overridableComponents'; export * from './components/EntityLabelsCard'; +export * from './components/CatalogSearchResultListItem'; export { CatalogEntityPage, CatalogIndexPage,