Expose inputbox title so hover text can be set (#13084)

* expose inputbox title so hover text can be set

* only update title if there's a value
This commit is contained in:
Kim Santiago
2020-10-26 16:30:53 -07:00
committed by GitHub
parent c2bd11fa9e
commit 1e3c9b722e
2 changed files with 17 additions and 0 deletions

View File

@@ -531,6 +531,10 @@ declare module 'azdata' {
export interface InputBoxProperties extends ComponentProperties {
validationErrorMessage?: string;
readOnly?: boolean;
/**
* This title will show when hovered over
*/
title?: string;
}
export interface CheckBoxProperties {