@sentry/junior-dashboard 0.141.0 → 0.142.0

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.
@@ -93,6 +93,7 @@ export declare function useTasksData(enabled: boolean): import("@tanstack/react-
93
93
  instruction: string;
94
94
  ownedByViewer: boolean;
95
95
  runsLast7Days: number;
96
+ title: string;
96
97
  totalRuns: number;
97
98
  kind: "scheduled";
98
99
  schedule: string;
@@ -114,6 +115,7 @@ export declare function useTasksData(enabled: boolean): import("@tanstack/react-
114
115
  instruction: string;
115
116
  ownedByViewer: boolean;
116
117
  runsLast7Days: number;
118
+ title: string;
117
119
  totalRuns: number;
118
120
  events: string[];
119
121
  kind: "event";
@@ -154,6 +156,7 @@ export declare function useTaskExecutionsData(enabled: boolean, kind: "scheduled
154
156
  instruction: string;
155
157
  ownedByViewer: boolean;
156
158
  runsLast7Days: number;
159
+ title: string;
157
160
  totalRuns: number;
158
161
  kind: "scheduled";
159
162
  schedule: string;
@@ -175,6 +178,7 @@ export declare function useTaskExecutionsData(enabled: boolean, kind: "scheduled
175
178
  instruction: string;
176
179
  ownedByViewer: boolean;
177
180
  runsLast7Days: number;
181
+ title: string;
178
182
  totalRuns: number;
179
183
  events: string[];
180
184
  kind: "event";
@@ -6,7 +6,8 @@ type TooltipProps = {
6
6
  content: ReactNode;
7
7
  label?: ReactNode;
8
8
  placement?: "above" | "below";
9
+ triggerClassName?: string;
9
10
  };
10
11
  /** Show selectable dashboard details beside an element. */
11
- export declare function Tooltip({ align, children, className, content, label, placement, }: TooltipProps): import("react/jsx-runtime").JSX.Element;
12
+ export declare function Tooltip({ align, children, className, content, label, placement, triggerClassName, }: TooltipProps): import("react/jsx-runtime").JSX.Element;
12
13
  export {};