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
|
@@ -756,7 +756,7 @@ export declare const getSelfOperationStore: () => import("pinia").Store<"selfOpe
|
|
|
756
756
|
getFormItem: (fieldName: string) => any;
|
|
757
757
|
init: (fieldList: import("..").PageFieldInfo, data: any, formRef: import("vue").Ref) => void;
|
|
758
758
|
clearAll: () => void;
|
|
759
|
-
}, "
|
|
759
|
+
}, "clearAll" | "setFormData" | "setFormInstance" | "setFormFields" | "addFormItem" | "addFormItemList" | "getFormItem" | "init">>;
|
|
760
760
|
/**
|
|
761
761
|
* 获取全局配置 Store
|
|
762
762
|
*/
|
|
@@ -772,7 +772,7 @@ export declare const getGlobalConfigStore: () => import("pinia").Store<"globalCo
|
|
|
772
772
|
configFormInfo: import("vue").Ref<any, any>;
|
|
773
773
|
setConfigFormInfo: (data: any) => void;
|
|
774
774
|
clearAll: (isDark?: string) => void;
|
|
775
|
-
}, "
|
|
775
|
+
}, "setConfigFormInfo" | "clearAll">>;
|
|
776
776
|
/**
|
|
777
777
|
* 获取动态表单 Store
|
|
778
778
|
*/
|
|
@@ -827,7 +827,7 @@ export declare const getDynamicFormStore: () => import("pinia").Store<"dynamicFo
|
|
|
827
827
|
getFieldValue: (fieldName: string) => any;
|
|
828
828
|
getBatchFieldValue: (batchName: string, fieldName: string, rowIndex?: number) => any;
|
|
829
829
|
clearAll: () => void;
|
|
830
|
-
}, "
|
|
830
|
+
}, "clearAll" | "setFormData" | "dataForm" | "selectData" | "dataId" | "setSelectData" | "setDataId" | "addBatchData" | "delField" | "delBatchField" | "addOrUpdateField" | "batchAddOrUpdateField" | "renameField" | "batchRenameField" | "getFieldValue" | "getBatchFieldValue">>;
|
|
831
831
|
/**
|
|
832
832
|
* 获取设计页面 Store
|
|
833
833
|
*/
|
|
@@ -978,7 +978,7 @@ export declare const getDesignPageStore: () => import("pinia").Store<"designPage
|
|
|
978
978
|
setIsEdit: (edit: boolean) => void;
|
|
979
979
|
maxZIndex: () => any;
|
|
980
980
|
init: () => void;
|
|
981
|
-
}, "
|
|
981
|
+
}, "clearAll" | "init" | "setNodeList" | "removeNode" | "addNode" | "selectNode" | "setIsEdit" | "maxZIndex">>;
|
|
982
982
|
/**
|
|
983
983
|
* 获取拷贝操作 Store
|
|
984
984
|
*/
|
|
@@ -1012,7 +1012,7 @@ export declare const getCopyerOperationStore: () => import("pinia").Store<"copye
|
|
|
1012
1012
|
setParentContainer: (container: any) => void;
|
|
1013
1013
|
setCopyerData: (data: any) => void;
|
|
1014
1014
|
clearAll: () => void;
|
|
1015
|
-
}, "
|
|
1015
|
+
}, "operation" | "clearAll" | "keyboardOperation" | "setAction" | "setParentContainer" | "setCopyerData">>;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* 获取消费者视图 Store
|
|
1018
1018
|
*/
|
|
@@ -1594,12 +1594,12 @@ export declare const getDesignFormStore: () => import("pinia").Store<"designForm
|
|
|
1594
1594
|
currentItemId: import("vue").Ref<string, string>;
|
|
1595
1595
|
parentCompType: import("vue").Ref<string, string>;
|
|
1596
1596
|
currentItemType: import("vue").Ref<string, string>;
|
|
1597
|
-
currentFormPreps: import("vue").
|
|
1597
|
+
currentFormPreps: import("vue").ComputedRef<any>;
|
|
1598
1598
|
currentSubItemId: import("vue").Ref<string, string>;
|
|
1599
1599
|
currentSubItem: import("vue").Ref<Record<string, any>, Record<string, any>>;
|
|
1600
1600
|
isEdit: import("vue").Ref<boolean, boolean>;
|
|
1601
1601
|
isDragging: import("vue").Ref<boolean, boolean>;
|
|
1602
|
-
currentComp: import("vue").
|
|
1602
|
+
currentComp: import("vue").Ref<any, any>;
|
|
1603
1603
|
draggingItem: import("vue").Ref<any, any>;
|
|
1604
1604
|
refresh: import("vue").Ref<number, number>;
|
|
1605
1605
|
historyRecord: import("vue").Ref<any, any>;
|
|
@@ -1648,7 +1648,7 @@ export declare const getDesignFormStore: () => import("pinia").Store<"designForm
|
|
|
1648
1648
|
getCurrentCompEditUserInfo: (compId: string) => import("..").UserInfo;
|
|
1649
1649
|
addCurrentCompEditUserInfo: (compId: string, userinfo: import("..").UserInfo) => void;
|
|
1650
1650
|
removeCurrentCompEditUserInfo: (compId: string) => void;
|
|
1651
|
-
}, "
|
|
1651
|
+
}, "formInfo" | "formData" | "isEdit" | "compList" | "containerList" | "formDataList" | "selfFormDataList" | "allFormDataList" | "currentCompCategory" | "currentItemId" | "parentCompType" | "currentItemType" | "currentSubItemId" | "currentSubItem" | "isDragging" | "currentComp" | "draggingItem" | "refresh" | "historyRecord" | "componentVisible" | "batchEditFieldVisible" | "previewVisible" | "shortKeyDisabled">, Pick<{
|
|
1652
1652
|
formData: import("vue").Ref<any, any>;
|
|
1653
1653
|
formInfo: import("vue").Ref<any, any>;
|
|
1654
1654
|
compList: import("vue").Ref<any[], any[]>;
|
|
@@ -2170,12 +2170,12 @@ export declare const getDesignFormStore: () => import("pinia").Store<"designForm
|
|
|
2170
2170
|
currentItemId: import("vue").Ref<string, string>;
|
|
2171
2171
|
parentCompType: import("vue").Ref<string, string>;
|
|
2172
2172
|
currentItemType: import("vue").Ref<string, string>;
|
|
2173
|
-
currentFormPreps: import("vue").
|
|
2173
|
+
currentFormPreps: import("vue").ComputedRef<any>;
|
|
2174
2174
|
currentSubItemId: import("vue").Ref<string, string>;
|
|
2175
2175
|
currentSubItem: import("vue").Ref<Record<string, any>, Record<string, any>>;
|
|
2176
2176
|
isEdit: import("vue").Ref<boolean, boolean>;
|
|
2177
2177
|
isDragging: import("vue").Ref<boolean, boolean>;
|
|
2178
|
-
currentComp: import("vue").
|
|
2178
|
+
currentComp: import("vue").Ref<any, any>;
|
|
2179
2179
|
draggingItem: import("vue").Ref<any, any>;
|
|
2180
2180
|
refresh: import("vue").Ref<number, number>;
|
|
2181
2181
|
historyRecord: import("vue").Ref<any, any>;
|
|
@@ -2224,7 +2224,7 @@ export declare const getDesignFormStore: () => import("pinia").Store<"designForm
|
|
|
2224
2224
|
getCurrentCompEditUserInfo: (compId: string) => import("..").UserInfo;
|
|
2225
2225
|
addCurrentCompEditUserInfo: (compId: string, userinfo: import("..").UserInfo) => void;
|
|
2226
2226
|
removeCurrentCompEditUserInfo: (compId: string) => void;
|
|
2227
|
-
},
|
|
2227
|
+
}, "currentFormPreps">, Pick<{
|
|
2228
2228
|
formData: import("vue").Ref<any, any>;
|
|
2229
2229
|
formInfo: import("vue").Ref<any, any>;
|
|
2230
2230
|
compList: import("vue").Ref<any[], any[]>;
|
|
@@ -2746,12 +2746,12 @@ export declare const getDesignFormStore: () => import("pinia").Store<"designForm
|
|
|
2746
2746
|
currentItemId: import("vue").Ref<string, string>;
|
|
2747
2747
|
parentCompType: import("vue").Ref<string, string>;
|
|
2748
2748
|
currentItemType: import("vue").Ref<string, string>;
|
|
2749
|
-
currentFormPreps: import("vue").
|
|
2749
|
+
currentFormPreps: import("vue").ComputedRef<any>;
|
|
2750
2750
|
currentSubItemId: import("vue").Ref<string, string>;
|
|
2751
2751
|
currentSubItem: import("vue").Ref<Record<string, any>, Record<string, any>>;
|
|
2752
2752
|
isEdit: import("vue").Ref<boolean, boolean>;
|
|
2753
2753
|
isDragging: import("vue").Ref<boolean, boolean>;
|
|
2754
|
-
currentComp: import("vue").
|
|
2754
|
+
currentComp: import("vue").Ref<any, any>;
|
|
2755
2755
|
draggingItem: import("vue").Ref<any, any>;
|
|
2756
2756
|
refresh: import("vue").Ref<number, number>;
|
|
2757
2757
|
historyRecord: import("vue").Ref<any, any>;
|
|
@@ -2800,7 +2800,7 @@ export declare const getDesignFormStore: () => import("pinia").Store<"designForm
|
|
|
2800
2800
|
getCurrentCompEditUserInfo: (compId: string) => import("..").UserInfo;
|
|
2801
2801
|
addCurrentCompEditUserInfo: (compId: string, userinfo: import("..").UserInfo) => void;
|
|
2802
2802
|
removeCurrentCompEditUserInfo: (compId: string) => void;
|
|
2803
|
-
}, "
|
|
2803
|
+
}, "clearAll" | "setFormData" | "setIsEdit" | "setParentContainer" | "setCurrentSubTabName" | "selectItemById" | "setAllFormDataList" | "setSelfFormDataList" | "setFormDataList" | "setContainerList" | "getParentContainer" | "getParentCompType" | "addSelfFormDataList" | "addContainerList" | "addFormDataList" | "addHistoryRecord" | "redo" | "undo" | "selectItem" | "setRefresh" | "setSubItem" | "setFormInfo" | "setCompList" | "loadCompNames" | "addComp" | "setIsDragging" | "setCurrentComp" | "setCurrentItemType" | "setParentCompType" | "setCurrentItemId" | "setCurrentFormPreps" | "setDraggingItem" | "removePromise" | "setComponentVisible" | "setBatchEditFieldVisible" | "setPreviewVisible" | "setShortKeyDisabled" | "getFieldDataIndex" | "getCurrentCompEditUserInfo" | "addCurrentCompEditUserInfo" | "removeCurrentCompEditUserInfo">>;
|
|
2804
2804
|
/**
|
|
2805
2805
|
* 动态表单缓存
|
|
2806
2806
|
*/
|
|
@@ -7688,7 +7688,7 @@ export declare const getFormDataCacheStore: () => import("pinia").Store<"formDat
|
|
|
7688
7688
|
deleteFormData: (param: string) => void;
|
|
7689
7689
|
clearAll: () => void;
|
|
7690
7690
|
getCacheSize: () => number;
|
|
7691
|
-
}, "
|
|
7691
|
+
}, "clearAll" | "getFormData" | "setFormData" | "hasFormData" | "deleteFormData" | "getCacheSize">>;
|
|
7692
7692
|
declare const _default: {
|
|
7693
7693
|
getUserStore: () => import("pinia").Store<"userInfo", Pick<{
|
|
7694
7694
|
userInfo: import("vue").Ref<any, any>;
|
|
@@ -8438,7 +8438,7 @@ declare const _default: {
|
|
|
8438
8438
|
getFormItem: (fieldName: string) => any;
|
|
8439
8439
|
init: (fieldList: import("..").PageFieldInfo, data: any, formRef: import("vue").Ref) => void;
|
|
8440
8440
|
clearAll: () => void;
|
|
8441
|
-
}, "
|
|
8441
|
+
}, "clearAll" | "setFormData" | "setFormInstance" | "setFormFields" | "addFormItem" | "addFormItemList" | "getFormItem" | "init">>;
|
|
8442
8442
|
getGlobalConfigStore: () => import("pinia").Store<"globalConfig", Pick<{
|
|
8443
8443
|
configFormInfo: import("vue").Ref<any, any>;
|
|
8444
8444
|
setConfigFormInfo: (data: any) => void;
|
|
@@ -8451,7 +8451,7 @@ declare const _default: {
|
|
|
8451
8451
|
configFormInfo: import("vue").Ref<any, any>;
|
|
8452
8452
|
setConfigFormInfo: (data: any) => void;
|
|
8453
8453
|
clearAll: (isDark?: string) => void;
|
|
8454
|
-
}, "
|
|
8454
|
+
}, "setConfigFormInfo" | "clearAll">>;
|
|
8455
8455
|
getDynamicFormStore: () => import("pinia").Store<"dynamicForm", Pick<{
|
|
8456
8456
|
dataForm: any;
|
|
8457
8457
|
selectData: any;
|
|
@@ -8503,7 +8503,7 @@ declare const _default: {
|
|
|
8503
8503
|
getFieldValue: (fieldName: string) => any;
|
|
8504
8504
|
getBatchFieldValue: (batchName: string, fieldName: string, rowIndex?: number) => any;
|
|
8505
8505
|
clearAll: () => void;
|
|
8506
|
-
}, "
|
|
8506
|
+
}, "clearAll" | "setFormData" | "dataForm" | "selectData" | "dataId" | "setSelectData" | "setDataId" | "addBatchData" | "delField" | "delBatchField" | "addOrUpdateField" | "batchAddOrUpdateField" | "renameField" | "batchRenameField" | "getFieldValue" | "getBatchFieldValue">>;
|
|
8507
8507
|
getDesignPageStore: () => import("pinia").Store<"designPage", Pick<{
|
|
8508
8508
|
nodeList: import("vue").Ref<{
|
|
8509
8509
|
id: string;
|
|
@@ -8651,7 +8651,7 @@ declare const _default: {
|
|
|
8651
8651
|
setIsEdit: (edit: boolean) => void;
|
|
8652
8652
|
maxZIndex: () => any;
|
|
8653
8653
|
init: () => void;
|
|
8654
|
-
}, "
|
|
8654
|
+
}, "clearAll" | "init" | "setNodeList" | "removeNode" | "addNode" | "selectNode" | "setIsEdit" | "maxZIndex">>;
|
|
8655
8655
|
getCopyerOperationStore: () => import("pinia").Store<"copyerOperation", Pick<{
|
|
8656
8656
|
action: import("vue").Ref<string, string>;
|
|
8657
8657
|
parentContainer: import("vue").Ref<any, any>;
|
|
@@ -8682,7 +8682,7 @@ declare const _default: {
|
|
|
8682
8682
|
setParentContainer: (container: any) => void;
|
|
8683
8683
|
setCopyerData: (data: any) => void;
|
|
8684
8684
|
clearAll: () => void;
|
|
8685
|
-
}, "
|
|
8685
|
+
}, "operation" | "clearAll" | "keyboardOperation" | "setAction" | "setParentContainer" | "setCopyerData">>;
|
|
8686
8686
|
getConsumerViewStore: () => import("pinia").Store<"consumerView", Pick<{
|
|
8687
8687
|
tableList: import("vue").Ref<any, any>;
|
|
8688
8688
|
dbConfigId: import("vue").Ref<string, string>;
|
|
@@ -9255,12 +9255,12 @@ declare const _default: {
|
|
|
9255
9255
|
currentItemId: import("vue").Ref<string, string>;
|
|
9256
9256
|
parentCompType: import("vue").Ref<string, string>;
|
|
9257
9257
|
currentItemType: import("vue").Ref<string, string>;
|
|
9258
|
-
currentFormPreps: import("vue").
|
|
9258
|
+
currentFormPreps: import("vue").ComputedRef<any>;
|
|
9259
9259
|
currentSubItemId: import("vue").Ref<string, string>;
|
|
9260
9260
|
currentSubItem: import("vue").Ref<Record<string, any>, Record<string, any>>;
|
|
9261
9261
|
isEdit: import("vue").Ref<boolean, boolean>;
|
|
9262
9262
|
isDragging: import("vue").Ref<boolean, boolean>;
|
|
9263
|
-
currentComp: import("vue").
|
|
9263
|
+
currentComp: import("vue").Ref<any, any>;
|
|
9264
9264
|
draggingItem: import("vue").Ref<any, any>;
|
|
9265
9265
|
refresh: import("vue").Ref<number, number>;
|
|
9266
9266
|
historyRecord: import("vue").Ref<any, any>;
|
|
@@ -9309,7 +9309,7 @@ declare const _default: {
|
|
|
9309
9309
|
getCurrentCompEditUserInfo: (compId: string) => import("..").UserInfo;
|
|
9310
9310
|
addCurrentCompEditUserInfo: (compId: string, userinfo: import("..").UserInfo) => void;
|
|
9311
9311
|
removeCurrentCompEditUserInfo: (compId: string) => void;
|
|
9312
|
-
}, "
|
|
9312
|
+
}, "formInfo" | "formData" | "isEdit" | "compList" | "containerList" | "formDataList" | "selfFormDataList" | "allFormDataList" | "currentCompCategory" | "currentItemId" | "parentCompType" | "currentItemType" | "currentSubItemId" | "currentSubItem" | "isDragging" | "currentComp" | "draggingItem" | "refresh" | "historyRecord" | "componentVisible" | "batchEditFieldVisible" | "previewVisible" | "shortKeyDisabled">, Pick<{
|
|
9313
9313
|
formData: import("vue").Ref<any, any>;
|
|
9314
9314
|
formInfo: import("vue").Ref<any, any>;
|
|
9315
9315
|
compList: import("vue").Ref<any[], any[]>;
|
|
@@ -9831,12 +9831,12 @@ declare const _default: {
|
|
|
9831
9831
|
currentItemId: import("vue").Ref<string, string>;
|
|
9832
9832
|
parentCompType: import("vue").Ref<string, string>;
|
|
9833
9833
|
currentItemType: import("vue").Ref<string, string>;
|
|
9834
|
-
currentFormPreps: import("vue").
|
|
9834
|
+
currentFormPreps: import("vue").ComputedRef<any>;
|
|
9835
9835
|
currentSubItemId: import("vue").Ref<string, string>;
|
|
9836
9836
|
currentSubItem: import("vue").Ref<Record<string, any>, Record<string, any>>;
|
|
9837
9837
|
isEdit: import("vue").Ref<boolean, boolean>;
|
|
9838
9838
|
isDragging: import("vue").Ref<boolean, boolean>;
|
|
9839
|
-
currentComp: import("vue").
|
|
9839
|
+
currentComp: import("vue").Ref<any, any>;
|
|
9840
9840
|
draggingItem: import("vue").Ref<any, any>;
|
|
9841
9841
|
refresh: import("vue").Ref<number, number>;
|
|
9842
9842
|
historyRecord: import("vue").Ref<any, any>;
|
|
@@ -9885,7 +9885,7 @@ declare const _default: {
|
|
|
9885
9885
|
getCurrentCompEditUserInfo: (compId: string) => import("..").UserInfo;
|
|
9886
9886
|
addCurrentCompEditUserInfo: (compId: string, userinfo: import("..").UserInfo) => void;
|
|
9887
9887
|
removeCurrentCompEditUserInfo: (compId: string) => void;
|
|
9888
|
-
},
|
|
9888
|
+
}, "currentFormPreps">, Pick<{
|
|
9889
9889
|
formData: import("vue").Ref<any, any>;
|
|
9890
9890
|
formInfo: import("vue").Ref<any, any>;
|
|
9891
9891
|
compList: import("vue").Ref<any[], any[]>;
|
|
@@ -10407,12 +10407,12 @@ declare const _default: {
|
|
|
10407
10407
|
currentItemId: import("vue").Ref<string, string>;
|
|
10408
10408
|
parentCompType: import("vue").Ref<string, string>;
|
|
10409
10409
|
currentItemType: import("vue").Ref<string, string>;
|
|
10410
|
-
currentFormPreps: import("vue").
|
|
10410
|
+
currentFormPreps: import("vue").ComputedRef<any>;
|
|
10411
10411
|
currentSubItemId: import("vue").Ref<string, string>;
|
|
10412
10412
|
currentSubItem: import("vue").Ref<Record<string, any>, Record<string, any>>;
|
|
10413
10413
|
isEdit: import("vue").Ref<boolean, boolean>;
|
|
10414
10414
|
isDragging: import("vue").Ref<boolean, boolean>;
|
|
10415
|
-
currentComp: import("vue").
|
|
10415
|
+
currentComp: import("vue").Ref<any, any>;
|
|
10416
10416
|
draggingItem: import("vue").Ref<any, any>;
|
|
10417
10417
|
refresh: import("vue").Ref<number, number>;
|
|
10418
10418
|
historyRecord: import("vue").Ref<any, any>;
|
|
@@ -10461,7 +10461,7 @@ declare const _default: {
|
|
|
10461
10461
|
getCurrentCompEditUserInfo: (compId: string) => import("..").UserInfo;
|
|
10462
10462
|
addCurrentCompEditUserInfo: (compId: string, userinfo: import("..").UserInfo) => void;
|
|
10463
10463
|
removeCurrentCompEditUserInfo: (compId: string) => void;
|
|
10464
|
-
}, "
|
|
10464
|
+
}, "clearAll" | "setFormData" | "setIsEdit" | "setParentContainer" | "setCurrentSubTabName" | "selectItemById" | "setAllFormDataList" | "setSelfFormDataList" | "setFormDataList" | "setContainerList" | "getParentContainer" | "getParentCompType" | "addSelfFormDataList" | "addContainerList" | "addFormDataList" | "addHistoryRecord" | "redo" | "undo" | "selectItem" | "setRefresh" | "setSubItem" | "setFormInfo" | "setCompList" | "loadCompNames" | "addComp" | "setIsDragging" | "setCurrentComp" | "setCurrentItemType" | "setParentCompType" | "setCurrentItemId" | "setCurrentFormPreps" | "setDraggingItem" | "removePromise" | "setComponentVisible" | "setBatchEditFieldVisible" | "setPreviewVisible" | "setShortKeyDisabled" | "getFieldDataIndex" | "getCurrentCompEditUserInfo" | "addCurrentCompEditUserInfo" | "removeCurrentCompEditUserInfo">>;
|
|
10465
10465
|
getFormDataCacheStore: () => import("pinia").Store<"formDataCache", Pick<{
|
|
10466
10466
|
cache: import("vue").Ref<Map<string, {
|
|
10467
10467
|
primaryKey: string;
|
|
@@ -15346,6 +15346,6 @@ declare const _default: {
|
|
|
15346
15346
|
deleteFormData: (param: string) => void;
|
|
15347
15347
|
clearAll: () => void;
|
|
15348
15348
|
getCacheSize: () => number;
|
|
15349
|
-
}, "
|
|
15349
|
+
}, "clearAll" | "getFormData" | "setFormData" | "hasFormData" | "deleteFormData" | "getCacheSize">>;
|
|
15350
15350
|
};
|
|
15351
15351
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MenusInfo } from "../components/types/MenusInfo";
|
|
2
|
-
export declare const useUserInfoStore: import("pinia").
|
|
2
|
+
export declare const useUserInfoStore: import("pinia").SetupStoreDefinition<"userInfo", {
|
|
3
3
|
userInfo: import("vue").Ref<any, any>;
|
|
4
4
|
pageButtonPermission: import("vue").Ref<any, any>;
|
|
5
5
|
permissionMenus: import("vue").Ref<any, any>;
|
|
@@ -13,32 +13,4 @@ export declare const useUserInfoStore: import("pinia").StoreDefinition<"userInfo
|
|
|
13
13
|
addPageButtonPermission: (data: any) => void;
|
|
14
14
|
pushPageButtonPermission: (menuId: string, data: any) => void;
|
|
15
15
|
addDynamicMenus: (data: MenusInfo) => void;
|
|
16
|
-
}
|
|
17
|
-
userInfo: import("vue").Ref<any, any>;
|
|
18
|
-
pageButtonPermission: import("vue").Ref<any, any>;
|
|
19
|
-
permissionMenus: import("vue").Ref<any, any>;
|
|
20
|
-
dynamicMenus: import("vue").Ref<any, any>;
|
|
21
|
-
showLoginDialog: () => void;
|
|
22
|
-
loginDialogVisible: import("vue").Ref<boolean, boolean>;
|
|
23
|
-
closeLoginDialog: () => void;
|
|
24
|
-
login: (data: any) => void;
|
|
25
|
-
logout: () => void;
|
|
26
|
-
addPermissionMenus: (data: any) => void;
|
|
27
|
-
addPageButtonPermission: (data: any) => void;
|
|
28
|
-
pushPageButtonPermission: (menuId: string, data: any) => void;
|
|
29
|
-
addDynamicMenus: (data: MenusInfo) => void;
|
|
30
|
-
}, never>, Pick<{
|
|
31
|
-
userInfo: import("vue").Ref<any, any>;
|
|
32
|
-
pageButtonPermission: import("vue").Ref<any, any>;
|
|
33
|
-
permissionMenus: import("vue").Ref<any, any>;
|
|
34
|
-
dynamicMenus: import("vue").Ref<any, any>;
|
|
35
|
-
showLoginDialog: () => void;
|
|
36
|
-
loginDialogVisible: import("vue").Ref<boolean, boolean>;
|
|
37
|
-
closeLoginDialog: () => void;
|
|
38
|
-
login: (data: any) => void;
|
|
39
|
-
logout: () => void;
|
|
40
|
-
addPermissionMenus: (data: any) => void;
|
|
41
|
-
addPageButtonPermission: (data: any) => void;
|
|
42
|
-
pushPageButtonPermission: (menuId: string, data: any) => void;
|
|
43
|
-
addDynamicMenus: (data: MenusInfo) => void;
|
|
44
|
-
}, "showLoginDialog" | "closeLoginDialog" | "login" | "logout" | "addPermissionMenus" | "addPageButtonPermission" | "pushPageButtonPermission" | "addDynamicMenus">>;
|
|
16
|
+
}>;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "star-horse-lowcode",
|
|
3
3
|
"private": false,
|
|
4
4
|
"author": "l_1019@163.com",
|
|
5
|
-
"version": "3.1.
|
|
5
|
+
"version": "3.1.13",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@codemirror/lang-java": "^6.0.2",
|
|
69
69
|
"@codemirror/lang-javascript": "^6.2.5",
|
|
70
70
|
"@codemirror/lang-json": "^6.0.2",
|
|
71
|
-
"@codemirror/lang-markdown": "^6.5.
|
|
71
|
+
"@codemirror/lang-markdown": "^6.5.1",
|
|
72
72
|
"@codemirror/lang-python": "^6.2.1",
|
|
73
73
|
"@codemirror/lang-sql": "^6.10.0",
|
|
74
74
|
"@codemirror/lang-vue": "^0.1.3",
|
|
@@ -78,20 +78,20 @@
|
|
|
78
78
|
"@element-plus/icons-vue": "^2.3.2",
|
|
79
79
|
"@monaco-editor/react": "^4.7.0",
|
|
80
80
|
"@replit/codemirror-minimap": "^0.5.2",
|
|
81
|
-
"@selemondev/vue3-signature-pad": "^1.
|
|
81
|
+
"@selemondev/vue3-signature-pad": "^1.10.0",
|
|
82
82
|
"@vueuse/core": "^14.3.0",
|
|
83
83
|
"@wangeditor/editor": "^5.1.23",
|
|
84
84
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
|
85
85
|
"axios": "^1.18.1",
|
|
86
86
|
"camelcase": "^9.0.0",
|
|
87
87
|
"codemirror": "^6.0.2",
|
|
88
|
-
"element-plus": "^2.14.
|
|
88
|
+
"element-plus": "^2.14.3",
|
|
89
89
|
"json5": "^2.2.3",
|
|
90
90
|
"markdown-it": "^14.3.0",
|
|
91
91
|
"md-editor-v3": "^6.5.3",
|
|
92
92
|
"monaco-editor": "^0.55.1",
|
|
93
93
|
"path": "^0.12.7",
|
|
94
|
-
"pinia": "^
|
|
94
|
+
"pinia": "^4.0.2",
|
|
95
95
|
"pinia-plugin-persistedstate": "^4.7.1",
|
|
96
96
|
"qrcode.vue": "^3.10.0",
|
|
97
97
|
"smooth-signature": "^1.1.0",
|
|
@@ -101,10 +101,11 @@
|
|
|
101
101
|
"thememirror": "^2.0.1",
|
|
102
102
|
"uuid": "^14.0.1",
|
|
103
103
|
"vanilla-jsoneditor": "^3.12.0",
|
|
104
|
+
"vite-plugin-copy": "^0.1.6",
|
|
104
105
|
"vue": "^3.5.39",
|
|
105
106
|
"vue-i18n": "^11.4.6",
|
|
106
107
|
"vue-m-message": "^4.0.2",
|
|
107
|
-
"vue-router": "^5.
|
|
108
|
+
"vue-router": "^5.2.0",
|
|
108
109
|
"vue3-barcode": "^1.0.1",
|
|
109
110
|
"vue3-signature": "^0.4.4",
|
|
110
111
|
"vue3-ts-jsoneditor": "^3.4.1",
|
|
@@ -112,26 +113,26 @@
|
|
|
112
113
|
},
|
|
113
114
|
"devDependencies": {
|
|
114
115
|
"@eslint/js": "^10.0.1",
|
|
115
|
-
"@microsoft/api-extractor": "^7.58.
|
|
116
|
+
"@microsoft/api-extractor": "^7.58.10",
|
|
116
117
|
"@rollup/plugin-inject": "^5.0.5",
|
|
117
118
|
"@tailwindcss/vite": "^4.3.2",
|
|
118
|
-
"@types/node": "^26.1.
|
|
119
|
+
"@types/node": "^26.1.1",
|
|
119
120
|
"@types/prismjs": "^1.26.6",
|
|
120
121
|
"@types/sortablejs": "^1.15.9",
|
|
121
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
122
|
-
"@typescript-eslint/parser": "^8.
|
|
123
|
-
"@typescript/typescript6": "^6.0.
|
|
124
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
125
|
-
"@vue/language-core": "^3.3.
|
|
126
|
-
"eslint": "^10.
|
|
122
|
+
"@typescript-eslint/eslint-plugin": "^8.64.0",
|
|
123
|
+
"@typescript-eslint/parser": "^8.64.0",
|
|
124
|
+
"@typescript/typescript6": "^6.0.2",
|
|
125
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
126
|
+
"@vue/language-core": "^3.3.7",
|
|
127
|
+
"eslint": "^10.7.0",
|
|
127
128
|
"eslint-plugin-vue": "^10.9.2",
|
|
128
129
|
"globals": "^17.7.0",
|
|
129
|
-
"prettier": "^3.9.
|
|
130
|
+
"prettier": "^3.9.5",
|
|
130
131
|
"sass-embedded": "^1.100.0",
|
|
131
|
-
"terser": "^5.
|
|
132
|
+
"terser": "^5.49.0",
|
|
132
133
|
"unplugin-auto-import": "^21.0.0",
|
|
133
134
|
"unplugin-vue-components": "^32.1.0",
|
|
134
|
-
"vite": "^8.1.
|
|
135
|
+
"vite": "^8.1.4",
|
|
135
136
|
"vite-plugin-dts": "^5.0.3",
|
|
136
137
|
"vue-eslint-parser": "^10.4.1"
|
|
137
138
|
},
|