@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
23 lines (22 loc) • 576 B
TypeScript
import type { FC } from 'react';
import type { SizeType } from 'antd/lib/config-provider/SizeContext';
import './index.less';
interface SelectAttrOptionsItem {
label: string;
value: string;
}
interface IProps {
name: string;
label: string;
placeholder?: string;
options: SelectAttrOptionsItem[];
defaultValue?: string;
dependencies?: string[];
dependenciesValues?: Record<string, any>;
size?: SizeType;
DSLCore?: any;
rules?: any;
tooltipText?: string;
}
declare const UniqueFileds: FC<IProps>;
export default UniqueFileds;