Skip to content

Commit

Permalink
doc/changlog/test
Browse files Browse the repository at this point in the history
  • Loading branch information
FateRiddle committed Sep 8, 2020
1 parent db9c0b2 commit 4190a66
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

- [!] 避免了有些情况表单内部输入造成的反复渲染。这个渲染机制是为了监听外部人为的改动数据,现在内部输入不再会触发
- [!] 避免了外部硬注入非 string 类的数据造成 input 的校验报 error
- [!] 避免了外部硬注入非 string 类的数据造成 input 的 maxLength 的展示错误
- [!] 修复了`ui:hidden`为函数表达式时,校验无法准确判断的问题
- [!] 修复了单选组件 `default: null` 时的报错

### 0.8.2

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
- 支持 Ant Design 和 Fusion Design 主流的视觉主题
- 使用 JSON Schema 标准协议描述表单配置,并搭配丰富类型且可扩展的组件
- 支持 1 排 N、横纵排、支持对象无限嵌套、自定义正则校验、自定义样式组件、列表拖拽等特性
- 已在阿里云、淘宝、天猫、飞猪、亚博科技、安全智能、新零售行业工作台、人工智能实验室、安全智能部门等多 BU 多场景使用,简单使用同时支持复杂场景使用
- 已在阿里云、淘宝、天猫、飞猪、亚博科技、安全智能、新零售行业工作台、人工智能实验室部门等多 BU 多场景使用,简单使用同时支持复杂场景使用
- 使用上有详细文档,维护上有专人支持

## 安装
Expand Down
2 changes: 1 addition & 1 deletion docs/demo/FR2/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Demo = ({ schema = {} }) => {
const [showValid, setShowValid] = useState(false);

// useEffect(() => {
// setTimeout(() => setFormData({ a: 'sdfs' }), 1500);
// setTimeout(() => setFormData({ crowd: { upfIdList: 'sdfsdf' } }), 1500);
// }, []);

const onValidate = _valid => {
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/advanced/function.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ group:

1. 支持的属性中比较常用的是,`ui:options`,`ui:disabled`,`ui:hidden`,`enum``array` 中的 `hideDelete`。当然 2 中没有提及的属性都支持。
2. 注意,部分属性不支持函数表达式,主要原因是这些属性关系到表单的值的初始化(所以如果再对表单的值依赖会有问题)。这些属性是`type`,`items`,`properties`,`required`,`default``ui:widget`。幸运的是这些属性本来也很少会有联动的需求。请勿赋值这些字段函数表达式,否则轻则报错,重则静默出错。
3. 函数表达式接收一下三个参数
3. 函数表达式接收以下 2 个参数

| 名称 | 说明 |
| --------- | :-------------------------------------------------------------------------------: |
Expand Down

0 comments on commit 4190a66

Please sign in to comment.