@baosight/erm 1.1.2 → 1.1.4
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/ermGrid/ermGrid.vue.d.ts +11 -1
- package/lib/ermList/ermList.vue.d.ts +2 -2
- package/lib/index.css +1 -1
- package/lib/index.esm.css +103 -72
- package/lib/index.esm.js +1 -1
- package/lib/store/out.d.ts +1 -1
- package/lib/use/eiService.d.ts +1 -1
- package/lib/utils/xmsdk.d.ts +1 -1
- package/package.json +31 -31
|
@@ -59,6 +59,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
type: StringConstructor;
|
|
60
60
|
default: string;
|
|
61
61
|
};
|
|
62
|
+
rowHeight: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
62
66
|
/**
|
|
63
67
|
* 显示模式 list|card
|
|
64
68
|
* @type {String}
|
|
@@ -86,7 +90,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
86
90
|
};
|
|
87
91
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
88
92
|
[key: string]: any;
|
|
89
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("gridReady" | "gridDataReady" | "selectionChanged")[], "gridReady" | "gridDataReady" | "selectionChanged", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
93
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("gridReady" | "gridDataReady" | "selectionChanged" | "itemConfigChange")[], "gridReady" | "gridDataReady" | "selectionChanged" | "itemConfigChange", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
94
|
/**
|
|
91
95
|
* 传入表数据
|
|
92
96
|
* @type {Array}
|
|
@@ -141,6 +145,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
141
145
|
type: StringConstructor;
|
|
142
146
|
default: string;
|
|
143
147
|
};
|
|
148
|
+
rowHeight: {
|
|
149
|
+
type: StringConstructor;
|
|
150
|
+
default: string;
|
|
151
|
+
};
|
|
144
152
|
/**
|
|
145
153
|
* 显示模式 list|card
|
|
146
154
|
* @type {String}
|
|
@@ -170,10 +178,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
170
178
|
onGridReady?: (...args: any[]) => any;
|
|
171
179
|
onGridDataReady?: (...args: any[]) => any;
|
|
172
180
|
onSelectionChanged?: (...args: any[]) => any;
|
|
181
|
+
onItemConfigChange?: (...args: any[]) => any;
|
|
173
182
|
}, {
|
|
174
183
|
maxHeight: string;
|
|
175
184
|
partName: string;
|
|
176
185
|
rowSelection: string;
|
|
186
|
+
rowHeight: string;
|
|
177
187
|
fontSize: string;
|
|
178
188
|
fontFamily: string;
|
|
179
189
|
}, {}>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import 'vant/lib/index.css';
|
|
2
2
|
import 'vant/lib/checkbox';
|
|
3
3
|
import 'vant/lib/checkbox-group';
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
type SelectMode = 'singleRow' | 'multiRow';
|
|
5
|
+
type ViewType = 'list' | 'card';
|
|
6
6
|
declare const _default: import("vue").DefineComponent<{
|
|
7
7
|
/**
|
|
8
8
|
* 传入表数据
|