Skip to content

JsonTree.js v1.1.0 - Ignore value support! Hex color support! Minor improvements!

Compare
Choose a tag to compare
@williamtroup williamtroup released this 15 Jun 16:52
· 759 commits to main since this release
e9872be

New Features:

  • Added ignore all value types support!

Binding Options:

  • BREAKING: All binding ignore options are now available under a new area called "ignore".
  • Added a new binding option called "ignore.booleanValues" (defaults to false), which states if boolean values should be ignored.
  • Added a new binding option called "ignore.decimalValues" (defaults to false), which states if decimal values should be ignored.
  • Added a new binding option called "ignore.numberValues" (defaults to false), which states if number values should be ignored.
  • Added a new binding option called "ignore.stringValues" (defaults to false), which states if string values should be ignored.
  • Added a new binding option called "ignore.dateValues" (defaults to false), which states if date values should be ignored.
  • Added a new binding option called "ignore.objectValues" (defaults to false), which states if object values should be ignored.
  • Added a new binding option called "ignore.arrayValues" (defaults to false), which states if array values should be ignored.
  • Added a new binding option called "showStringHexColors" (defaults to false), which states if HEX color only string values should show the color in the display.

Binding Options - Custom Triggers:

  • The custom trigger "onValueClick" has a new parameter called "type", which states the value type that was clicked ("string", "boolean", etc).
  • The custom trigger "onValueClick" is no longer assigned to null values.