Skip to content

Commit

Permalink
Fix #5288: Datatable add readonly frozenRow property
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Nov 12, 2023
1 parent ed37583 commit fec6de0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/lib/datatable/datatable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,7 @@ interface DataTableCellClassNameOptions<TValue extends DataTableValueArray> {
field: string;
/**
* Whether the row is frozen or not.
* @defaultValue false
*/
frozenRow: boolean;
/**
Expand Down Expand Up @@ -1151,6 +1152,7 @@ interface DataTableBaseProps<TValue extends DataTableValueArray> extends Omit<Re
frozenWidth?: string | undefined;
/**
* Whether the row is frozen or not. Read-Only necessary for unstyled TypeScript definition.
* @defaultValue false
*/
readonly frozenRow?: boolean;
/**
Expand Down

0 comments on commit fec6de0

Please sign in to comment.