chore: change exported component name

Signed-off-by: djamaile <rdjamaile@gmail.com>
This commit is contained in:
djamaile
2022-01-19 12:34:15 +01:00
parent 61ded2a863
commit 440c534dd8
3 changed files with 11 additions and 4 deletions
+8 -2
View File
@@ -44,7 +44,7 @@ export function AboutCard({ variant }: AboutCardProps): JSX.Element;
// Warning: (ae-missing-release-tag) "AboutContent" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const AboutContent: ({ entity }: Props) => JSX.Element;
export const AboutContent: ({ entity }: Props_2) => JSX.Element;
// Warning: (ae-forgotten-export) The symbol "Props" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "AboutField" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
@@ -55,7 +55,7 @@ export const AboutField: ({
value,
gridSizes,
children,
}: Props_2) => JSX.Element;
}: Props_3) => JSX.Element;
// @public (undocumented)
export type BackstageOverrides = Overrides & {
@@ -444,6 +444,12 @@ export type PluginCatalogComponentsNameToClassKey = {
PluginCatalogSystemDiagramCard: SystemDiagramCardClassKey;
};
// Warning: (ae-forgotten-export) The symbol "RelatedEntitiesCard" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "RelatedEntitiesCard" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const RelatedEntitiesCard: RelatedEntitiesCard_2;
// Warning: (ae-missing-release-tag) "Router" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public @deprecated (undocumented)
+1
View File
@@ -50,6 +50,7 @@ export {
EntityHasSystemsCard,
EntityLinksCard,
EntitySystemDiagramCard,
RelatedEntitiesCard,
} from './plugin';
export type { EntityLinksEmptyStateClassKey } from './components/EntityLinksCard';
+2 -2
View File
@@ -187,9 +187,9 @@ export const EntitySystemDiagramCard = catalogPlugin.provide(
}),
);
export const EntityGenericRelationshipCard = catalogPlugin.provide(
export const RelatedEntitiesCard = catalogPlugin.provide(
createComponentExtension({
name: 'EntityGenericRelationshipCard',
name: 'RelatedEntitiesCard',
component: {
lazy: () =>
import('./components/RelatedEntitiesCard').then(