1
This commit is contained in:
27
admin/node_modules/element-plus/lib/components/roving-focus-group/src/tokens.d.ts
generated
vendored
Normal file
27
admin/node_modules/element-plus/lib/components/roving-focus-group/src/tokens.d.ts
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { InjectionKey, Ref, StyleValue } from 'vue';
|
||||
import type { ElRovingFocusGroupProps } from './roving-focus-group';
|
||||
type EventHandler<T = Event> = (e: T) => void;
|
||||
export type RovingGroupInjectionContext = {
|
||||
currentTabbedId: Ref<string | null>;
|
||||
dir: Ref<ElRovingFocusGroupProps['dir']>;
|
||||
loop: Ref<ElRovingFocusGroupProps['loop']>;
|
||||
orientation: Ref<ElRovingFocusGroupProps['orientation']>;
|
||||
tabIndex: Ref<number>;
|
||||
rovingFocusGroupRef: Ref<HTMLElement | undefined>;
|
||||
rovingFocusGroupRootStyle: Ref<StyleValue>;
|
||||
onBlur: EventHandler;
|
||||
onFocus: EventHandler<FocusEvent>;
|
||||
onMousedown: EventHandler;
|
||||
onItemFocus: (id: string) => void;
|
||||
onItemShiftTab: () => void;
|
||||
};
|
||||
export type RovingFocusGroupItemInjectionContext = {
|
||||
rovingFocusGroupItemRef: Ref<HTMLElement | undefined>;
|
||||
tabIndex: Ref<number>;
|
||||
handleMousedown: EventHandler;
|
||||
handleFocus: EventHandler;
|
||||
handleKeydown: EventHandler;
|
||||
};
|
||||
export declare const ROVING_FOCUS_GROUP_INJECTION_KEY: InjectionKey<RovingGroupInjectionContext>;
|
||||
export declare const ROVING_FOCUS_GROUP_ITEM_INJECTION_KEY: InjectionKey<RovingFocusGroupItemInjectionContext>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user