star-horse-lowcode 2.7.50 → 2.7.52
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 +4 -2
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +133 -81
- package/dist/types/index.d.ts +40 -10
- package/package.json +6 -9
package/dist/types/index.d.ts
CHANGED
|
@@ -372,10 +372,6 @@ buttons: HTMLDivElement;
|
|
|
372
372
|
subMenu: unknown;
|
|
373
373
|
}, any>;
|
|
374
374
|
|
|
375
|
-
declare type __VLS_PublicProps = {
|
|
376
|
-
"dataList"?: any;
|
|
377
|
-
};
|
|
378
|
-
|
|
379
375
|
declare function __VLS_template(): {
|
|
380
376
|
attrs: Partial<{}>;
|
|
381
377
|
slots: {
|
|
@@ -403,6 +399,8 @@ declare function __VLS_template_3(): {
|
|
|
403
399
|
header?(_: {}): any;
|
|
404
400
|
default?(_: {}): any;
|
|
405
401
|
default?(_: {}): any;
|
|
402
|
+
empty?(_: {}): any;
|
|
403
|
+
empty?(_: {}): any;
|
|
406
404
|
button?(_: {}): any;
|
|
407
405
|
};
|
|
408
406
|
refs: {
|
|
@@ -5992,12 +5990,6 @@ initRows: number;
|
|
|
5992
5990
|
currentTableRef: unknown;
|
|
5993
5991
|
}, any>;
|
|
5994
5992
|
|
|
5995
|
-
export declare const StarHorseHmenu: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5996
|
-
"update:dataList": (value: any) => any;
|
|
5997
|
-
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
5998
|
-
"onUpdate:dataList"?: (value: any) => any;
|
|
5999
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6000
|
-
|
|
6001
5993
|
export declare const StarHorseIcon: DefineComponent<ExtractPropTypes< {
|
|
6002
5994
|
iconClass: {
|
|
6003
5995
|
type: StringConstructor;
|
|
@@ -6405,6 +6397,44 @@ json: any;
|
|
|
6405
6397
|
}>;
|
|
6406
6398
|
}, any>;
|
|
6407
6399
|
|
|
6400
|
+
export declare const StarHorseMenu: DefineComponent<ExtractPropTypes< {
|
|
6401
|
+
preps: {
|
|
6402
|
+
type: PropType<any>;
|
|
6403
|
+
default: () => {
|
|
6404
|
+
id: string;
|
|
6405
|
+
value: string;
|
|
6406
|
+
icon: string;
|
|
6407
|
+
label: string;
|
|
6408
|
+
children: string;
|
|
6409
|
+
};
|
|
6410
|
+
};
|
|
6411
|
+
dataList: {
|
|
6412
|
+
type: PropType<any>;
|
|
6413
|
+
};
|
|
6414
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6415
|
+
selectItem: (...args: any[]) => void;
|
|
6416
|
+
"update:dataList": (value: any) => void;
|
|
6417
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
6418
|
+
preps: {
|
|
6419
|
+
type: PropType<any>;
|
|
6420
|
+
default: () => {
|
|
6421
|
+
id: string;
|
|
6422
|
+
value: string;
|
|
6423
|
+
icon: string;
|
|
6424
|
+
label: string;
|
|
6425
|
+
children: string;
|
|
6426
|
+
};
|
|
6427
|
+
};
|
|
6428
|
+
dataList: {
|
|
6429
|
+
type: PropType<any>;
|
|
6430
|
+
};
|
|
6431
|
+
}>> & Readonly<{
|
|
6432
|
+
onSelectItem?: (...args: any[]) => any;
|
|
6433
|
+
"onUpdate:dataList"?: (value: any) => any;
|
|
6434
|
+
}>, {
|
|
6435
|
+
preps: any;
|
|
6436
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6437
|
+
|
|
6408
6438
|
export declare const StarHorsePopover: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
6409
6439
|
|
|
6410
6440
|
export declare const StarHorseSearchComp: DefineComponent<ExtractPropTypes< {
|
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.7.
|
|
5
|
+
"version": "2.7.52",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -52,16 +52,12 @@
|
|
|
52
52
|
"@vueup/vue-quill": "^1.2.0",
|
|
53
53
|
"axios": "^1.10.0",
|
|
54
54
|
"element-plus": "^2.10.4",
|
|
55
|
-
"glob": "^11.0.3",
|
|
56
55
|
"jquery": "^3.7.1",
|
|
57
56
|
"json5": "^2.2.3",
|
|
58
|
-
"
|
|
59
|
-
"less-loader": "^12.3.0",
|
|
60
|
-
"md-editor-v3": "^5.7.1",
|
|
57
|
+
"md-editor-v3": "^5.8.1",
|
|
61
58
|
"path": "^0.12.7",
|
|
62
59
|
"pinia": "^3.0.3",
|
|
63
60
|
"pinia-plugin-persistedstate": "^4.4.1",
|
|
64
|
-
"process": "^0.11.10",
|
|
65
61
|
"qrcode.vue": "^3.6.0",
|
|
66
62
|
"quill-image-uploader": "^1.3.0",
|
|
67
63
|
"smooth-signature": "^1.1.0",
|
|
@@ -73,7 +69,7 @@
|
|
|
73
69
|
"uuid": "^11.1.0",
|
|
74
70
|
"vite-plugin-dts": "^4.5.4",
|
|
75
71
|
"vue": "^3.5.17",
|
|
76
|
-
"vue-i18n": "^11.1.
|
|
72
|
+
"vue-i18n": "^11.1.10",
|
|
77
73
|
"vue-m-message": "^4.0.2",
|
|
78
74
|
"vue-router": "^4.5.1",
|
|
79
75
|
"vue3-barcode": "^1.0.1",
|
|
@@ -88,9 +84,10 @@
|
|
|
88
84
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
89
85
|
"sass-embedded": "^1.89.2",
|
|
90
86
|
"terser": "^5.43.1",
|
|
91
|
-
"vite": "^7.0.
|
|
87
|
+
"vite": "^7.0.5"
|
|
92
88
|
},
|
|
93
89
|
"engines": {
|
|
94
90
|
"node": ">=20.13.0"
|
|
95
|
-
}
|
|
91
|
+
},
|
|
92
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
96
93
|
}
|