Releases: jdorn/json-editor
Releases · jdorn/json-editor
JSON Editor 0.7.18
Changelog
- IE 8/9 compatibility fixes (not officially supported)
- Custom validators now have context passed in
- Use select2 for multiselect when available
- Support for
additionalProperties
schema for objects
JSON Editor 0.7.17
Changelog
- New checkbox editor for boolean properties (set
format: "checkbox"
in your schema) - Allow for html in field descriptions
- Fix bug with control buttons submitting the parent form
JSON Editor 0.7.16
Changelog
- Fix bug causing 'move down' button to appear on last element of array
- Fix bug with object properties named "$ref"
- Add explicit error message when not instantiating JSONEditor with an HTML element
JSON Editor 0.7.15
Changelog
- Add
keep_oneof_values
option which is one of the most requested features. Set tofalse
to stop oneOf properties carrying over when switching schemas. - Fix bug with objects that have a property named
length
- Embed LZString library directly in demo.html. cdn.rawgit.com was having problems.
JSON Editor 0.7.14
Changelog
- New editor options:
grid_columns
,input_width
,input_height
,expand_height
- Add
enum_titles
support for boolean fields to customize the "true"/"false" text used in the select box. - Fix bug with
propertyOrder
and table array editor - Fix bug with
headerTemplate
and tabs array editor - Fix bug that was adding a "null" class to all
td
elements
JSON Editor 0.7.13
Changelog
- Fix Foundation input error class
- Fix property order bugs
- Fix additionalProperties and defaultProperties bug
- Fix requestAnimationFrame race condition
- Fix bug with overriding global schema options
JSON Editor 0.7.12
Changelog
- Fix bug with object properties named
type
- Add
setOption
method for changing options dynamically (currently only supports theshow_errors
option)
// Show all errors
editor.setOption('show_errors','always');
// Hide all errors
editor.setOption('show_errors','never');
JSON Editor 0.7.11
Changelog
- Fix bug with Object prototypes within options being included
- Fix watched fields Firefox bug with Object.prototype.watch conflict.
JSON Editor 0.7.10
Changelog
- Fix bug when
minimum
ormaximum
were set to 0 - Fix bug with image links and enum fields
- Fix bug with arrays, minItems, and defaultProperties
- Fix bug with watched fields and adding array rows
- Add
remove_empty_properties
option for object editors
JSON Editor 0.7.9
Changelog
- Fix various Select2 bugs and added
examples/select2.html
- Ability to set custom display strings for enum options (
enum_titles
option) - Override Select2 constructor options on a global or per-editor basis