Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

View File

@@ -0,0 +1 @@
export declare function scopeTab(node: HTMLElement, event: KeyboardEvent): void;

View File

@@ -0,0 +1,4 @@
export declare const FOCUS_SELECTOR = "a, input, select, textarea, button, object, [tabindex]";
export declare function focusable(element: HTMLElement): boolean | "";
export declare function tabbable(element: HTMLElement): boolean | "";
export declare function findTabbableDescendants(element: HTMLElement): HTMLElement[];

View File

@@ -0,0 +1 @@
export declare function useFocusTrap(active?: boolean): React.RefCallback<HTMLElement | null>;