@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.
@@ -0,0 +1,2 @@
1
+ import { ComponentPropsWithoutRef } from 'react';
2
+ export default function CardList(props: Omit<ComponentPropsWithoutRef<'div'>, 'className'>): import("react/jsx-runtime").JSX.Element;
@@ -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;
@@ -1,4 +1,4 @@
1
- import { IntegrationTab } from '../integrations/integration';
1
+ import { type IntegrationTab } from '../integrations/integration';
2
2
  export type Props = {
3
3
  /**
4
4
  * Array of tabs to display.
@@ -57,7 +57,6 @@ export type IntegrationTab<T> = {
57
57
  processedEvents: T[];
58
58
  }>;
59
59
  onSelect?: () => void;
60
- active?: boolean;
61
60
  };
62
61
  export type ProcessedEventContainer<T> = {
63
62
  /**
@@ -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;