Adding aria role to hyperlink cell in slickgrid (#21998)

* Adding aria role to hyperlink

* Adding default
This commit is contained in:
Aasim Khan
2023-02-22 10:42:11 -08:00
committed by GitHub
parent 656a86a103
commit c3e0478447
4 changed files with 10 additions and 2 deletions

View File

@@ -749,6 +749,10 @@ declare module 'azdata' {
* The url to open.
*/
url?: string;
/**
* The role of the hyperlink. By default, the role is 'link' and the url will be opened in a new tab.
*/
role?: 'button' | 'link';
}
export interface ContextMenuColumnCellValue {