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.

26 lines (25 loc) 1.17 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ComboboxBackdropDataAttributes = void 0; var _popupStateMapping = require("../../utils/popupStateMapping"); let ComboboxBackdropDataAttributes = exports.ComboboxBackdropDataAttributes = function (ComboboxBackdropDataAttributes) { /** * Present when the popup is open. */ ComboboxBackdropDataAttributes[ComboboxBackdropDataAttributes["open"] = _popupStateMapping.CommonPopupDataAttributes.open] = "open"; /** * Present when the popup is closed. */ ComboboxBackdropDataAttributes[ComboboxBackdropDataAttributes["closed"] = _popupStateMapping.CommonPopupDataAttributes.closed] = "closed"; /** * Present when the popup is animating in. */ ComboboxBackdropDataAttributes[ComboboxBackdropDataAttributes["startingStyle"] = _popupStateMapping.CommonPopupDataAttributes.startingStyle] = "startingStyle"; /** * Present when the popup is animating out. */ ComboboxBackdropDataAttributes[ComboboxBackdropDataAttributes["endingStyle"] = _popupStateMapping.CommonPopupDataAttributes.endingStyle] = "endingStyle"; return ComboboxBackdropDataAttributes; }({});