star-horse-lowcode 3.0.6 → 3.0.8
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/api/star_horse_utils.d.ts +3 -3
- package/dist/api/user_func.d.ts +3 -0
- package/dist/assets/index.css +1 -1
- package/dist/components/comp/ShTableListColumn.vue.d.ts +1 -1
- package/dist/components/comp/StarHorseDataView.vue.d.ts +1 -1
- package/dist/components/comp/StarHorseDraggable.vue.d.ts +2 -2
- package/dist/components/comp/StarHorseForm.vue.d.ts +2 -2
- package/dist/components/comp/StarHorseFormList.vue.d.ts +1 -1
- package/dist/components/comp/items/UTableColumn.vue.d.ts +1 -1
- package/dist/components/system/StarHorseEditor.vue.d.ts +1 -1
- package/dist/components/types/ApiUrls.d.ts +5 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +5 -5
- package/dist/store/DesignForm.d.ts +2 -2
- package/dist/store/DesignPage.d.ts +2 -2
- package/dist/store/SelfOperation.d.ts +6 -0
- package/dist/store/StoreManager.d.ts +5464 -0
- package/package.json +1 -1
|
@@ -575,7 +575,7 @@ export declare const useDesignFormStore: import('pinia').StoreDefinition<"design
|
|
|
575
575
|
getCurrentCompEditUserInfo: (compId: string) => UserInfo;
|
|
576
576
|
addCurrentCompEditUserInfo: (compId: string, userinfo: UserInfo) => void;
|
|
577
577
|
removeCurrentCompEditUserInfo: (compId: string) => void;
|
|
578
|
-
}, "formData" | "formInfo" | "compList" | "containerList" | "formDataList" | "selfFormDataList" | "allFormDataList" | "currentCompCategory" | "currentItemId" | "parentCompType" | "currentItemType" | "currentFormPreps" | "currentSubItemId" | "
|
|
578
|
+
}, "formData" | "isEdit" | "formInfo" | "compList" | "containerList" | "formDataList" | "selfFormDataList" | "allFormDataList" | "currentCompCategory" | "currentItemId" | "parentCompType" | "currentItemType" | "currentFormPreps" | "currentSubItemId" | "isDragging" | "currentComp" | "draggingItem" | "refresh" | "historyRecord" | "componentVisible" | "batchEditFieldVisible" | "previewVisible" | "shortKeyDisabled">, Pick<{
|
|
579
579
|
formData: import('vue').Ref<any, any>;
|
|
580
580
|
formInfo: import('vue').Ref<any, any>;
|
|
581
581
|
compList: import('vue').Ref<any[], any[]>;
|
|
@@ -1725,4 +1725,4 @@ export declare const useDesignFormStore: import('pinia').StoreDefinition<"design
|
|
|
1725
1725
|
getCurrentCompEditUserInfo: (compId: string) => UserInfo;
|
|
1726
1726
|
addCurrentCompEditUserInfo: (compId: string, userinfo: UserInfo) => void;
|
|
1727
1727
|
removeCurrentCompEditUserInfo: (compId: string) => void;
|
|
1728
|
-
}, "setFormData" | "clearAll" | "setParentContainer" | "setCurrentSubTabName" | "selectItemById" | "setAllFormDataList" | "setSelfFormDataList" | "setFormDataList" | "setContainerList" | "getParentContainer" | "getParentCompType" | "addSelfFormDataList" | "addContainerList" | "addFormDataList" | "addHistoryRecord" | "redo" | "undo" | "selectItem" | "setRefresh" | "setSubItemId" | "setFormInfo" | "setCompList" | "loadCompNames" | "addComp" | "setIsDragging" | "
|
|
1728
|
+
}, "setFormData" | "clearAll" | "setIsEdit" | "setParentContainer" | "setCurrentSubTabName" | "selectItemById" | "setAllFormDataList" | "setSelfFormDataList" | "setFormDataList" | "setContainerList" | "getParentContainer" | "getParentCompType" | "addSelfFormDataList" | "addContainerList" | "addFormDataList" | "addHistoryRecord" | "redo" | "undo" | "selectItem" | "setRefresh" | "setSubItemId" | "setFormInfo" | "setCompList" | "loadCompNames" | "addComp" | "setIsDragging" | "setCurrentComp" | "setCurrentItemType" | "setParentCompType" | "setCurrentItemId" | "setCurrentFormPreps" | "setDraggingItem" | "removePromise" | "setComponentVisible" | "setBatchEditFieldVisible" | "setPreviewVisible" | "setShortKeyDisabled" | "getFieldDataIndex" | "getCurrentCompEditUserInfo" | "addCurrentCompEditUserInfo" | "removeCurrentCompEditUserInfo">>;
|
|
@@ -48,7 +48,7 @@ export declare const useDesignPageStore: import('pinia').StoreDefinition<"design
|
|
|
48
48
|
setIsEdit: (edit: boolean) => void;
|
|
49
49
|
maxZIndex: () => any;
|
|
50
50
|
init: () => void;
|
|
51
|
-
}, "
|
|
51
|
+
}, "nodeList" | "currentNode" | "isEdit" | "defaultZindex">, Pick<{
|
|
52
52
|
nodeList: import('vue').Ref<{
|
|
53
53
|
id: string;
|
|
54
54
|
label: string;
|
|
@@ -146,4 +146,4 @@ export declare const useDesignPageStore: import('pinia').StoreDefinition<"design
|
|
|
146
146
|
setIsEdit: (edit: boolean) => void;
|
|
147
147
|
maxZIndex: () => any;
|
|
148
148
|
init: () => void;
|
|
149
|
-
}, "init" | "clearAll" | "
|
|
149
|
+
}, "init" | "clearAll" | "setNodeList" | "removeNode" | "addNode" | "selectNode" | "setIsEdit" | "maxZIndex">>;
|
|
@@ -37,6 +37,7 @@ export declare const useSelfOperationStore: import('pinia').StoreDefinition<"sel
|
|
|
37
37
|
basePrefix?: string;
|
|
38
38
|
permissionsUrl?: string;
|
|
39
39
|
appName?: string;
|
|
40
|
+
subPrefix?: string;
|
|
40
41
|
condition?: {
|
|
41
42
|
propertyName?: string;
|
|
42
43
|
operation?: string | null;
|
|
@@ -138,6 +139,7 @@ export declare const useSelfOperationStore: import('pinia').StoreDefinition<"sel
|
|
|
138
139
|
basePrefix?: string;
|
|
139
140
|
permissionsUrl?: string;
|
|
140
141
|
appName?: string;
|
|
142
|
+
subPrefix?: string;
|
|
141
143
|
condition?: {
|
|
142
144
|
propertyName?: string;
|
|
143
145
|
operation?: string | null;
|
|
@@ -252,6 +254,7 @@ export declare const useSelfOperationStore: import('pinia').StoreDefinition<"sel
|
|
|
252
254
|
basePrefix?: string;
|
|
253
255
|
permissionsUrl?: string;
|
|
254
256
|
appName?: string;
|
|
257
|
+
subPrefix?: string;
|
|
255
258
|
condition?: {
|
|
256
259
|
propertyName?: string;
|
|
257
260
|
operation?: string | null;
|
|
@@ -353,6 +356,7 @@ export declare const useSelfOperationStore: import('pinia').StoreDefinition<"sel
|
|
|
353
356
|
basePrefix?: string;
|
|
354
357
|
permissionsUrl?: string;
|
|
355
358
|
appName?: string;
|
|
359
|
+
subPrefix?: string;
|
|
356
360
|
condition?: {
|
|
357
361
|
propertyName?: string;
|
|
358
362
|
operation?: string | null;
|
|
@@ -467,6 +471,7 @@ export declare const useSelfOperationStore: import('pinia').StoreDefinition<"sel
|
|
|
467
471
|
basePrefix?: string;
|
|
468
472
|
permissionsUrl?: string;
|
|
469
473
|
appName?: string;
|
|
474
|
+
subPrefix?: string;
|
|
470
475
|
condition?: {
|
|
471
476
|
propertyName?: string;
|
|
472
477
|
operation?: string | null;
|
|
@@ -568,6 +573,7 @@ export declare const useSelfOperationStore: import('pinia').StoreDefinition<"sel
|
|
|
568
573
|
basePrefix?: string;
|
|
569
574
|
permissionsUrl?: string;
|
|
570
575
|
appName?: string;
|
|
576
|
+
subPrefix?: string;
|
|
571
577
|
condition?: {
|
|
572
578
|
propertyName?: string;
|
|
573
579
|
operation?: string | null;
|