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 923 B
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 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; }({});