star-horse-lowcode 2.7.38 → 2.7.39
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 +68 -1
- package/dist/assets/index.css +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.es.js +63 -3358
- package/dist/index.umd.js +6 -6
- package/dist/types/index.d.ts +9 -10
- package/package.json +2 -17
package/dist/types/index.d.ts
CHANGED
|
@@ -966,6 +966,7 @@ parentField: Record<string, any>;
|
|
|
966
966
|
/**
|
|
967
967
|
* 批量列表数据默认值
|
|
968
968
|
* @param datas
|
|
969
|
+
* @param dataForm
|
|
969
970
|
*/
|
|
970
971
|
export declare function batchFieldDefaultValues(datas: BatchFieldInfo, dataForm: any): any;
|
|
971
972
|
|
|
@@ -1607,7 +1608,6 @@ export declare function commonParseCodeToName(name: string, cellValue: any): any
|
|
|
1607
1608
|
/**
|
|
1608
1609
|
* 动态组件数据
|
|
1609
1610
|
* @param preps 组件参数信息
|
|
1610
|
-
* @param prototype 数据原样返回
|
|
1611
1611
|
*/
|
|
1612
1612
|
export declare function compDynamicData(preps: any): Promise<any>;
|
|
1613
1613
|
|
|
@@ -2293,8 +2293,6 @@ parentField: Record<string, any>;
|
|
|
2293
2293
|
*/
|
|
2294
2294
|
export declare const dateTypes: string[];
|
|
2295
2295
|
|
|
2296
|
-
export declare function dbConfigList(): Promise<SelectOption[]>;
|
|
2297
|
-
|
|
2298
2296
|
declare const _default: {
|
|
2299
2297
|
install: (app: App<Element>, options?: {
|
|
2300
2298
|
router?: Router;
|
|
@@ -2542,8 +2540,9 @@ export declare type DialogProps = {
|
|
|
2542
2540
|
* 根据字典类别获取字典数据
|
|
2543
2541
|
* @param dictType 字典类别
|
|
2544
2542
|
* @param exclusion 排除字典项
|
|
2543
|
+
* @param userUrl 用户自定义接口
|
|
2545
2544
|
*/
|
|
2546
|
-
export declare function dictData(dictType: string, exclusion?: Array<string
|
|
2545
|
+
export declare function dictData(dictType: string, exclusion?: Array<string>, userUrl?: string): Promise<SelectOption[]>;
|
|
2547
2546
|
|
|
2548
2547
|
export declare const dividerItem: DefineComponent<ExtractPropTypes< {
|
|
2549
2548
|
isDesign: {
|
|
@@ -2709,9 +2708,9 @@ export declare interface DynamicParamField {
|
|
|
2709
2708
|
*
|
|
2710
2709
|
* @param preps 组件参数信息
|
|
2711
2710
|
* @param queryInfo 查询条件
|
|
2712
|
-
* @param
|
|
2711
|
+
* @param proxyUrl 代理接口,为空时,默认使用/system-config/redirect/execute
|
|
2713
2712
|
*/
|
|
2714
|
-
export declare function dynamicUrlOperation(preps: any, queryInfo?: SearchParams[]): Promise<SelectOption[]>;
|
|
2713
|
+
export declare function dynamicUrlOperation(preps: any, queryInfo?: SearchParams[], proxyUrl?: string): Promise<SelectOption[]>;
|
|
2715
2714
|
|
|
2716
2715
|
export declare const dytableContainer: DefineComponent<ExtractPropTypes< {
|
|
2717
2716
|
parentField: {
|
|
@@ -3009,6 +3008,9 @@ export declare function formFieldMapping(fieldList: PageFieldInfo): {
|
|
|
3009
3008
|
actions: any[];
|
|
3010
3009
|
};
|
|
3011
3010
|
|
|
3011
|
+
/**
|
|
3012
|
+
* 客户端生成唯一指纹
|
|
3013
|
+
*/
|
|
3012
3014
|
/**
|
|
3013
3015
|
* 生成设备 ID
|
|
3014
3016
|
* @param userIp
|
|
@@ -3025,7 +3027,6 @@ export declare function getMenuId(): string;
|
|
|
3025
3027
|
/**
|
|
3026
3028
|
* Get请求
|
|
3027
3029
|
* @param url
|
|
3028
|
-
* @returns {Promise<AxiosResponse<any>>}
|
|
3029
3030
|
*/
|
|
3030
3031
|
export declare function getRequest(url: string): Promise<AxiosResponse<any, any>>;
|
|
3031
3032
|
|
|
@@ -3198,7 +3199,6 @@ parentField: Record<string, any>;
|
|
|
3198
3199
|
* @param url 请求地址
|
|
3199
3200
|
* @param data 请求参数
|
|
3200
3201
|
* @param method 请求方法
|
|
3201
|
-
* @returns {Promise<AxiosResponse<any>>}
|
|
3202
3202
|
*/
|
|
3203
3203
|
export declare function httpRequest(url: string, method: string, data: any): Promise<AxiosResponse<any, any>>;
|
|
3204
3204
|
|
|
@@ -4568,7 +4568,7 @@ export declare interface PageProps {
|
|
|
4568
4568
|
/**
|
|
4569
4569
|
* 数据
|
|
4570
4570
|
*/
|
|
4571
|
-
dataList?: Array | null;
|
|
4571
|
+
dataList?: Array<any> | null;
|
|
4572
4572
|
}
|
|
4573
4573
|
|
|
4574
4574
|
export declare const pageSelectItem: DefineComponent<ExtractPropTypes< {
|
|
@@ -8663,7 +8663,6 @@ parentField: Record<string, any>;
|
|
|
8663
8663
|
/**
|
|
8664
8664
|
* 去除空格
|
|
8665
8665
|
* @param data
|
|
8666
|
-
* @returns {*}
|
|
8667
8666
|
*/
|
|
8668
8667
|
export declare function trim(data: string): string;
|
|
8669
8668
|
|
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.39",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码平台",
|
|
8
8
|
"keywords": [
|
|
@@ -52,18 +52,11 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@element-plus/icons-vue": "^2.3.1",
|
|
55
|
-
"@fingerprintjs/fingerprintjs": "^4.6.2",
|
|
56
55
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
57
56
|
"@rollup/plugin-inject": "^5.0.5",
|
|
58
|
-
"@tailwindcss/vite": "^4.1.7",
|
|
59
|
-
"@types/node": "^22.15.21",
|
|
60
|
-
"@typescript-eslint/parser": "^8.32.1",
|
|
61
57
|
"@vitejs/plugin-vue-jsx": "^4.2.0",
|
|
62
58
|
"@vueup/vue-quill": "^1.2.0",
|
|
63
|
-
"autoprefixer": "^10.4.21",
|
|
64
59
|
"axios": "^1.9.0",
|
|
65
|
-
"cross-env": "^7.0.3",
|
|
66
|
-
"css-loader": "^7.1.2",
|
|
67
60
|
"element-plus": "^2.9.11",
|
|
68
61
|
"glob": "^11.0.2",
|
|
69
62
|
"jquery": "^3.7.1",
|
|
@@ -74,7 +67,6 @@
|
|
|
74
67
|
"pinia": "^3.0.2",
|
|
75
68
|
"pinia-plugin-persistedstate": "^4.3.0",
|
|
76
69
|
"pinyin-pro": "^3.26.0",
|
|
77
|
-
"postcss": "^8.5.3",
|
|
78
70
|
"process": "^0.11.10",
|
|
79
71
|
"qrcode.vue": "^3.6.0",
|
|
80
72
|
"quill-image-uploader": "^1.3.0",
|
|
@@ -82,12 +74,10 @@
|
|
|
82
74
|
"sortablejs": "^1.15.6",
|
|
83
75
|
"svgicons2svgfont": "^15.0.1",
|
|
84
76
|
"tailwindcss": "^4.1.7",
|
|
85
|
-
"typescript": "^5.8.3",
|
|
86
77
|
"unplugin-auto-import": "^19.3.0",
|
|
87
78
|
"unplugin-vue-components": "^28.7.0",
|
|
88
79
|
"uuid": "^11.1.0",
|
|
89
80
|
"vite-plugin-dts": "^4.5.4",
|
|
90
|
-
"vite-plugin-progress": "^0.0.7",
|
|
91
81
|
"vue": "^3.5.15",
|
|
92
82
|
"vue-demi": "^0.14.10",
|
|
93
83
|
"vue-eslint-parser": "^10.1.3",
|
|
@@ -99,19 +89,14 @@
|
|
|
99
89
|
"vuedraggable": "^4.1.0"
|
|
100
90
|
},
|
|
101
91
|
"devDependencies": {
|
|
102
|
-
"@eslint/js": "^9.27.0",
|
|
103
92
|
"@types/jquery": "^3.5.32",
|
|
104
|
-
"@types/nprogress": "^0.2.3",
|
|
105
93
|
"@types/prismjs": "^1.26.5",
|
|
106
94
|
"@types/sortablejs": "^1.15.8",
|
|
107
95
|
"@types/uuid": "^10.0.0",
|
|
108
96
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
109
|
-
"eslint": "9.27.0",
|
|
110
|
-
"eslint-plugin-vue": "^10.1.0",
|
|
111
|
-
"globals": "^16.2.0",
|
|
112
97
|
"sass-embedded": "^1.89.0",
|
|
113
98
|
"svg2ttf": "^6.0.3",
|
|
114
|
-
"terser": "^5.
|
|
99
|
+
"terser": "^5.40.0",
|
|
115
100
|
"ttf2woff": "^3.0.0",
|
|
116
101
|
"vite": "^6.3.5"
|
|
117
102
|
},
|