@baosight/erm 1.0.44 → 1.0.46
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/lib/ermForm/ermForm.vue.d.ts +2 -1
- package/lib/ermList/ermList.vue.d.ts +18 -18
- package/lib/index.css +1 -1
- package/lib/index.esm.css +51 -51
- package/lib/index.esm.js +1 -1
- package/package.json +1 -1
|
@@ -33,7 +33,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
};
|
|
34
34
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
35
35
|
[key: string]: any;
|
|
36
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "dataChange"[], "dataChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("dataChange" | "cellValueChange")[], "dataChange" | "cellValueChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
37
|
/**
|
|
38
38
|
* 最大高度,默认auto
|
|
39
39
|
* @type {String}
|
|
@@ -68,6 +68,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
68
|
};
|
|
69
69
|
}>> & {
|
|
70
70
|
onDataChange?: (...args: any[]) => any;
|
|
71
|
+
onCellValueChange?: (...args: any[]) => any;
|
|
71
72
|
}, {
|
|
72
73
|
mainTitle: string;
|
|
73
74
|
maxHeight: string;
|
|
@@ -73,20 +73,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
73
73
|
default: string;
|
|
74
74
|
};
|
|
75
75
|
/**
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
* 左图标大小
|
|
77
|
+
* @type {Array}
|
|
78
|
+
*/
|
|
79
79
|
leftIconSize: {
|
|
80
|
-
type:
|
|
81
|
-
default: string;
|
|
80
|
+
type: ArrayConstructor;
|
|
81
|
+
default: string[];
|
|
82
82
|
};
|
|
83
83
|
/**
|
|
84
84
|
* 右图标大小
|
|
85
|
-
* @type {
|
|
85
|
+
* @type {Array}
|
|
86
86
|
*/
|
|
87
87
|
rightIconSize: {
|
|
88
|
-
type:
|
|
89
|
-
default: string;
|
|
88
|
+
type: ArrayConstructor;
|
|
89
|
+
default: string[];
|
|
90
90
|
};
|
|
91
91
|
/**
|
|
92
92
|
* 多选模式
|
|
@@ -202,20 +202,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
202
202
|
default: string;
|
|
203
203
|
};
|
|
204
204
|
/**
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
205
|
+
* 左图标大小
|
|
206
|
+
* @type {Array}
|
|
207
|
+
*/
|
|
208
208
|
leftIconSize: {
|
|
209
|
-
type:
|
|
210
|
-
default: string;
|
|
209
|
+
type: ArrayConstructor;
|
|
210
|
+
default: string[];
|
|
211
211
|
};
|
|
212
212
|
/**
|
|
213
213
|
* 右图标大小
|
|
214
|
-
* @type {
|
|
214
|
+
* @type {Array}
|
|
215
215
|
*/
|
|
216
216
|
rightIconSize: {
|
|
217
|
-
type:
|
|
218
|
-
default: string;
|
|
217
|
+
type: ArrayConstructor;
|
|
218
|
+
default: string[];
|
|
219
219
|
};
|
|
220
220
|
/**
|
|
221
221
|
* 多选模式
|
|
@@ -272,8 +272,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
272
272
|
showRight: boolean;
|
|
273
273
|
leftIconUrl: string;
|
|
274
274
|
rightIconUrl: string;
|
|
275
|
-
leftIconSize:
|
|
276
|
-
rightIconSize:
|
|
275
|
+
leftIconSize: unknown[];
|
|
276
|
+
rightIconSize: unknown[];
|
|
277
277
|
mutiSelect: boolean;
|
|
278
278
|
pullDisabled: boolean;
|
|
279
279
|
pullDownDisabled: boolean;
|