From 495623fef5a42ee810fbc19a333a1f64bd1bcacc Mon Sep 17 00:00:00 2001 From: Tyler Davis Date: Thu, 14 Nov 2024 18:42:12 +1100 Subject: [PATCH] api report after docs update Signed-off-by: Tyler Davis --- plugins/catalog/report-alpha.api.md | 8 ++++---- plugins/catalog/report.api.md | 9 ++++----- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/plugins/catalog/report-alpha.api.md b/plugins/catalog/report-alpha.api.md index 0e01aa5659..6a8007a199 100644 --- a/plugins/catalog/report-alpha.api.md +++ b/plugins/catalog/report-alpha.api.md @@ -98,8 +98,8 @@ export const catalogTranslationRef: TranslationRef< readonly 'entityLinksCard.title': 'Links'; readonly 'entityLinksCard.emptyDescription': 'No links defined for this entity. You can add links to your entity YAML as shown in the highlighted example below:'; readonly 'entityLinksCard.readMoreButtonTitle': 'Read more'; - readonly 'entityNotFound.title': 'Entity was not found'; readonly 'entityNotFound.description': 'Want to help us build this? Check out our Getting Started documentation.'; + readonly 'entityNotFound.title': 'Entity was not found'; readonly 'entityNotFound.docButtonTitle': 'DOCS'; readonly entityProcessingErrorsDescription: 'The error below originates from'; readonly entityRelationWarningDescription: "This entity has relations to other entities, which can't be found in the catalog.\n Entities not found are: "; @@ -114,8 +114,8 @@ export const catalogTranslationRef: TranslationRef< readonly 'hasSystemsCard.title': 'Has systems'; readonly 'hasSystemsCard.emptyMessage': 'No system is part of this domain'; readonly 'relatedEntitiesCard.emptyHelpLinkTitle': 'Learn how to change this'; - readonly 'systemDiagramCard.title': 'System Diagram'; readonly 'systemDiagramCard.description': 'Use pinch & zoo to move around the diagram.'; + readonly 'systemDiagramCard.title': 'System Diagram'; readonly 'systemDiagramCard.edgeLabels.dependsOn': 'depends on'; readonly 'systemDiagramCard.edgeLabels.partOf': 'part of'; readonly 'systemDiagramCard.edgeLabels.provides': 'provides'; @@ -127,15 +127,15 @@ const _default: FrontendPlugin< { catalogIndex: RouteRef; catalogEntity: RouteRef<{ - name: string; kind: string; + name: string; namespace: string; }>; }, { viewTechDoc: ExternalRouteRef<{ - name: string; kind: string; + name: string; namespace: string; }>; createComponent: ExternalRouteRef; diff --git a/plugins/catalog/report.api.md b/plugins/catalog/report.api.md index bc74b9b3d1..b352ced580 100644 --- a/plugins/catalog/report.api.md +++ b/plugins/catalog/report.api.md @@ -105,8 +105,8 @@ export const catalogPlugin: BackstagePlugin< { catalogIndex: RouteRef; catalogEntity: RouteRef<{ - name: string; kind: string; + name: string; namespace: string; }>; }, @@ -114,8 +114,8 @@ export const catalogPlugin: BackstagePlugin< createComponent: ExternalRouteRef; viewTechDoc: ExternalRouteRef< { - name: string; kind: string; + name: string; namespace: string; }, true @@ -156,7 +156,7 @@ export interface CatalogSearchResultListItemProps { result?: IndexableDocument; } -// @public (undocumented) +// @public export const CatalogTable: { (props: CatalogTableProps): React_2.JSX.Element; columns: Readonly<{ @@ -214,7 +214,6 @@ export interface CatalogTableProps { subtitle?: string; // (undocumented) tableOptions?: TableProps['options']; - // (undocumented) title?: string; } @@ -519,7 +518,7 @@ export const FilterContainer: (props: { | 'lg' | 'xl' | undefined; - drawerAnchor?: 'left' | 'top' | 'bottom' | 'right' | undefined; + drawerAnchor?: 'top' | 'bottom' | 'left' | 'right' | undefined; } | undefined; }) => JSX_2.Element;