@baosight/erm 1.0.55 → 1.0.57
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/ermList/ermList.vue.d.ts +20 -2
- package/lib/index.common.js +386 -126
- package/lib/index.common.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/index.esm.css +110 -66
- package/lib/index.esm.js +1 -1
- package/lib/index.umd.js +386 -126
- package/lib/index.umd.js.map +1 -1
- package/lib/index.umd.min.js +36 -36
- package/lib/index.umd.min.js.map +1 -1
- package/package.json +2 -1
|
@@ -2,6 +2,7 @@ import 'vant/lib/index.css';
|
|
|
2
2
|
import 'vant/lib/checkbox';
|
|
3
3
|
import 'vant/lib/checkbox-group';
|
|
4
4
|
declare type SelectMode = 'singleRow' | 'multiRow';
|
|
5
|
+
declare type ViewType = 'list' | 'card';
|
|
5
6
|
declare const _default: import("vue").DefineComponent<{
|
|
6
7
|
/**
|
|
7
8
|
* 传入表数据
|
|
@@ -107,7 +108,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
107
108
|
};
|
|
108
109
|
/**
|
|
109
110
|
* 多选模式
|
|
110
|
-
* @type {
|
|
111
|
+
* @type {String}
|
|
111
112
|
*/
|
|
112
113
|
selectMode: {
|
|
113
114
|
type: () => SelectMode;
|
|
@@ -145,6 +146,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
145
146
|
type: BooleanConstructor;
|
|
146
147
|
default: boolean;
|
|
147
148
|
};
|
|
149
|
+
/**
|
|
150
|
+
* 显示模式 list|card
|
|
151
|
+
* @type {String}
|
|
152
|
+
*/
|
|
153
|
+
viewType: {
|
|
154
|
+
type: () => ViewType;
|
|
155
|
+
default: string;
|
|
156
|
+
};
|
|
148
157
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
149
158
|
[key: string]: any;
|
|
150
159
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("leftIconClick" | "mainClick" | "rightIconClick" | "leftIconHold" | "rightIconHold" | "pullRefresh" | "pullUpdate")[], "leftIconClick" | "mainClick" | "rightIconClick" | "leftIconHold" | "rightIconHold" | "pullRefresh" | "pullUpdate", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -252,7 +261,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
252
261
|
};
|
|
253
262
|
/**
|
|
254
263
|
* 多选模式
|
|
255
|
-
* @type {
|
|
264
|
+
* @type {String}
|
|
256
265
|
*/
|
|
257
266
|
selectMode: {
|
|
258
267
|
type: () => SelectMode;
|
|
@@ -290,6 +299,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
290
299
|
type: BooleanConstructor;
|
|
291
300
|
default: boolean;
|
|
292
301
|
};
|
|
302
|
+
/**
|
|
303
|
+
* 显示模式 list|card
|
|
304
|
+
* @type {String}
|
|
305
|
+
*/
|
|
306
|
+
viewType: {
|
|
307
|
+
type: () => ViewType;
|
|
308
|
+
default: string;
|
|
309
|
+
};
|
|
293
310
|
}>> & {
|
|
294
311
|
onLeftIconClick?: (...args: any[]) => any;
|
|
295
312
|
onMainClick?: (...args: any[]) => any;
|
|
@@ -313,5 +330,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
313
330
|
pullDownDisabled: boolean;
|
|
314
331
|
leftSwiperSelect: boolean;
|
|
315
332
|
rightSwiperDelete: boolean;
|
|
333
|
+
viewType: ViewType;
|
|
316
334
|
}, {}>;
|
|
317
335
|
export default _default;
|