Skip to content

Commit

Permalink
antd theme related changes, bump v4 to v5 (#3849)
Browse files Browse the repository at this point in the history
* update antd version to v5 from v4

* update playground

* Keep peer dependency of ant to v4

* update package json of playground

* update changelog.md

* update docs for antd

* update docs for antd

* Update uiSchema.md

* incorporate feedback

* fix: Fixes #3808 Duplciate AnyOf/OneOf Description (#3841)

* Update package.json

---------

Co-authored-by: Christian Wendt <54559756+cwendtxealth@users.noreply.github.com>
Co-authored-by: Heath C <51679588+heath-freenome@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 8, 2023
1 parent 2c279de commit f781b2e
Show file tree
Hide file tree
Showing 14 changed files with 4,928 additions and 3,514 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ it according to semantic versioning. For example, if your PR adds a breaking cha
should change the heading of the (upcoming) version to include a major version bump.
-->
# 5.12.2
# 5.13.0

## @rjsf/antd

- Bump Antd version from v4 to v5.
- Intentionally kept peer dependencies to v4 so that this change doesn't make breaking change for @rfjs/antd users.
- However, if users of @rjsf/antd want to use v5 styling, they need to wrap your application with the `StyleProvider` from `@ant-design/cssinjs`. They need not have to install this package, its a transitive package coming from antd.

```tsx
import { StyleProvider } from '@ant-design/cssinjs';

const Component = () => {
return (<StyleProvider><YourFormComponents /></StyleProvider>);
}
```

## @rjsf/core

Expand Down
Loading

0 comments on commit f781b2e

Please sign in to comment.