@baosight/erm 1.0.79 → 1.0.82
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/components/DateTimePicker.vue.d.ts +6 -0
- package/lib/ermForm/ermForm.vue.d.ts +42 -42
- package/lib/index.common.js +208 -110
- package/lib/index.common.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/index.esm.css +131 -131
- package/lib/index.esm.js +1 -1
- package/lib/index.umd.js +208 -110
- package/lib/index.umd.js.map +1 -1
- package/lib/index.umd.min.js +7 -7
- package/lib/index.umd.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
defaultData: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
};
|
|
2
5
|
showPicker: {
|
|
3
6
|
type: BooleanConstructor;
|
|
4
7
|
};
|
|
@@ -13,6 +16,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
16
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
14
17
|
[key: string]: any;
|
|
15
18
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("confirm" | "cancel" | "changeValue")[], "confirm" | "cancel" | "changeValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
defaultData: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
};
|
|
16
22
|
showPicker: {
|
|
17
23
|
type: BooleanConstructor;
|
|
18
24
|
};
|
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
/**
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
* 最大高度,默认auto
|
|
4
|
+
* @type {String}
|
|
5
|
+
*/
|
|
6
6
|
maxHeight: {
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
* 初始化Service
|
|
12
|
+
* @type {String}
|
|
13
|
+
*/
|
|
14
14
|
initSvc: {
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
require: boolean;
|
|
17
17
|
};
|
|
18
18
|
/**
|
|
19
|
-
* 初始化Service的分区
|
|
20
|
-
* @type {String}
|
|
21
|
-
*/
|
|
19
|
+
* 初始化Service的分区
|
|
20
|
+
* @type {String}
|
|
21
|
+
*/
|
|
22
22
|
partName: {
|
|
23
23
|
type: StringConstructor;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
* SI011X-formName
|
|
28
|
+
* @type {String}
|
|
29
|
+
*/
|
|
30
30
|
formName: {
|
|
31
31
|
type: StringConstructor;
|
|
32
32
|
require: boolean;
|
|
33
33
|
};
|
|
34
34
|
/**
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
* SI011X-functionId
|
|
36
|
+
* @type {String}
|
|
37
|
+
*/
|
|
38
38
|
functionId: {
|
|
39
39
|
type: StringConstructor;
|
|
40
40
|
require: boolean;
|
|
41
41
|
};
|
|
42
42
|
/**
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
* 主标题
|
|
44
|
+
* @type {String}
|
|
45
|
+
*/
|
|
46
46
|
mainTitle: {
|
|
47
47
|
type: StringConstructor;
|
|
48
48
|
default: boolean;
|
|
49
49
|
};
|
|
50
50
|
/**
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
* 显示删除按钮
|
|
52
|
+
* @type {String}
|
|
53
|
+
*/
|
|
54
54
|
showDeleteButton: {
|
|
55
55
|
type: BooleanConstructor;
|
|
56
56
|
default: boolean;
|
|
@@ -59,57 +59,57 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
[key: string]: any;
|
|
60
60
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("dataChange" | "cellValueChange" | "btnClick" | "rowDelete")[], "dataChange" | "cellValueChange" | "btnClick" | "rowDelete", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
61
61
|
/**
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
62
|
+
* 最大高度,默认auto
|
|
63
|
+
* @type {String}
|
|
64
|
+
*/
|
|
65
65
|
maxHeight: {
|
|
66
66
|
type: StringConstructor;
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
70
|
+
* 初始化Service
|
|
71
|
+
* @type {String}
|
|
72
|
+
*/
|
|
73
73
|
initSvc: {
|
|
74
74
|
type: StringConstructor;
|
|
75
75
|
require: boolean;
|
|
76
76
|
};
|
|
77
77
|
/**
|
|
78
|
-
* 初始化Service的分区
|
|
79
|
-
* @type {String}
|
|
80
|
-
*/
|
|
78
|
+
* 初始化Service的分区
|
|
79
|
+
* @type {String}
|
|
80
|
+
*/
|
|
81
81
|
partName: {
|
|
82
82
|
type: StringConstructor;
|
|
83
83
|
default: string;
|
|
84
84
|
};
|
|
85
85
|
/**
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
* SI011X-formName
|
|
87
|
+
* @type {String}
|
|
88
|
+
*/
|
|
89
89
|
formName: {
|
|
90
90
|
type: StringConstructor;
|
|
91
91
|
require: boolean;
|
|
92
92
|
};
|
|
93
93
|
/**
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
94
|
+
* SI011X-functionId
|
|
95
|
+
* @type {String}
|
|
96
|
+
*/
|
|
97
97
|
functionId: {
|
|
98
98
|
type: StringConstructor;
|
|
99
99
|
require: boolean;
|
|
100
100
|
};
|
|
101
101
|
/**
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
102
|
+
* 主标题
|
|
103
|
+
* @type {String}
|
|
104
|
+
*/
|
|
105
105
|
mainTitle: {
|
|
106
106
|
type: StringConstructor;
|
|
107
107
|
default: boolean;
|
|
108
108
|
};
|
|
109
109
|
/**
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
* 显示删除按钮
|
|
111
|
+
* @type {String}
|
|
112
|
+
*/
|
|
113
113
|
showDeleteButton: {
|
|
114
114
|
type: BooleanConstructor;
|
|
115
115
|
default: boolean;
|