@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
27 lines • 619 B
TypeScript
export declare enum AccordionPanelDataAttributes {
/**
* Indicates the index of the accordion item.
* @type {number}
*/
index = "data-index",
/**
* Present when the accordion panel is open.
*/
open = "data-open",
/**
* Indicates the orientation of the accordion.
*/
orientation = "data-orientation",
/**
* Present when the accordion item is disabled.
*/
disabled = "data-disabled",
/**
* Present when the panel is animating in.
*/
startingStyle = "data-starting-style",
/**
* Present when the panel is animating out.
*/
endingStyle = "data-ending-style",
}