api-reports

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2023-08-16 16:11:06 +02:00
parent 8dc1a94a3a
commit 3f9d2b90bc
89 changed files with 693 additions and 491 deletions
+11 -9
View File
@@ -9,19 +9,21 @@ import { BackstagePlugin } from '@backstage/core-plugin-api';
import { ExternalRouteRef } from '@backstage/core-plugin-api';
import { IconComponent } from '@backstage/core-plugin-api';
import { InfoCardVariants } from '@backstage/core-components';
import { JSX as JSX_2 } from 'react';
import { default as React_2 } from 'react';
// @public (undocumented)
export const EntityGroupProfileCard: (props: {
variant?: InfoCardVariants | undefined;
showLinks?: boolean | undefined;
}) => JSX.Element;
}) => JSX_2.Element;
// @public (undocumented)
export const EntityMembersListCard: (props: {
memberDisplayTitle?: string | undefined;
pageSize?: number | undefined;
showAggregateMembersToggle?: boolean | undefined;
}) => JSX.Element;
}) => JSX_2.Element;
// @public (undocumented)
export const EntityOwnershipCard: (props: {
@@ -30,26 +32,26 @@ export const EntityOwnershipCard: (props: {
hideRelationsToggle?: boolean | undefined;
relationsType?: string | undefined;
entityLimit?: number | undefined;
}) => JSX.Element;
}) => JSX_2.Element;
// @public (undocumented)
export const EntityUserProfileCard: (props: {
variant?: InfoCardVariants | undefined;
showLinks?: boolean | undefined;
}) => JSX.Element;
}) => JSX_2.Element;
// @public (undocumented)
export const GroupProfileCard: (props: {
variant?: InfoCardVariants;
showLinks?: boolean;
}) => JSX.Element;
}) => React_2.JSX.Element;
// @public (undocumented)
export const MembersListCard: (props: {
memberDisplayTitle?: string;
pageSize?: number;
showAggregateMembersToggle?: boolean;
}) => JSX.Element;
}) => React_2.JSX.Element;
// @public
export const MyGroupsSidebarItem: (props: {
@@ -57,7 +59,7 @@ export const MyGroupsSidebarItem: (props: {
pluralTitle: string;
icon: IconComponent;
filter?: Record<string, string | symbol | (string | symbol)[]>;
}) => JSX.Element | null;
}) => React_2.JSX.Element | null;
// @public (undocumented)
const orgPlugin: BackstagePlugin<
@@ -77,11 +79,11 @@ export const OwnershipCard: (props: {
hideRelationsToggle?: boolean;
relationsType?: string;
entityLimit?: number;
}) => JSX.Element;
}) => React_2.JSX.Element;
// @public (undocumented)
export const UserProfileCard: (props: {
variant?: InfoCardVariants;
showLinks?: boolean;
}) => JSX.Element;
}) => React_2.JSX.Element;
```