Add display property to ModelView components (#7579)

* Add display property to ModelView components

* Update DisplayType property in sqlops as well
This commit is contained in:
Charles Gagnon
2019-10-09 10:28:18 -07:00
committed by GitHub
parent f475c04ce3
commit 33218bb0e5
6 changed files with 75 additions and 4 deletions

View File

@@ -539,6 +539,13 @@ class ComponentWrapper implements azdata.Component {
this.setProperty('required', v);
}
public get display(): azdata.DisplayType {
return this.properties['display'];
}
public set display(v: azdata.DisplayType) {
this.setProperty('display', v);
}
public get CSSStyles(): { [key: string]: string } {
return this.properties['CSSStyles'];
}