Accordions are a common UX pattern that can help reduce the amount of information presented to users. They are used to toggle the visibility of content, condensing information and reducing clutter.
The root component for the Accordion.
Prop | Type | Default |
---|---|---|
className | string | -- |
openMultiple | boolean | false |
asChild | boolean | false |
loop | boolean | true |
orientation | enum | horizontal |
The item component for the Accordion.
Prop | Type | Default |
---|---|---|
className | string | -- |
asChild | boolean | false |
disabled | boolean | false |
value* | string | -- |
The trigger component for the Accordion. This component is used to toggle the visibility of the AccordionItem.
Prop | Type | Default |
---|---|---|
className | string | -- |
asChild | boolean | false |
Shortcut | Description |
---|---|
Space | When focus is on an Accordion.Trigger of a collapsed section, expands the section. |
Enter | When focus is on an Accordion.Trigger of an expanded section, collapses the section. |
Tab | When focus is on an Accordion.Trigger of a collapsed section, focuses the next Accordion.Trigger. |
Shift + Tab | When focus is on an Accordion.Trigger of an expanded section, focuses the previous Accordion.Trigger. |
ArrowDown | When focus is on an Accordion.Trigger of a collapsed section, focuses the next Accordion.Trigger. |
ArrowUp | When focus is on an Accordion.Trigger of an expanded section, focuses the previous Accordion.Trigger. |
Home | When focus is on an Accordion.Trigger, focuses the first Accordion.Trigger. [TODO] |
End | When focus is on an Accordion.Trigger, focuses the last Accordion.Trigger. [TODO] |