star-horse-lowcode 2.7.38 → 2.7.40

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.
@@ -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>): Promise<SelectOption[]>;
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 prototype 数据原样返回
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.38",
5
+ "version": "2.7.40",
6
6
  "type": "module",
7
7
  "description": "星马低代码平台",
8
8
  "keywords": [
@@ -37,33 +37,20 @@
37
37
  "./*": "./dist/*"
38
38
  },
39
39
  "scripts": {
40
- "lint": "eslint .",
41
- "lint:fix": "eslint . --fix",
42
- "svgToFont": "node ./src/script/svgToFont.js",
43
40
  "serve": " vite --mode development",
44
- "build:dev": "cross-env NO_TYPE_CHECK=true NODE_OPTIONS=--max-old-space-size=8192 vite build --mode development",
45
- "build:prod": "cross-env NODE_OPTIONS=--max-old-space-size=16384 vite build --mode production",
46
41
  "build": "vite build --mode production",
47
- "clean": "rimraf node_modules/.vite && rimraf node_modules/.cache",
48
42
  "preview": "vite preview --mode production",
49
- "deploy": "vite build --mode production && node deploy.js",
50
- "testPublish": "node deploy.js",
43
+ "clean": "rimraf node_modules/.vite && rimraf node_modules/.cache",
44
+ "svgToFont": "node ./src/script/svgToFont.js",
51
45
  "createNodeImageList": "node ./script/createNodeImageList.js"
52
46
  },
53
47
  "dependencies": {
54
48
  "@element-plus/icons-vue": "^2.3.1",
55
- "@fingerprintjs/fingerprintjs": "^4.6.2",
56
49
  "@originjs/vite-plugin-commonjs": "^1.0.3",
57
50
  "@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
51
  "@vitejs/plugin-vue-jsx": "^4.2.0",
62
52
  "@vueup/vue-quill": "^1.2.0",
63
- "autoprefixer": "^10.4.21",
64
53
  "axios": "^1.9.0",
65
- "cross-env": "^7.0.3",
66
- "css-loader": "^7.1.2",
67
54
  "element-plus": "^2.9.11",
68
55
  "glob": "^11.0.2",
69
56
  "jquery": "^3.7.1",
@@ -74,7 +61,6 @@
74
61
  "pinia": "^3.0.2",
75
62
  "pinia-plugin-persistedstate": "^4.3.0",
76
63
  "pinyin-pro": "^3.26.0",
77
- "postcss": "^8.5.3",
78
64
  "process": "^0.11.10",
79
65
  "qrcode.vue": "^3.6.0",
80
66
  "quill-image-uploader": "^1.3.0",
@@ -82,15 +68,12 @@
82
68
  "sortablejs": "^1.15.6",
83
69
  "svgicons2svgfont": "^15.0.1",
84
70
  "tailwindcss": "^4.1.7",
85
- "typescript": "^5.8.3",
86
71
  "unplugin-auto-import": "^19.3.0",
87
72
  "unplugin-vue-components": "^28.7.0",
88
73
  "uuid": "^11.1.0",
89
74
  "vite-plugin-dts": "^4.5.4",
90
- "vite-plugin-progress": "^0.0.7",
91
75
  "vue": "^3.5.15",
92
76
  "vue-demi": "^0.14.10",
93
- "vue-eslint-parser": "^10.1.3",
94
77
  "vue-i18n": "^11.1.4",
95
78
  "vue-m-message": "^4.0.2",
96
79
  "vue-router": "^4.5.1",
@@ -99,19 +82,14 @@
99
82
  "vuedraggable": "^4.1.0"
100
83
  },
101
84
  "devDependencies": {
102
- "@eslint/js": "^9.27.0",
103
85
  "@types/jquery": "^3.5.32",
104
- "@types/nprogress": "^0.2.3",
105
86
  "@types/prismjs": "^1.26.5",
106
87
  "@types/sortablejs": "^1.15.8",
107
88
  "@types/uuid": "^10.0.0",
108
89
  "@vitejs/plugin-vue": "^5.2.4",
109
- "eslint": "9.27.0",
110
- "eslint-plugin-vue": "^10.1.0",
111
- "globals": "^16.2.0",
112
90
  "sass-embedded": "^1.89.0",
113
91
  "svg2ttf": "^6.0.3",
114
- "terser": "^5.39.2",
92
+ "terser": "^5.40.0",
115
93
  "ttf2woff": "^3.0.0",
116
94
  "vite": "^6.3.5"
117
95
  },