25 lines
777 B
TypeScript
25 lines
777 B
TypeScript
import type { SizeType } from 'antd/lib/config-provider/SizeContext';
|
|
import React from 'react';
|
|
export type FieldLabelProps = {
|
|
label?: React.ReactNode;
|
|
value?: any;
|
|
disabled?: boolean;
|
|
onClear?: () => void;
|
|
size?: SizeType;
|
|
ellipsis?: boolean;
|
|
placeholder?: React.ReactNode;
|
|
className?: string;
|
|
formatter?: (value: any) => React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
bordered?: boolean;
|
|
allowClear?: boolean;
|
|
downIcon?: React.ReactNode | false;
|
|
onClick?: () => void;
|
|
valueMaxLength?: number;
|
|
/**
|
|
* 点击标签的事件,用来唤醒 down menu 状态
|
|
*/
|
|
onLabelClick?: () => void;
|
|
};
|
|
export declare const FieldLabel: React.ForwardRefExoticComponent<FieldLabelProps & React.RefAttributes<any>>;
|