star-horse-lowcode 2.8.57 → 2.8.61
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/index.es.js +8 -8
- package/dist/types/index.d.ts +30 -7
- package/package.json +17 -17
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;
|
|
@@ -1987,8 +1993,9 @@ export declare interface CompAction {
|
|
|
1987
1993
|
/**
|
|
1988
1994
|
* 动态组件数据
|
|
1989
1995
|
* @param field 组件参数信息
|
|
1996
|
+
* @param analysisUrl 是否解析Url
|
|
1990
1997
|
*/
|
|
1991
|
-
export declare function compDynamicData(field: any): Promise<any>;
|
|
1998
|
+
export declare function compDynamicData(field: any, analysisUrl?: false): Promise<any>;
|
|
1992
1999
|
|
|
1993
2000
|
/**
|
|
1994
2001
|
* 组件信息
|
|
@@ -2681,7 +2688,7 @@ declare interface DataDropdownProps {
|
|
|
2681
2688
|
/**
|
|
2682
2689
|
* 数据
|
|
2683
2690
|
*/
|
|
2684
|
-
|
|
2691
|
+
data?: Array<any>;
|
|
2685
2692
|
/**
|
|
2686
2693
|
* 标题
|
|
2687
2694
|
*/
|
|
@@ -2770,7 +2777,7 @@ declare interface DataSelectorProps {
|
|
|
2770
2777
|
/**
|
|
2771
2778
|
* 数据
|
|
2772
2779
|
*/
|
|
2773
|
-
|
|
2780
|
+
data?: Array<any>;
|
|
2774
2781
|
/**
|
|
2775
2782
|
* 页码
|
|
2776
2783
|
*/
|
|
@@ -3029,6 +3036,22 @@ export declare function download(url: string, param: any): Promise<unknown>;
|
|
|
3029
3036
|
*/
|
|
3030
3037
|
export declare function downloadData(data: any, name: string): void;
|
|
3031
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
|
+
|
|
3032
3055
|
export declare interface DyCompField {
|
|
3033
3056
|
name: string;
|
|
3034
3057
|
template: any;
|
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.61",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"@selemondev/vue3-signature-pad": "^1.8.3",
|
|
79
79
|
"@wangeditor/editor": "^5.1.23",
|
|
80
80
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
|
81
|
-
"axios": "^1.13.
|
|
81
|
+
"axios": "^1.13.6",
|
|
82
82
|
"codemirror": "^6.0.2",
|
|
83
|
-
"element-plus": "^2.13.
|
|
83
|
+
"element-plus": "^2.13.3",
|
|
84
84
|
"jquery": "^4.0.0",
|
|
85
85
|
"json5": "^2.2.3",
|
|
86
86
|
"md-editor-v3": "^6.3.1",
|
|
@@ -90,33 +90,33 @@
|
|
|
90
90
|
"preview-image-js": "^1.2.1",
|
|
91
91
|
"qrcode.vue": "^3.8.0",
|
|
92
92
|
"smooth-signature": "^1.1.0",
|
|
93
|
-
"sortablejs": "^1.15.
|
|
94
|
-
"sql-formatter": "^15.7.
|
|
95
|
-
"tailwindcss": "^4.1
|
|
93
|
+
"sortablejs": "^1.15.7",
|
|
94
|
+
"sql-formatter": "^15.7.2",
|
|
95
|
+
"tailwindcss": "^4.2.1",
|
|
96
96
|
"thememirror": "^2.0.1",
|
|
97
97
|
"uuid": "^13.0.0",
|
|
98
98
|
"vanilla-jsoneditor": "^3.11.0",
|
|
99
|
-
"vue": "^3.5.
|
|
99
|
+
"vue": "^3.5.29",
|
|
100
100
|
"vue-i18n": "^11.2.8",
|
|
101
101
|
"vue-m-message": "^4.0.2",
|
|
102
|
-
"vue-router": "^5.0.
|
|
102
|
+
"vue-router": "^5.0.3",
|
|
103
103
|
"vue3-barcode": "^1.0.1",
|
|
104
104
|
"vue3-signature": "^0.4.4",
|
|
105
105
|
"vue3-ts-jsoneditor": "^3.3.0",
|
|
106
106
|
"vuedraggable-es": "^4.1.1"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@eslint/js": "^
|
|
109
|
+
"@eslint/js": "^10.0.1",
|
|
110
110
|
"@rollup/plugin-inject": "^5.0.5",
|
|
111
|
-
"@tailwindcss/vite": "^4.1
|
|
112
|
-
"@types/jquery": "^
|
|
113
|
-
"@types/prismjs": "^1.26.
|
|
111
|
+
"@tailwindcss/vite": "^4.2.1",
|
|
112
|
+
"@types/jquery": "^4.0.0",
|
|
113
|
+
"@types/prismjs": "^1.26.6",
|
|
114
114
|
"@types/sortablejs": "^1.15.9",
|
|
115
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
116
|
-
"@typescript-eslint/parser": "^8.
|
|
115
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
116
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
117
117
|
"@vitejs/plugin-vue": "^6.0.4",
|
|
118
|
-
"eslint": "^
|
|
119
|
-
"eslint-plugin-vue": "^10.
|
|
118
|
+
"eslint": "^10.0.2",
|
|
119
|
+
"eslint-plugin-vue": "^10.8.0",
|
|
120
120
|
"globals": "^17.3.0",
|
|
121
121
|
"prettier": "^3.8.1",
|
|
122
122
|
"sass-embedded": "^1.97.3",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"unplugin-vue-components": "^31.0.0",
|
|
126
126
|
"vite": "^7.3.1",
|
|
127
127
|
"vite-plugin-dts": "^4.5.4",
|
|
128
|
-
"vue-eslint-parser": "^10.
|
|
128
|
+
"vue-eslint-parser": "^10.4.0"
|
|
129
129
|
},
|
|
130
130
|
"engines": {
|
|
131
131
|
"node": ">=20.13.0"
|