mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-14 12:08:36 -05:00
table column with iconcss (#13056)
This commit is contained in:
17
src/sql/azdata.proposed.d.ts
vendored
17
src/sql/azdata.proposed.d.ts
vendored
@@ -819,10 +819,25 @@ declare module 'azdata' {
|
||||
}
|
||||
|
||||
export interface TableComponent {
|
||||
|
||||
/**
|
||||
* Append data to an exsiting table data.
|
||||
*/
|
||||
appendData(data: any[][]);
|
||||
}
|
||||
|
||||
export interface IconColumnCellValue {
|
||||
icon: string | vscode.Uri | { light: string | vscode.Uri; dark: string | vscode.Uri };
|
||||
ariaLabel: string;
|
||||
}
|
||||
|
||||
export enum ColumnType {
|
||||
icon = 3
|
||||
}
|
||||
|
||||
export interface TableColumn {
|
||||
/**
|
||||
* The text to display on the column heading. 'value' property will be used, if not specified
|
||||
**/
|
||||
name?: string;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user