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
Rename renderHiddenItem to renderItemVisibility for clarity and consistency across documentation and components; update related examples and changelog.
@@ -32,11 +32,8 @@ type BaseOverflowListProps<T> = BaseComponentProps & {
32
32
// if false, using requestAnimationFrame to update the state - this avoid forced reflow and improve performance
33
33
flushImmediately?: boolean;
34
34
35
-
// use this if you want to override how hidden items are kept in the DOM while not affecting layout
36
-
// this function is called for item item in the list(even visible ones), you can control the visibility of the item by returning a different node or null
37
-
// default: about react 19.2 new Activity component to control the visibility of the item while don't forcing mount/unmount of the item
38
-
// below react 19.2 is simply null (causing rapid re-mount/unmount of the item)
0 commit comments