api report after docs update

Signed-off-by: Tyler Davis <tylerd@canva.com>
This commit is contained in:
Tyler Davis
2024-11-14 18:42:12 +11:00
committed by Camila Belo
parent a7c8659e4b
commit 495623fef5
2 changed files with 8 additions and 9 deletions
+4 -4
View File
@@ -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<undefined>;
catalogEntity: RouteRef<{
name: string;
kind: string;
name: string;
namespace: string;
}>;
},
{
viewTechDoc: ExternalRouteRef<{
name: string;
kind: string;
name: string;
namespace: string;
}>;
createComponent: ExternalRouteRef<undefined>;
+4 -5
View File
@@ -105,8 +105,8 @@ export const catalogPlugin: BackstagePlugin<
{
catalogIndex: RouteRef<undefined>;
catalogEntity: RouteRef<{
name: string;
kind: string;
name: string;
namespace: string;
}>;
},
@@ -114,8 +114,8 @@ export const catalogPlugin: BackstagePlugin<
createComponent: ExternalRouteRef<undefined, true>;
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<CatalogTableRow>['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;