Fix clickable being announced for all modelview text (#8384)

* Fix clickable being announced for all modelview text

* Remove unused method

* Move API changes into proposed
This commit is contained in:
Charles Gagnon
2019-11-22 11:01:46 -08:00
committed by GitHub
parent fc0c05c755
commit 52de2b4751
7 changed files with 45 additions and 32 deletions

View File

@@ -736,10 +736,7 @@ declare module 'sqlops' {
}
export interface TextComponent extends Component, TextComponentProperties {
/**
* An event called when the text is clicked
*/
onDidClick: vscode.Event<any>;
}
export interface ImageComponent extends Component, ImageComponentProperties {
@@ -747,6 +744,10 @@ declare module 'sqlops' {
}
export interface HyperlinkComponent extends Component, HyperlinkComponentProperties {
/**
* An event called when the text is clicked
*/
onDidClick: vscode.Event<any>;
}
export interface InputBoxComponent extends Component, InputBoxProperties {