@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.
15 lines • 490 B
JavaScript
export let SelectItemDataAttributes = /*#__PURE__*/function (SelectItemDataAttributes) {
/**
* Present when the select item is selected.
*/
SelectItemDataAttributes["selected"] = "data-selected";
/**
* Present when the select item is highlighted.
*/
SelectItemDataAttributes["highlighted"] = "data-highlighted";
/**
* Present when the select item is disabled.
*/
SelectItemDataAttributes["disabled"] = "data-disabled";
return SelectItemDataAttributes;
}({});