DisclosureContent
Renders an element that can be shown or hidden by a
Disclosure
component.
Code examples
Optional Props
alwaysVisible
boolean | undefined = false
Determines whether the content element should remain visible even when the
open
state is
false
. If this prop is set to true
, the hidden
prop and the display: none
style will not be applied, unless explicitly set otherwise.
This prop is particularly useful when using third-party animation libraries such as Framer Motion or React Spring, where the element needs to be visible for exit animations to work.
Live examples
render
RenderProp<React.HTMLAttributes<any> & { ref?: React.Ref<any> | undefined; }> | React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined
Allows the component to be rendered as a different HTML element or React component. The value can be a React element or a function that takes in the original component props and gives back a React element with the props merged.
Check out the Composition guide for more details.
store
DisclosureStore | undefined
Object returned by the
useDisclosureStore
hook. If not provided, the closest
DisclosureProvider
component's context will be used.
unmountOnHide
boolean | undefined = false
When set to true
, the content element will be unmounted and removed from
the DOM when it's hidden.