@@ -2,4 +2,4 @@
|
||||
'@backstage/plugin-scaffolder': minor
|
||||
---
|
||||
|
||||
- **BREAKING**: Removed the `FavouriteEntity` export in favor of the `FavoriteEntity` from `@backstage/plguin-catalog-react`. Please migrate any usages to that component instead if you are creating your own `TemplateCard` page.
|
||||
- **BREAKING**: Removed the `FavouriteTemplate` export in favor of the `FavoriteEntity` from `@backstage/plugin-catalog-react`. Please migrate any usages to that component instead if you are creating your own `TemplateCard` page.
|
||||
|
||||
@@ -413,13 +413,8 @@ export const favoriteEntityTooltip: (
|
||||
isStarred: boolean,
|
||||
) => 'Remove from favorites' | 'Add to favorites';
|
||||
|
||||
// @public (undocumented)
|
||||
export function formatEntityRefTitle(
|
||||
entityRef: Entity | EntityName,
|
||||
opts?: {
|
||||
defaultKind?: string;
|
||||
},
|
||||
): string;
|
||||
// @public @deprecated (undocumented)
|
||||
export const formatEntityRefTitle: typeof humanizeEntityRef;
|
||||
|
||||
// @public @deprecated (undocumented)
|
||||
export function getEntityMetadataEditUrl(entity: Entity): string | undefined;
|
||||
@@ -442,6 +437,14 @@ export function getEntitySourceLocation(
|
||||
scmIntegrationsApi: ScmIntegrationRegistry,
|
||||
): EntitySourceLocation | undefined;
|
||||
|
||||
// @public (undocumented)
|
||||
export function humanizeEntityRef(
|
||||
entityRef: Entity | EntityName,
|
||||
opts?: {
|
||||
defaultKind?: string;
|
||||
},
|
||||
): string;
|
||||
|
||||
// @public
|
||||
export function InspectEntityDialog(props: {
|
||||
open: boolean;
|
||||
|
||||
@@ -20,7 +20,7 @@ import {
|
||||
DEFAULT_NAMESPACE,
|
||||
} from '@backstage/catalog-model';
|
||||
|
||||
/** @deprecated please use {@link humanizeEntityRef} instead */
|
||||
/** @public @deprecated please use {@link humanizeEntityRef} instead */
|
||||
export const formatEntityRefTitle = humanizeEntityRef;
|
||||
|
||||
/** @public */
|
||||
|
||||
Reference in New Issue
Block a user