Skip to content

Commit

Permalink
Table with selection samples: Announce selection output when it appea…
Browse files Browse the repository at this point in the history
…rs or changes (#7256)
  • Loading branch information
deleonio authored Jan 29, 2025
2 parents 0a70705 + bd8c95c commit 03a494c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ export const TableStatefulWithSelection: FC = () => {
},
}}
></KolButton>
<pre className="text-base">{JSON.stringify(selectedValue, null, 2)}</pre>
<pre className="text-base" aria-live="polite">
{JSON.stringify(selectedValue, null, 2)}
</pre>
</div>
</section>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ export const TableStatefulWithSingleSelection: FC = () => {
},
}}
></KolButton>
<pre className="text-base">{JSON.stringify(selectedValue, null, 2)}</pre>
<pre className="text-base" aria-live="polite">
{JSON.stringify(selectedValue, null, 2)}
</pre>
</div>
</section>
</>
Expand Down

0 comments on commit 03a494c

Please sign in to comment.