@base-ui/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.
24 lines • 1.04 kB
JavaScript
import { CommonPopupDataAttributes, CommonTriggerDataAttributes } from "../../utils/popupStateMapping.js";
export let ComboboxClearDataAttributes = function (ComboboxClearDataAttributes) {
/**
* Present when the corresponding popup is open.
*/
ComboboxClearDataAttributes[ComboboxClearDataAttributes["popupOpen"] = CommonTriggerDataAttributes.popupOpen] = "popupOpen";
/**
* Present when the button is disabled.
*/
ComboboxClearDataAttributes["disabled"] = "data-disabled";
/**
* Present when the clear button is visible.
*/
ComboboxClearDataAttributes["visible"] = "data-visible";
/**
* Present when the button is animating in.
*/
ComboboxClearDataAttributes[ComboboxClearDataAttributes["startingStyle"] = CommonPopupDataAttributes.startingStyle] = "startingStyle";
/**
* Present when the button is animating out.
*/
ComboboxClearDataAttributes[ComboboxClearDataAttributes["endingStyle"] = CommonPopupDataAttributes.endingStyle] = "endingStyle";
return ComboboxClearDataAttributes;
}({});