@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.
25 lines (24 loc) • 842 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MenuCheckboxItemDataAttributes = void 0;
let MenuCheckboxItemDataAttributes = exports.MenuCheckboxItemDataAttributes = /*#__PURE__*/function (MenuCheckboxItemDataAttributes) {
/**
* Present when the menu checkbox item is checked.
*/
MenuCheckboxItemDataAttributes["checked"] = "data-checked";
/**
* Present when the menu checkbox item is not checked.
*/
MenuCheckboxItemDataAttributes["unchecked"] = "data-unchecked";
/**
* Present when the menu checkbox item is disabled.
*/
MenuCheckboxItemDataAttributes["disabled"] = "data-disabled";
/**
* Present when the menu checkbox item is highlighted.
*/
MenuCheckboxItemDataAttributes["highlighted"] = "data-highlighted";
return MenuCheckboxItemDataAttributes;
}({});