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) 748 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ToggleGroupDataAttributes = void 0; let ToggleGroupDataAttributes = exports.ToggleGroupDataAttributes = /*#__PURE__*/function (ToggleGroupDataAttributes) { /** * Present when the toggle group is disabled. */ ToggleGroupDataAttributes["disabled"] = "data-disabled"; /** * Indicates the orientation of the toggle group. * @type {'horizontal' | 'vertical'} */ ToggleGroupDataAttributes["orientation"] = "data-orientation"; /** * Present when the toggle group allows multiple buttons to be in the pressed state at the same time. */ ToggleGroupDataAttributes["multiple"] = "data-multiple"; return ToggleGroupDataAttributes; }({});