star-horse-lowcode 3.1.12 → 3.1.14
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/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/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 +3 -1155
- 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 +24 -24
- 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/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/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 +3 -1155
- 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 +24 -24
- package/dist/types/store/UserInfo.d.ts +2 -30
- package/package.json +15 -14
- package/dist/api/pcas-code.json.d.ts +0 -185519
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DynamicNode } from '../components/types/DynamicNode';
|
|
2
|
-
export declare const useDesignPageStore: import('pinia').
|
|
2
|
+
export declare const useDesignPageStore: import('pinia').SetupStoreDefinition<"designPage", {
|
|
3
3
|
nodeList: import('vue').Ref<{
|
|
4
4
|
id: string;
|
|
5
5
|
label: string;
|
|
@@ -48,102 +48,4 @@ export declare const useDesignPageStore: import('pinia').StoreDefinition<"design
|
|
|
48
48
|
setIsEdit: (edit: boolean) => void;
|
|
49
49
|
maxZIndex: () => any;
|
|
50
50
|
init: () => void;
|
|
51
|
-
}
|
|
52
|
-
nodeList: import('vue').Ref<{
|
|
53
|
-
id: string;
|
|
54
|
-
label: string;
|
|
55
|
-
name: string;
|
|
56
|
-
icon?: string;
|
|
57
|
-
type?: string;
|
|
58
|
-
preps?: Record<string, any>;
|
|
59
|
-
styles?: Record<string, any>;
|
|
60
|
-
children?: /*elided*/ any[];
|
|
61
|
-
}[], DynamicNode[] | {
|
|
62
|
-
id: string;
|
|
63
|
-
label: string;
|
|
64
|
-
name: string;
|
|
65
|
-
icon?: string;
|
|
66
|
-
type?: string;
|
|
67
|
-
preps?: Record<string, any>;
|
|
68
|
-
styles?: Record<string, any>;
|
|
69
|
-
children?: /*elided*/ any[];
|
|
70
|
-
}[]>;
|
|
71
|
-
currentNode: import('vue').Ref<{
|
|
72
|
-
id: string;
|
|
73
|
-
label: string;
|
|
74
|
-
name: string;
|
|
75
|
-
icon?: string;
|
|
76
|
-
type?: string;
|
|
77
|
-
preps?: Record<string, any>;
|
|
78
|
-
styles?: Record<string, any>;
|
|
79
|
-
children?: /*elided*/ any[];
|
|
80
|
-
}, DynamicNode | {
|
|
81
|
-
id: string;
|
|
82
|
-
label: string;
|
|
83
|
-
name: string;
|
|
84
|
-
icon?: string;
|
|
85
|
-
type?: string;
|
|
86
|
-
preps?: Record<string, any>;
|
|
87
|
-
styles?: Record<string, any>;
|
|
88
|
-
children?: /*elided*/ any[];
|
|
89
|
-
}>;
|
|
90
|
-
isEdit: import('vue').Ref<boolean, boolean>;
|
|
91
|
-
defaultZindex: import('vue').Ref<number, number>;
|
|
92
|
-
setNodeList: (list: Array<DynamicNode>) => void;
|
|
93
|
-
removeNode: (id: string) => void;
|
|
94
|
-
addNode: (node: DynamicNode) => void;
|
|
95
|
-
selectNode: (node: DynamicNode) => void;
|
|
96
|
-
clearAll: () => void;
|
|
97
|
-
setIsEdit: (edit: boolean) => void;
|
|
98
|
-
maxZIndex: () => any;
|
|
99
|
-
init: () => void;
|
|
100
|
-
}, never>, Pick<{
|
|
101
|
-
nodeList: import('vue').Ref<{
|
|
102
|
-
id: string;
|
|
103
|
-
label: string;
|
|
104
|
-
name: string;
|
|
105
|
-
icon?: string;
|
|
106
|
-
type?: string;
|
|
107
|
-
preps?: Record<string, any>;
|
|
108
|
-
styles?: Record<string, any>;
|
|
109
|
-
children?: /*elided*/ any[];
|
|
110
|
-
}[], DynamicNode[] | {
|
|
111
|
-
id: string;
|
|
112
|
-
label: string;
|
|
113
|
-
name: string;
|
|
114
|
-
icon?: string;
|
|
115
|
-
type?: string;
|
|
116
|
-
preps?: Record<string, any>;
|
|
117
|
-
styles?: Record<string, any>;
|
|
118
|
-
children?: /*elided*/ any[];
|
|
119
|
-
}[]>;
|
|
120
|
-
currentNode: import('vue').Ref<{
|
|
121
|
-
id: string;
|
|
122
|
-
label: string;
|
|
123
|
-
name: string;
|
|
124
|
-
icon?: string;
|
|
125
|
-
type?: string;
|
|
126
|
-
preps?: Record<string, any>;
|
|
127
|
-
styles?: Record<string, any>;
|
|
128
|
-
children?: /*elided*/ any[];
|
|
129
|
-
}, DynamicNode | {
|
|
130
|
-
id: string;
|
|
131
|
-
label: string;
|
|
132
|
-
name: string;
|
|
133
|
-
icon?: string;
|
|
134
|
-
type?: string;
|
|
135
|
-
preps?: Record<string, any>;
|
|
136
|
-
styles?: Record<string, any>;
|
|
137
|
-
children?: /*elided*/ any[];
|
|
138
|
-
}>;
|
|
139
|
-
isEdit: import('vue').Ref<boolean, boolean>;
|
|
140
|
-
defaultZindex: import('vue').Ref<number, number>;
|
|
141
|
-
setNodeList: (list: Array<DynamicNode>) => void;
|
|
142
|
-
removeNode: (id: string) => void;
|
|
143
|
-
addNode: (node: DynamicNode) => void;
|
|
144
|
-
selectNode: (node: DynamicNode) => void;
|
|
145
|
-
clearAll: () => void;
|
|
146
|
-
setIsEdit: (edit: boolean) => void;
|
|
147
|
-
maxZIndex: () => any;
|
|
148
|
-
init: () => void;
|
|
149
|
-
}, "init" | "clearAll" | "setNodeList" | "removeNode" | "addNode" | "selectNode" | "setIsEdit" | "maxZIndex">>;
|
|
51
|
+
}>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const useDynamicFormStore: import('pinia').
|
|
1
|
+
export declare const useDynamicFormStore: import('pinia').SetupStoreDefinition<"dynamicForm", {
|
|
2
2
|
dataForm: any;
|
|
3
3
|
selectData: any;
|
|
4
4
|
dataId: any;
|
|
@@ -15,38 +15,4 @@ export declare const useDynamicFormStore: import('pinia').StoreDefinition<"dynam
|
|
|
15
15
|
getFieldValue: (fieldName: string) => any;
|
|
16
16
|
getBatchFieldValue: (batchName: string, fieldName: string, rowIndex?: number) => any;
|
|
17
17
|
clearAll: () => void;
|
|
18
|
-
}
|
|
19
|
-
dataForm: any;
|
|
20
|
-
selectData: any;
|
|
21
|
-
dataId: any;
|
|
22
|
-
setSelectData: (data: object | Array<object>) => void;
|
|
23
|
-
setDataId: (id: number | string) => void;
|
|
24
|
-
setFormData: (data: object) => void;
|
|
25
|
-
addBatchData: (batchName: string, data: any) => void;
|
|
26
|
-
delField: (fieldName: string) => void;
|
|
27
|
-
delBatchField: (batchName: string, fieldName: string, rowIndex?: number) => void;
|
|
28
|
-
addOrUpdateField: (fieldName: string, value: any) => void;
|
|
29
|
-
batchAddOrUpdateField: (batchName: string, fieldName: string, value: any, rowIndex?: number) => void;
|
|
30
|
-
renameField: (sourceField: string, distField: string, newValue?: any) => void;
|
|
31
|
-
batchRenameField: (batchName: string, sourceField: string, distField: string, newValue?: any, rowIndex?: number) => void;
|
|
32
|
-
getFieldValue: (fieldName: string) => any;
|
|
33
|
-
getBatchFieldValue: (batchName: string, fieldName: string, rowIndex?: number) => any;
|
|
34
|
-
clearAll: () => void;
|
|
35
|
-
}, "dataForm" | "selectData" | "dataId">, Pick<{
|
|
36
|
-
dataForm: any;
|
|
37
|
-
selectData: any;
|
|
38
|
-
dataId: any;
|
|
39
|
-
setSelectData: (data: object | Array<object>) => void;
|
|
40
|
-
setDataId: (id: number | string) => void;
|
|
41
|
-
setFormData: (data: object) => void;
|
|
42
|
-
addBatchData: (batchName: string, data: any) => void;
|
|
43
|
-
delField: (fieldName: string) => void;
|
|
44
|
-
delBatchField: (batchName: string, fieldName: string, rowIndex?: number) => void;
|
|
45
|
-
addOrUpdateField: (fieldName: string, value: any) => void;
|
|
46
|
-
batchAddOrUpdateField: (batchName: string, fieldName: string, value: any, rowIndex?: number) => void;
|
|
47
|
-
renameField: (sourceField: string, distField: string, newValue?: any) => void;
|
|
48
|
-
batchRenameField: (batchName: string, sourceField: string, distField: string, newValue?: any, rowIndex?: number) => void;
|
|
49
|
-
getFieldValue: (fieldName: string) => any;
|
|
50
|
-
getBatchFieldValue: (batchName: string, fieldName: string, rowIndex?: number) => any;
|
|
51
|
-
clearAll: () => void;
|
|
52
|
-
}, "setFormData" | "clearAll" | "dataForm" | "selectData" | "dataId" | "setSelectData" | "setDataId" | "addBatchData" | "delField" | "delBatchField" | "addOrUpdateField" | "batchAddOrUpdateField" | "renameField" | "batchRenameField" | "getFieldValue" | "getBatchFieldValue">>;
|
|
18
|
+
}>;
|