diff --git a/src/sql/workbench/api/common/extHostModelView.ts b/src/sql/workbench/api/common/extHostModelView.ts index 564ac737df..d8fc0e2cd9 100644 --- a/src/sql/workbench/api/common/extHostModelView.ts +++ b/src/sql/workbench/api/common/extHostModelView.ts @@ -1153,6 +1153,20 @@ class TableComponentWrapper extends ComponentWrapper implements azdata.TableComp this.setProperty('title', v); } + public get ariaRowCount(): number { + return this.properties['ariaRowCount']; + } + public set ariaRowCount(v: number) { + this.setProperty('ariaRowCount', v); + } + + public get ariaColumnCount(): number { + return this.properties['ariaColumnCount']; + } + public set ariaColumnCount(v: number) { + this.setProperty('ariaColumnCount', v); + } + public get moveFocusOutWithTab(): boolean { return this.properties['moveFocusOutWithTab']; } @@ -1324,6 +1338,13 @@ class ButtonWrapper extends ComponentWrapper implements azdata.ButtonComponent { this.setProperty('title', v); } + public get ariaLabel(): string { + return this.properties['ariaLabel']; + } + public set ariaLabel(v: string) { + this.setProperty('ariaLabel', v); + } + public get onDidClick(): vscode.Event { let emitter = this._emitterMap.get(ComponentEventType.onDidClick); return emitter && emitter.event;