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
@@ -337,7 +337,7 @@ class HighLevelAccordion(AccordionRoot):
337
337
value: The controlled value of the item(s) that should be expanded. To render an uncontrolled accordion, use the `default_value` prop instead.
338
338
on_value_change: Event handler called when an accordion item is expanded or collapsed. Provides the new value as an argument.
339
339
hidden_until_found: Allows the browser's built-in page search to find and expand the panel contents. Overrides the `keep_mounted` prop and uses `hidden="until-found"` to hide the element without removing it from the DOM. Defaults to False.
340
-
open_multiple: Whether multiple items can be open at the same time. Defaults to True.
340
+
multiple: Whether multiple items can be open at the same time. Defaults to True.
341
341
disabled: Whether the component should ignore user interaction. Defaults to False.
342
342
loop: Whether to loop keyboard focus back to the first item when the end of the list is reached while using the arrow keys. Defaults to True.
343
343
orientation: The visual orientation of the accordion. Controls whether roving focus uses left/right or up/down arrow keys. Defaults to 'vertical'.
@@ -373,7 +373,7 @@ class Accordion(ComponentNamespace):
@@ -419,7 +419,7 @@ class Accordion(ComponentNamespace):
419
419
value: The controlled value of the item(s) that should be expanded. To render an uncontrolled accordion, use the `default_value` prop instead.
420
420
on_value_change: Event handler called when an accordion item is expanded or collapsed. Provides the new value as an argument.
421
421
hidden_until_found: Allows the browser's built-in page search to find and expand the panel contents. Overrides the `keep_mounted` prop and uses `hidden="until-found"` to hide the element without removing it from the DOM. Defaults to False.
422
-
open_multiple: Whether multiple items can be open at the same time. Defaults to True.
422
+
multiple: Whether multiple items can be open at the same time. Defaults to True.
423
423
disabled: Whether the component should ignore user interaction. Defaults to False.
424
424
loop: Whether to loop keyboard focus back to the first item when the end of the list is reached while using the arrow keys. Defaults to True.
425
425
orientation: The visual orientation of the accordion. Controls whether roving focus uses left/right or up/down arrow keys. Defaults to 'vertical'.
0 commit comments