@primer/react
Version:
An implementation of GitHub's Primer Design System using React
15 lines • 933 B
TypeScript
import type React from 'react';
import type { TextInputProps } from '../TextInput';
export interface FilteredActionListInputProps extends Partial<Omit<TextInputProps, 'onChange' | 'onKeyDown'>> {
inputRef: React.RefObject<HTMLInputElement | null>;
onInputChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
onInputKeyPress?: React.KeyboardEventHandler<HTMLInputElement>;
onInputKeyDown?: React.KeyboardEventHandler<HTMLInputElement>;
placeholderText?: string;
listId: string;
inputDescriptionTextId: string;
loading: boolean;
fullScreenOnNarrow?: boolean;
}
export declare function FilteredActionListInput({ inputRef, value, onInputChange, onInputKeyPress, onInputKeyDown, placeholderText, listId, inputDescriptionTextId, loading, fullScreenOnNarrow, className, ...restTextInputProps }: FilteredActionListInputProps): React.JSX.Element;
//# sourceMappingURL=FilteredActionListInput.d.ts.map