@baosight/erm 1.5.2 → 1.5.3
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/MobileLookUp.vue.d.ts +9 -1
- package/lib/ermForm/ermForm.vue.d.ts +2 -1
- package/lib/index.css +1 -1
- package/lib/index.esm.css +203 -203
- package/lib/index.esm.js +1 -1
- package/package.json +1 -1
|
@@ -32,6 +32,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
type: BooleanConstructor;
|
|
33
33
|
default: boolean;
|
|
34
34
|
};
|
|
35
|
+
setDropDownData: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
};
|
|
35
38
|
checkFlag: {
|
|
36
39
|
default: boolean;
|
|
37
40
|
};
|
|
@@ -45,7 +48,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
48
|
};
|
|
46
49
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
47
50
|
[key: string]: any;
|
|
48
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "cancel" | "setRef")[], "input" | "cancel" | "setRef", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "cancel" | "setRef" | "setDropDown")[], "input" | "cancel" | "setRef" | "setDropDown", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
52
|
data: {
|
|
50
53
|
type: StringConstructor;
|
|
51
54
|
};
|
|
@@ -78,6 +81,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
78
81
|
type: BooleanConstructor;
|
|
79
82
|
default: boolean;
|
|
80
83
|
};
|
|
84
|
+
setDropDownData: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
};
|
|
81
87
|
checkFlag: {
|
|
82
88
|
default: boolean;
|
|
83
89
|
};
|
|
@@ -93,9 +99,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
99
|
onInput?: (...args: any[]) => any;
|
|
94
100
|
onCancel?: (...args: any[]) => any;
|
|
95
101
|
onSetRef?: (...args: any[]) => any;
|
|
102
|
+
onSetDropDown?: (...args: any[]) => any;
|
|
96
103
|
}, {
|
|
97
104
|
title: string;
|
|
98
105
|
showSearch: boolean;
|
|
106
|
+
setDropDownData: boolean;
|
|
99
107
|
checkFlag: boolean;
|
|
100
108
|
readOnly: boolean;
|
|
101
109
|
valueVisible: boolean;
|
|
@@ -57,7 +57,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
57
|
};
|
|
58
58
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
59
59
|
[key: string]: any;
|
|
60
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("dataChange" | "cellValueChange" | "btnClick" | "rowDelete" | "formReady")[], "dataChange" | "cellValueChange" | "btnClick" | "rowDelete" | "formReady", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
60
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("dataChange" | "cellValueChange" | "btnClick" | "rowDelete" | "formReady" | "setDropDownDataSource")[], "dataChange" | "cellValueChange" | "btnClick" | "rowDelete" | "formReady" | "setDropDownDataSource", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
61
61
|
/**
|
|
62
62
|
* 最大高度,默认auto
|
|
63
63
|
* @type {String}
|
|
@@ -120,6 +120,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
120
120
|
onBtnClick?: (...args: any[]) => any;
|
|
121
121
|
onRowDelete?: (...args: any[]) => any;
|
|
122
122
|
onFormReady?: (...args: any[]) => any;
|
|
123
|
+
onSetDropDownDataSource?: (...args: any[]) => any;
|
|
123
124
|
}, {
|
|
124
125
|
mainTitle: string;
|
|
125
126
|
maxHeight: string;
|