Skip to content

Commit 12c2fb6

Browse files
author
Hector Arce De Las Heras
committed
Cell background color modification feature added to table types
1 parent 3df2e38 commit 12c2fb6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/components/table/types/table.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,19 @@ export type TableDividerType = Omit<IDivider, 'variant'> & {
5151
variant?: string;
5252
};
5353

54+
export type ValueConfigType = {
55+
value?:
56+
| string
57+
| JSX.Element
58+
| undefined
59+
| ExpandedContentType
60+
| TableDividerType
61+
| object
62+
| number
63+
| boolean;
64+
backgroundColor?: string;
65+
};
66+
5467
/**
5568
* @description
5669
* Table value props

0 commit comments

Comments
 (0)