@spotlightjs/overlay 2.11.1 → 2.12.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.
- package/dist/index.d.ts +2 -2
- package/dist/integrations/sentry/data/profiles.d.ts +10 -0
- package/dist/integrations/sentry/data/sentryDataCache.d.ts +10 -7
- package/dist/integrations/sentry/data/useSentryEnvelopes.d.ts +2 -2
- package/dist/integrations/sentry/data/useSentrySpans.d.ts +9 -1
- package/dist/integrations/sentry/sentry-integration.d.ts +2 -2
- package/dist/integrations/sentry/types.d.ts +57 -3
- package/dist/integrations/sentry/utils/duration.d.ts +11 -16
- package/dist/integrations/sentry/utils/traces.d.ts +6 -1
- package/dist/sentry-spotlight.iife.js +106 -106
- package/dist/sentry-spotlight.iife.js.map +1 -1
- package/dist/sentry-spotlight.js +8528 -8363
- package/dist/sentry-spotlight.js.map +1 -1
- package/dist/sentry-spotlight.umd.cjs +106 -106
- package/dist/sentry-spotlight.umd.cjs.map +1 -1
- package/dist/ui/SidePanel/SidePanel.d.ts +1 -0
- package/package.json +4 -4
- package/dist/integrations/sentry/data/useSentryTraces.d.ts +0 -1
|
@@ -3,6 +3,7 @@ import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
|
3
3
|
export type SidePanelProps = Omit<ComponentPropsWithoutRef<'div'>, 'className'> & {
|
|
4
4
|
backto: string;
|
|
5
5
|
};
|
|
6
|
+
export declare function useGoBackWithFallback(fallback: string): () => void;
|
|
6
7
|
export declare function SidePanelHeader({ title, subtitle, backto, }: {
|
|
7
8
|
title: ReactNode;
|
|
8
9
|
subtitle?: ReactNode;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spotlightjs/overlay",
|
|
3
3
|
"description": "The overlay of Spotlight to add debug interface to your web app.",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.12.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"tailwindcss": "^3.4.13",
|
|
49
49
|
"typescript": "^5.6.2",
|
|
50
50
|
"usehooks-ts": "^2.16.0",
|
|
51
|
-
"vite": "^5.4.
|
|
51
|
+
"vite": "^5.4.14",
|
|
52
52
|
"vite-plugin-dts": "^3.9.1",
|
|
53
53
|
"vite-plugin-svgr": "^3.3.0",
|
|
54
54
|
"vitest": "^0.34.6",
|
|
55
|
-
"@spotlightjs/
|
|
56
|
-
"@spotlightjs/
|
|
55
|
+
"@spotlightjs/sidecar": "1.11.2",
|
|
56
|
+
"@spotlightjs/tsconfig": "2.0.0"
|
|
57
57
|
},
|
|
58
58
|
"volta": {
|
|
59
59
|
"extends": "../../package.json"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const useSentryTraces: () => import('../types').Trace[];
|