Skip to content

Commit

Permalink
Merge pull request #5638 from m-meier/patch-#5498
Browse files Browse the repository at this point in the history
fix(DataTable): fix rowClass type definition and improve usage documentation for rowClass and rowStyle. Fixes #5498
  • Loading branch information
tugcekucukoglu committed Apr 26, 2024
2 parents c6fccbe + 6472bb6 commit 1a004ac
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions components/lib/datatable/DataTable.d.ts
Expand Up @@ -1066,12 +1066,15 @@ export interface DataTableProps {
editingRows?: any[] | DataTableEditingRows;
/**
* A function that takes the row data as a parameter and returns a string to apply a particular class for the row.
* The return value is added to the row's :classes array (see Vue.js class bindings).
*/
rowClass?: (data: any) => object | undefined;
rowClass?: (data: any) => string | object | undefined;
/**
* A function that takes the row data as a parameter and returns the inline style for the corresponding row.
* A function that takes the row data as a parameter and returns the inline style object for the corresponding row.
* The function may also return an array of style objects which will be merged.
* The return value of this function is directly applied as a Vue.js style-binding on the table row.
*/
rowStyle?: (data: any) => object | undefined;
rowStyle?: (data: any) => object | object[] | undefined;
/**
* When specified, enables horizontal and/or vertical scrolling.
* @defaultValue false
Expand Down

0 comments on commit 1a004ac

Please sign in to comment.