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