UNPKG

@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.

26 lines (25 loc) 1.16 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PopoverBackdropDataAttributes = void 0; var _popupStateMapping = require("../../utils/popupStateMapping"); let PopoverBackdropDataAttributes = exports.PopoverBackdropDataAttributes = function (PopoverBackdropDataAttributes) { /** * Present when the popup is open. */ PopoverBackdropDataAttributes[PopoverBackdropDataAttributes["open"] = _popupStateMapping.CommonPopupDataAttributes.open] = "open"; /** * Present when the popup is closed. */ PopoverBackdropDataAttributes[PopoverBackdropDataAttributes["closed"] = _popupStateMapping.CommonPopupDataAttributes.closed] = "closed"; /** * Present when the popup is animating in. */ PopoverBackdropDataAttributes[PopoverBackdropDataAttributes["startingStyle"] = _popupStateMapping.CommonPopupDataAttributes.startingStyle] = "startingStyle"; /** * Present when the popup is animating out. */ PopoverBackdropDataAttributes[PopoverBackdropDataAttributes["endingStyle"] = _popupStateMapping.CommonPopupDataAttributes.endingStyle] = "endingStyle"; return PopoverBackdropDataAttributes; }({});