mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 17:22:42 -05:00
Clean up Loading Component typings (#13785)
* Clean up Loading Component typings * add properties to impl
This commit is contained in:
@@ -1673,6 +1673,30 @@ class LoadingComponentWrapper extends ComponentWrapper implements azdata.Loading
|
||||
this.setProperty('loading', value);
|
||||
}
|
||||
|
||||
public get showText(): boolean {
|
||||
return this.properties['showText'];
|
||||
}
|
||||
|
||||
public set showText(value: boolean) {
|
||||
this.setProperty('showText', value);
|
||||
}
|
||||
|
||||
public get loadingText(): string {
|
||||
return this.properties['loadingText'];
|
||||
}
|
||||
|
||||
public set loadingText(value: string) {
|
||||
this.setProperty('loadingText', value);
|
||||
}
|
||||
|
||||
public get loadingCompletedText(): string {
|
||||
return this.properties['loadingCompletedText'];
|
||||
}
|
||||
|
||||
public set loadingCompletedText(value: string) {
|
||||
this.setProperty('loadingCompletedText', value);
|
||||
}
|
||||
|
||||
public get component(): azdata.Component {
|
||||
return this.items[0];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user