File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,10 @@ export const tableProps = () => {
126
126
default : undefined ,
127
127
} ,
128
128
direction : { type : String as PropType < TableProps [ 'direction' ] > , default : undefined } ,
129
- expandFixed : { type : Boolean as PropType < TableProps [ 'expandFixed' ] > , default : undefined } ,
129
+ expandFixed : {
130
+ type : [ Boolean , String ] as PropType < TableProps [ 'expandFixed' ] > ,
131
+ default : undefined ,
132
+ } ,
130
133
expandColumnWidth : {
131
134
type : Number as PropType < TableProps [ 'expandColumnWidth' ] > ,
132
135
default : undefined ,
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export interface TableProps<RecordType = DefaultRecordType> {
98
98
direction ?: 'ltr' | 'rtl' ;
99
99
100
100
// Expandable
101
- expandFixed ?: boolean ;
101
+ expandFixed ?: 'left' | 'right' | boolean ;
102
102
expandColumnWidth ?: number ;
103
103
expandedRowKeys ?: Key [ ] ;
104
104
defaultExpandedRowKeys ?: Key [ ] ;
You can’t perform that action at this time.
0 commit comments