svelte
svelte copied to clipboard
fix: define `role="application"` as an interactive ARIA role
Interactive elements that are not described by existing ARIA widget roles should have role="application", and should resolve warning no-interactive-element-to-noninteractive-role
For example, the Cropper component from Svelte Easy Crop does match any of the other ARIA widget role descriptions.
See spec: https://www.w3.org/TR/wai-aria-1.1/#application
Fixes #8943