@spotlightjs/overlay 2.8.0 → 2.8.1
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/constants.d.ts +1 -0
- package/dist/integrations/sentry/components/explore/traces/TraceDetails/components/TraceRootTxnName.d.ts +6 -0
- package/dist/integrations/sentry/utils/tabs.d.ts +3 -0
- package/dist/react-instance.d.ts +2 -2
- package/dist/sentry-spotlight.iife.js +137 -112
- package/dist/sentry-spotlight.iife.js.map +1 -1
- package/dist/sentry-spotlight.js +22265 -10722
- package/dist/sentry-spotlight.js.map +1 -1
- package/dist/ui/Tag/Tag.d.ts +4 -2
- package/dist/utils/instrumentation.d.ts +2 -0
- package/package.json +4 -3
- /package/dist/utils/{remvoveURLSuffix.d.ts → removeURLSuffix.d.ts} +0 -0
package/dist/ui/Tag/Tag.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export type TagProps = {
|
|
2
|
-
tagKey
|
|
2
|
+
tagKey?: string;
|
|
3
3
|
value: string;
|
|
4
|
+
flowing?: boolean;
|
|
5
|
+
maxWidth?: string;
|
|
4
6
|
};
|
|
5
|
-
export default function Tag({ tagKey, value }: TagProps): import("react/jsx-runtime").JSX.Element | null;
|
|
7
|
+
export default function Tag({ tagKey, value, flowing, maxWidth }: TagProps): import("react/jsx-runtime").JSX.Element | null;
|
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.8.
|
|
4
|
+
"version": "2.8.1",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@fontsource/raleway": "^5.1.0",
|
|
21
|
+
"@microlink/react-json-view": "^1.23.4",
|
|
22
|
+
"@sentry/react": "^8.43.0",
|
|
21
23
|
"@sentry/types": "^8.33.1",
|
|
22
24
|
"@sentry/utils": "^8.33.1",
|
|
23
25
|
"@types/beautify": "^0.0.3",
|
|
@@ -40,7 +42,6 @@
|
|
|
40
42
|
"react": "^18.3.1",
|
|
41
43
|
"react-diff-viewer-continued": "^3.4.0",
|
|
42
44
|
"react-dom": "^18.3.1",
|
|
43
|
-
"react-json-view": "^1.21.3",
|
|
44
45
|
"react-router-dom": "^6.26.2",
|
|
45
46
|
"sql-formatter": "^12.2.4",
|
|
46
47
|
"tailwindcss": "^3.4.13",
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
"vite-plugin-dts": "^3.9.1",
|
|
51
52
|
"vite-plugin-svgr": "^3.3.0",
|
|
52
53
|
"vitest": "^0.34.6",
|
|
53
|
-
"@spotlightjs/sidecar": "1.9.
|
|
54
|
+
"@spotlightjs/sidecar": "1.9.3",
|
|
54
55
|
"@spotlightjs/tsconfig": "1.0.1"
|
|
55
56
|
},
|
|
56
57
|
"volta": {
|
|
File without changes
|