svelte-jsoneditor
Advanced tools
Changelog
0.21.0 (2023-12-20)
Content
is changed from { json: JSONValue} | { text: string }
into
{ json: unknown } | { text: string }
, and all other types having JSONValue
changed
to unknown
. The return type of JSONParser.stringify
changed from string
to
string | undefined
.Changelog
0.20.0 (2023-12-06)
vanilla-jsoneditor
directly in the browser, you now have to import { JSONEditor } from 'vanilla-jsoneditor/standalone.js'
instead of import { JSONEditor } from 'vanilla-jsoneditor'
. For projects with a build setup (React, Vue, Angular) it should be a drop-in replacement.themes/jse-theme-default.css
is now removed (replaced by an internal defaults.scss
). The provided dark theme still works as-is. The CSS variable --jse-modal-theme-color
has been renamed to --jse-modal-editor-theme-color
, and --jse-modal-theme-color-highlight
has been renamed to --jse-modal-editor-theme-color-highlight
.vanilla-jsoneditor
(#353) (9c1ad15)codemirror
, fontawesome
, svelte-awesome
, and dev dependencies (75596ae)Changelog
0.18.12 (2023-11-08)
jsonrepair@3.4.0
(9ede6ea)onChange
callback throws a selection error (6e511fa)onChange
event not fired after calling editor.set(...)
(see #318) (afaca42)Changelog
0.18.11 (2023-10-31)