table column with iconcss (#13056)

This commit is contained in:
Vladimir Chernov
2020-10-31 02:23:38 +03:00
committed by GitHub
parent 2f571d868b
commit da6f800f11
11 changed files with 168 additions and 41 deletions

View File

@@ -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;
}
}