@baosight/erm 1.1.1 → 1.1.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/ermGrid/ermGrid.vue.d.ts +15 -6
- package/lib/ermList/ermList.vue.d.ts +2 -2
- package/lib/index.css +1 -1
- package/lib/index.esm.css +142 -110
- 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
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
1
|
+
import 'vant/lib/index.css';
|
|
2
|
+
import 'vant/lib/checkbox';
|
|
3
|
+
import 'vant/lib/checkbox-group';
|
|
4
|
+
import 'ag-grid-community/styles/ag-grid.css';
|
|
5
|
+
import 'ag-grid-community/styles/ag-theme-quartz.css';
|
|
6
|
+
import 'ag-grid-community/styles/ag-theme-alpine.css';
|
|
7
7
|
declare const _default: import("vue").DefineComponent<{
|
|
8
8
|
/**
|
|
9
9
|
* 传入表数据
|
|
@@ -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}
|
|
@@ -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}
|
|
@@ -174,6 +182,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
174
182
|
maxHeight: string;
|
|
175
183
|
partName: string;
|
|
176
184
|
rowSelection: string;
|
|
185
|
+
rowHeight: string;
|
|
177
186
|
fontSize: string;
|
|
178
187
|
fontFamily: string;
|
|
179
188
|
}, {}>;
|
|
@@ -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
|
* 传入表数据
|