hlyc-web-pack 3.0.9 → 3.1.2
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/lib/LayoutTableModal/index.d.ts +11 -0
- package/lib/index.js +4 -4
- package/package.json +4 -1
|
@@ -52,6 +52,17 @@ export interface LayoutTableModalPropType {
|
|
|
52
52
|
manualParameterChange?: (params: AnyObjectType) => AnyObjectType;
|
|
53
53
|
/** 静态表格数据 */
|
|
54
54
|
data?: AnyObjectType[];
|
|
55
|
+
/** 已选列表 */
|
|
56
|
+
openSelected?: {
|
|
57
|
+
/** 是否打开 */
|
|
58
|
+
visible: boolean;
|
|
59
|
+
/** 默认已选中 */
|
|
60
|
+
defaultValues?: AnyObjectType[];
|
|
61
|
+
/** 显示的字段名 */
|
|
62
|
+
fileName: string;
|
|
63
|
+
/** 内容区域高度 */
|
|
64
|
+
height?: number;
|
|
65
|
+
};
|
|
55
66
|
/** 排列方式布局Row */
|
|
56
67
|
rowProps?: RowProps;
|
|
57
68
|
/** 主内容Col */
|