@meridianlabs/inspect-scout-viewer 0.4.39 → 0.4.40

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meridianlabs/inspect-scout-viewer",
3
- "version": "0.4.39",
3
+ "version": "0.4.40",
4
4
  "description": "Inspect Scout viewer for evaluation logs.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -54,24 +54,28 @@
54
54
  "devDependencies": {
55
55
  "@msw/playwright": "^0.6.7",
56
56
  "@playwright/test": "^1.60.0",
57
- "@tanstack/react-query": "^5.100.11",
58
- "@tanstack/react-query-devtools": "^5.100.11",
57
+ "@tanstack/react-query": "^5.100.14",
58
+ "@tanstack/react-query-devtools": "^5.100.14",
59
59
  "@testing-library/react": "^16.3.1",
60
60
  "@tsmono/eslint-config": "workspace:*",
61
61
  "@tsmono/inspect-common": "workspace:*",
62
+ "@tsmono/inspect-components": "workspace:*",
62
63
  "@tsmono/prettier-config": "workspace:*",
64
+ "@tsmono/react": "workspace:*",
65
+ "@tsmono/scout-components": "workspace:*",
66
+ "@tsmono/theme": "workspace:*",
63
67
  "@tsmono/tsconfig": "workspace:*",
64
- "@types/bootstrap": "^5.2.10",
68
+ "@tsmono/util": "workspace:*",
69
+ "@types/bootstrap": "^5.2.11",
65
70
  "@types/css-modules": "^1.0.5",
66
71
  "@types/json5": "^2.2.0",
67
72
  "@types/lodash-es": "^4.17.12",
68
73
  "@types/lz4js": "^0.2.2",
69
74
  "@types/markdown-it": "^14.1.2",
70
75
  "@types/prismjs": "^1.26.5",
71
- "@types/react": "^19.2.7",
76
+ "@types/react": "^19.2.16",
72
77
  "@types/react-dom": "^19.2.3",
73
78
  "@vitejs/plugin-react": "^6.0.2",
74
- "esbuild": "0.28.0",
75
79
  "eslint": "^9.39.4",
76
80
  "eventsource": "^4.1.0",
77
81
  "jsdom": "^29.1.1",
@@ -79,29 +83,23 @@
79
83
  "mathjax-full": "^3.2.2",
80
84
  "msw": "^2.14.6",
81
85
  "openapi-typescript": "^7.10.1",
82
- "postcss-url": "^10.1.3",
83
86
  "prettier": "^3.8.3",
84
- "react": "^19.2.6",
85
- "react-dom": "^19.2.6",
87
+ "react": "^19.2.7",
88
+ "react-dom": "^19.2.7",
86
89
  "typed-css-modules": "^0.9.1",
87
90
  "typescript": "^6.0.3",
88
- "typescript-eslint": "^8.59.4",
91
+ "typescript-eslint": "^8.60.1",
89
92
  "typescript-plugin-css-modules": "^5.2.0",
90
- "vite": "^8.0.13",
91
- "vite-plugin-dts": "^5.0.0",
92
- "vitest": "^4.1.6",
93
+ "vite": "^8.0.16",
94
+ "vite-plugin-dts": "^5.0.2",
95
+ "vitest": "^4.1.8",
93
96
  "zstd-codec": "^0.1.5"
94
97
  },
95
98
  "dependencies": {
96
99
  "@popperjs/core": "^2.11.8",
97
100
  "@tanstack/react-table": "^8.21.3",
98
- "@tanstack/react-virtual": "^3.13.24",
99
- "@tsmono/inspect-components": "workspace:*",
100
- "@tsmono/react": "workspace:*",
101
- "@tsmono/scout-components": "workspace:*",
102
- "@tsmono/theme": "workspace:*",
103
- "@tsmono/util": "workspace:*",
104
- "@uwdata/flechette": "^2.3.0",
101
+ "@tanstack/react-virtual": "^3.14.1",
102
+ "@uwdata/flechette": "^2.5.0",
105
103
  "@vscode-elements/react-elements": "^2.4.0",
106
104
  "@vscode/codicons": "^0.0.45",
107
105
  "ag-grid-community": "^34.3.1",
@@ -117,11 +115,10 @@
117
115
  "jsondiffpatch": "^0.7.6",
118
116
  "lodash-es": "^4.18.1",
119
117
  "lz4js": "^0.2.0",
120
- "markdown-it": "^14.1.1",
118
+ "markdown-it": "^14.2.0",
121
119
  "prismjs": "^1.30.0",
122
120
  "react-popper": "^2.3.0",
123
- "react-router-dom": "^7.15.1",
124
- "react-virtuoso": "^4.18.7",
125
- "zustand": "^5.0.13"
121
+ "react-router-dom": "^7.16.0",
122
+ "zustand": "^5.0.14"
126
123
  }
127
124
  }
@@ -1,2 +0,0 @@
1
- import { FC } from 'react';
2
- export declare const SettingsPanel: FC;
@@ -1,19 +0,0 @@
1
- export declare const SETTINGS_STORAGE_KEY = "inspect-scout-user-settings";
2
- export type ThemePreference = "system" | "light" | "dark";
3
- export declare const isThemePreference: (value: unknown) => value is ThemePreference;
4
- export declare const readThemePreference: (storage: Pick<Storage, "getItem">) => ThemePreference;
5
- export type ResolveInput = {
6
- preference: ThemePreference;
7
- explicitParam: string | null;
8
- isVscodeWebview: boolean;
9
- prefersDark: boolean;
10
- };
11
- export type ResolveOutput = {
12
- kind: "skip";
13
- } | {
14
- kind: "apply";
15
- theme: string;
16
- isDark: boolean;
17
- toggleBodyClass: boolean;
18
- };
19
- export declare const resolveTheme: (input: ResolveInput) => ResolveOutput;