Hi there! First of all, thanks for this library, it really helps me building a JSON editor with a custom json format and conveniently validate it. Unfortunately, I ran into an issue where JSON schema with conditions doesn't trigger autocomplete to show up. For instance, I have a json structure like below:
And I expect that when I type in "Test" into "type" field I get "a" and "b" hints for "props" field, but instead I get nothing (it still shows that it's number type, although validation works correctly):
Hi there! First of all, thanks for this library, it really helps me building a JSON editor with a custom json format and conveniently validate it. Unfortunately, I ran into an issue where JSON schema with conditions doesn't trigger autocomplete to show up. For instance, I have a json structure like below:
And I expect that when I type in "Test" into "type" field I get "a" and "b" hints for "props" field, but instead I get nothing (it still shows that it's number type, although validation works correctly):
Here is my React component:
I'm using: node v18.7.0, "codemirror-json-schema": "^0.7.8", "@codemirror/lang-json": "^6.0.1", "@uiw/react-codemirror": "^4.22.1".