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