UNPKG

@synergy-design-system/components

Version:

This package provides the base of the Synergy Design System as native web components. It uses [lit](https://www.lit.dev) and parts of [shoelace](https://shoelace.style/). Synergy officially supports the latest two versions of all major browsers (as define

16 lines (15 loc) 678 B
/** * --------------------------------------------------------------------- * 🔒 AUTOGENERATED BY VENDORISM * Removing this comment will prevent it from being managed by it. * --------------------------------------------------------------------- */ /** * Returns the first and last bounding elements that are tabbable. This is more performant than checking every single * element because it short-circuits after finding the first and last ones. */ export declare function getTabbableBoundary(root: HTMLElement | ShadowRoot): { start: HTMLElement; end: HTMLElement; }; export declare function getTabbableElements(root: HTMLElement | ShadowRoot): HTMLElement[];