uppy/packages/@uppy/utils/src/FOCUSABLE_ELEMENTS.ts
Prakash d301c01d6a
@uppy/utils: update export maps (#5900)
- cleanup `@uppy/utils ` removed unused / redundant modules .
- migrated modules and tests from `.js` to `.ts`
- removed all the nested export paths
- updated `@uppy/utils` import paths for all packages
- `@uppy/angular` is still failing while running`yarn build` , I'm
looking into it.

---------

Co-authored-by: Merlijn Vos <merlijn@soverin.net>
2025-08-19 12:25:27 +02:00

13 lines
734 B
TypeScript

export default [
'a[href]:not([tabindex^="-"]):not([inert]):not([aria-hidden])',
'area[href]:not([tabindex^="-"]):not([inert]):not([aria-hidden])',
'input:not([disabled]):not([inert]):not([aria-hidden])',
'select:not([disabled]):not([inert]):not([aria-hidden])',
'textarea:not([disabled]):not([inert]):not([aria-hidden])',
'button:not([disabled]):not([inert]):not([aria-hidden])',
'iframe:not([tabindex^="-"]):not([inert]):not([aria-hidden])',
'object:not([tabindex^="-"]):not([inert]):not([aria-hidden])',
'embed:not([tabindex^="-"]):not([inert]):not([aria-hidden])',
'[contenteditable]:not([tabindex^="-"]):not([inert]):not([aria-hidden])',
'[tabindex]:not([tabindex^="-"]):not([inert]):not([aria-hidden])',
]