Releases: bhch/react-json-form
Releases · bhch/react-json-form
Version 2.12.1
14 Nov, 2023
This is a patch release which fixes one critical bug.
Bugfixes
- #90: When initial data was null, the form was not creating blank data for it.
Version 2.12.0
09 Nov, 2023
New features
- Support for
const
keyword. - #70: Support for collapsing sections.
- #86: Support for
multiselect-autocomplete
widget.
Improvements
- #88: The form is more tolerant now when
null
is provided for arrays or object types. The form will implicitly convertnull
to appropriate type instead of showing an error.
Version 2.11.1
Version 2.11.0
Version 2.10.0
12 Aug, 2023
New features
- #77: Support for making the whole form readonly.
- #78: Support for the
readonly
keyword on arrays and objects. - #79: Multiselect widget will now display selected values in the input field.
Bugfixes
- #80: Fixed a bug due to which error messages for top-level arrays were not being displayed.
Version 2.9.0
27 Jul, 2023
New features
- #75: Support for the
description
keyword.
Minor changes
- #76: Manually added keys (when using
additionalProperties
) will display their key name as it is. Earlier, the name was prettified (i.e. capitalized, underscores removed) for display purposes, but that will no longer happen.
Version 2.8.4
24 Jul, 2023
Bugfixes
- Use first value in case the
type
is an array of multiple types (i.e.{'type': ['string', 'number']}
. This is temporary and full support for multiple types shall be added in future.
Version 2.8.3
Version 2.8.2
Version 2.8.1
01 Jun, 2023
Bugfixes
- #66: Fixed a bug due to which the type of subschemas with a
$ref
wasn't being determined correctly.