diff --git a/plugins/techdocs/report.api.md b/plugins/techdocs/report.api.md index ec99ddfa31..3f9920d270 100644 --- a/plugins/techdocs/report.api.md +++ b/plugins/techdocs/report.api.md @@ -232,8 +232,6 @@ export interface PanelConfig { filterPredicate: ((entity: Entity) => boolean) | string; // (undocumented) panelCSS?: CSSProperties; - // Warning: (ae-forgotten-export) The symbol "PanelProps" needs to be exported by the entry point index.d.ts - // // (undocumented) panelProps?: PanelProps; // (undocumented) @@ -242,6 +240,20 @@ export interface PanelConfig { title: string; } +// @public +export interface PanelProps { + // (undocumented) + linkContent?: string | JSX.Element; + // (undocumented) + linkDestination?: (entity: Entity) => string; + // (undocumented) + options?: TableOptions; + // (undocumented) + showHeader?: boolean; + // (undocumented) + showSupport?: boolean; +} + // @public export type PanelType = | 'DocsCardGrid' diff --git a/plugins/techdocs/src/home/components/index.ts b/plugins/techdocs/src/home/components/index.ts index 2d37ab9013..9c625817aa 100644 --- a/plugins/techdocs/src/home/components/index.ts +++ b/plugins/techdocs/src/home/components/index.ts @@ -20,6 +20,7 @@ export * from './DefaultTechDocsHome'; export type { PanelType, PanelConfig, + PanelProps, TabConfig, TabsConfig, TechDocsCustomHomeProps,