File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " @form-example/app-mobile" ,
3- "version" : " 0.0.7 " ,
3+ "version" : " 0.0.8 " ,
44 "private" : true ,
55 "type" : " module" ,
66 "scripts" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @form-example/app-pc" ,
3- "version" : " 0.0.7 " ,
3+ "version" : " 0.0.8 " ,
44 "private" : true ,
55 "type" : " module" ,
66 "scripts" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @coding-form/root" ,
3- "version" : " 0.0.7 " ,
3+ "version" : " 0.0.8 " ,
44 "description" : " " ,
55 "main" : " index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @coding-form/form-engine" ,
3- "version" : " 0.0.7 " ,
3+ "version" : " 0.0.8 " ,
44 "description" : " form-engine components" ,
55 "keywords" : [
66 " coding-form" ,
Original file line number Diff line number Diff line change 11import { FieldAttribute } from "@/types/view" ;
2+ import { DataType } from "@/types/types" ;
23
34/**
45 * 表单组件属性
@@ -22,6 +23,12 @@ export interface FormItemProps{
2223 onBlur ?: ( value : string ) => void ;
2324 /** 输入提示信息 **/
2425 placeholder ?:string ;
26+ /** 提醒提示 **/
27+ tooltip ?: string ;
28+ /** 帮助提示 **/
29+ help ?: string ;
30+ /** 数据类型 **/
31+ dataType : DataType ;
2532 /** 是否只读 **/
2633 readOnly ?:boolean ;
2734 /** 校验规则,Antd的规则 **/
You can’t perform that action at this time.
0 commit comments