docs modified

Signed-off-by: Abhay-soni-developer <abhaysoni.developer@gmail.com>
This commit is contained in:
Abhay-soni-developer
2023-06-30 13:56:35 +05:30
parent ecacbce405
commit 6bd5541e1a
2 changed files with 11 additions and 0 deletions
+3
View File
@@ -25,6 +25,7 @@ import { ScmIntegrationRegistry } from '@backstage/integration';
import { StyleRules } from '@material-ui/core/styles/withStyles';
import { SystemEntity } from '@backstage/catalog-model';
import { TableColumn } from '@backstage/core-components';
import { TableOptions } from '@backstage/core-components';
// @public
export const AsyncEntityProvider: (
@@ -395,6 +396,8 @@ export interface EntityTableProps<T extends Entity> {
// (undocumented)
entities: T[];
// (undocumented)
tableOptions?: TableOptions;
// (undocumented)
title: string;
// (undocumented)
variant?: InfoCardVariants;
+8
View File
@@ -27,6 +27,7 @@ import { StarredEntitiesApi } from '@backstage/plugin-catalog-react';
import { StorageApi } from '@backstage/core-plugin-api';
import { StyleRules } from '@material-ui/core/styles/withStyles';
import { TableColumn } from '@backstage/core-components';
import { TableOptions } from '@backstage/core-components';
import { TableProps } from '@backstage/core-components';
import { TabProps } from '@material-ui/core';
import { UserListFilterKind } from '@backstage/plugin-catalog-react';
@@ -243,6 +244,8 @@ export interface DependsOnComponentsCardProps {
// (undocumented)
columns?: TableColumn<ComponentEntity>[];
// (undocumented)
tableOptions?: TableOptions;
// (undocumented)
title?: string;
// (undocumented)
variant?: InfoCardVariants;
@@ -253,6 +256,8 @@ export interface DependsOnResourcesCardProps {
// (undocumented)
columns?: TableColumn<ResourceEntity>[];
// (undocumented)
tableOptions?: TableOptions;
// (undocumented)
title?: string;
// (undocumented)
variant?: InfoCardVariants;
@@ -437,6 +442,8 @@ export interface HasResourcesCardProps {
// @public (undocumented)
export interface HasSubcomponentsCardProps {
// (undocumented)
tableOptions?: TableOptions;
// (undocumented)
variant?: InfoCardVariants;
}
@@ -495,6 +502,7 @@ export type RelatedEntitiesCardProps<T extends Entity> = {
emptyMessage: string;
emptyHelpLink: string;
asRenderableEntities: (entities: Entity[]) => T[];
tableOptions?: TableOptions;
};
// @public (undocumented)