@json-editor/json-editor 2.7.0 → 2.8.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 +4 -0
- package/README.md +5 -0
- package/dist/jsoneditor.js +2 -2
- package/dist/nonmin/jsoneditor.js +65 -36
- package/dist/nonmin/jsoneditor.js.map +1 -1
- package/docs/form-submission.html +113 -27
- package/package.json +1 -1
- package/src/defaults.js +1 -0
- package/src/editors/checkbox.js +3 -1
- package/src/editors/hidden.js +3 -1
- package/src/editors/multiselect.js +3 -1
- package/src/editors/radio.js +8 -3
- package/src/editors/select.js +3 -1
- package/src/editors/signature.js +3 -1
- package/src/editors/string.js +3 -1
- package/tests/codeceptjs/core_test.js +6 -0
- package/tests/pages/use-name-attributes.html +206 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -295,6 +295,11 @@ Here are all the available options:
|
|
|
295
295
|
<td>A callback function to resolve an undefined Uniform Resource Name (URN) for <code>$ref</code>. The function receives a URN and callback to pass back a serialized JSON response. The function should return a boolean (true if the URN can be resolved; false otherwise).</td>
|
|
296
296
|
<td><code>false</code></td>
|
|
297
297
|
</tr>
|
|
298
|
+
<tr>
|
|
299
|
+
<td>use_name_attributes</td>
|
|
300
|
+
<td>If <code>true</code>, control inputs <code>name</code> attributes will be set.</td>
|
|
301
|
+
<td><code>true</code></td>
|
|
302
|
+
</tr>
|
|
298
303
|
</tbody>
|
|
299
304
|
</table>
|
|
300
305
|
|