Ivan Kopeykin
Ivan Kopeykin
do u using CRA ? may be this is relevant to jsoneditor itself.. for webpack build u need appropriated loaders check this issue https://github.com/vankop/jsoneditor-react/issues/16
I think it is a problem upstream or in your webpack config.. You could check storybook https://github.com/vankop/jsoneditor-react/tree/master/stories all staff works..
In provided example svg with icons loads, so probably you need to create issue in jsoneditor itself https://github.com/josdejong/jsoneditor/issues
@josdejong Cool features, I will find time to update package as soon as possible. Approximately on this weekend.
@josdejong I have tested new features. It works fine, but as I understand in `code` mode handler `onChangeJSON` doesn't work. Unfortunately, supporting only `onChangeJSON` breaks current functionality, because in current...
@josdejong sorry for so late answer. Do you want to take a maintenance on this repo/package? We can move it to you or create organization and move this repo there....
`` is [uncontrolled component](https://reactjs.org/docs/uncontrolled-components.html), so `value` property is only initial value of json editor. If your task is to use both values in 2 editors you need explicitly get jsoneditors....
The main problem with controlled state is lossing focus in ``(it is a behaviour of [josdejong/jsoneditor](https://github.com/josdejong/jsoneditor)), thats why I did it as uncontrolled component.
@markdemich you need to get `ref` of `` to get access to [editor instance](https://github.com/josdejong/jsoneditor) explicitly. For instance: ```jsx class YourComponent extends React.Component { setRef = instance => { if (instance)...
@OlegRyzhkov do you using `jsoneditor-react` as uncontrolled component? If not follow the guide above https://github.com/vankop/jsoneditor-react/issues/3#issuecomment-383531421