This commit is contained in:
34
node_modules/tabbable/index.d.ts
generated
vendored
Normal file
34
node_modules/tabbable/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
type FocusableElement = HTMLElement | SVGElement;
|
||||
|
||||
export type CheckOptions = {
|
||||
displayCheck?: 'full' | 'legacy-full' | 'non-zero-area' | 'none';
|
||||
getShadowRoot?: boolean | ((node: FocusableElement) => ShadowRoot | boolean | undefined);
|
||||
};
|
||||
|
||||
export type TabbableOptions = {
|
||||
includeContainer?: boolean;
|
||||
};
|
||||
|
||||
export declare function tabbable(
|
||||
container: Element,
|
||||
options?: TabbableOptions & CheckOptions
|
||||
): FocusableElement[];
|
||||
|
||||
export declare function focusable(
|
||||
container: Element,
|
||||
options?: TabbableOptions & CheckOptions
|
||||
): FocusableElement[];
|
||||
|
||||
export declare function isTabbable(
|
||||
node: Element,
|
||||
options?: CheckOptions
|
||||
): boolean;
|
||||
|
||||
export declare function isFocusable(
|
||||
node: Element,
|
||||
options?: CheckOptions
|
||||
): boolean;
|
||||
|
||||
export declare function getTabIndex(
|
||||
node: Element,
|
||||
): number;
|
Reference in New Issue
Block a user