@base-ui/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.
5 lines • 358 B
TypeScript
import type * as React from 'react';
import type { ComboboxStore } from "../store.js";
export declare function handleInputPress(event: React.MouseEvent<HTMLElement> & {
baseUIHandlerPrevented?: boolean | undefined;
}, store: ComboboxStore, disabled: boolean, readOnly: boolean, shouldIgnoreTarget?: ((target: Element | null) => boolean) | undefined): void;