@base-ui/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 DrawerBackdropDataAttributes = function (DrawerBackdropDataAttributes) {
/**
* Present when the drawer is open.
*/
DrawerBackdropDataAttributes[DrawerBackdropDataAttributes["open"] = CommonPopupDataAttributes.open] = "open";
/**
* Present when the drawer is closed.
*/
DrawerBackdropDataAttributes[DrawerBackdropDataAttributes["closed"] = CommonPopupDataAttributes.closed] = "closed";
/**
* Present when the drawer is animating in.
*/
DrawerBackdropDataAttributes[DrawerBackdropDataAttributes["startingStyle"] = CommonPopupDataAttributes.startingStyle] = "startingStyle";
/**
* Present when the drawer is animating out.
*/
DrawerBackdropDataAttributes[DrawerBackdropDataAttributes["endingStyle"] = CommonPopupDataAttributes.endingStyle] = "endingStyle";
return DrawerBackdropDataAttributes;
}({});