Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions projects/components/src/table/table.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@ export class TableComponent
@Output()
public readonly columnConfigsChange: EventEmitter<TableColumnConfig[]> = new EventEmitter<TableColumnConfig[]>();

@Output()
public readonly sortChange: EventEmitter<SortedColumn> = new EventEmitter<SortedColumn>();

@ViewChild(PaginatorComponent)
public paginator?: PaginatorComponent;

Expand Down Expand Up @@ -537,10 +540,12 @@ export class TableComponent

public onSortChange(direction: TableSortDirection, columnConfig: TableColumnConfigExtended): void {
if (TableCdkColumnUtil.isColumnSortable(columnConfig)) {
this.updateSort({
const sortedColumn: SortedColumn = {
column: columnConfig,
direction: direction
});
};
this.sortChange.emit(sortedColumn);
this.updateSort(sortedColumn);
}

if (this.syncWithUrl) {
Expand Down Expand Up @@ -775,7 +780,7 @@ export class TableComponent
}
}

interface SortedColumn {
export interface SortedColumn {
column: TableColumnConfigExtended;
direction?: TableSortDirection;
}
Expand Down