Skip to content

Commit

Permalink
Update changelog. Fix playground bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Johnston committed Mar 31, 2023
1 parent 83ab32b commit a725f1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ should change the heading of the (upcoming) version to include a major version b
- Updated `FileWidget` to pass false for `required` once a value has been specified, fixing [#3504](https://github.com/rjsf-team/react-jsonschema-form/issues/3504)
- Updated `ObjectField` to pass the `errorSchema` to the `ObjectFieldTemplate` to allow custom templates access to the errors
- Centralized snapshot tests from each theme into `core`, adding snapshots tests for `core` as well
- Updated `Form` to include the top `disabled` property in the `ui:submitButtonOptions` so the submit button will be disabled when the whole form is disabled. Fixes [#3264](https://github.com/rjsf-team/react-jsonschema-form/issues/3264).

## @rjsf/fluent-ui

Expand All @@ -60,7 +61,7 @@ should change the heading of the (upcoming) version to include a major version b

- Converted the `playground` to use Typescript, including some refactoring of code to make that job easier
- Updated the `custom-templates` documentation to add `errorSchema` to the props for `ObjectFieldTemplate`

- Fixes bug where the 'Disable whole form' button did not work.
# 5.4.0

## @rjsf/antd
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/components/Playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const liveSettingsSchema: RJSFSchema = {
type: 'object',
properties: {
liveValidate: { type: 'boolean', title: 'Live validation' },
disable: { type: 'boolean', title: 'Disable whole form' },
disabled: { type: 'boolean', title: 'Disable whole form' },
readonly: { type: 'boolean', title: 'Readonly whole form' },
omitExtraData: { type: 'boolean', title: 'Omit extra data' },
liveOmit: { type: 'boolean', title: 'Live omit' },
Expand Down

0 comments on commit a725f1d

Please sign in to comment.