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.

20 lines 928 B
import { CommonPopupDataAttributes } from "../../utils/popupStateMapping.js"; export let DialogBackdropDataAttributes = function (DialogBackdropDataAttributes) { /** * Present when the dialog is open. */ DialogBackdropDataAttributes[DialogBackdropDataAttributes["open"] = CommonPopupDataAttributes.open] = "open"; /** * Present when the dialog is closed. */ DialogBackdropDataAttributes[DialogBackdropDataAttributes["closed"] = CommonPopupDataAttributes.closed] = "closed"; /** * Present when the dialog is animating in. */ DialogBackdropDataAttributes[DialogBackdropDataAttributes["startingStyle"] = CommonPopupDataAttributes.startingStyle] = "startingStyle"; /** * Present when the dialog is animating out. */ DialogBackdropDataAttributes[DialogBackdropDataAttributes["endingStyle"] = CommonPopupDataAttributes.endingStyle] = "endingStyle"; return DialogBackdropDataAttributes; }({});