Releases: bhch/react-json-form
Releases · bhch/react-json-form
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.
Version 2.8.0
23 Apr, 2023
New features
- Hidden input:
Support for hidden inputs using"widget": "hidden"
.
Version 2.7.2
Version 2.7.1
Version 2.7.0
Version 2.6.0
Version 2.5.0
11 Mar, 2023
New features
- Support for
oneOf
,anyOf
andallOf
.
Version 2.4.0
Version 2.3.0
31 Oct, 2022
New features
fileinput
widget
Now you can customise the input forfile-url
inputs using thewidget
keyword. If you don't want to display a modal, you can usewidget: 'fileinput'
to display a simple input field.
Version 2.2.0
06 Oct, 2022
New features
fileHandlerArgs
New config variable calledfileHandlerArgs
has been added. It can be used to provide a key-value pair which will be sent to thefileHandler
URL via the querystring. This is helpful in identifying the form instance on the server if you have one common file handler for all forms.
Changes
- #52: File input's Clear button will not send the DELETE request. A dedicated Delete button may be implemented in the future.
Bugfixes
- #49: (Browser API)
FormInstance
data was not updated when the data was initially synced by the form.