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) 713 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ToolbarButtonDataAttributes = void 0; let ToolbarButtonDataAttributes = exports.ToolbarButtonDataAttributes = /*#__PURE__*/function (ToolbarButtonDataAttributes) { /** * Present when the button is disabled. */ ToolbarButtonDataAttributes["disabled"] = "data-disabled"; /** * Indicates the orientation of the toolbar. * @type {'horizontal' | 'vertical'} */ ToolbarButtonDataAttributes["orientation"] = "data-orientation"; /** * Present when the button remains focusable when disabled. */ ToolbarButtonDataAttributes["focusable"] = "data-focusable"; return ToolbarButtonDataAttributes; }({});