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
- Add `setDomFocus` argument to focus-item methods to provide an escape hatch to set the focus state of an item in RCT
4
-
without updating the DOM focus. This defaults to true in all existing methods to maintain the current behavior if
5
-
it is absent. (#336)
6
-
- Allow customizing when a subtree is rendered or not with the new `shouldRenderChildren` prop. This can be used to
7
-
create opening and closing animations on subtrees. See [Demo](https://rct.lukasbach.com/storybook/?path=/story/core-basic-examples--animated-expanding-and-collapsing)
8
-
and [Demo Implementation](https://github.com/lukasbach/react-complex-tree/blob/main/packages/core/src/stories/BasicExamples.stories.tsx#L561) for details. (#333)
4
+
### Features
9
5
10
-
### Bug Fixes
6
+
### Bug Fixes and Improvements
11
7
12
-
- Fix a bug where the `parentId` property in the `renderItemsContainer` render method was incorrectly set to the tree id
Copy file name to clipboardExpand all lines: packages/docs/docs/changelog.mdx
+18
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,24 @@ sidebar_position: 6
4
4
5
5
# Changelog
6
6
7
+
## 2.3.5 - 02/03/2024
8
+
9
+
### Features
10
+
11
+
- Add `setDomFocus` argument to focus-item methods to provide an escape hatch to set the focus state of an item in RCT
12
+
without updating the DOM focus. This defaults to true in all existing methods to maintain the current behavior if
13
+
it is absent. (#336)
14
+
- Allow customizing when a subtree is rendered or not with the new `shouldRenderChildren` prop. This can be used to
15
+
create opening and closing animations on subtrees. See [Demo](https://rct.lukasbach.com/storybook/?path=/story/core-basic-examples--animated-expanding-and-collapsing)
16
+
and [Demo Implementation](https://github.com/lukasbach/react-complex-tree/blob/main/packages/core/src/stories/BasicExamples.stories.tsx#L561) for details. (#333)
17
+
18
+
### Bug Fixes
19
+
20
+
- Fix a bug where the `parentId` property in the `renderItemsContainer` render method was incorrectly set to the tree id
0 commit comments