@json-editor/json-editor 2.9.0-beta.1 → 2.9.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 +10 -0
- package/dist/jsoneditor.js +1 -1
- package/dist/jsoneditor.js.LICENSE.txt +15 -0
- package/dist/jsoneditor.js.map +1 -0
- package/dist/nonmin/jsoneditor.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
### Unreleased
|
|
2
2
|
|
|
3
|
+
### 2.9.0
|
|
4
|
+
|
|
5
|
+
Updated datetime example page
|
|
6
|
+
Updated packages
|
|
7
|
+
Fixed issue #1133: default values for each of the oneOf options
|
|
8
|
+
Upgraded codeceptjs from 2 to 3
|
|
9
|
+
Fixed npm audit issues
|
|
10
|
+
Fixed unnecessary Null values included in enums
|
|
11
|
+
Fixed radio editors not recognising numerical values
|
|
12
|
+
|
|
3
13
|
### 2.9.0-beta.1
|
|
4
14
|
|
|
5
15
|
- Fixed editors default values bug
|
package/dist/jsoneditor.js
CHANGED
|
@@ -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.9.0
|
|
6
|
+
* * @version "2.9.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
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* /**
|
|
3
|
+
* * @name JSON Editor
|
|
4
|
+
* * @description JSON Schema Based Editor
|
|
5
|
+
* * This library is the continuation of jdorn's great work (see also https://github.com/jdorn/json-editor/issues/800)
|
|
6
|
+
* * @version "2.9.0-beta.1"
|
|
7
|
+
* * @author Jeremy Dorn
|
|
8
|
+
* * @see https://github.com/jdorn/json-editor/
|
|
9
|
+
* * @see https://github.com/json-editor/json-editor
|
|
10
|
+
* * @license MIT
|
|
11
|
+
* * @example see README.md and docs/ for requirements, examples and usage info
|
|
12
|
+
* * /
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|