@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.
19 lines • 487 B
TypeScript
export declare enum ToolbarButtonDataAttributes {
/**
* Present when the button is disabled.
*/
disabled = "data-disabled",
/**
* Indicates the orientation of the toolbar.
* @type {'horizontal' | 'vertical'}
*/
orientation = "data-orientation",
/**
* Present when the button remains focusable when disabled.
*/
focusable = "data-focusable",
/**
* Present when the button is the active item in the toolbar.
*/
highlighted = "data-highlighted",
}