Accordion - Skeleton

Skeleton

  1. components
  2. accordion
  3. react

Accordion

Divide content into collapsible sections.




State

Note that value and onValueChanged are optional on the root component.



Collapsible

By default you can’t close open items. Adding collapsible changes this behavior.




Multiple

Adding multiple allows items to open independently.



Grid Columns

Use Grid Columns to adjust the layout of the Trigger component.




API Reference

Root

"w-full grid gap-2"
Property Default Type
children -

												ReactNode
											
element -

												((arg: { attributes: Record<string, unknown>; }) => Element | null) | undefined
											
Render the element yourself
ids -

												Partial<{ root: string; item: (value: string) => string; itemContent: (value: string) => string; itemTrigger: (value: string) => string; }> | undefined
											
The ids of the elements in the accordion. Useful for composition.
multiple false

												boolean | undefined
											
Whether multiple accordion items can be expanded at the same time.
collapsible false

												boolean | undefined
											
Whether an accordion item can be closed after it has been expanded.
value -

												string[] | undefined
											
The controlled value of the expanded accordion items.
defaultValue -

												string[] | undefined
											
The initial value of the expanded accordion items. Use when you don't need to control the value of the accordion.
disabled -

												boolean | undefined
											
Whether the accordion items are disabled
onValueChange -

												((details: ValueChangeDetails) => void) | undefined
											
The callback fired when the state of expanded/collapsed accordion items changes.
onFocusChange -

												((details: FocusChangeDetails) => void) | undefined
											
The callback fired when the focused accordion item changes.
orientation "vertical"

												"horizontal" | "vertical" | undefined
											
The orientation of the accordion items.
dir "ltr"

												"ltr" | "rtl" | undefined
											
The document's text/writing direction.
getRootNode -

												(() => ShadowRoot | Node | Document) | undefined
											
A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron.

RootContext

Property Default Type
children -

												(context: AccordionRootContextType) => ReactNode
											

Item

"grid gap-2"
Property Default Type
children -

												ReactNode
											
element -

												((arg: { attributes: Record<string, unknown>; }) => Element | null) | undefined
											
Render the element yourself
value -

												string
											
The value of the accordion item.
disabled -

												boolean | undefined
											
Whether the accordion item is disabled.

ItemContext

Property Default Type
children -

												(context: AccordionItemContextType) => ReactNode
											

Heading

""
Property Default Type
level 3

												1 | 2 | 3 | 4 | 5 | 6 | undefined
											
The level of the heading.
children -

												ReactNode
											
element -

												((arg: { attributes: Record<string, unknown>; }) => Element | null) | undefined
											
Render the element yourself

Trigger

"w-full grid items-center gap-4 py-2 px-4 rounded-base text-left hover:preset-tonal-primary"
Property Default Type
children -

												ReactNode
											
element -

												((arg: { attributes: Record<string, unknown>; }) => Element | null) | undefined
											
Render the element yourself

Indicator

""
Property Default Type
children -

												ReactNode
											
element -

												((arg: { attributes: Record<string, unknown>; }) => Element | null) | undefined
											
Render the element yourself

Content

"py-2 px-4"
Property Default Type
children -

												ReactNode
											
element -

												((arg: { attributes: Record<string, unknown>; }) => Element | null) | undefined
											
Render the element yourself