@hzab/form-render-mobile 0.0.16 → 0.0.18
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/README.md +2 -0
- package/lib/index.js +1 -42489
- package/package.json +11 -2
- package/src/common/global-props-context.ts +11 -0
- package/src/common/schemaHandler.js +4 -25
- package/src/components/Uploader/common/ossUpload.js +27 -7
- package/src/components/Uploader/index.jsx +5 -0
- package/src/components/Uploader/uploader.jsx +6 -3
- package/src/index.tsx +28 -19
package/README.md
CHANGED
|
@@ -49,6 +49,8 @@ export default () => {
|
|
|
49
49
|
| hasSubmit | boolean | 否 | - | 是否有提交按钮 | |
|
|
50
50
|
| onSubmit | Function | 否 | - | 提交事件 (values): void | |
|
|
51
51
|
| init | Function | 否 | - | 组件初始化 (form): void | |
|
|
52
|
+
| axios | Object | 否 | - | axios | |
|
|
53
|
+
| axiosConf | Object | 否 | - | axios config | |
|
|
52
54
|
| footerRender | Function | 否 | - | 底部渲染插槽 (): ReactElement | |
|
|
53
55
|
|
|
54
56
|
# 组件开发流程
|