@para-ui/core 2.2.45 → 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.
- package/DragVerify/index.d.ts +36 -0
- package/DragVerify/index.js +15 -0
- package/DragVerify/lang/en_US.d.ts +5 -0
- package/DragVerify/lang/index.d.ts +11 -0
- package/DragVerify/lang/zh_CN.d.ts +5 -0
- package/DynamicMultiBox/index.js +2 -2
- package/DynamicMultiBox/interface.d.ts +4 -4
- package/README.md +11 -0
- package/Selector/index.js +1 -1
- package/Selector/interface.d.ts +4 -0
- package/SelectorPicker/index.js +1 -1
- package/cdn/DragVerify/index.js +28 -0
- package/cdn/DynamicMultiBox/index.js +2 -2
- package/cdn/Selector/index.js +1 -1
- package/cdn/SelectorPicker/index.js +1 -1
- package/index.d.ts +2 -0
- package/index.js +16 -16
- package/package.json +1 -1
- package/style.css +2 -1
|
@@ -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
|
|
82
|
+
* @desc 新增
|
|
83
83
|
* @param valueList 新增前valueList值集合
|
|
84
|
-
* @param
|
|
84
|
+
* @param errors 新增后错误集合
|
|
85
85
|
* */
|
|
86
86
|
onAdd?: (valueList: IValueList[], errors: IErrors[]) => void;
|
|
87
87
|
/**
|
package/README.md
CHANGED