File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export type ColumnTreeProps<T extends TableNode> = ColumnTreePropsObject<T> | bo
6868
6969export type CellTreeProps < T extends TableNode > = {
7070 item : T ;
71+ pinLeft ?: boolean ;
7172 treeIcon ?: TreeOptionsIcon <T >;
7273 children ?: React .ReactNode ;
7374};
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export type VirtualizedProps<T extends TableNode> = {
1717 rowHeight : RowHeight ;
1818 header : () => React .ReactNode ;
1919 body : (node : T , index : number ) => React .ReactNode ;
20- tableOptions : TableOptions ;
21- rowOptions : RowOptions <T >;
20+ tableOptions ? : TableOptions ;
21+ rowOptions ? : RowOptions <T >;
2222};
2323```
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export type ColumnTreeProps<T extends TableNode> = ColumnTreePropsObject<T> | bo
6161
6262export type CellTreeProps < T extends TableNode > = {
6363 item : T ;
64+ pinLeft ?: boolean ;
6465 treeIcon ?: TreeOptionsIcon < T > ;
6566 children ?: React . ReactNode ;
6667} ;
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ export type VirtualizedProps<T extends TableNode> = {
1010 rowHeight : RowHeight ;
1111 header : ( ) => React . ReactNode ;
1212 body : ( node : T , index : number ) => React . ReactNode ;
13- tableOptions : TableOptions ;
14- rowOptions : RowOptions < T > ;
13+ tableOptions ? : TableOptions ;
14+ rowOptions ? : RowOptions < T > ;
1515} ;
You can’t perform that action at this time.
0 commit comments