catalog: Remove CatalogResultListItem

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-03-04 11:23:47 +01:00
parent 9f5351fc91
commit 5ea9509e6a
3 changed files with 7 additions and 20 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': minor
---
**BREAKING**: Removed `CatalogResultListItemProps` and `CatalogResultListItem`, replaced by `CatalogSearchResultListItemProps` and `CatalogSearchResultListItem`.
@@ -73,15 +73,3 @@ export function CatalogSearchResultListItem(
</Link>
);
}
/**
* @public
* @deprecated use {@link CatalogSearchResultListItemProps} instead
*/
export type CatalogResultListItemProps = CatalogSearchResultListItemProps;
/**
* @public
* @deprecated use {@link CatalogSearchResultListItem} instead
*/
export const CatalogResultListItem = CatalogSearchResultListItem;
@@ -14,11 +14,5 @@
* limitations under the License.
*/
export {
CatalogSearchResultListItem,
CatalogResultListItem,
} from './CatalogSearchResultListItem';
export type {
CatalogSearchResultListItemProps,
CatalogResultListItemProps,
} from './CatalogSearchResultListItem';
export { CatalogSearchResultListItem } from './CatalogSearchResultListItem';
export type { CatalogSearchResultListItemProps } from './CatalogSearchResultListItem';