fmui-base 2.2.72 → 2.2.73

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 CHANGED
@@ -3,6 +3,7 @@
3
3
  ---npm publish
4
4
 
5
5
  ## 更新日志
6
+ - 2.2.73: 非空字段隐藏后校验不通过问题修复
6
7
  - 2.2.72: 移动端支持单选、多选、下单单选和下拉多选设置空置进行联动
7
8
  - 2.2.71: 单选多选可输入关联不生效问题修复
8
9
  - 2.2.70: 移动端表单组件change事件itemParam丢失问题
package/lib/form/form.js CHANGED
@@ -364,6 +364,7 @@ var PageHome = function (_React$Component) {
364
364
  if (fieldControll == 'hidden') {
365
365
  //隐藏
366
366
  itemParam.isHidden = true;
367
+ required = false;
367
368
  } else if (fieldControll == 'show') {
368
369
  //只读
369
370
  readOnly = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.2.72",
3
+ "version": "2.2.73",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",