From 99ef00b4e4bc65ebd4062f35ca840ab003ba9ba7 Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Mon, 2 Mar 2026 12:27:27 +0100 Subject: [PATCH] chore: update changeset and API reports Signed-off-by: Johan Persson --- .changeset/thirty-kiwis-trade.md | 4 +--- plugins/catalog/report.api.md | 3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.changeset/thirty-kiwis-trade.md b/.changeset/thirty-kiwis-trade.md index e84fafd525..b2cdc5fb01 100644 --- a/.changeset/thirty-kiwis-trade.md +++ b/.changeset/thirty-kiwis-trade.md @@ -4,6 +4,4 @@ '@backstage/plugin-org': patch --- -Added `EntityInfoCard` component to `@backstage/plugin-catalog-react` as a BUI-based card wrapper for entity page cards. Migrated `EntityAboutCard`, `EntityLinksCard`, `EntityLabelsCard`, `GroupProfileCard`, and `UserProfileCard` from MUI/InfoCard to use the new BUI card layout. - -**Affected components:** EntityInfoCard, EntityAboutCard, EntityLinksCard, EntityLabelsCard, GroupProfileCard, UserProfileCard +Added `EntityInfoCard` component to `@backstage/plugin-catalog-react` as a BUI-based card wrapper for entity page cards. Migrated `EntityAboutCard`, `EntityLinksCard`, `EntityLabelsCard`, `GroupProfileCard`, and `UserProfileCard` from MUI/InfoCard to use the new BUI card layout. Replaced MUI ImageList and Grid internals in LinksGridList and AboutContent with BUI Grid. Migrated EntityLabelsCard from core-components Table to BUI Table. Updated GroupProfileCard and UserProfileCard to use BUI Avatar in card titles. diff --git a/plugins/catalog/report.api.md b/plugins/catalog/report.api.md index f0696387fb..4539364917 100644 --- a/plugins/catalog/report.api.md +++ b/plugins/catalog/report.api.md @@ -8,6 +8,7 @@ import { BackstagePlugin } from '@backstage/core-plugin-api'; import { CatalogApi } from '@backstage/plugin-catalog-react'; import { ComponentEntity } from '@backstage/catalog-model'; import { CompoundEntityRef } from '@backstage/catalog-model'; +import { CSSProperties } from 'react'; import { DomainEntity } from '@backstage/catalog-model'; import { ElementType } from 'react'; import { Entity } from '@backstage/catalog-model'; @@ -68,6 +69,8 @@ export interface AboutFieldProps { // (undocumented) label: string; // (undocumented) + style?: CSSProperties; + // (undocumented) value?: string; }