We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e23fa5d commit 4ed9dc1Copy full SHA for 4ed9dc1
.changeset/funny-lines-visit.md
@@ -0,0 +1,5 @@
1
+---
2
+'@tanstack/vue-query-devtools': patch
3
4
+
5
+fix: style prop type
packages/vue-query-devtools/src/types.ts
@@ -74,7 +74,7 @@ export interface DevtoolsPanelOptions {
74
* @example { height: '100%' }
75
* @example { height: '100%', width: '100%' }
76
*/
77
- style?: React.CSSProperties
+ style?: Partial<CSSStyleDeclaration>
78
79
/**
80
* Callback function that is called when the devtools panel is closed
tsconfig.json
@@ -26,7 +26,8 @@
26
"resolveJsonModule": true,
27
"skipLibCheck": true,
28
"strict": true,
29
- "target": "ES2020"
+ "target": "ES2020",
30
+ "types": ["node"]
31
},
32
"include": ["*.config.*"]
33
}
0 commit comments