2021-08-10 06:36:28 +00:00
|
|
|
import type { RefObject } from '../../_util/createRef';
|
2022-01-21 13:58:10 +00:00
|
|
|
|
2021-08-29 02:44:24 +00:00
|
|
|
import type { EventHandler } from '../../_util/EventInterface';
|
2021-12-16 09:20:18 +00:00
|
|
|
import type { VueNode } from '../../_util/type';
|
2022-01-21 13:58:10 +00:00
|
|
|
import type { Mode, DisplayValueType } from '../BaseSelect';
|
2021-08-10 06:36:28 +00:00
|
|
|
|
|
|
|
export interface InnerSelectorProps {
|
|
|
|
prefixCls: string;
|
|
|
|
id: string;
|
|
|
|
mode: Mode;
|
|
|
|
inputRef: RefObject;
|
2021-12-16 09:20:18 +00:00
|
|
|
placeholder?: VueNode;
|
2021-08-10 06:36:28 +00:00
|
|
|
disabled?: boolean;
|
|
|
|
autofocus?: boolean;
|
|
|
|
autocomplete?: string;
|
2022-01-21 13:58:10 +00:00
|
|
|
values: DisplayValueType[];
|
2021-08-10 06:36:28 +00:00
|
|
|
showSearch?: boolean;
|
|
|
|
searchValue: string;
|
2022-01-21 13:58:10 +00:00
|
|
|
activeDescendantId: string;
|
2021-08-10 06:36:28 +00:00
|
|
|
open: boolean;
|
|
|
|
tabindex?: number | string;
|
2021-08-29 02:44:24 +00:00
|
|
|
onInputKeyDown: EventHandler;
|
|
|
|
onInputMouseDown: EventHandler;
|
|
|
|
onInputChange: EventHandler;
|
|
|
|
onInputPaste: EventHandler;
|
|
|
|
onInputCompositionStart: EventHandler;
|
|
|
|
onInputCompositionEnd: EventHandler;
|
2021-08-10 06:36:28 +00:00
|
|
|
}
|