mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 17:23:29 -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:
5
src/sql/azdata.d.ts
vendored
5
src/sql/azdata.d.ts
vendored
@@ -3434,7 +3434,10 @@ declare module 'azdata' {
|
||||
}
|
||||
|
||||
export interface TextComponentProperties extends ComponentProperties, TitledComponentProperties {
|
||||
value?: string | undefined;
|
||||
/**
|
||||
* Provide value to be displayed in the text component. An array of value will be displayed as an unordered list.
|
||||
*/
|
||||
value?: string | string[] | undefined;
|
||||
links?: LinkArea[] | undefined;
|
||||
description?: string | undefined;
|
||||
requiredIndicator?: boolean | undefined;
|
||||
|
||||
Reference in New Issue
Block a user