@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.15 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SelectBackdropDataAttributes = void 0;
var _popupStateMapping = require("../../utils/popupStateMapping");
let SelectBackdropDataAttributes = exports.SelectBackdropDataAttributes = function (SelectBackdropDataAttributes) {
/**
* Present when the select is open.
*/
SelectBackdropDataAttributes[SelectBackdropDataAttributes["open"] = _popupStateMapping.CommonPopupDataAttributes.open] = "open";
/**
* Present when the select is closed.
*/
SelectBackdropDataAttributes[SelectBackdropDataAttributes["closed"] = _popupStateMapping.CommonPopupDataAttributes.closed] = "closed";
/**
* Present when the select is animating in.
*/
SelectBackdropDataAttributes[SelectBackdropDataAttributes["startingStyle"] = _popupStateMapping.CommonPopupDataAttributes.startingStyle] = "startingStyle";
/**
* Present when the select is animating out.
*/
SelectBackdropDataAttributes[SelectBackdropDataAttributes["endingStyle"] = _popupStateMapping.CommonPopupDataAttributes.endingStyle] = "endingStyle";
return SelectBackdropDataAttributes;
}({});
;