Fisher
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
components/transfer/index.tsx
|
|
@ -79,7 +79,9 @@ export interface TransferProps<RecordType> { |
|
|
|
showSearch?: boolean; |
|
|
|
filterOption?: (inputValue: string, item: RecordType) => boolean; |
|
|
|
locale?: Partial<TransferLocale>; |
|
|
|
footer?: (props: TransferListProps<RecordType>) => React.ReactNode; |
|
|
|
footer?: (props: TransferListProps<RecordType>, info?: { |
|
|
|
direction: TransferDirection; |
|
|
|
}) => React.ReactNode; |
|
|
|
rowKey?: (record: RecordType) => string; |
|
|
|
onSearch?: (direction: TransferDirection, value: string) => void; |
|
|
|
onScroll?: (direction: TransferDirection, e: React.SyntheticEvent<HTMLUListElement>) => void; |
|
|
|