star-horse-lowcode 2.7.51 → 2.7.53

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.
@@ -4545,6 +4545,10 @@ export declare type SearchProps = {
4545
4545
  defaultVisible?: boolean;
4546
4546
  helpMsg?: string;
4547
4547
  minWidth?: string;
4548
+ /**
4549
+ * 表的别名
4550
+ */
4551
+ prefix?: string;
4548
4552
  /**
4549
4553
  * 弹窗数据配置
4550
4554
  */
@@ -9007,7 +9011,7 @@ export declare interface UserFuncInfo {
9007
9011
  /**
9008
9012
  * 按钮显示位置,默认在列表的右侧
9009
9013
  */
9010
- position?: 'table' | 'toolbar';
9014
+ position?: "table" | "toolbar";
9011
9015
  /**
9012
9016
  * 子节点
9013
9017
  */
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.51",
5
+ "version": "2.7.53",
6
6
  "type": "module",
7
7
  "description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
8
8
  "keywords": [
@@ -36,6 +36,9 @@
36
36
  "./*": "./dist/*"
37
37
  },
38
38
  "scripts": {
39
+ "lint": "eslint .",
40
+ "lint:fix": "eslint . --fix",
41
+ "format": "prettier --write \"./**/*.{jsx,ts,tsx,vue,css,scss,html}\"",
39
42
  "serve": " vite --mode development",
40
43
  "build": "vite build --mode production",
41
44
  "preview": "vite preview --mode production",
@@ -43,6 +46,16 @@
43
46
  "svgToFont": "node ./src/script/svgToFont.js",
44
47
  "createNodeImageList": "node ./script/createNodeImageList.js"
45
48
  },
49
+ "prettier": {
50
+ "overrides": [
51
+ {
52
+ "files": "*.ts",
53
+ "options": {
54
+ "parser": "typescript"
55
+ }
56
+ }
57
+ ]
58
+ },
46
59
  "dependencies": {
47
60
  "@element-plus/icons-vue": "^2.3.1",
48
61
  "@originjs/vite-plugin-commonjs": "^1.0.3",
@@ -52,16 +65,12 @@
52
65
  "@vueup/vue-quill": "^1.2.0",
53
66
  "axios": "^1.10.0",
54
67
  "element-plus": "^2.10.4",
55
- "glob": "^11.0.3",
56
68
  "jquery": "^3.7.1",
57
69
  "json5": "^2.2.3",
58
- "less": "^4.3.0",
59
- "less-loader": "^12.3.0",
60
- "md-editor-v3": "^5.8.0",
70
+ "md-editor-v3": "^5.8.2",
61
71
  "path": "^0.12.7",
62
72
  "pinia": "^3.0.3",
63
73
  "pinia-plugin-persistedstate": "^4.4.1",
64
- "process": "^0.11.10",
65
74
  "qrcode.vue": "^3.6.0",
66
75
  "quill-image-uploader": "^1.3.0",
67
76
  "smooth-signature": "^1.1.0",
@@ -73,7 +82,7 @@
73
82
  "uuid": "^11.1.0",
74
83
  "vite-plugin-dts": "^4.5.4",
75
84
  "vue": "^3.5.17",
76
- "vue-i18n": "^11.1.9",
85
+ "vue-i18n": "^11.1.10",
77
86
  "vue-m-message": "^4.0.2",
78
87
  "vue-router": "^4.5.1",
79
88
  "vue3-barcode": "^1.0.1",
@@ -85,12 +94,19 @@
85
94
  "@types/prismjs": "^1.26.5",
86
95
  "@types/sortablejs": "^1.15.8",
87
96
  "@types/uuid": "^10.0.0",
97
+ "@typescript-eslint/eslint-plugin": "^8.37.0",
98
+ "@typescript-eslint/parser": "^8.37.0",
88
99
  "@vitejs/plugin-vue": "^6.0.0",
100
+ "eslint": "^9.31.0",
101
+ "eslint-config-prettier": "^10.1.8",
102
+ "eslint-plugin-prettier": "^5.5.3",
103
+ "eslint-plugin-vue": "^10.3.0",
89
104
  "sass-embedded": "^1.89.2",
90
105
  "terser": "^5.43.1",
91
- "vite": "^7.0.4"
106
+ "vite": "^7.0.5"
92
107
  },
93
108
  "engines": {
94
109
  "node": ">=20.13.0"
95
- }
110
+ },
111
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
96
112
  }