@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 (14 loc) • 647 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TooltipPopupDataAttributes = void 0;
let TooltipPopupDataAttributes = exports.TooltipPopupDataAttributes = /*#__PURE__*/function (TooltipPopupDataAttributes) {
TooltipPopupDataAttributes["open"] = "data-open";
TooltipPopupDataAttributes["closed"] = "data-closed";
TooltipPopupDataAttributes["startingStyle"] = "data-starting-style";
TooltipPopupDataAttributes["endingStyle"] = "data-ending-style";
TooltipPopupDataAttributes["side"] = "data-side";
TooltipPopupDataAttributes["instant"] = "data-instant";
return TooltipPopupDataAttributes;
}({});