Skip to content

Releases: bhch/react-json-form

v2.13.4

15 Jan 12:48
Compare
Choose a tag to compare

15 Jan, 2024

This release fixes a bug introduced in the previous release.

Bugfixes

  • Fixed a bug which caused the form to crash when using the autocomplete and multiselect-autocomplete widgets.

Version 2.13.4

12 Jan 06:37
Compare
Choose a tag to compare

12 Jan, 2024

Bugfixes

  • Display choice titles for selected choices in multiselect input. Earlier, selected choices displayed the value instead of the title.

Version 2.13.3

07 Jan 03:00
Compare
Choose a tag to compare

07 Jan, 2023

This release brings support for React 18.

Version 2.13.2

02 Dec 14:32
Compare
Choose a tag to compare

02 Dec, 2023

This is a patch release which fixes a mistake left in previous release.

Bugfixes

  • Fixed a mistake introduced in previous release.

Version 2.13.1

02 Dec 13:19
Compare
Choose a tag to compare

02 Dec, 2023

This release fixes an important bug in subschema (oneOf/anyOf) matching for initial form data.

Bugfixes

  • #92 : Previously, the form ignored oneOf/anyOf while syncing stale data with new schema. This caused the form to crash. This release fixes that.

Version 2.13.0

23 Nov 05:27
Compare
Choose a tag to compare

23 Nov, 2023

This is a minor release.

New features

  • #68: Now refs can be overridden.

Bugfixes

  • #91: Account for the $ref keyword at top level when type is not provided.

Version 2.12.1

13 Nov 18:34
Compare
Choose a tag to compare

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 02:24
Compare
Choose a tag to compare

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 convert null to appropriate type instead of showing an error.

Version 2.11.1

06 Sep 11:28
Compare
Choose a tag to compare

06 Sep, 2023

Bugfixes

  • Fixed #83: Set disabled attribute on textarea.
  • Fixed #84: Correct the error message for maximum keyword.
  • Fixed #85: Display array description.

Version 2.11.0

13 Aug 07:54
Compare
Choose a tag to compare

13 Aug, 2023

Bugfixes

  • #81: readonly keyword had no effect on datetime input.

Minor changes

  • #82: Now all readonly inputs will also get the disabled html attribute.
  • When datetime and multiselect fields are readonly, their container divs will get a readonly class to offer better styling control.