chore: change exported component name
Signed-off-by: djamaile <rdjamaile@gmail.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -50,6 +50,7 @@ export {
|
||||
EntityHasSystemsCard,
|
||||
EntityLinksCard,
|
||||
EntitySystemDiagramCard,
|
||||
RelatedEntitiesCard,
|
||||
} from './plugin';
|
||||
|
||||
export type { EntityLinksEmptyStateClassKey } from './components/EntityLinksCard';
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user