Fixed #1696 - Add tableStyle and tableClass to Table

This commit is contained in:
Cagatay Civici 2021-10-25 14:49:59 +03:00
parent 10e49e1de5
commit f61efad17e
4 changed files with 35 additions and 1 deletions

View file

@ -346,6 +346,18 @@ const DataTableProps = [
type: "boolean",
default: "false",
description: "Whether to displays rows with alternating colors."
},
{
name: "tableStyle",
type: "object",
default: "null",
description: "Inline style of the table element."
},
{
name: "tableClass",
type: "string",
default: "null",
description: "Style class of the table element."
}
];