@baosight/erm 1.0.70 → 1.0.72
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 +3 -2
- package/lib/ermList/ermList.vue.d.ts +22 -2
- package/lib/index.css +1 -1
- package/lib/index.esm.css +130 -130
- package/lib/index.esm.js +1 -1
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
21
|
*/
|
|
22
22
|
partName: {
|
|
23
23
|
type: StringConstructor;
|
|
24
|
-
|
|
24
|
+
default: string;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
27
|
* SI011X-formName
|
|
@@ -80,7 +80,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
80
80
|
*/
|
|
81
81
|
partName: {
|
|
82
82
|
type: StringConstructor;
|
|
83
|
-
|
|
83
|
+
default: string;
|
|
84
84
|
};
|
|
85
85
|
/**
|
|
86
86
|
* SI011X-formName
|
|
@@ -122,6 +122,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
122
122
|
}, {
|
|
123
123
|
mainTitle: string;
|
|
124
124
|
maxHeight: string;
|
|
125
|
+
partName: string;
|
|
125
126
|
showDeleteButton: boolean;
|
|
126
127
|
}, {}>;
|
|
127
128
|
export default _default;
|
|
@@ -32,7 +32,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
*/
|
|
33
33
|
partName: {
|
|
34
34
|
type: StringConstructor;
|
|
35
|
-
|
|
35
|
+
default: string;
|
|
36
36
|
};
|
|
37
37
|
/**
|
|
38
38
|
* SI011X-formName
|
|
@@ -186,6 +186,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
186
186
|
type: StringConstructor;
|
|
187
187
|
default: string;
|
|
188
188
|
};
|
|
189
|
+
/**
|
|
190
|
+
* 一行显示列数
|
|
191
|
+
* 可选值:1、2、3、4
|
|
192
|
+
* @type {Number}
|
|
193
|
+
*/
|
|
194
|
+
controlsInRow: {
|
|
195
|
+
type: () => 1 | 2 | 3 | 4;
|
|
196
|
+
default: number;
|
|
197
|
+
};
|
|
189
198
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
190
199
|
[key: string]: any;
|
|
191
200
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("leftIconClick" | "mainClick" | "rightIconClick" | "leftIconHold" | "rightIconHold" | "pullRefresh" | "pullUpdate")[], "leftIconClick" | "mainClick" | "rightIconClick" | "leftIconHold" | "rightIconHold" | "pullRefresh" | "pullUpdate", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -217,7 +226,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
217
226
|
*/
|
|
218
227
|
partName: {
|
|
219
228
|
type: StringConstructor;
|
|
220
|
-
|
|
229
|
+
default: string;
|
|
221
230
|
};
|
|
222
231
|
/**
|
|
223
232
|
* SI011X-formName
|
|
@@ -371,6 +380,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
371
380
|
type: StringConstructor;
|
|
372
381
|
default: string;
|
|
373
382
|
};
|
|
383
|
+
/**
|
|
384
|
+
* 一行显示列数
|
|
385
|
+
* 可选值:1、2、3、4
|
|
386
|
+
* @type {Number}
|
|
387
|
+
*/
|
|
388
|
+
controlsInRow: {
|
|
389
|
+
type: () => 1 | 2 | 3 | 4;
|
|
390
|
+
default: number;
|
|
391
|
+
};
|
|
374
392
|
}>> & {
|
|
375
393
|
onLeftIconClick?: (...args: any[]) => any;
|
|
376
394
|
onMainClick?: (...args: any[]) => any;
|
|
@@ -382,6 +400,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
382
400
|
}, {
|
|
383
401
|
mainTitle: string;
|
|
384
402
|
maxHeight: string;
|
|
403
|
+
partName: string;
|
|
385
404
|
showLeft: boolean;
|
|
386
405
|
showRight: boolean;
|
|
387
406
|
leftIconUrl: string;
|
|
@@ -398,5 +417,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
398
417
|
blankAfterCaption: boolean;
|
|
399
418
|
fontSize: string;
|
|
400
419
|
fontFamily: string;
|
|
420
|
+
controlsInRow: 1 | 2 | 3 | 4;
|
|
401
421
|
}, {}>;
|
|
402
422
|
export default _default;
|