jsoneditor-react
jsoneditor-react copied to clipboard
react wrapper implementation for https://github.com/josdejong/jsoneditor
If this is compatible with React 17, is it possible to update the peer dependency. Otherwise npm i fails with latest npm.
I'm exploring the new editor created by same developer. see here: https://github.com/josdejong/svelte-jsoneditor I'm struggling to get it to run inside of React, mainly due to my lack of React knowledge...
How can i change size of this component when using ace editor?
Hello. Is there any way that we could block all or some of the keys or/and all or some of the values rendered to be editable?
Reference json: ```js { type: 'object', required: ['spin_turn'], properties: { spin_turn: { type: 'number', title: 'Spin turn', default: 0, enum:[0,1,2] }, disabled: { type: 'boolean', title: 'Disabled', default: false, },...
Please, clear the variable `this.err` at the function `handleChange` before the line: https://github.com/vankop/jsoneditor-react/blob/8c05a8be8e5598805fbac9c0aa53fc824043943b/src/Editor.jsx#L176 With it, I can just check the err variable at the editor to check if there is...
Can you provide an example about using this library with create-react-app?
The bundled icons file does not include icons for the sort and transform buttons in the editor menu. The buttons are still clickable, but it is not clear that there...
`JsonEditor.prototype.shouldComponentUpdate = function shouldComponentUpdate(_ref2) { var htmlElementProps = _ref2.htmlElementProps; return htmlElementProps !== this.props.htmlElementProps; };` In this function you compare with !== the new (yet to be applied) and the old...