mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-11 18:48:33 -05:00
Add setFilter to DeclarativeTableComponent (#14143)
* Add setFilter to DeclarativeTableComponent * fix tests * Update param name
This commit is contained in:
@@ -347,6 +347,7 @@ class TestDeclarativeTableComponent extends TestComponentBase implements azdata.
|
||||
}
|
||||
onDataChanged: vscode.Event<any> = this.onClick.event;
|
||||
onRowSelected: vscode.Event<any> = this.onClick.event;
|
||||
setFilter: undefined;
|
||||
data: any[][];
|
||||
columns: azdata.DeclarativeTableColumn[];
|
||||
}
|
||||
|
||||
@@ -184,6 +184,7 @@ describe('Manage Package Dialog', () => {
|
||||
let declarativeTable: () => azdata.DeclarativeTableComponent = () => Object.assign({}, componentBase, {
|
||||
onDataChanged: undefined!,
|
||||
onRowSelected: undefined!,
|
||||
setFilter: undefined!,
|
||||
data: [],
|
||||
columns: []
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user