(el: HTMLElement)
| 6 | type FocusableElementPromise = Promise<HTMLElement | null>; |
| 7 | |
| 8 | const isFocusTrap = (el: HTMLElement) => { |
| 9 | return el.hasAttribute("data-ui5-focus-trap"); |
| 10 | }; |
| 11 | |
| 12 | const isScrollable = (el: HTMLElement) => { |
| 13 | const computedStyle = getComputedStyle(el); |
no test coverage detected
searching dependent graphs…