You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Added support for anyOf/oneOf in uiSchema (#4055)
Fixes#4039 by updating `MultiSchemaField` to properly support `anyOf`/`oneOf` arrays in the `uiSchema`
- In `@rjsf/utils`: Improved documentation and typescript ignores in tests related to `base64` from previous PR
- In `@rjsf/core`: Updated `MultiSchemaField` to support `anyOf`/`oneOf` arrays in the `uiSchema`
- Updated the tests to verify the new feature
- In `docs`: Added documentation to the `uiSchema.md` file describing how to use the new feature
- Updated the `CHANGELOG.md` accordingly
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,10 @@ should change the heading of the (upcoming) version to include a major version b
18
18
19
19
# 5.16.2
20
20
21
+
## @rjsf/core
22
+
23
+
- Added support for `anyOf`/`oneOf` in `uiSchema`s in the `MultiSchemaField`, fixing [#4039](https://github.com/rjsf-team/react-jsonschema-form/issues/4039)
24
+
21
25
## @rjsf/utils
22
26
23
27
-[4024](https://github.com/rjsf-team/react-jsonschema-form/issues/4024) Added `base64` to support `encoding`
@@ -27,6 +31,7 @@ should change the heading of the (upcoming) version to include a major version b
27
31
28
32
-[4024](https://github.com/rjsf-team/react-jsonschema-form/issues/4024) Updated the base64 references from (`atob`
29
33
and `btoa`) to invoke the functions from the new `base64` object in `@rjsf/utils`.
34
+
- Updated the `uiSchema.md` documentation to describe how to use the new `anyOf`/`oneOf` support
0 commit comments