star-horse-lowcode 2.8.48 → 2.8.49
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 +36 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +8 -8
- package/dist/types/index.d.ts +60 -0
- package/package.json +10 -8
package/dist/types/index.d.ts
CHANGED
|
@@ -2710,6 +2710,8 @@ declare interface DataSelectorProps {
|
|
|
2710
2710
|
* 样式
|
|
2711
2711
|
*/
|
|
2712
2712
|
style?: CSSProperties;
|
|
2713
|
+
tagType: "" | "primary" | "secondary" | "success" | "info" | "warning";
|
|
2714
|
+
tagEffect: "" | "light" | "dark" | "plain";
|
|
2713
2715
|
}
|
|
2714
2716
|
|
|
2715
2717
|
/**
|
|
@@ -6531,9 +6533,31 @@ commonPersons: {
|
|
|
6531
6533
|
type: PropType<any>;
|
|
6532
6534
|
default: any[];
|
|
6533
6535
|
};
|
|
6536
|
+
/**
|
|
6537
|
+
* 在数据提权的时候需要指定通过那个字段做关联条件
|
|
6538
|
+
*/
|
|
6539
|
+
userColumnName: {
|
|
6540
|
+
type: StringConstructor;
|
|
6541
|
+
default: string;
|
|
6542
|
+
};
|
|
6534
6543
|
btnPermissions: {
|
|
6535
6544
|
type: PropType<Record<string, string>>;
|
|
6536
6545
|
required: false;
|
|
6546
|
+
default: {};
|
|
6547
|
+
};
|
|
6548
|
+
/**
|
|
6549
|
+
* 每页数据备选项
|
|
6550
|
+
*/
|
|
6551
|
+
pageCombList: {
|
|
6552
|
+
type: ArrayConstructor;
|
|
6553
|
+
default: number[];
|
|
6554
|
+
};
|
|
6555
|
+
/**
|
|
6556
|
+
* 分页条布局
|
|
6557
|
+
*/
|
|
6558
|
+
pageBarLayout: {
|
|
6559
|
+
type: StringConstructor;
|
|
6560
|
+
default: string;
|
|
6537
6561
|
};
|
|
6538
6562
|
}>, {
|
|
6539
6563
|
init: () => Promise<void>;
|
|
@@ -6667,9 +6691,31 @@ commonPersons: {
|
|
|
6667
6691
|
type: PropType<any>;
|
|
6668
6692
|
default: any[];
|
|
6669
6693
|
};
|
|
6694
|
+
/**
|
|
6695
|
+
* 在数据提权的时候需要指定通过那个字段做关联条件
|
|
6696
|
+
*/
|
|
6697
|
+
userColumnName: {
|
|
6698
|
+
type: StringConstructor;
|
|
6699
|
+
default: string;
|
|
6700
|
+
};
|
|
6670
6701
|
btnPermissions: {
|
|
6671
6702
|
type: PropType<Record<string, string>>;
|
|
6672
6703
|
required: false;
|
|
6704
|
+
default: {};
|
|
6705
|
+
};
|
|
6706
|
+
/**
|
|
6707
|
+
* 每页数据备选项
|
|
6708
|
+
*/
|
|
6709
|
+
pageCombList: {
|
|
6710
|
+
type: ArrayConstructor;
|
|
6711
|
+
default: number[];
|
|
6712
|
+
};
|
|
6713
|
+
/**
|
|
6714
|
+
* 分页条布局
|
|
6715
|
+
*/
|
|
6716
|
+
pageBarLayout: {
|
|
6717
|
+
type: StringConstructor;
|
|
6718
|
+
default: string;
|
|
6673
6719
|
};
|
|
6674
6720
|
}>> & Readonly<{
|
|
6675
6721
|
onSelectItem?: (...args: any[]) => any;
|
|
@@ -6692,6 +6738,10 @@ lineHeight: string;
|
|
|
6692
6738
|
showSelection: boolean;
|
|
6693
6739
|
hideButtonList: boolean;
|
|
6694
6740
|
commonPersons: any;
|
|
6741
|
+
userColumnName: string;
|
|
6742
|
+
btnPermissions: Record<string, string>;
|
|
6743
|
+
pageCombList: unknown[];
|
|
6744
|
+
pageBarLayout: string;
|
|
6695
6745
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
6696
6746
|
table: unknown;
|
|
6697
6747
|
starHorseTableCompRef: unknown;
|
|
@@ -9461,6 +9511,10 @@ export declare interface UserFuncInfo {
|
|
|
9461
9511
|
* 按钮显示位置,默认在列表的右侧
|
|
9462
9512
|
*/
|
|
9463
9513
|
position?: "table" | "toolbar";
|
|
9514
|
+
/**
|
|
9515
|
+
* 是否覆盖原来的方法
|
|
9516
|
+
*/
|
|
9517
|
+
override?: boolean;
|
|
9464
9518
|
/**
|
|
9465
9519
|
* 子节点
|
|
9466
9520
|
*/
|
|
@@ -9580,6 +9634,7 @@ priority?: number;
|
|
|
9580
9634
|
helpMsg?: string;
|
|
9581
9635
|
disabled?: string;
|
|
9582
9636
|
position?: "table" | "toolbar";
|
|
9637
|
+
override?: boolean;
|
|
9583
9638
|
children?: /*elided*/ any[];
|
|
9584
9639
|
}[];
|
|
9585
9640
|
stopAutoLoad?: boolean;
|
|
@@ -9680,6 +9735,7 @@ priority?: number;
|
|
|
9680
9735
|
helpMsg?: string;
|
|
9681
9736
|
disabled?: string;
|
|
9682
9737
|
position?: "table" | "toolbar";
|
|
9738
|
+
override?: boolean;
|
|
9683
9739
|
children?: /*elided*/ any[];
|
|
9684
9740
|
}[];
|
|
9685
9741
|
stopAutoLoad?: boolean;
|
|
@@ -9793,6 +9849,7 @@ priority?: number;
|
|
|
9793
9849
|
helpMsg?: string;
|
|
9794
9850
|
disabled?: string;
|
|
9795
9851
|
position?: "table" | "toolbar";
|
|
9852
|
+
override?: boolean;
|
|
9796
9853
|
children?: /*elided*/ any[];
|
|
9797
9854
|
}[];
|
|
9798
9855
|
stopAutoLoad?: boolean;
|
|
@@ -9893,6 +9950,7 @@ priority?: number;
|
|
|
9893
9950
|
helpMsg?: string;
|
|
9894
9951
|
disabled?: string;
|
|
9895
9952
|
position?: "table" | "toolbar";
|
|
9953
|
+
override?: boolean;
|
|
9896
9954
|
children?: /*elided*/ any[];
|
|
9897
9955
|
}[];
|
|
9898
9956
|
stopAutoLoad?: boolean;
|
|
@@ -10006,6 +10064,7 @@ priority?: number;
|
|
|
10006
10064
|
helpMsg?: string;
|
|
10007
10065
|
disabled?: string;
|
|
10008
10066
|
position?: "table" | "toolbar";
|
|
10067
|
+
override?: boolean;
|
|
10009
10068
|
children?: /*elided*/ any[];
|
|
10010
10069
|
}[];
|
|
10011
10070
|
stopAutoLoad?: boolean;
|
|
@@ -10106,6 +10165,7 @@ priority?: number;
|
|
|
10106
10165
|
helpMsg?: string;
|
|
10107
10166
|
disabled?: string;
|
|
10108
10167
|
position?: "table" | "toolbar";
|
|
10168
|
+
override?: boolean;
|
|
10109
10169
|
children?: /*elided*/ any[];
|
|
10110
10170
|
}[];
|
|
10111
10171
|
stopAutoLoad?: boolean;
|
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.49",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -75,18 +75,19 @@
|
|
|
75
75
|
"@codemirror/lang-yaml": "^6.1.2",
|
|
76
76
|
"@codemirror/theme-one-dark": "^6.1.3",
|
|
77
77
|
"@replit/codemirror-minimap": "^0.5.2",
|
|
78
|
+
"@selemondev/vue3-signature-pad": "^1.8.0",
|
|
78
79
|
"@wangeditor/editor": "^5.1.23",
|
|
79
80
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
|
80
81
|
"axios": "^1.13.2",
|
|
81
82
|
"codemirror": "^6.0.2",
|
|
82
|
-
"element-plus": "^2.
|
|
83
|
+
"element-plus": "^2.13.0",
|
|
83
84
|
"jquery": "^3.7.1",
|
|
84
85
|
"json5": "^2.2.3",
|
|
85
86
|
"md-editor-v3": "^6.2.1",
|
|
86
87
|
"path": "^0.12.7",
|
|
87
88
|
"pinia": "^3.0.4",
|
|
88
89
|
"pinia-plugin-persistedstate": "^4.7.1",
|
|
89
|
-
"preview-image-js": "^1.2.
|
|
90
|
+
"preview-image-js": "^1.2.1",
|
|
90
91
|
"qrcode.vue": "^3.6.0",
|
|
91
92
|
"smooth-signature": "^1.1.0",
|
|
92
93
|
"sortablejs": "^1.15.6",
|
|
@@ -95,11 +96,12 @@
|
|
|
95
96
|
"thememirror": "^2.0.1",
|
|
96
97
|
"uuid": "^13.0.0",
|
|
97
98
|
"vanilla-jsoneditor": "^3.11.0",
|
|
98
|
-
"vue": "^3.5.
|
|
99
|
-
"vue-i18n": "^11.2.
|
|
99
|
+
"vue": "^3.5.26",
|
|
100
|
+
"vue-i18n": "^11.2.7",
|
|
100
101
|
"vue-m-message": "^4.0.2",
|
|
101
102
|
"vue-router": "^4.6.4",
|
|
102
103
|
"vue3-barcode": "^1.0.1",
|
|
104
|
+
"vue3-signature": "^0.4.1",
|
|
103
105
|
"vue3-ts-jsoneditor": "^3.3.0",
|
|
104
106
|
"vuedraggable-es": "^4.1.1"
|
|
105
107
|
},
|
|
@@ -110,14 +112,14 @@
|
|
|
110
112
|
"@types/jquery": "^3.5.33",
|
|
111
113
|
"@types/prismjs": "^1.26.5",
|
|
112
114
|
"@types/sortablejs": "^1.15.9",
|
|
113
|
-
"@typescript-eslint/eslint-plugin": "^8.50.
|
|
114
|
-
"@typescript-eslint/parser": "^8.50.
|
|
115
|
+
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
116
|
+
"@typescript-eslint/parser": "^8.50.1",
|
|
115
117
|
"@vitejs/plugin-vue": "^6.0.3",
|
|
116
118
|
"eslint": "^9.39.2",
|
|
117
119
|
"eslint-plugin-vue": "^10.6.2",
|
|
118
120
|
"globals": "^16.5.0",
|
|
119
121
|
"prettier": "^3.7.4",
|
|
120
|
-
"sass-embedded": "^1.97.
|
|
122
|
+
"sass-embedded": "^1.97.1",
|
|
121
123
|
"terser": "^5.44.1",
|
|
122
124
|
"unplugin-auto-import": "^20.3.0",
|
|
123
125
|
"unplugin-vue-components": "^30.0.0",
|