Merge pull request #33997 from backstage/charlesdedreuille/act-355-header-improvements

feat(ui): add description, tags, and metadata props to Header
This commit is contained in:
Charles de Dreuille
2026-04-24 13:59:56 +01:00
committed by GitHub
25 changed files with 1124 additions and 39 deletions
+2 -2
View File
@@ -82,8 +82,8 @@ export const catalogReactTranslationRef: TranslationRef<
readonly 'inspectEntityDialog.overviewPage.labels': 'Labels';
readonly 'inspectEntityDialog.overviewPage.status.title': 'Status';
readonly 'inspectEntityDialog.overviewPage.identity.title': 'Identity';
readonly 'inspectEntityDialog.overviewPage.annotations': 'Annotations';
readonly 'inspectEntityDialog.overviewPage.tags': 'Tags';
readonly 'inspectEntityDialog.overviewPage.annotations': 'Annotations';
readonly 'inspectEntityDialog.overviewPage.relation.title': 'Relations';
readonly 'inspectEntityDialog.overviewPage.copyAriaLabel': 'Copy {{label}}';
readonly 'inspectEntityDialog.overviewPage.copiedStatus': 'Copied';
@@ -122,8 +122,8 @@ export const catalogReactTranslationRef: TranslationRef<
readonly 'entityTableColumnTitle.description': 'Description';
readonly 'entityTableColumnTitle.system': 'System';
readonly 'entityTableColumnTitle.namespace': 'Namespace';
readonly 'entityTableColumnTitle.domain': 'Domain';
readonly 'entityTableColumnTitle.tags': 'Tags';
readonly 'entityTableColumnTitle.domain': 'Domain';
readonly 'entityTableColumnTitle.owner': 'Owner';
readonly 'entityTableColumnTitle.lifecycle': 'Lifecycle';
readonly 'entityTableColumnTitle.targets': 'Targets';
+2 -2
View File
@@ -204,8 +204,8 @@ export const catalogReactTranslationRef: TranslationRef<
readonly 'inspectEntityDialog.overviewPage.labels': 'Labels';
readonly 'inspectEntityDialog.overviewPage.status.title': 'Status';
readonly 'inspectEntityDialog.overviewPage.identity.title': 'Identity';
readonly 'inspectEntityDialog.overviewPage.annotations': 'Annotations';
readonly 'inspectEntityDialog.overviewPage.tags': 'Tags';
readonly 'inspectEntityDialog.overviewPage.annotations': 'Annotations';
readonly 'inspectEntityDialog.overviewPage.relation.title': 'Relations';
readonly 'inspectEntityDialog.overviewPage.copyAriaLabel': 'Copy {{label}}';
readonly 'inspectEntityDialog.overviewPage.copiedStatus': 'Copied';
@@ -244,8 +244,8 @@ export const catalogReactTranslationRef: TranslationRef<
readonly 'entityTableColumnTitle.description': 'Description';
readonly 'entityTableColumnTitle.system': 'System';
readonly 'entityTableColumnTitle.namespace': 'Namespace';
readonly 'entityTableColumnTitle.domain': 'Domain';
readonly 'entityTableColumnTitle.tags': 'Tags';
readonly 'entityTableColumnTitle.domain': 'Domain';
readonly 'entityTableColumnTitle.owner': 'Owner';
readonly 'entityTableColumnTitle.lifecycle': 'Lifecycle';
readonly 'entityTableColumnTitle.targets': 'Targets';
@@ -66,15 +66,15 @@ export function createGithubBranchProtectionAction(options: {
dismissStaleReviews?: boolean | undefined;
bypassPullRequestAllowances?:
| {
users?: string[] | undefined;
apps?: string[] | undefined;
teams?: string[] | undefined;
users?: string[] | undefined;
}
| undefined;
restrictions?:
| {
teams: string[];
users: string[];
teams: string[];
apps?: string[] | undefined;
}
| undefined;
@@ -241,9 +241,9 @@ export function createGithubRepoCreateAction(options: {
branch?: string | undefined;
bypassPullRequestAllowances?:
| {
users?: string[] | undefined;
apps?: string[] | undefined;
teams?: string[] | undefined;
users?: string[] | undefined;
}
| undefined;
collaborators?:
@@ -290,8 +290,8 @@ export function createGithubRepoCreateAction(options: {
requireLastPushApproval?: boolean | undefined;
restrictions?:
| {
teams: string[];
users: string[];
teams: string[];
apps?: string[] | undefined;
}
| undefined;
@@ -328,16 +328,16 @@ export function createGithubRepoPushAction(options: {
requiredStatusCheckContexts?: string[] | undefined;
bypassPullRequestAllowances?:
| {
users?: string[] | undefined;
apps?: string[] | undefined;
teams?: string[] | undefined;
users?: string[] | undefined;
}
| undefined;
requiredApprovingReviewCount?: number | undefined;
restrictions?:
| {
teams: string[];
users: string[];
teams: string[];
apps?: string[] | undefined;
}
| undefined;
@@ -398,16 +398,16 @@ export function createPublishGithubAction(options: {
access?: string | undefined;
bypassPullRequestAllowances?:
| {
users?: string[] | undefined;
apps?: string[] | undefined;
teams?: string[] | undefined;
users?: string[] | undefined;
}
| undefined;
requiredApprovingReviewCount?: number | undefined;
restrictions?:
| {
teams: string[];
users: string[];
teams: string[];
apps?: string[] | undefined;
}
| undefined;