Skip to content

Commit

Permalink
Fix primefaces#3469: ColumnEventParams fix typescript (primefaces#3471)
Browse files Browse the repository at this point in the history
* Fix primefaces#3467: Autocomplete dropdownAriaLabel

* Fix primefaces#3469: ColumnEventParams fix typescript
  • Loading branch information
melloware authored Oct 11, 2022
1 parent 0c7959a commit f11d095
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion components/lib/column/column.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,15 @@ interface ColumnFilterElementTemplateOptions {

interface ColumnEventParams {
originalEvent: React.SyntheticEvent;
columnProps: ColumnProps;
value: any;
field: string;
rowData: any;
rowIndex: number;
cellIndex: number;
selected: boolean;
column: Column;
newRowData: any;
newValue: any;
}

interface ColumnSortMetaData {
Expand Down

0 comments on commit f11d095

Please sign in to comment.