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.

22 lines (21 loc) 665 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AccordionItemDataAttributes = void 0; let AccordionItemDataAttributes = exports.AccordionItemDataAttributes = /*#__PURE__*/function (AccordionItemDataAttributes) { /** * Indicates the index of the accordion item. * @type {number} */ AccordionItemDataAttributes["index"] = "data-index"; /** * Present when the accordion item is disabled. */ AccordionItemDataAttributes["disabled"] = "data-disabled"; /** * Present when the accordion item is open. */ AccordionItemDataAttributes["open"] = "data-open"; return AccordionItemDataAttributes; }({});