-
-
Notifications
You must be signed in to change notification settings - Fork 379
Closed
Labels
component: collapsibleChanges related to the collapsible component.Changes related to the collapsible component.type: new featureExpand the scope of the product to solve a new problem.Expand the scope of the product to solve a new problem.
Description
API
// JSX
<Collapsible.Root defaultOpen={false}> // or `open` for controlled mode
<Collapsible.Trigger className="MyCollapsible-trigger">
Trigger
</Collapsible.Trigger>
<Collapsible.Content className="MyCollapsible-content">
This the collapsed content
</Collapsible.Content>
</Accordion.Root>
// HTML
<button
type="button"
aria-controls="ContentId"
aria-expanded="false"
class="MyCollapsible-trigger"
>
Trigger
</button>
<div class="MyCollapsible-content" id="ContentId" hidden="hidden">
This the collapsed content
</div>Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
component: collapsibleChanges related to the collapsible component.Changes related to the collapsible component.type: new featureExpand the scope of the product to solve a new problem.Expand the scope of the product to solve a new problem.
Projects
Status
Recently completed