dnd-kit icon indicating copy to clipboard operation
dnd-kit copied to clipboard

Screen reader support for nested DndContext

Open rishitank opened this issue 9 months ago • 0 comments

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.

rishitank avatar May 02 '24 12:05 rishitank