@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.
36 lines (35 loc) • 1.43 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TooltipArrowDataAttributes = void 0;
var _popupStateMapping = require("../../utils/popupStateMapping");
let TooltipArrowDataAttributes = exports.TooltipArrowDataAttributes = function (TooltipArrowDataAttributes) {
/**
* Present when the tooltip is open.
*/
TooltipArrowDataAttributes[TooltipArrowDataAttributes["open"] = _popupStateMapping.CommonPopupDataAttributes.open] = "open";
/**
* Present when the tooltip is closed.
*/
TooltipArrowDataAttributes[TooltipArrowDataAttributes["closed"] = _popupStateMapping.CommonPopupDataAttributes.closed] = "closed";
/**
* Present when the anchor is hidden.
*/
TooltipArrowDataAttributes[TooltipArrowDataAttributes["anchorHidden"] = _popupStateMapping.CommonPopupDataAttributes.anchorHidden] = "anchorHidden";
/**
* Indicates which side the popup is positioned relative to the trigger.
* @type {'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'}
*/
TooltipArrowDataAttributes["side"] = "data-side";
/**
* Indicates how the popup is aligned relative to specified side.
* @type {'start' | 'center' | 'end'}
*/
TooltipArrowDataAttributes["align"] = "data-align";
/**
* Present when the tooltip arrow is uncentered.
*/
TooltipArrowDataAttributes["uncentered"] = "data-uncentered";
return TooltipArrowDataAttributes;
}({});
;