@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.
20 lines • 689 B
JavaScript
export let ToolbarInputDataAttributes = /*#__PURE__*/function (ToolbarInputDataAttributes) {
/**
* Present when the input is disabled.
*/
ToolbarInputDataAttributes["disabled"] = "data-disabled";
/**
* Indicates the orientation of the toolbar.
* @type {'horizontal' | 'vertical'}
*/
ToolbarInputDataAttributes["orientation"] = "data-orientation";
/**
* Present when the input remains focusable when disabled.
*/
ToolbarInputDataAttributes["focusable"] = "data-focusable";
/**
* Present when the input is the active item in the toolbar.
*/
ToolbarInputDataAttributes["highlighted"] = "data-highlighted";
return ToolbarInputDataAttributes;
}({});