@json-editor/json-editor 2.10.1 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/dist/jsoneditor.js.LICENSE.txt +1 -1
- package/dist/nonmin/jsoneditor.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
### Unreleased
|
|
2
2
|
|
|
3
|
+
### 2.11.0
|
|
4
|
+
|
|
5
|
+
- Fixed issue #746 and #645: Selectize with create = true should add items
|
|
6
|
+
- Added case_sensitive_property_search option
|
|
7
|
+
- Added specialized editors for ace (PRQL, Rust, TypeScript, Zig)
|
|
8
|
+
- Fixed bug: items schemas not being expanded on time when using $ref
|
|
9
|
+
- Added tests for schema loader
|
|
10
|
+
- Added docs for if-then-else
|
|
11
|
+
- Updated playground ace editor config
|
|
12
|
+
- Added button_state_mode options
|
|
13
|
+
- Added support for case-insensitive properties search
|
|
14
|
+
- Added support for dependentRequired constrains
|
|
15
|
+
- Fixed issue #1367: Signature editor not returning base64 data
|
|
16
|
+
- Fixed issue #1237: more coherent ui for Base64 editor
|
|
17
|
+
- Fixed issue #1364: getValue() with dependencies
|
|
18
|
+
- Added new languages: PRQL, Rust, TypeScript and Zig.
|
|
19
|
+
|
|
3
20
|
### 2.10.1
|
|
4
21
|
|
|
5
22
|
- Added keep_only_existing_values option
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* * @name JSON Editor
|
|
4
4
|
* * @description JSON Schema Based Editor
|
|
5
5
|
* * This library is the continuation of jdorn's great work (see also https://github.com/jdorn/json-editor/issues/800)
|
|
6
|
-
* * @version "2.
|
|
6
|
+
* * @version "2.11.0"
|
|
7
7
|
* * @author Jeremy Dorn
|
|
8
8
|
* * @see https://github.com/jdorn/json-editor/
|
|
9
9
|
* * @see https://github.com/json-editor/json-editor
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* * @name JSON Editor
|
|
4
4
|
* * @description JSON Schema Based Editor
|
|
5
5
|
* * This library is the continuation of jdorn's great work (see also https://github.com/jdorn/json-editor/issues/800)
|
|
6
|
-
* * @version "2.
|
|
6
|
+
* * @version "2.11.0"
|
|
7
7
|
* * @author Jeremy Dorn
|
|
8
8
|
* * @see https://github.com/jdorn/json-editor/
|
|
9
9
|
* * @see https://github.com/json-editor/json-editor
|