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