@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
28 lines (27 loc) • 535 B
TypeScript
import type { FC } from 'react';
import type { Rule } from 'antd/lib/form';
import './index.less';
interface FieldNameAliasProps {
/**
* 控件编码
*/
name: string;
/**
* 控件左侧标签
*/
label: string;
/**
* 控件规则
*/
rules?: Rule[];
/**
* 提示语
*/
placeholder?: string;
/**
* 当前控件配置的组件属性集合
*/
selectedComp: any;
}
declare const FieldNameAlias: FC<FieldNameAliasProps>;
export default FieldNameAlias;