@base-ui/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.
22 lines • 513 B
TypeScript
export declare enum ComboboxClearDataAttributes {
/**
* Present when the corresponding popup is open.
*/
popupOpen = "data-popup-open",
/**
* Present when the button is disabled.
*/
disabled = "data-disabled",
/**
* Present when the clear button is visible.
*/
visible = "data-visible",
/**
* Present when the button is animating in.
*/
startingStyle = "data-starting-style",
/**
* Present when the button is animating out.
*/
endingStyle = "data-ending-style",
}