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.

16 lines 548 B
export let 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; }({});