@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.1 kB
JavaScript
;
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 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;
}({});