@coding-form/form-engine 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
1
  import { FieldAttribute } from "./view";
2
+ import { DataType } from "./types";
2
3
  /**
3
4
  * 表单组件属性
4
5
  */
@@ -21,6 +22,12 @@ export interface FormItemProps {
21
22
  onBlur?: (value: string) => void;
22
23
  /** 输入提示信息 **/
23
24
  placeholder?: string;
25
+ /** 提醒提示 **/
26
+ tooltip?: string;
27
+ /** 帮助提示 **/
28
+ help?: string;
29
+ /** 数据类型 **/
30
+ dataType: DataType;
24
31
  /** 是否只读 **/
25
32
  readOnly?: boolean;
26
33
  /** 校验规则,Antd的规则 **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coding-form/form-engine",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "form-engine components",
5
5
  "keywords": [
6
6
  "coding-form",