star-horse-lowcode 3.1.11 → 3.1.13
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 +11 -0
- package/dist/assets/index.css +1 -1
- package/dist/components/comp/StarHorseDialog.vue.d.ts +31 -9
- package/dist/components/comp/StarHorseFormList.vue.d.ts +9 -0
- package/dist/components/comp/StarHorseFormTable.vue.d.ts +9 -0
- package/dist/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
- package/dist/components/comp/items/tableItem.vue.d.ts +22 -0
- package/dist/components/formcomp/utils/EditDataDialog.vue.d.ts +1 -1
- package/dist/components/formcomp/utils/FormulaEngine.d.ts +8 -85
- package/dist/components/system/PageConfig.vue.d.ts +1 -1
- package/dist/components/system/StarHorseQueryBuilder.vue.d.ts +2 -2
- package/dist/components/system/code-editor/types.d.ts +40 -0
- package/dist/components/system/code-editor/useEditorGroups.d.ts +50 -0
- package/dist/components/types/ItemPreps.d.ts +4 -0
- package/dist/index.es.js +6 -6
- package/dist/lang/en_US.d.ts +17 -0
- package/dist/lang/zh_CN.d.ts +17 -0
- package/dist/plugins/AblesPlugin.d.ts +1 -1
- package/dist/store/ButtonPermission.d.ts +2 -20
- package/dist/store/ConsumerView.d.ts +2 -16
- package/dist/store/CopyerOperation.d.ts +2 -22
- package/dist/store/DesignForm.d.ts +4 -1156
- package/dist/store/DesignPage.d.ts +2 -100
- package/dist/store/DynamicForm.d.ts +2 -36
- package/dist/store/FormDataCache.d.ts +2 -3258
- package/dist/store/GlobalConfig.d.ts +2 -10
- package/dist/store/SelfOperation.d.ts +2 -472
- package/dist/store/StoreManager.d.ts +30 -30
- package/dist/store/UserInfo.d.ts +2 -30
- package/dist/types/components/comp/StarHorseDialog.vue.d.ts +31 -9
- package/dist/types/components/comp/StarHorseFormList.vue.d.ts +9 -0
- package/dist/types/components/comp/StarHorseFormTable.vue.d.ts +9 -0
- package/dist/types/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
- package/dist/types/components/comp/items/tabPanelItem.vue.d.ts +10 -1
- package/dist/types/components/formcomp/utils/EditDataDialog.vue.d.ts +1 -1
- package/dist/types/components/formcomp/utils/FormulaEngine.d.ts +8 -85
- package/dist/types/components/system/PageConfig.vue.d.ts +1 -1
- package/dist/types/components/system/StarHorseCodeEditor.vue.d.ts +47 -1
- package/dist/types/components/system/StarHorseQueryBuilder.vue.d.ts +2 -2
- package/dist/types/components/system/code-editor/EditorPane.vue.d.ts +21 -0
- package/dist/types/components/system/code-editor/SplitView.vue.d.ts +35 -0
- package/dist/types/components/system/code-editor/types.d.ts +40 -0
- package/dist/types/components/system/code-editor/useEditorGroups.d.ts +50 -0
- package/dist/types/components/types/ItemPreps.d.ts +4 -0
- package/dist/types/index.d.ts +0 -1
- package/dist/types/lang/en_US.d.ts +17 -0
- package/dist/types/lang/zh_CN.d.ts +17 -0
- package/dist/types/plugins/AblesPlugin.d.ts +1 -1
- package/dist/types/store/ButtonPermission.d.ts +2 -20
- package/dist/types/store/ConsumerView.d.ts +2 -16
- package/dist/types/store/CopyerOperation.d.ts +2 -22
- package/dist/types/store/DesignForm.d.ts +4 -1156
- package/dist/types/store/DesignPage.d.ts +2 -100
- package/dist/types/store/DynamicForm.d.ts +2 -36
- package/dist/types/store/FormDataCache.d.ts +2 -3258
- package/dist/types/store/GlobalConfig.d.ts +2 -10
- package/dist/types/store/SelfOperation.d.ts +2 -472
- package/dist/types/store/StoreManager.d.ts +30 -30
- package/dist/types/store/UserInfo.d.ts +2 -30
- package/package.json +18 -17
- package/dist/api/pcas-code.json.d.ts +0 -185519
package/dist/lang/en_US.d.ts
CHANGED
|
@@ -252,6 +252,7 @@ declare const _default: {
|
|
|
252
252
|
"ui.edit": string;
|
|
253
253
|
"ui.deleteRow": string;
|
|
254
254
|
"ui.addData": string;
|
|
255
|
+
"ui.addSubData": string;
|
|
255
256
|
"ui.addRow": string;
|
|
256
257
|
"ui.pleaseInputKeyword": string;
|
|
257
258
|
"ui.expandAll": string;
|
|
@@ -939,6 +940,22 @@ declare const _default: {
|
|
|
939
940
|
"ide.ctx.run": string;
|
|
940
941
|
"ide.ctx.newFileIn": (name: string) => string;
|
|
941
942
|
"ide.ctx.newFolderIn": (name: string) => string;
|
|
943
|
+
"ide.ctx.splitRight": string;
|
|
944
|
+
"ide.ctx.splitDown": string;
|
|
945
|
+
"ide.ctx.splitUp": string;
|
|
946
|
+
"ide.ctx.splitLeft": string;
|
|
947
|
+
"ide.ctx.moveToNextGroup": string;
|
|
948
|
+
"ide.ctx.moveToPrevGroup": string;
|
|
949
|
+
"ide.ctx.closeGroup": string;
|
|
950
|
+
"ide.ctx.closeOthersInGroup": string;
|
|
951
|
+
"ide.split.dropLeft": string;
|
|
952
|
+
"ide.split.dropRight": string;
|
|
953
|
+
"ide.split.dropTop": string;
|
|
954
|
+
"ide.split.dropBottom": string;
|
|
955
|
+
"ide.split.dropCenter": string;
|
|
956
|
+
"ide.split.dropHint": string;
|
|
957
|
+
"ide.split.cannotCloseLast": string;
|
|
958
|
+
"ide.menu.view.splitEditor": string;
|
|
942
959
|
"ide.sidebar.explorer": string;
|
|
943
960
|
"ide.sidebar.search": string;
|
|
944
961
|
"ide.sidebar.settings": string;
|
package/dist/lang/zh_CN.d.ts
CHANGED
|
@@ -255,6 +255,7 @@ declare const _default: {
|
|
|
255
255
|
"ui.edit": string;
|
|
256
256
|
"ui.deleteRow": string;
|
|
257
257
|
"ui.addData": string;
|
|
258
|
+
"ui.addSubData": string;
|
|
258
259
|
"ui.addRow": string;
|
|
259
260
|
"ui.pleaseInputKeyword": string;
|
|
260
261
|
"ui.expandAll": string;
|
|
@@ -940,6 +941,22 @@ declare const _default: {
|
|
|
940
941
|
"ide.ctx.run": string;
|
|
941
942
|
"ide.ctx.newFileIn": (name: string) => string;
|
|
942
943
|
"ide.ctx.newFolderIn": (name: string) => string;
|
|
944
|
+
"ide.ctx.splitRight": string;
|
|
945
|
+
"ide.ctx.splitDown": string;
|
|
946
|
+
"ide.ctx.splitUp": string;
|
|
947
|
+
"ide.ctx.splitLeft": string;
|
|
948
|
+
"ide.ctx.moveToNextGroup": string;
|
|
949
|
+
"ide.ctx.moveToPrevGroup": string;
|
|
950
|
+
"ide.ctx.closeGroup": string;
|
|
951
|
+
"ide.ctx.closeOthersInGroup": string;
|
|
952
|
+
"ide.split.dropLeft": string;
|
|
953
|
+
"ide.split.dropRight": string;
|
|
954
|
+
"ide.split.dropTop": string;
|
|
955
|
+
"ide.split.dropBottom": string;
|
|
956
|
+
"ide.split.dropCenter": string;
|
|
957
|
+
"ide.split.dropHint": string;
|
|
958
|
+
"ide.split.cannotCloseLast": string;
|
|
959
|
+
"ide.menu.view.splitEditor": string;
|
|
943
960
|
"ide.sidebar.explorer": string;
|
|
944
961
|
"ide.sidebar.search": string;
|
|
945
962
|
"ide.sidebar.settings": string;
|
|
@@ -2,7 +2,7 @@ import { RouteLocationNormalized } from 'vue-router';
|
|
|
2
2
|
/**
|
|
3
3
|
* 用户权限控制
|
|
4
4
|
*/
|
|
5
|
-
export declare const useButtonPermissionStore: import('pinia').
|
|
5
|
+
export declare const useButtonPermissionStore: import('pinia').SetupStoreDefinition<"buttonPermission", {
|
|
6
6
|
pageBtnPermisson: import('vue').Ref<any, any>;
|
|
7
7
|
currentPermission: import('vue').Ref<any, any>;
|
|
8
8
|
setPermissionUrl: (url: string) => void;
|
|
@@ -11,22 +11,4 @@ export declare const useButtonPermissionStore: import('pinia').StoreDefinition<"
|
|
|
11
11
|
addRoute: (route: RouteLocationNormalized) => Promise<any>;
|
|
12
12
|
removePermission: (menuId: string) => void;
|
|
13
13
|
cleanPermission: () => void;
|
|
14
|
-
}
|
|
15
|
-
pageBtnPermisson: import('vue').Ref<any, any>;
|
|
16
|
-
currentPermission: import('vue').Ref<any, any>;
|
|
17
|
-
setPermissionUrl: (url: string) => void;
|
|
18
|
-
addPermission: (menuId: string, data: any) => void;
|
|
19
|
-
addAllPermission: (data: any) => void;
|
|
20
|
-
addRoute: (route: RouteLocationNormalized) => Promise<any>;
|
|
21
|
-
removePermission: (menuId: string) => void;
|
|
22
|
-
cleanPermission: () => void;
|
|
23
|
-
}, never>, Pick<{
|
|
24
|
-
pageBtnPermisson: import('vue').Ref<any, any>;
|
|
25
|
-
currentPermission: import('vue').Ref<any, any>;
|
|
26
|
-
setPermissionUrl: (url: string) => void;
|
|
27
|
-
addPermission: (menuId: string, data: any) => void;
|
|
28
|
-
addAllPermission: (data: any) => void;
|
|
29
|
-
addRoute: (route: RouteLocationNormalized) => Promise<any>;
|
|
30
|
-
removePermission: (menuId: string) => void;
|
|
31
|
-
cleanPermission: () => void;
|
|
32
|
-
}, "setPermissionUrl" | "addPermission" | "addAllPermission" | "addRoute" | "removePermission" | "cleanPermission">>;
|
|
14
|
+
}>;
|
|
@@ -1,22 +1,8 @@
|
|
|
1
|
-
export declare const useConsumerViewStore: import('pinia').
|
|
1
|
+
export declare const useConsumerViewStore: import('pinia').SetupStoreDefinition<"consumerView", {
|
|
2
2
|
tableList: import('vue').Ref<any, any>;
|
|
3
3
|
dbConfigId: import('vue').Ref<string, string>;
|
|
4
4
|
addTableInfo: (tableName: string, data: object | Array<any>) => void;
|
|
5
5
|
setDbConfigId: (configId: string) => void;
|
|
6
6
|
getTableInfo: (tableName: string) => any;
|
|
7
7
|
clearAll: () => void;
|
|
8
|
-
}
|
|
9
|
-
tableList: import('vue').Ref<any, any>;
|
|
10
|
-
dbConfigId: import('vue').Ref<string, string>;
|
|
11
|
-
addTableInfo: (tableName: string, data: object | Array<any>) => void;
|
|
12
|
-
setDbConfigId: (configId: string) => void;
|
|
13
|
-
getTableInfo: (tableName: string) => any;
|
|
14
|
-
clearAll: () => void;
|
|
15
|
-
}, never>, Pick<{
|
|
16
|
-
tableList: import('vue').Ref<any, any>;
|
|
17
|
-
dbConfigId: import('vue').Ref<string, string>;
|
|
18
|
-
addTableInfo: (tableName: string, data: object | Array<any>) => void;
|
|
19
|
-
setDbConfigId: (configId: string) => void;
|
|
20
|
-
getTableInfo: (tableName: string) => any;
|
|
21
|
-
clearAll: () => void;
|
|
22
|
-
}, "clearAll" | "addTableInfo" | "setDbConfigId" | "getTableInfo">>;
|
|
8
|
+
}>;
|
|
@@ -2,7 +2,7 @@ import { ModuleEnums } from '../components/enums/ModuleEnums';
|
|
|
2
2
|
/**
|
|
3
3
|
* 用户自定义方法处理逻辑
|
|
4
4
|
*/
|
|
5
|
-
export declare const useCopyerOperationStore: import('pinia').
|
|
5
|
+
export declare const useCopyerOperationStore: import('pinia').SetupStoreDefinition<"copyerOperation", {
|
|
6
6
|
action: import('vue').Ref<string, string>;
|
|
7
7
|
parentContainer: import('vue').Ref<any, any>;
|
|
8
8
|
copyerData: import('vue').Ref<any, any>;
|
|
@@ -12,24 +12,4 @@ export declare const useCopyerOperationStore: import('pinia').StoreDefinition<"c
|
|
|
12
12
|
setParentContainer: (container: any) => void;
|
|
13
13
|
setCopyerData: (data: any) => void;
|
|
14
14
|
clearAll: () => void;
|
|
15
|
-
}
|
|
16
|
-
action: import('vue').Ref<string, string>;
|
|
17
|
-
parentContainer: import('vue').Ref<any, any>;
|
|
18
|
-
copyerData: import('vue').Ref<any, any>;
|
|
19
|
-
keyboardOperation: (act: string, m: ModuleEnums, container: any, data: any) => void;
|
|
20
|
-
operation: (act: string, container: any, data: any) => void;
|
|
21
|
-
setAction: (act: string) => void;
|
|
22
|
-
setParentContainer: (container: any) => void;
|
|
23
|
-
setCopyerData: (data: any) => void;
|
|
24
|
-
clearAll: () => void;
|
|
25
|
-
}, never>, Pick<{
|
|
26
|
-
action: import('vue').Ref<string, string>;
|
|
27
|
-
parentContainer: import('vue').Ref<any, any>;
|
|
28
|
-
copyerData: import('vue').Ref<any, any>;
|
|
29
|
-
keyboardOperation: (act: string, m: ModuleEnums, container: any, data: any) => void;
|
|
30
|
-
operation: (act: string, container: any, data: any) => void;
|
|
31
|
-
setAction: (act: string) => void;
|
|
32
|
-
setParentContainer: (container: any) => void;
|
|
33
|
-
setCopyerData: (data: any) => void;
|
|
34
|
-
clearAll: () => void;
|
|
35
|
-
}, "clearAll" | "operation" | "keyboardOperation" | "setAction" | "setParentContainer" | "setCopyerData">>;
|
|
15
|
+
}>;
|