mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
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:
@@ -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'];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user