@json-editor/json-editor 2.15.2 → 2.16.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/CONTRIBUTING.md +10 -0
- package/README.md +11 -0
- package/dist/jsoneditor.js +1 -1
- package/dist/jsoneditor.js.LICENSE.txt +1 -1
- package/dist/nonmin/jsoneditor.js +20 -2
- package/dist/nonmin/jsoneditor.js.map +1 -1
- package/docs/form-submission.html +1 -1
- package/docs/index.html +18 -0
- package/package.json +1 -1
- package/src/editor.js +15 -1
- package/src/editors/hidden.js +1 -0
- package/src/editors/multiselect.js +1 -0
- package/src/editors/string.js +2 -0
- package/src/editors/uuid.js +1 -0
- package/tests/codeceptjs/editors/purify_test.js +26 -0
- package/tests/codeceptjs/issues/issue-gh-1559_test.js +15 -0
- package/tests/docker-compose-local.yml +3 -2
- package/tests/pages/issues/issue-gh-1559.html +68 -0
- package/tests/pages/purify.html +66 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
### Unreleased
|
|
2
2
|
|
|
3
|
+
### 2.16.0
|
|
4
|
+
|
|
5
|
+
- Purify values if DOMPurify is available
|
|
6
|
+
|
|
7
|
+
### 2.15.3
|
|
8
|
+
|
|
9
|
+
- Added maintenance mode notice to README, CONTRIBUTING.md, and documentation
|
|
10
|
+
- Fixed #1559 and #1621 field dependent on false should now display
|
|
11
|
+
- Fixed form-submission.html example documentation
|
|
12
|
+
|
|
3
13
|
### 2.15.2
|
|
4
14
|
|
|
5
15
|
- Support drag and drop for array item
|
package/CONTRIBUTING.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
Contributing
|
|
2
2
|
===============
|
|
3
|
+
|
|
4
|
+
> **Note: This project is in maintenance mode**
|
|
5
|
+
>
|
|
6
|
+
> JSON Editor is now in maintenance mode. We continue to accept and review community pull requests for:
|
|
7
|
+
> - Bug fixes
|
|
8
|
+
> - Security updates
|
|
9
|
+
> - Critical improvements
|
|
10
|
+
>
|
|
11
|
+
> For those seeking active development and new features, consider [Jedison](https://github.com/germanbisurgi/jedison).
|
|
12
|
+
|
|
3
13
|
This document briefly lists the guidelines for contributing to JSON Editor.
|
|
4
14
|
|
|
5
15
|
Reporting Bugs
|
package/README.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
JSON Editor
|
|
2
2
|
===========
|
|
3
3
|
|
|
4
|
+
> **🔧 Maintenance Mode Notice**
|
|
5
|
+
>
|
|
6
|
+
> This library is now in maintenance mode. While it remains stable and functional, active development has moved to [Jedison](https://github.com/germanbisurgi/jedison).
|
|
7
|
+
>
|
|
8
|
+
> We will continue to:
|
|
9
|
+
> - Accept and review community pull requests
|
|
10
|
+
> - Address critical bugs and security issues
|
|
11
|
+
> - Keep the library functional for existing users
|
|
12
|
+
>
|
|
13
|
+
> For new projects or those seeking active development, consider using [Jedison](https://github.com/germanbisurgi/jedison).
|
|
14
|
+
|
|
4
15
|
[](https://github.com/json-editor/json-editor/actions)
|
|
5
16
|
|
|
6
17
|
Fork of the inactive [jdorn/json-editor](https://github.com/jdorn/json-editor) using the updated fork [json-editor/json-editor](https://github.com/json-editor/json-editor).
|