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.

32 lines (31 loc) 1.35 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SelectScrollUpArrowDataAttributes = void 0; var _popupStateMapping = require("../../utils/popupStateMapping"); let SelectScrollUpArrowDataAttributes = exports.SelectScrollUpArrowDataAttributes = function (SelectScrollUpArrowDataAttributes) { /** * Present when the scroll arrow is animating in. */ SelectScrollUpArrowDataAttributes[SelectScrollUpArrowDataAttributes["startingStyle"] = _popupStateMapping.CommonPopupDataAttributes.startingStyle] = "startingStyle"; /** * Present when the scroll arrow is animating out. */ SelectScrollUpArrowDataAttributes[SelectScrollUpArrowDataAttributes["endingStyle"] = _popupStateMapping.CommonPopupDataAttributes.endingStyle] = "endingStyle"; /** * Indicates the direction of the scroll arrow. * @type {'up'} */ SelectScrollUpArrowDataAttributes["direction"] = "data-direction"; /** * Present when the scroll arrow is visible. */ SelectScrollUpArrowDataAttributes["visible"] = "data-visible"; /** * Indicates which side the popup is positioned relative to the trigger. * @type {'none' | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'} */ SelectScrollUpArrowDataAttributes["side"] = "data-side"; return SelectScrollUpArrowDataAttributes; }({});