From 759e103bdc39d3cd53fce01665f22d3e9f1dd78d Mon Sep 17 00:00:00 2001 From: ambulgm Date: Thu, 11 Dec 2025 15:25:04 -0800 Subject: [PATCH] chore: update api reports Signed-off-by: ambulgm --- plugins/notifications/report.api.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/notifications/report.api.md b/plugins/notifications/report.api.md index 0d2912638f..0ccf5698e2 100644 --- a/plugins/notifications/report.api.md +++ b/plugins/notifications/report.api.md @@ -141,6 +141,13 @@ export const notificationsPlugin: BackstagePlugin< {} >; +// @public +export type NotificationsRenderItemProps = { + unreadCount: number; + to: string; + onClick: () => void; +}; + // @public (undocumented) export const NotificationsSidebarItem: ( props?: NotificationsSideBarItemProps, @@ -158,6 +165,7 @@ export type NotificationsSideBarItemProps = { text?: string; disableHighlight?: boolean; noTrack?: boolean; + renderItem?: (props: NotificationsRenderItemProps) => React_2.ReactNode; }; // @public (undocumented)