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