@hzab/form-render-mobile 0.5.1 → 0.5.3

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # @hzab/form-render-mobile@0.5.3
2
+
3
+ - fix: FormItem colon style
4
+
5
+ # @hzab/form-render-mobile@0.5.2
6
+
7
+ - refactor: FormItem
8
+
1
9
  # @hzab/form-render-mobile@0.5.1
2
10
 
3
11
  - fix: labelCol 兼容在不同布局的情况
package/README.md CHANGED
@@ -43,21 +43,22 @@ export default () => {
43
43
  ### InfoPanel Attributes
44
44
 
45
45
  | 参数 | 类型 | 必填 | 默认值 | 说明 |
46
- | ------------- | --------------------- | ---- | ------ | ----------------------------- | --- |
47
- | schema | Object | 是 | - | 数据信息的 schema | |
48
- | className | string | 否 | - | 元素类名 | |
49
- | initialValues | Object | 否 | - | 表单初始值 | |
50
- | schemaScope | Object | 否 | - | formily scope 自定义数据 | |
51
- | components | SchemaReactComponents | 否 | - | formily 自定义组件 | |
52
- | readOnly | boolean | 否 | - | 是否只读 | |
53
- | disabled | boolean | 否 | - | 是否禁用 | |
54
- | formOptions | Object | 否 | - | createForm 配置项 | |
55
- | hasSubmit | boolean | 否 | - | 是否有提交按钮 | |
56
- | onSubmit | Function | 否 | - | 提交事件 (values): void | |
57
- | init | Function | 否 | - | 组件初始化 (form): void | |
58
- | axios | Object | 否 | - | axios | |
59
- | axiosConf | Object | 否 | - | axios config | |
60
- | footerRender | Function | 否 | - | 底部渲染插槽 (): ReactElement | |
46
+ | ------------- | --------------------- | ---- | ------ | ----------------------------- |
47
+ | schema | Object | 是 | - | 数据信息的 schema |
48
+ | className | string | 否 | - | 元素类名 |
49
+ | colon | string/false | 否 | | 设置 label 后面的符号 |
50
+ | initialValues | Object | 否 | - | 表单初始值 |
51
+ | schemaScope | Object | 否 | - | formily scope 自定义数据 |
52
+ | components | SchemaReactComponents | 否 | - | formily 自定义组件 |
53
+ | readOnly | boolean | 否 | - | 是否只读 |
54
+ | disabled | boolean | 否 | - | 是否禁用 |
55
+ | formOptions | Object | 否 | - | createForm 配置项 |
56
+ | hasSubmit | boolean | 否 | - | 是否有提交按钮 |
57
+ | onSubmit | Function | 否 | - | 提交事件 (values): void |
58
+ | init | Function | 否 | - | 组件初始化 (form): void |
59
+ | axios | Object | 否 | - | axios |
60
+ | axiosConf | Object | 否 | - | axios config |
61
+ | footerRender | Function | 否 | - | 底部渲染插槽 (): ReactElement |
61
62
 
62
63
  # 组件开发流程
63
64