star-horse-lowcode 2.8.60 → 2.8.62
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 +10 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +5 -5
- package/dist/types/index.d.ts +40 -4
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -602,12 +602,12 @@ title?(_: {}): any;
|
|
|
602
602
|
|
|
603
603
|
declare const __VLS_component_6: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
604
604
|
|
|
605
|
-
declare const __VLS_component_7: DefineComponent<
|
|
605
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_46, {
|
|
606
606
|
getConfigInfo: () => any;
|
|
607
607
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
608
608
|
"update:modelValue": (...args: any[]) => void;
|
|
609
609
|
saveData: (...args: any[]) => void;
|
|
610
|
-
}, string, PublicProps, Readonly<
|
|
610
|
+
}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{
|
|
611
611
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
612
612
|
onSaveData?: (...args: any[]) => any;
|
|
613
613
|
}>, {
|
|
@@ -615,8 +615,8 @@ title: string;
|
|
|
615
615
|
direction: string;
|
|
616
616
|
compSize: string;
|
|
617
617
|
modelValue: boolean;
|
|
618
|
-
hideDefaultConfig: boolean;
|
|
619
618
|
resizable: boolean;
|
|
619
|
+
hideDefaultConfig: boolean;
|
|
620
620
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
621
621
|
|
|
622
622
|
declare type __VLS_Props = ContainerPreps;
|
|
@@ -697,7 +697,9 @@ declare type __VLS_Props_43 = ItemPreps;
|
|
|
697
697
|
|
|
698
698
|
declare type __VLS_Props_44 = ItemPreps;
|
|
699
699
|
|
|
700
|
-
declare type __VLS_Props_45 =
|
|
700
|
+
declare type __VLS_Props_45 = ItemPreps;
|
|
701
|
+
|
|
702
|
+
declare type __VLS_Props_46 = {
|
|
701
703
|
hideDefaultConfig?: boolean;
|
|
702
704
|
modelValue: boolean;
|
|
703
705
|
direction?: string;
|
|
@@ -872,6 +874,10 @@ declare type __VLS_PublicProps_44 = {
|
|
|
872
874
|
"formData"?: any;
|
|
873
875
|
} & __VLS_Props_44;
|
|
874
876
|
|
|
877
|
+
declare type __VLS_PublicProps_45 = {
|
|
878
|
+
"formData"?: any;
|
|
879
|
+
} & __VLS_Props_45;
|
|
880
|
+
|
|
875
881
|
declare type __VLS_PublicProps_5 = {
|
|
876
882
|
"formData"?: any;
|
|
877
883
|
} & __VLS_Props_5;
|
|
@@ -3030,6 +3036,22 @@ export declare function download(url: string, param: any): Promise<unknown>;
|
|
|
3030
3036
|
*/
|
|
3031
3037
|
export declare function downloadData(data: any, name: string): void;
|
|
3032
3038
|
|
|
3039
|
+
export declare const drawerItem: DefineComponent<__VLS_PublicProps_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3040
|
+
selfFunc: (...args: any[]) => void;
|
|
3041
|
+
selectItem: (...args: any[]) => void;
|
|
3042
|
+
"update:formData": (value: any) => void;
|
|
3043
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_45> & Readonly<{
|
|
3044
|
+
onSelfFunc?: (...args: any[]) => any;
|
|
3045
|
+
onSelectItem?: (...args: any[]) => any;
|
|
3046
|
+
"onUpdate:formData"?: (value: any) => any;
|
|
3047
|
+
}>, {
|
|
3048
|
+
disabled: boolean;
|
|
3049
|
+
isDesign: boolean;
|
|
3050
|
+
bareFlag: boolean;
|
|
3051
|
+
isSearch: boolean;
|
|
3052
|
+
showFormItem: boolean;
|
|
3053
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3054
|
+
|
|
3033
3055
|
export declare interface DyCompField {
|
|
3034
3056
|
name: string;
|
|
3035
3057
|
template: any;
|
|
@@ -3207,6 +3229,20 @@ export declare interface EditCondition {
|
|
|
3207
3229
|
matchType?: string;
|
|
3208
3230
|
}
|
|
3209
3231
|
|
|
3232
|
+
export declare const emptyItem: DefineComponent<ItemPreps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3233
|
+
selfFunc: (...args: any[]) => void;
|
|
3234
|
+
selectItem: (...args: any[]) => void;
|
|
3235
|
+
}, string, PublicProps, Readonly<ItemPreps> & Readonly<{
|
|
3236
|
+
onSelfFunc?: (...args: any[]) => any;
|
|
3237
|
+
onSelectItem?: (...args: any[]) => any;
|
|
3238
|
+
}>, {
|
|
3239
|
+
disabled: boolean;
|
|
3240
|
+
isDesign: boolean;
|
|
3241
|
+
bareFlag: boolean;
|
|
3242
|
+
isSearch: boolean;
|
|
3243
|
+
showFormItem: boolean;
|
|
3244
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3245
|
+
|
|
3210
3246
|
/**
|
|
3211
3247
|
* 错误提示
|
|
3212
3248
|
* @param msg 消息内容
|
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": "2.8.
|
|
5
|
+
"version": "2.8.62",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@codemirror/lang-css": "^6.3.1",
|
|
66
66
|
"@codemirror/lang-go": "^6.0.1",
|
|
67
67
|
"@codemirror/lang-java": "^6.0.2",
|
|
68
|
-
"@codemirror/lang-javascript": "^6.2.
|
|
68
|
+
"@codemirror/lang-javascript": "^6.2.5",
|
|
69
69
|
"@codemirror/lang-json": "^6.0.2",
|
|
70
70
|
"@codemirror/lang-markdown": "^6.5.0",
|
|
71
71
|
"@codemirror/lang-python": "^6.2.1",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"element-plus": "^2.13.3",
|
|
84
84
|
"jquery": "^4.0.0",
|
|
85
85
|
"json5": "^2.2.3",
|
|
86
|
-
"md-editor-v3": "^6.3.
|
|
86
|
+
"md-editor-v3": "^6.3.2",
|
|
87
87
|
"path": "^0.12.7",
|
|
88
88
|
"pinia": "^3.0.4",
|
|
89
89
|
"pinia-plugin-persistedstate": "^4.7.1",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"@vitejs/plugin-vue": "^6.0.4",
|
|
118
118
|
"eslint": "^10.0.2",
|
|
119
119
|
"eslint-plugin-vue": "^10.8.0",
|
|
120
|
-
"globals": "^17.
|
|
120
|
+
"globals": "^17.4.0",
|
|
121
121
|
"prettier": "^3.8.1",
|
|
122
122
|
"sass-embedded": "^1.97.3",
|
|
123
123
|
"terser": "^5.46.0",
|