@a2simcode/ui 0.0.153 → 0.0.154
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.
|
@@ -6,7 +6,12 @@ export interface BaseSchemaConfig {
|
|
|
6
6
|
/**
|
|
7
7
|
* @zh 获取组件类型
|
|
8
8
|
*/
|
|
9
|
-
getCompType?:
|
|
9
|
+
getCompType?: (data: {
|
|
10
|
+
config?: Record<string, any>;
|
|
11
|
+
formData: Record<string, any>;
|
|
12
|
+
getTableData?: () => Record<string, any>[];
|
|
13
|
+
row?: Record<string, any>;
|
|
14
|
+
}) => string;
|
|
10
15
|
/**
|
|
11
16
|
* @zh 组件配置
|
|
12
17
|
*/
|