@json-editor/json-editor 2.14.0 → 2.14.1
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 +1 -1
- package/dist/nonmin/jsoneditor.js +68 -53
- package/dist/nonmin/jsoneditor.js.map +1 -1
- package/package.json +1 -1
- package/src/editor.js +1 -1
- package/src/editors/array.js +7 -1
- package/src/editors/multiple.js +7 -1
- package/src/editors/radio.js +4 -0
- package/src/editors/string.js +3 -1
- package/src/themes/bootstrap3.js +0 -9
- package/tests/codeceptjs/issues/issue-gh-1171_test.js +11 -0
- package/tests/codeceptjs/issues/issue-gh-1272_test.js +21 -0
- package/tests/codeceptjs/issues/issue-gh-1485_test.js +13 -0
- package/tests/codeceptjs/issues/issue-gh-1491_test.js +9 -0
- package/tests/pages/issues/issue-gh-1171.html +39 -0
- package/tests/pages/issues/issue-gh-1272.html +167 -0
- package/tests/pages/issues/issue-gh-1466.html +63 -0
- package/tests/pages/issues/issue-gh-1485.html +59 -0
- package/tests/pages/issues/issue-gh-1491.html +59 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
### Unreleased
|
|
2
2
|
|
|
3
|
+
### 2.14.1
|
|
4
|
+
|
|
5
|
+
- Fixed issue #1272 Multiple editor incorrect dependency inheritance
|
|
6
|
+
- Improved Multiple editor accessibility
|
|
7
|
+
- Fixed issue #1485 Infinite loop due to template rendering bug
|
|
8
|
+
- Fixed issue #1171 Radio inputs without names having multiple checking marks
|
|
9
|
+
- Fixed issue #1491 Wrong error messages displayed in some edge scenarios
|
|
10
|
+
- Fixed issue #1466 memory leak in array editor
|
|
11
|
+
|
|
3
12
|
### 2.14.0
|
|
4
13
|
|
|
5
14
|
- Added new editor option "titleHidden"
|
|
@@ -16,6 +25,7 @@
|
|
|
16
25
|
- Fixed issue format buttons disable state
|
|
17
26
|
- Fixed issue #1453 setup buttons in array editor correctly if editor is initially collapsed
|
|
18
27
|
- Fixed issue #1461 setup buttons in array editor correctly if there exists another enum-typed property for which the default value does not equal to the first value
|
|
28
|
+
- Fixed issue #1466 memory leak in array editor
|
|
19
29
|
|
|
20
30
|
### 2.13.1
|
|
21
31
|
|