@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.
20 lines • 928 B
JavaScript
import { CommonPopupDataAttributes } from "../../utils/popupStateMapping.js";
export let SelectBackdropDataAttributes = function (SelectBackdropDataAttributes) {
/**
* Present when the select is open.
*/
SelectBackdropDataAttributes[SelectBackdropDataAttributes["open"] = CommonPopupDataAttributes.open] = "open";
/**
* Present when the select is closed.
*/
SelectBackdropDataAttributes[SelectBackdropDataAttributes["closed"] = CommonPopupDataAttributes.closed] = "closed";
/**
* Present when the select is animating in.
*/
SelectBackdropDataAttributes[SelectBackdropDataAttributes["startingStyle"] = CommonPopupDataAttributes.startingStyle] = "startingStyle";
/**
* Present when the select is animating out.
*/
SelectBackdropDataAttributes[SelectBackdropDataAttributes["endingStyle"] = CommonPopupDataAttributes.endingStyle] = "endingStyle";
return SelectBackdropDataAttributes;
}({});