star-horse-lowcode 2.8.26 → 2.8.27
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 +1 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +4 -4
- package/dist/types/index.d.ts +7 -3
- package/package.json +9 -10
package/dist/types/index.d.ts
CHANGED
|
@@ -1276,6 +1276,10 @@ export declare interface BtnHideCondition {
|
|
|
1276
1276
|
* 值
|
|
1277
1277
|
*/
|
|
1278
1278
|
value: any;
|
|
1279
|
+
/**
|
|
1280
|
+
* 是否可见
|
|
1281
|
+
*/
|
|
1282
|
+
visible: boolean;
|
|
1279
1283
|
}
|
|
1280
1284
|
|
|
1281
1285
|
export declare const buttonItem: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -5877,7 +5881,7 @@ type: PropType<any>;
|
|
|
5877
5881
|
default: any[];
|
|
5878
5882
|
};
|
|
5879
5883
|
btnPermissions: {
|
|
5880
|
-
type: PropType<
|
|
5884
|
+
type: PropType<Record<string, string>>;
|
|
5881
5885
|
required: false;
|
|
5882
5886
|
};
|
|
5883
5887
|
}>, {
|
|
@@ -5890,7 +5894,7 @@ multipleSelection: Ref<any, any>;
|
|
|
5890
5894
|
setDataInfo: (fieldName: string, val: any) => void;
|
|
5891
5895
|
tableCompFunc: (authority: any) => void;
|
|
5892
5896
|
getDatas: (limitSize?: number, params?: SearchParams[], orderBys?: OrderByInfo[], url?: string, usePageCondition?: boolean) => Promise<any>;
|
|
5893
|
-
permissionList: () =>
|
|
5897
|
+
permissionList: () => Record<string, string>;
|
|
5894
5898
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5895
5899
|
selectItem: (...args: any[]) => void;
|
|
5896
5900
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
@@ -6010,7 +6014,7 @@ type: PropType<any>;
|
|
|
6010
6014
|
default: any[];
|
|
6011
6015
|
};
|
|
6012
6016
|
btnPermissions: {
|
|
6013
|
-
type: PropType<
|
|
6017
|
+
type: PropType<Record<string, string>>;
|
|
6014
6018
|
required: false;
|
|
6015
6019
|
};
|
|
6016
6020
|
}>> & Readonly<{
|
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.27",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@vueup/vue-quill": "^1.2.0",
|
|
65
65
|
"axios": "^1.13.2",
|
|
66
|
-
"element-plus": "^2.11.
|
|
66
|
+
"element-plus": "^2.11.8",
|
|
67
67
|
"globals": "^16.5.0",
|
|
68
68
|
"jquery": "^3.7.1",
|
|
69
69
|
"json5": "^2.2.3",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"quill-image-uploader": "^1.3.0",
|
|
76
76
|
"smooth-signature": "^1.1.0",
|
|
77
77
|
"sortablejs": "^1.15.6",
|
|
78
|
-
"tailwindcss": "^4.1.
|
|
78
|
+
"tailwindcss": "^4.1.17",
|
|
79
79
|
"uuid": "^13.0.0",
|
|
80
80
|
"vanilla-jsoneditor": "^3.10.0",
|
|
81
|
-
"vue": "^3.5.
|
|
81
|
+
"vue": "^3.5.24",
|
|
82
82
|
"vue-i18n": "^11.1.12",
|
|
83
83
|
"vue-m-message": "^4.0.2",
|
|
84
84
|
"vue-router": "^4.6.3",
|
|
@@ -90,19 +90,18 @@
|
|
|
90
90
|
"@eslint/js": "^9.39.1",
|
|
91
91
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
92
92
|
"@rollup/plugin-inject": "^5.0.5",
|
|
93
|
-
"@tailwindcss/vite": "^4.1.
|
|
93
|
+
"@tailwindcss/vite": "^4.1.17",
|
|
94
94
|
"@vitejs/plugin-vue-jsx": "^5.1.1",
|
|
95
95
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
96
96
|
"@types/jquery": "^3.5.33",
|
|
97
|
-
"@types/node": "^24.10.
|
|
97
|
+
"@types/node": "^24.10.1",
|
|
98
98
|
"@types/prismjs": "^1.26.5",
|
|
99
99
|
"@types/sortablejs": "^1.15.9",
|
|
100
100
|
"@types/uuid": "^11.0.0",
|
|
101
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
102
|
-
"@typescript-eslint/parser": "^8.
|
|
101
|
+
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
102
|
+
"@typescript-eslint/parser": "^8.47.0",
|
|
103
103
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
104
104
|
"unplugin-auto-import": "^20.2.0",
|
|
105
|
-
"unplugin-element-plus": "^0.10.0",
|
|
106
105
|
"unplugin-vue-components": "^30.0.0",
|
|
107
106
|
"eslint": "^9.39.1",
|
|
108
107
|
"vue-eslint-parser": "^10.2.0",
|
|
@@ -113,7 +112,7 @@
|
|
|
113
112
|
"vite-plugin-dts": "^4.5.4",
|
|
114
113
|
"sass-embedded": "^1.93.3",
|
|
115
114
|
"terser": "^5.44.1",
|
|
116
|
-
"vite": "^7.2.
|
|
115
|
+
"vite": "^7.2.2"
|
|
117
116
|
},
|
|
118
117
|
"engines": {
|
|
119
118
|
"node": ">=20.13.0"
|