dnd-kit
dnd-kit copied to clipboard
Screen reader support for nested DndContext
Hi, when using a nested DndContext, it seems that the screen reader announcements for the nested DndContext render in the DOM in the same place as the outer DndContext:
<DndContext>
<div>
drag / drop components here...
<button>
<DndContext>
some other drag / drop components here...
</DndContext>
</button>
</div>
Screen reader announcements render here in the DOM for both contexts...
<DndContext>
Is there a fix for this or is this a bug? Thanks.