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
68
68
69
69
export type CellTreeProps < T extends TableNode > = {
70
70
item : T ;
71
+ pinLeft ?: boolean ;
71
72
treeIcon ?: TreeOptionsIcon <T >;
72
73
children ?: React .ReactNode ;
73
74
};
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export type VirtualizedProps<T extends TableNode> = {
17
17
rowHeight : RowHeight ;
18
18
header : () => React .ReactNode ;
19
19
body : (node : T , index : number ) => React .ReactNode ;
20
- tableOptions : TableOptions ;
21
- rowOptions : RowOptions <T >;
20
+ tableOptions ? : TableOptions ;
21
+ rowOptions ? : RowOptions <T >;
22
22
};
23
23
```
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export type ColumnTreeProps<T extends TableNode> = ColumnTreePropsObject<T> | bo
61
61
62
62
export type CellTreeProps < T extends TableNode > = {
63
63
item : T ;
64
+ pinLeft ?: boolean ;
64
65
treeIcon ?: TreeOptionsIcon < T > ;
65
66
children ?: React . ReactNode ;
66
67
} ;
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ export type VirtualizedProps<T extends TableNode> = {
10
10
rowHeight : RowHeight ;
11
11
header : ( ) => React . ReactNode ;
12
12
body : ( node : T , index : number ) => React . ReactNode ;
13
- tableOptions : TableOptions ;
14
- rowOptions : RowOptions < T > ;
13
+ tableOptions ? : TableOptions ;
14
+ rowOptions ? : RowOptions < T > ;
15
15
} ;
You can’t perform that action at this time.
0 commit comments