mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
Add TextType property (#16421)
This commit is contained in:
@@ -1377,6 +1377,13 @@ class TextComponentWrapper extends ComponentWrapper implements azdata.TextCompon
|
||||
public set headingLevel(headingLevel: azdata.HeadingLevel | undefined) {
|
||||
this.setProperty('headingLevel', headingLevel);
|
||||
}
|
||||
|
||||
public get textType(): azdata.TextType | undefined {
|
||||
return this.properties['textType'];
|
||||
}
|
||||
public set textType(type: azdata.TextType | undefined) {
|
||||
this.setProperty('textType', type);
|
||||
}
|
||||
}
|
||||
|
||||
class ImageComponentWrapper extends ComponentWithIconWrapper implements azdata.ImageComponentProperties {
|
||||
|
||||
Reference in New Issue
Block a user