UNPKG

@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.

30 lines (29 loc) 1.22 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ComboboxClearDataAttributes = void 0; var _popupStateMapping = require("../../utils/popupStateMapping"); let ComboboxClearDataAttributes = exports.ComboboxClearDataAttributes = function (ComboboxClearDataAttributes) { /** * Present when the corresponding popup is open. */ ComboboxClearDataAttributes[ComboboxClearDataAttributes["popupOpen"] = _popupStateMapping.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"] = _popupStateMapping.CommonPopupDataAttributes.startingStyle] = "startingStyle"; /** * Present when the button is animating out. */ ComboboxClearDataAttributes[ComboboxClearDataAttributes["endingStyle"] = _popupStateMapping.CommonPopupDataAttributes.endingStyle] = "endingStyle"; return ComboboxClearDataAttributes; }({});