From 1ed5803ba2f65fe8f813febdbea2ef6735e9a521 Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Mon, 2 Feb 2026 15:33:31 +1100 Subject: [PATCH 1/2] fix(vue-devtools): fix style prop type --- packages/vue-query-devtools/src/types.ts | 2 +- tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/vue-query-devtools/src/types.ts b/packages/vue-query-devtools/src/types.ts index 67dd9a2755..f5057ab70a 100644 --- a/packages/vue-query-devtools/src/types.ts +++ b/packages/vue-query-devtools/src/types.ts @@ -74,7 +74,7 @@ export interface DevtoolsPanelOptions { * @example { height: '100%' } * @example { height: '100%', width: '100%' } */ - style?: React.CSSProperties + style?: Partial /** * Callback function that is called when the devtools panel is closed diff --git a/tsconfig.json b/tsconfig.json index cb304f02b6..22bbf5db63 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -26,7 +26,8 @@ "resolveJsonModule": true, "skipLibCheck": true, "strict": true, - "target": "ES2020" + "target": "ES2020", + "types": ["node"] }, "include": ["*.config.*"] } From ca2af46dca8535cc9c34d11058920dc346f8de38 Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Mon, 2 Feb 2026 15:37:45 +1100 Subject: [PATCH 2/2] Add changeset --- .changeset/funny-lines-visit.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/funny-lines-visit.md diff --git a/.changeset/funny-lines-visit.md b/.changeset/funny-lines-visit.md new file mode 100644 index 0000000000..652a4952bd --- /dev/null +++ b/.changeset/funny-lines-visit.md @@ -0,0 +1,5 @@ +--- +'@tanstack/vue-query-devtools': patch +--- + +fix: style prop type