@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.
18 lines • 436 B
TypeScript
export declare enum MenuRadioItemDataAttributes {
/**
* Present when the menu radio item is selected.
*/
checked = "data-checked",
/**
* Present when the menu radio item is not selected.
*/
unchecked = "data-unchecked",
/**
* Present when the menu radio item is disabled.
*/
disabled = "data-disabled",
/**
* Present when the menu radio item is highlighted.
*/
highlighted = "data-highlighted",
}