@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.
21 lines (20 loc) • 641 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SelectItemDataAttributes = void 0;
let SelectItemDataAttributes = exports.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;
}({});