mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Fixed #5297 - DataTable: tableClass prop specifies String type, though Array also works
This commit is contained in:
parent
843a342024
commit
9fcc7cc848
2 changed files with 6 additions and 6 deletions
4
components/lib/datatable/DataTable.d.ts
vendored
4
components/lib/datatable/DataTable.d.ts
vendored
|
@ -1117,11 +1117,11 @@ export interface DataTableProps {
|
|||
/**
|
||||
* Inline style of the table element.
|
||||
*/
|
||||
tableStyle?: any;
|
||||
tableStyle?: object | undefined;
|
||||
/**
|
||||
* Style class of the table element.
|
||||
*/
|
||||
tableClass?: any;
|
||||
tableClass?: string | object | undefined;
|
||||
/**
|
||||
* Used to pass all properties of the TableHTMLAttributes to table element inside the component.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue