@para-ui/core 2.2.46 → 2.2.47

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.
@@ -17,7 +17,7 @@ export type IConfig = {
17
17
  customRender?: (name: string, rowIndex: number, valueList: IValueList[], errors?: IErrors[]) => ReactNode;
18
18
  /** 禁用置灰组件*/
19
19
  isDisabled?: boolean | ((rowIndex: number, name: string, valueList?: IValueList) => boolean);
20
- /** 固定字段, 不显示在筛选器中,*/
20
+ /** 固定字段,不需要显示在筛选器中的需要设置为true, 若不设置无法显示表单*/
21
21
  isFixed?: boolean;
22
22
  /** 用于switch*/
23
23
  text?: ReactNode | ((rowIndex: number, name: string, valueList: IValueList[]) => ReactNode);
@@ -59,7 +59,7 @@ export interface IFilterParams {
59
59
  checkedVal?: string[];
60
60
  /** 更新后的valueList*/
61
61
  valueList?: IValueList[];
62
- /** 更新后的错误寄*/
62
+ /** 更新后的错误信息*/
63
63
  errors?: IErrors[];
64
64
  }
65
65
  /** 主体接口定义*/
@@ -79,9 +79,9 @@ export interface IMultiValueProps {
79
79
  * */
80
80
  onChange?: (valueList: IValueList[], currentItem?: ICurrentItem) => void;
81
81
  /**
82
- * @desc 新增, 如需要对新增的该条数据的value值或者其他特殊处理
82
+ * @desc 新增
83
83
  * @param valueList 新增前valueList值集合
84
- * @param addItem 新增项
84
+ * @param errors 新增后错误集合
85
85
  * */
86
86
  onAdd?: (valueList: IValueList[], errors: IErrors[]) => void;
87
87
  /**
package/README.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 版本: 2.2.47
2
+
3
+ para-ui/core@2.2.47 发布
4
+ 【动态多值框-DynamicMultiBox】增加说明文档,修复筛选器不跟随滚动问题
5
+
1
6
  ## 版本: 2.2.46
2
7
 
3
8
  para-ui/core@2.2.46 发布