star-horse-lowcode 2.7.25 → 2.7.26
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/dist/index.cjs.js +1 -1
- package/dist/index.es.js +41 -10
- package/dist/index.umd.js +1 -1
- package/dist/store/DesignForm.d.ts +4 -1
- package/package.json +1 -1
|
@@ -22,6 +22,7 @@ export declare const useDesignFormStore: import('pinia').StoreDefinition<"design
|
|
|
22
22
|
batchEditFieldVisible: import('vue').Ref<boolean, boolean>;
|
|
23
23
|
previewVisible: import('vue').Ref<boolean, boolean>;
|
|
24
24
|
shortKeyDisabled: import('vue').Ref<boolean, boolean>;
|
|
25
|
+
selectItemById: (itemId: string) => any;
|
|
25
26
|
setAllFormDataList: (list: any) => void;
|
|
26
27
|
setSelfFormDataList: (list: any) => void;
|
|
27
28
|
setFormDataList: (list: any) => void;
|
|
@@ -76,6 +77,7 @@ export declare const useDesignFormStore: import('pinia').StoreDefinition<"design
|
|
|
76
77
|
batchEditFieldVisible: import('vue').Ref<boolean, boolean>;
|
|
77
78
|
previewVisible: import('vue').Ref<boolean, boolean>;
|
|
78
79
|
shortKeyDisabled: import('vue').Ref<boolean, boolean>;
|
|
80
|
+
selectItemById: (itemId: string) => any;
|
|
79
81
|
setAllFormDataList: (list: any) => void;
|
|
80
82
|
setSelfFormDataList: (list: any) => void;
|
|
81
83
|
setFormDataList: (list: any) => void;
|
|
@@ -130,6 +132,7 @@ export declare const useDesignFormStore: import('pinia').StoreDefinition<"design
|
|
|
130
132
|
batchEditFieldVisible: import('vue').Ref<boolean, boolean>;
|
|
131
133
|
previewVisible: import('vue').Ref<boolean, boolean>;
|
|
132
134
|
shortKeyDisabled: import('vue').Ref<boolean, boolean>;
|
|
135
|
+
selectItemById: (itemId: string) => any;
|
|
133
136
|
setAllFormDataList: (list: any) => void;
|
|
134
137
|
setSelfFormDataList: (list: any) => void;
|
|
135
138
|
setFormDataList: (list: any) => void;
|
|
@@ -160,4 +163,4 @@ export declare const useDesignFormStore: import('pinia').StoreDefinition<"design
|
|
|
160
163
|
setPreviewVisible: (visible: boolean) => void;
|
|
161
164
|
setShortKeyDisabled: (disabled: boolean) => void;
|
|
162
165
|
getFieldDataIndex: () => number;
|
|
163
|
-
}, "clearAll" | "selectItem" | "setFormData" | "undo" | "setAllFormDataList" | "setSelfFormDataList" | "setFormDataList" | "setContainerList" | "addHistoryRecord" | "redo" | "setRefresh" | "setSubItemId" | "setFormInfo" | "setCompList" | "loadCompNames" | "addComp" | "setIsDragging" | "setIsEdit" | "setCurrentComp" | "setCurrentItemType" | "setParentCompType" | "setCurrentItemId" | "setCurrentFormPreps" | "setDraggingItem" | "removePromise" | "setComponentVisible" | "setBatchEditFieldVisible" | "setPreviewVisible" | "setShortKeyDisabled" | "getFieldDataIndex">>;
|
|
166
|
+
}, "clearAll" | "selectItem" | "setFormData" | "undo" | "selectItemById" | "setAllFormDataList" | "setSelfFormDataList" | "setFormDataList" | "setContainerList" | "addHistoryRecord" | "redo" | "setRefresh" | "setSubItemId" | "setFormInfo" | "setCompList" | "loadCompNames" | "addComp" | "setIsDragging" | "setIsEdit" | "setCurrentComp" | "setCurrentItemType" | "setParentCompType" | "setCurrentItemId" | "setCurrentFormPreps" | "setDraggingItem" | "removePromise" | "setComponentVisible" | "setBatchEditFieldVisible" | "setPreviewVisible" | "setShortKeyDisabled" | "getFieldDataIndex">>;
|