update api-report files to show the new props
Signed-off-by: Blake Stoddard <blake.stoddard@epicgames.com>
This commit is contained in:
@@ -78,6 +78,7 @@ export type AsyncApiDefinitionWidgetProps = {
|
||||
// @public (undocumented)
|
||||
export const ConsumedApisCard: (props: {
|
||||
variant?: InfoCardVariants;
|
||||
columns?: TableColumn<ApiEntity>[];
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -106,6 +107,7 @@ export const EntityApiDefinitionCard: () => JSX.Element;
|
||||
// @public (undocumented)
|
||||
export const EntityConsumedApisCard: (props: {
|
||||
variant?: InfoCardVariants | undefined;
|
||||
columns?: TableColumn<ApiEntity>[] | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -116,11 +118,13 @@ export const EntityConsumingComponentsCard: (props: {
|
||||
// @public (undocumented)
|
||||
export const EntityHasApisCard: (props: {
|
||||
variant?: InfoCardVariants | undefined;
|
||||
columns?: TableColumn<ApiEntity>[] | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityProvidedApisCard: (props: {
|
||||
variant?: InfoCardVariants | undefined;
|
||||
columns?: TableColumn<ApiEntity>[] | undefined;
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -141,6 +145,7 @@ export type GraphQlDefinitionWidgetProps = {
|
||||
// @public (undocumented)
|
||||
export const HasApisCard: (props: {
|
||||
variant?: InfoCardVariants;
|
||||
columns?: TableColumn<ApiEntity>[];
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -167,6 +172,7 @@ export type PlainApiDefinitionWidgetProps = {
|
||||
// @public (undocumented)
|
||||
export const ProvidedApisCard: (props: {
|
||||
variant?: InfoCardVariants;
|
||||
columns?: TableColumn<ApiEntity>[];
|
||||
}) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
|
||||
import { ApiHolder } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { ComponentEntity } from '@backstage/catalog-model';
|
||||
import { CompoundEntityRef } from '@backstage/catalog-model';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
import { ExternalRouteRef } from '@backstage/core-plugin-api';
|
||||
@@ -17,6 +18,7 @@ import { Observable } from '@backstage/types';
|
||||
import { Overrides } from '@material-ui/core/styles/overrides';
|
||||
import { default as React_2 } from 'react';
|
||||
import { ReactNode } from 'react';
|
||||
import { ResourceEntity } from '@backstage/catalog-model';
|
||||
import { ResultHighlight } from '@backstage/plugin-search-common';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
import { SearchResultListItemExtensionProps } from '@backstage/plugin-search-react';
|
||||
@@ -227,6 +229,8 @@ export interface DependencyOfComponentsCardProps {
|
||||
|
||||
// @public (undocumented)
|
||||
export interface DependsOnComponentsCardProps {
|
||||
// (undocumented)
|
||||
columns?: TableColumn<ComponentEntity>[];
|
||||
// (undocumented)
|
||||
title?: string;
|
||||
// (undocumented)
|
||||
@@ -235,6 +239,10 @@ export interface DependsOnComponentsCardProps {
|
||||
|
||||
// @public (undocumented)
|
||||
export interface DependsOnResourcesCardProps {
|
||||
// (undocumented)
|
||||
columns?: TableColumn<ResourceEntity>[];
|
||||
// (undocumented)
|
||||
title?: string;
|
||||
// (undocumented)
|
||||
variant?: InfoCardVariants;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user