@spotlightjs/overlay 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/CardList.d.ts +2 -0
- package/dist/components/SidePanel.d.ts +7 -0
- package/dist/components/Tabs.d.ts +1 -1
- package/dist/integrations/integration.d.ts +0 -1
- package/dist/integrations/sentry/types.d.ts +2 -1
- package/dist/integrations/sentry/utils/bytes.d.ts +1 -0
- package/dist/sentry-spotlight.js +5904 -5877
- package/dist/sentry-spotlight.umd.cjs +77 -77
- package/package.json +2 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ComponentPropsWithoutRef, type ReactNode } from 'react';
|
|
2
|
+
export declare function SidePanelHeader({ title, subtitle, backTo, }: {
|
|
3
|
+
title: ReactNode;
|
|
4
|
+
subtitle?: ReactNode;
|
|
5
|
+
backTo: string;
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default function SidePanel(props: Omit<ComponentPropsWithoutRef<'div'>, 'className'>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -74,7 +74,7 @@ export type Tags = {
|
|
|
74
74
|
[key: string]: string;
|
|
75
75
|
};
|
|
76
76
|
export type SentryErrorEvent = CommonEventAttrs & {
|
|
77
|
-
type?: 'error' | 'default';
|
|
77
|
+
type?: 'error' | 'event' | 'default';
|
|
78
78
|
exception: EventException;
|
|
79
79
|
};
|
|
80
80
|
export type Span = {
|
|
@@ -89,6 +89,7 @@ export type Span = {
|
|
|
89
89
|
status: 'ok' | string;
|
|
90
90
|
transaction?: SentryTransactionEvent;
|
|
91
91
|
children?: Span[];
|
|
92
|
+
data?: Record<string, unknown>;
|
|
92
93
|
};
|
|
93
94
|
export type SentryTransactionEvent = CommonEventAttrs & {
|
|
94
95
|
type: 'transaction';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function formatBytes(bytes: number, decimals?: number): string;
|