@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.
36 lines (35 loc) • 1.44 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ComboboxArrowDataAttributes = void 0;
var _popupStateMapping = require("../../utils/popupStateMapping");
let ComboboxArrowDataAttributes = exports.ComboboxArrowDataAttributes = function (ComboboxArrowDataAttributes) {
/**
* Present when the popup is open.
*/
ComboboxArrowDataAttributes[ComboboxArrowDataAttributes["open"] = _popupStateMapping.CommonPopupDataAttributes.open] = "open";
/**
* Present when the popup is closed.
*/
ComboboxArrowDataAttributes[ComboboxArrowDataAttributes["closed"] = _popupStateMapping.CommonPopupDataAttributes.closed] = "closed";
/**
* Present when the anchor is hidden.
*/
ComboboxArrowDataAttributes[ComboboxArrowDataAttributes["anchorHidden"] = _popupStateMapping.CommonPopupDataAttributes.anchorHidden] = "anchorHidden";
/**
* Indicates which side the popup is positioned relative to the trigger.
* @type {'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'}
*/
ComboboxArrowDataAttributes["side"] = "data-side";
/**
* Indicates how the popup is aligned relative to specified side.
* @type {'start' | 'center' | 'end'}
*/
ComboboxArrowDataAttributes["align"] = "data-align";
/**
* Present when the arrow is uncentered.
*/
ComboboxArrowDataAttributes["uncentered"] = "data-uncentered";
return ComboboxArrowDataAttributes;
}({});
;