star-horse-lowcode 3.1.1 → 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/README.md +5 -0
- package/dist/api/form_utils.d.ts +6 -2
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +6 -6
- package/dist/lang/en_US.d.ts +1 -0
- package/dist/lang/zh_CN.d.ts +1 -0
- package/dist/router/index.d.ts +1 -1
- package/package.json +11 -11
- package/dist/components/comp/items/groupItem.vue.d.ts +0 -23
package/README.md
CHANGED
package/dist/api/form_utils.d.ts
CHANGED
|
@@ -52,14 +52,18 @@ export declare function analysisAppComps(dataList: any): {
|
|
|
52
52
|
* @param pageInfo
|
|
53
53
|
*/
|
|
54
54
|
export declare function convertPcCompToFitPlatformComps(pageInfo: PageFieldInfo): PageFieldInfo | {
|
|
55
|
-
fieldList:
|
|
55
|
+
fieldList: {
|
|
56
|
+
appList: any[];
|
|
57
|
+
}[];
|
|
56
58
|
};
|
|
57
59
|
/**
|
|
58
60
|
* 将pc模型转为app模型
|
|
59
61
|
* @param pageInfo
|
|
60
62
|
*/
|
|
61
63
|
export declare function convertCompToAppComps(pageInfo: PageFieldInfo): {
|
|
62
|
-
fieldList:
|
|
64
|
+
fieldList: {
|
|
65
|
+
appList: any[];
|
|
66
|
+
}[];
|
|
63
67
|
};
|
|
64
68
|
/**
|
|
65
69
|
* 解析动态表单中的子节点数据是否需要合并到父节点中
|