Skip to content

Releases: jdorn/json-editor

JSON Editor 0.7.18

09 May 08:20
Compare
Choose a tag to compare

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

07 Mar 19:56
Compare
Choose a tag to compare

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

22 Feb 17:50
Compare
Choose a tag to compare

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

02 Feb 15:49
Compare
Choose a tag to compare

Changelog

  • Add keep_oneof_values option which is one of the most requested features. Set to false 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

26 Jan 06:12
Compare
Choose a tag to compare

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

11 Nov 18:51
Compare
Choose a tag to compare

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

06 Oct 05:57
Compare
Choose a tag to compare

Changelog

  • Fix bug with object properties named type
  • Add setOption method for changing options dynamically (currently only supports the show_errors option)
// Show all errors
editor.setOption('show_errors','always');

// Hide all errors
editor.setOption('show_errors','never');

JSON Editor 0.7.11

28 Sep 19:50
Compare
Choose a tag to compare

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

15 Sep 23:22
Compare
Choose a tag to compare

Changelog

  • Fix bug when minimum or maximum 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

01 Sep 03:05
Compare
Choose a tag to compare

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