star-horse-lowcode 2.8.2 → 2.8.4
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 +2 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +252 -190
- package/dist/types/index.d.ts +12 -4
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -3404,7 +3404,7 @@ export declare interface RelationDetail {
|
|
|
3404
3404
|
/**
|
|
3405
3405
|
* 控制条件
|
|
3406
3406
|
*/
|
|
3407
|
-
controlCondition: string;
|
|
3407
|
+
controlCondition: "eqConditionDataLinkage" | "asParamDataLinkage" | "eqDisable" | "eqEditable" | "eqHide" | "eqVisible" | "assignValue" | "changeType" | string;
|
|
3408
3408
|
/**
|
|
3409
3409
|
* 关联字段
|
|
3410
3410
|
*/
|
|
@@ -3417,14 +3417,22 @@ export declare interface RelationDetail {
|
|
|
3417
3417
|
* 匹配字段名称
|
|
3418
3418
|
*/
|
|
3419
3419
|
matchFieldName: string;
|
|
3420
|
+
/**
|
|
3421
|
+
* 匹配字段值
|
|
3422
|
+
*/
|
|
3423
|
+
matchFieldValue: Array<string> | string;
|
|
3420
3424
|
/**
|
|
3421
3425
|
* 关联参数
|
|
3422
3426
|
*/
|
|
3423
|
-
params: RedirectParams
|
|
3427
|
+
params: RedirectParams;
|
|
3428
|
+
/**
|
|
3429
|
+
* 关联静态数据,根据不同类型赋值
|
|
3430
|
+
*/
|
|
3431
|
+
staticDatas: SelectOption[] | any;
|
|
3424
3432
|
/**
|
|
3425
|
-
*
|
|
3433
|
+
* 多次事件是否 working
|
|
3426
3434
|
*/
|
|
3427
|
-
|
|
3435
|
+
isWorking: boolean;
|
|
3428
3436
|
}
|
|
3429
3437
|
|
|
3430
3438
|
/**
|
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.4",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@eslint/js": "^9.33.0",
|
|
66
66
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
67
67
|
"@rollup/plugin-inject": "^5.0.5",
|
|
68
|
-
"@tailwindcss/vite": "^4.1.
|
|
68
|
+
"@tailwindcss/vite": "^4.1.12",
|
|
69
69
|
"@vitejs/plugin-vue-jsx": "^5.0.1",
|
|
70
70
|
"@vueup/vue-quill": "^1.2.0",
|
|
71
71
|
"axios": "^1.11.0",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"quill-image-uploader": "^1.3.0",
|
|
84
84
|
"smooth-signature": "^1.1.0",
|
|
85
85
|
"sortablejs": "^1.15.6",
|
|
86
|
-
"tailwindcss": "^4.1.
|
|
86
|
+
"tailwindcss": "^4.1.12",
|
|
87
87
|
"unplugin-auto-import": "^20.0.0",
|
|
88
88
|
"unplugin-element-plus": "^0.10.0",
|
|
89
89
|
"unplugin-vue-components": "^29.0.0",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@types/jquery": "^3.5.32",
|
|
103
|
-
"@types/node": "^24.
|
|
103
|
+
"@types/node": "^24.3.0",
|
|
104
104
|
"@types/prismjs": "^1.26.5",
|
|
105
105
|
"@types/sortablejs": "^1.15.8",
|
|
106
106
|
"@types/uuid": "^10.0.0",
|