svelte-jsoneditor icon indicating copy to clipboard operation
svelte-jsoneditor copied to clipboard

A web-based tool to view, edit, format, repair, query, transform, and validate JSON

Results 55 svelte-jsoneditor issues
Sort by recently updated
recently updated
newest added

If a new window is created using `window.open()` and then the json editor is created with `target` property set to `wind.document.body` where `wind` is the new window or any other...

bug
help wanted

Just wondering if it's possible to change the placeholder text in the tree mode? I couldn't see anything in the docs. Would it be possible to have a placeholder in...

enhancement
help wanted

Hello! It would be great if json editor could support search params like "Match case", "Whole word", "Regex" ![image](https://user-images.githubusercontent.com/27373393/168782921-70a5d432-c5dc-47dc-990b-403185c32add.png) thanks in advance!

enhancement
help wanted

> Could be copy on ContextMenu or emit on `mousedown`.

enhancement

If you create a component that extends HTMLElement and use shadowDOM, the context menus wont appear. How to reproduce: 1. Create a class that extends HTMLElement 2. Create a ShadowDOM...

bug
help wanted

I have an app where I'm using the AJV Validator with this syntax from the Readme: ```javascript import { createAjvValidator } from 'svelte-jsoneditor' const validator = createAjvValidator(schema, schemaDefinitions) ``` It...

question

Hey there, as always thanks for the great work! This is a tangental follow-up to #128 which has been serving us very well! The challenge we're facing: In the Editor...

Hello, I received these issues https://github.com/cloydlau/json-editor-vue/issues/11 & https://github.com/cloydlau/json-editor-vue/issues/16 recently. Which all caused by using JSON value under text mode. I'm wondering would it be a little bit weird if a...

I tried to setup a "download" button that should appear in the menu bar ```ts const downloadButton: MenuButtonItem = { onClick: saveDocumentToDisk, // icon: {}, // download icon text: "Save...

I would like to use the default Ajv validator with custom errormessages (using [this Ajv extention](https://ajv.js.org/packages/ajv-errors.html). There seems no way to use extentions with the default createAjvValidator method, however. Would...