mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 02:48:30 -05:00
Adding lists support in text component (#17065)
* Adding lists support in text component * Fixing get textType * Code cleanup * Combining values into value
This commit is contained in:
6
src/sql/azdata.proposed.d.ts
vendored
6
src/sql/azdata.proposed.d.ts
vendored
@@ -585,7 +585,9 @@ declare module 'azdata' {
|
||||
*/
|
||||
export enum TextType {
|
||||
Normal = 'Normal',
|
||||
Error = 'Error'
|
||||
Error = 'Error',
|
||||
UnorderedList = 'UnorderedList',
|
||||
OrderedList = 'OrderedList'
|
||||
}
|
||||
|
||||
export interface TextComponentProperties {
|
||||
@@ -595,7 +597,7 @@ declare module 'azdata' {
|
||||
*/
|
||||
headingLevel?: HeadingLevel;
|
||||
/**
|
||||
* The type to display the text as - used to determine the color of the text. Default is Normal.
|
||||
* Sets the type of text box to be displayed
|
||||
*/
|
||||
textType?: TextType;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user