File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,10 @@ export const tableProps = () => {
126126 default : undefined ,
127127 } ,
128128 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+ } ,
130133 expandColumnWidth : {
131134 type : Number as PropType < TableProps [ 'expandColumnWidth' ] > ,
132135 default : undefined ,
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export interface TableProps<RecordType = DefaultRecordType> {
9898 direction ?: 'ltr' | 'rtl' ;
9999
100100 // Expandable
101- expandFixed ?: boolean ;
101+ expandFixed ?: 'left' | 'right' | boolean ;
102102 expandColumnWidth ?: number ;
103103 expandedRowKeys ?: Key [ ] ;
104104 defaultExpandedRowKeys ?: Key [ ] ;
You can’t perform that action at this time.
0 commit comments