Last active
October 25, 2018 16:17
-
-
Save PxyUp/bc32d51d178f558421899c6170546d77 to your computer and use it in GitHub Desktop.
input.table.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Input() itemSize = 25; // for itemHeight | |
@Input() dataSource: Observable<Array<VirtualTableItem | number | string | boolean>>; | |
@Input() filterPlaceholder = 'Filter'; | |
@Input() dataSetEmptyPlaceholder = 'Data is empty'; | |
@Input() config: VirtualTableConfig; | |
@Input() onRowClick: (item: VirtualTableItem) => void; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment