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 3624 by removing duplicate description render in templates
Fixes#3624 by removing the duplicate render of the `description` in the `ObjectFieldTemplate` and `ArrayFieldTemplate`
- In `@rjsf/antd` - Removed render of `description` in the object and array field templates because it is already done in `FieldTemplate` in this theme
- Updated the snapshot accordingly
- Updated `OptionsDrawer` in the playground to allow users to change the `idPrefix` and `idSeparator`
- Updated the `CHANGELOG.md` accordingly
# Conflicts:
# CHANGELOG.md
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21-17Lines changed: 21 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,48 +17,52 @@ should change the heading of the (upcoming) version to include a major version b
17
17
-->
18
18
# 6.0.2
19
19
20
-
## @rjsf/shadcn
20
+
## @rjsf/antd
21
21
22
22
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
23
+
- Updated `ArrayFieldTemplate` and `ObjectFieldTemplate` to remove the rendering of a duplicate description (since the `FieldTemplate` already does it), fixing [#3624](https://github.com/rjsf-team/react-jsonschema-form/issues/3624)
23
24
24
-
## @rjsf/semantic-ui
25
+
## @rjsf/chakra-ui
25
26
26
-
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
27
+
- Updated `CheckboxWidget` to handle label and description rendering consistently, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
27
28
28
-
## @rjsf/react-bootstrap
29
+
## @rjsf/core
29
30
30
-
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
31
+
- Fixed duplicate label and description rendering in `CheckboxWidget` by conditionally rendering them based on widget type
32
+
- Updated `CheckboxWidget` to handle label and description rendering consistently
33
+
- Modified `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
31
34
32
-
## @rjsf/primereact
35
+
## @rjsf/fluentui-rc
33
36
34
37
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
35
38
39
+
## @rjsf/mantine
40
+
41
+
- Updated `CheckboxWidget` to handle label and description rendering consistently, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
42
+
36
43
## @rjsf/mui
37
44
38
45
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
39
46
40
-
## @rjsf/mantine
47
+
## @rjsf/primereact
41
48
42
-
- Updated `CheckboxWidget` to handle label and description rendering consistently, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
49
+
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
43
50
44
-
## @rjsf/fluentui-rc
51
+
## @rjsf/react-bootstrap
45
52
46
53
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
47
54
48
-
## @rjsf/antd
55
+
## @rjsf/semantic-ui
49
56
50
57
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
51
58
59
+
## @rjsf/shadcn
52
60
53
-
## @rjsf/chakra-ui
54
-
55
-
- Updated `CheckboxWidget` to handle label and description rendering consistently, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
61
+
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
56
62
57
-
## @rjsf/core
63
+
## Dev / docs / playground
58
64
59
-
- Fixed duplicate label and description rendering in `CheckboxWidget` by conditionally rendering them based on widget type
60
-
- Updated `CheckboxWidget` to handle label and description rendering consistently
61
-
- Modified `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
65
+
- Updated the `OptionsDrawer` of the playground to add `idPrefix` and `idSeparator` fields
0 commit comments