28 lines
811 B
TypeScript
28 lines
811 B
TypeScript
|
import type { RefObject } from '../../_util/createRef';
|
||
|
import type { VNodeChild } from 'vue';
|
||
|
import type { Mode } from '../interface';
|
||
|
import type { LabelValueType } from '../interface/generator';
|
||
|
|
||
|
export interface InnerSelectorProps {
|
||
|
prefixCls: string;
|
||
|
id: string;
|
||
|
mode: Mode;
|
||
|
inputRef: RefObject;
|
||
|
placeholder?: VNodeChild;
|
||
|
disabled?: boolean;
|
||
|
autofocus?: boolean;
|
||
|
autocomplete?: string;
|
||
|
values: LabelValueType[];
|
||
|
showSearch?: boolean;
|
||
|
searchValue: string;
|
||
|
accessibilityIndex: number;
|
||
|
open: boolean;
|
||
|
tabindex?: number | string;
|
||
|
onInputKeyDown: EventHandlerNonNull;
|
||
|
onInputMouseDown: EventHandlerNonNull;
|
||
|
onInputChange: EventHandlerNonNull;
|
||
|
onInputPaste: EventHandlerNonNull;
|
||
|
onInputCompositionStart: EventHandlerNonNull;
|
||
|
onInputCompositionEnd: EventHandlerNonNull;
|
||
|
}
|