@ruiyun/react-schema-form-web
v2.0.1
Published
React Schema Form Web 通用版
Downloads
11
Readme
react-schema-form-web
ts build 有问题,主要是本地软链链接依赖的依赖时导致到打包报错。参见https://github.com/microsoft/TypeScript/issues/42873
目前解决办法如下
- tsconfig增加
"baseUrl": ".",
"paths": {
"@ruiyun/react-form": ["node_modules/@ruiyun/react-form"],
}
- 将@ruiyun/react-form添加为开发依赖
Usage
- 开始有布局,所以有了布局相关的参数配置。
- field上开始有label的配置(有了ui才会有展示label的需求)。
- 开始对表单组件分类,CustomComponent对应上一层的render
- 新增能从url加载远程组件的类型RemoteComponent。
- renderButtons也开始细分出renderSubmitButton和renderResetButton,并增加了showSubmit和showReset这种细粒度的控制。
- 按钮可以支持渲染到指定的容器下。
// TODO: DEMONSTRATE API