@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) • 636 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ComboboxItemDataAttributes = void 0;
let ComboboxItemDataAttributes = exports.ComboboxItemDataAttributes = /*#__PURE__*/function (ComboboxItemDataAttributes) {
/**
* Present when the item is selected.
*/
ComboboxItemDataAttributes["selected"] = "data-selected";
/**
* Present when the item is highlighted.
*/
ComboboxItemDataAttributes["highlighted"] = "data-highlighted";
/**
* Present when the item is disabled.
*/
ComboboxItemDataAttributes["disabled"] = "data-disabled";
return ComboboxItemDataAttributes;
}({});