Adding arialive to text (#20242)

This commit is contained in:
Aasim Khan
2022-08-03 20:25:17 -07:00
committed by GitHub
parent baf52a55ff
commit d139559d98
5 changed files with 26 additions and 5 deletions

View File

@@ -1390,6 +1390,14 @@ class TextComponentWrapper extends ComponentWrapper implements azdata.TextCompon
public set textType(type: azdata.TextType | undefined) {
this.setProperty('textType', type);
}
public get ariaLive(): string | undefined {
return this.properties['ariaLive'];
}
public set ariaLive(ariaLive: string | undefined) {
this.setProperty('ariaLive', ariaLive);
}
}
class ImageComponentWrapper extends ComponentWithIconWrapper implements azdata.ImageComponentProperties {