We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is impossible to override themes using "theme" attribute because of bug in types
import { chromeLight } from 'react-inspector' <Inspector theme={{...chromeLight, ...({ TREENODE_PADDING_LEFT: 20 })}} data={{a: 'a', b: 'b'}}/>
table={false}
"string"
Theme of type string | Record<string, string | number> | undefined.
string | Record<string, string | number> | undefined
p.s. the same happens if we try to use ObjectInspector
ObjectInspector
The text was updated successfully, but these errors were encountered:
Any thoughts on this one? I've dug through the whole object model and can't find a way to override things properly?
Sorry, something went wrong.
No branches or pull requests
Describe the bug
It is impossible to override themes using "theme" attribute because of bug in types
Steps to reproduce the behavior
table={false}
because now it is required attribute."string"
Expected behavior
Theme of type
string | Record<string, string | number> | undefined
.Screenshots and/or logs
Environment
Additional context
p.s. the same happens if we try to use
ObjectInspector
The text was updated successfully, but these errors were encountered: