Updated API reports due to the package change

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2026-02-23 06:29:04 -06:00
parent d0469f605a
commit 4541817031
16 changed files with 81 additions and 230 deletions
+11 -17
View File
@@ -66,11 +66,7 @@ export type ContentStateTypes =
| 'CONTENT_FRESH';
// @public
export const CustomDocsPanel: ({
config,
entities,
index,
}: {
export const CustomDocsPanel: (input: {
config: PanelConfig;
entities: Entity[];
index: number;
@@ -151,12 +147,11 @@ export type DocsTableRow = {
};
// @public
export const EmbeddedDocsRouter: ({
children,
withSearch,
}: PropsWithChildren<{
withSearch?: boolean;
}>) => JSX_2.Element;
export const EmbeddedDocsRouter: (
input: PropsWithChildren<{
withSearch?: boolean;
}>,
) => JSX_2.Element;
// @public
export const EntityListDocsGrid: (
@@ -208,12 +203,11 @@ export type EntityListDocsTableProps = {
};
// @public
export const EntityTechdocsContent: ({
children,
withSearch,
}: PropsWithChildren<{
withSearch?: boolean;
}>) => JSX_2.Element;
export const EntityTechdocsContent: (
input: PropsWithChildren<{
withSearch?: boolean;
}>,
) => JSX_2.Element;
// @public
export const InfoCardGrid: (props: InfoCardGridProps) => JSX_2.Element | null;