UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

6 lines (5 loc) 277 B
import { getFocusables, isHTMLElement } from "@1771technologies/lytenyte-shared"; export function getFocusableNodes(panel) { const focusNodes = getFocusables(panel).filter((c) => isHTMLElement(c) && c.getAttribute("data-ln-tree-node") === "true"); return focusNodes; }