UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

21 lines (20 loc) 686 B
import React from 'react'; import type { TransferProps } from '../../types'; export interface TransferPickerProps extends Omit<TransferProps, 'itemRender'> { size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'full'; /** * 边框模式,全边框,还是半边框,或者没边框。 */ borderMode?: 'full' | 'half' | 'none'; onFocus?: () => void; onBlur?: () => void; } export declare class TransferPicker extends React.Component<TransferPickerProps> { optionModified: boolean; handleConfirm(value: any): void; onFoucs(): void; onBlur(): void; render(): JSX.Element; } declare const _default: typeof TransferPicker; export default _default;