UNPKG

@hitachivantara/uikit-react-core

Version:

Core React components for the NEXT Design System.

9 lines (8 loc) 328 B
"use strict"; Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }); const getFocusableChildren = (el) => el?.querySelectorAll("input, button, select, textarea, a[href]") || []; const setFocusTo = (el) => { el.focus(); }; exports.getFocusableChildren = getFocusableChildren; exports.setFocusTo = setFocusTo;