You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
declare const _default: import("vue").DefineComponent<{
|
|
focusable: {
|
|
type: BooleanConstructor;
|
|
default: boolean;
|
|
};
|
|
active: {
|
|
type: BooleanConstructor;
|
|
default: boolean;
|
|
};
|
|
}, {
|
|
id: import("vue").Ref<string>;
|
|
handleKeydown: (event: Event) => void;
|
|
handleFocus: (event: Event) => void;
|
|
handleMousedown: (event: Event) => void;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "keydown" | "mousedown")[], "focus" | "keydown" | "mousedown", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
focusable?: unknown;
|
|
active?: unknown;
|
|
} & {
|
|
active: boolean;
|
|
focusable: boolean;
|
|
} & {}> & {
|
|
onMousedown?: ((...args: any[]) => any) | undefined;
|
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
}, {
|
|
active: boolean;
|
|
focusable: boolean;
|
|
}>;
|
|
export default _default;
|