@ecan-bi/datav 1.1.39 → 1.1.41
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/dist/index.es.js +1525 -1499
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +144 -618
- package/types/container/border/index.d.ts +144 -618
- package/types/container/border/props.d.ts +72 -309
- package/types/container/modal/Modal.vue.d.ts +74 -237
- package/types/container/modal/index.d.ts +73 -237
- package/types/container/modal/props.d.ts +36 -117
- package/types/container/tabs/Tabs.vue.d.ts +184 -380
- package/types/container/tabs/index.d.ts +184 -380
- package/types/container/tabs/props.d.ts +94 -190
- package/types/control/button/Button.vue.d.ts +126 -418
- package/types/control/button/index.d.ts +126 -418
- package/types/control/button/props.d.ts +63 -209
- package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
- package/types/control/checkbox/index.d.ts +102 -334
- package/types/control/checkbox/props.d.ts +51 -167
- package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
- package/types/control/date-picker/index.d.ts +119 -391
- package/types/control/date-picker/props.d.ts +59 -195
- package/types/control/input/Input.vue.d.ts +102 -334
- package/types/control/input/index.d.ts +102 -334
- package/types/control/input/props.d.ts +51 -167
- package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
- package/types/control/range-picker/index.d.ts +128 -420
- package/types/control/range-picker/props.d.ts +63 -209
- package/types/control/select/Select.vue.d.ts +125 -531
- package/types/control/select/index.d.ts +125 -531
- package/types/control/select/props.d.ts +59 -265
- package/types/graph/bar/Bar.vue.d.ts +374 -2044
- package/types/graph/bar/index.d.ts +373 -2043
- package/types/graph/bar/props.d.ts +166 -962
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
- package/types/graph/combo-graph/index.d.ts +339 -741
- package/types/graph/combo-graph/props.d.ts +154 -355
- package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
- package/types/graph/custom-graph/index.d.ts +100 -420
- package/types/graph/custom-graph/props.d.ts +50 -210
- package/types/graph/line/Line.vue.d.ts +364 -2546
- package/types/graph/line/index.d.ts +364 -2546
- package/types/graph/line/props.d.ts +149 -1211
- package/types/graph/pie/Pie.vue.d.ts +317 -722
- package/types/graph/pie/index.d.ts +316 -722
- package/types/graph/pie/props.d.ts +142 -345
- package/types/graph/scatter/Scatter.vue.d.ts +293 -639
- package/types/graph/scatter/index.d.ts +293 -639
- package/types/graph/scatter/props.d.ts +132 -305
- package/types/map/map/Map.vue.d.ts +269 -1404
- package/types/map/map/index.d.ts +269 -1404
- package/types/map/map/props.d.ts +121 -664
- package/types/media/iframe/Iframe.vue.d.ts +102 -334
- package/types/media/iframe/index.d.ts +102 -334
- package/types/media/iframe/props.d.ts +51 -167
- package/types/media/image/Image.vue.d.ts +110 -362
- package/types/media/image/index.d.ts +110 -362
- package/types/media/image/props.d.ts +55 -181
- package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
- package/types/setting/page-config/index.d.ts +28 -70
- package/types/setting/page-config/props.d.ts +14 -35
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
- package/types/setting/provider-config/index.d.ts +22 -62
- package/types/setting/provider-config/props.d.ts +11 -31
- package/types/table/table/Table.vue.d.ts +234 -1660
- package/types/table/table/index.d.ts +234 -1660
- package/types/table/table/props.d.ts +101 -811
- package/types/text/list/List.vue.d.ts +136 -688
- package/types/text/list/index.d.ts +136 -688
- package/types/text/list/props.d.ts +68 -344
- package/types/text/proportion/Proportion.vue.d.ts +148 -636
- package/types/text/proportion/index.d.ts +148 -636
- package/types/text/proportion/props.d.ts +74 -318
- package/types/text/text/Text.vue.d.ts +160 -690
- package/types/text/text/index.d.ts +160 -690
- package/types/text/text/props.d.ts +81 -346
- package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
- package/types/text/time-display/index.d.ts +126 -418
- package/types/text/time-display/props.d.ts +63 -209
- package/types/utils/props.d.ts +3 -5
|
@@ -39,924 +39,214 @@ export interface TableProps extends Props {
|
|
|
39
39
|
export declare const tableProps: TableProps;
|
|
40
40
|
export declare const tableComponentProps: {
|
|
41
41
|
columns: {
|
|
42
|
-
type?:
|
|
43
|
-
default?: undefined;
|
|
44
|
-
} | {
|
|
45
|
-
type: any;
|
|
46
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
42
|
+
type?: import("vue").PropType<{
|
|
47
43
|
[key: string]: any;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
}[] | {
|
|
51
|
-
[key: string]: any;
|
|
52
|
-
chartType: 'table';
|
|
53
|
-
plugin: '1';
|
|
54
|
-
layer: '1';
|
|
55
|
-
} | {
|
|
56
|
-
[key: string]: any;
|
|
57
|
-
}[] | {
|
|
44
|
+
}[]>;
|
|
45
|
+
default?: {
|
|
58
46
|
[key: string]: any;
|
|
59
47
|
}[];
|
|
60
48
|
};
|
|
61
49
|
data: {
|
|
62
|
-
type?:
|
|
63
|
-
default?: undefined;
|
|
64
|
-
} | {
|
|
65
|
-
type: any;
|
|
66
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
67
|
-
[key: string]: any;
|
|
68
|
-
} | import('../../utils/props').RequestParams | {
|
|
50
|
+
type?: import("vue").PropType<{
|
|
69
51
|
[key: string]: any;
|
|
70
|
-
}[]
|
|
71
|
-
|
|
72
|
-
chartType: 'table';
|
|
73
|
-
plugin: '1';
|
|
74
|
-
layer: '1';
|
|
75
|
-
} | {
|
|
76
|
-
[key: string]: any;
|
|
77
|
-
}[] | {
|
|
52
|
+
}[]>;
|
|
53
|
+
default?: {
|
|
78
54
|
[key: string]: any;
|
|
79
55
|
}[];
|
|
80
56
|
};
|
|
81
57
|
bordered: {
|
|
82
|
-
type?:
|
|
83
|
-
default?:
|
|
84
|
-
} | {
|
|
85
|
-
type: any;
|
|
86
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
87
|
-
[key: string]: any;
|
|
88
|
-
} | import('../../utils/props').RequestParams | {
|
|
89
|
-
[key: string]: any;
|
|
90
|
-
}[] | {
|
|
91
|
-
[key: string]: any;
|
|
92
|
-
chartType: 'table';
|
|
93
|
-
plugin: '1';
|
|
94
|
-
layer: '1';
|
|
95
|
-
} | {
|
|
96
|
-
[key: string]: any;
|
|
97
|
-
}[] | {
|
|
98
|
-
[key: string]: any;
|
|
99
|
-
}[];
|
|
58
|
+
type?: import("vue").PropType<boolean>;
|
|
59
|
+
default?: boolean;
|
|
100
60
|
};
|
|
101
61
|
size: {
|
|
102
|
-
type?:
|
|
103
|
-
default?:
|
|
104
|
-
} | {
|
|
105
|
-
type: any;
|
|
106
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
107
|
-
[key: string]: any;
|
|
108
|
-
} | import('../../utils/props').RequestParams | {
|
|
109
|
-
[key: string]: any;
|
|
110
|
-
}[] | {
|
|
111
|
-
[key: string]: any;
|
|
112
|
-
chartType: 'table';
|
|
113
|
-
plugin: '1';
|
|
114
|
-
layer: '1';
|
|
115
|
-
} | {
|
|
116
|
-
[key: string]: any;
|
|
117
|
-
}[] | {
|
|
118
|
-
[key: string]: any;
|
|
119
|
-
}[];
|
|
62
|
+
type?: import("vue").PropType<"small" | "default" | "middle">;
|
|
63
|
+
default?: "small" | "default" | "middle";
|
|
120
64
|
};
|
|
121
65
|
isUseSeq: {
|
|
122
|
-
type?:
|
|
123
|
-
default?:
|
|
124
|
-
} | {
|
|
125
|
-
type: any;
|
|
126
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
127
|
-
[key: string]: any;
|
|
128
|
-
} | import('../../utils/props').RequestParams | {
|
|
129
|
-
[key: string]: any;
|
|
130
|
-
}[] | {
|
|
131
|
-
[key: string]: any;
|
|
132
|
-
chartType: 'table';
|
|
133
|
-
plugin: '1';
|
|
134
|
-
layer: '1';
|
|
135
|
-
} | {
|
|
136
|
-
[key: string]: any;
|
|
137
|
-
}[] | {
|
|
138
|
-
[key: string]: any;
|
|
139
|
-
}[];
|
|
66
|
+
type?: import("vue").PropType<boolean>;
|
|
67
|
+
default?: boolean;
|
|
140
68
|
};
|
|
141
69
|
columnsFixedNum: {
|
|
142
|
-
type?:
|
|
143
|
-
default?:
|
|
144
|
-
} | {
|
|
145
|
-
type: any;
|
|
146
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
147
|
-
[key: string]: any;
|
|
148
|
-
} | import('../../utils/props').RequestParams | {
|
|
149
|
-
[key: string]: any;
|
|
150
|
-
}[] | {
|
|
151
|
-
[key: string]: any;
|
|
152
|
-
chartType: 'table';
|
|
153
|
-
plugin: '1';
|
|
154
|
-
layer: '1';
|
|
155
|
-
} | {
|
|
156
|
-
[key: string]: any;
|
|
157
|
-
}[] | {
|
|
158
|
-
[key: string]: any;
|
|
159
|
-
}[];
|
|
70
|
+
type?: import("vue").PropType<number>;
|
|
71
|
+
default?: number;
|
|
160
72
|
};
|
|
161
73
|
scrollX: {
|
|
162
|
-
type?:
|
|
163
|
-
default?:
|
|
164
|
-
} | {
|
|
165
|
-
type: any;
|
|
166
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
167
|
-
[key: string]: any;
|
|
168
|
-
} | import('../../utils/props').RequestParams | {
|
|
169
|
-
[key: string]: any;
|
|
170
|
-
}[] | {
|
|
171
|
-
[key: string]: any;
|
|
172
|
-
chartType: 'table';
|
|
173
|
-
plugin: '1';
|
|
174
|
-
layer: '1';
|
|
175
|
-
} | {
|
|
176
|
-
[key: string]: any;
|
|
177
|
-
}[] | {
|
|
178
|
-
[key: string]: any;
|
|
179
|
-
}[];
|
|
74
|
+
type?: import("vue").PropType<number>;
|
|
75
|
+
default?: number;
|
|
180
76
|
};
|
|
181
77
|
paginationShow: {
|
|
182
|
-
type?:
|
|
183
|
-
default?:
|
|
184
|
-
} | {
|
|
185
|
-
type: any;
|
|
186
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
187
|
-
[key: string]: any;
|
|
188
|
-
} | import('../../utils/props').RequestParams | {
|
|
189
|
-
[key: string]: any;
|
|
190
|
-
}[] | {
|
|
191
|
-
[key: string]: any;
|
|
192
|
-
chartType: 'table';
|
|
193
|
-
plugin: '1';
|
|
194
|
-
layer: '1';
|
|
195
|
-
} | {
|
|
196
|
-
[key: string]: any;
|
|
197
|
-
}[] | {
|
|
198
|
-
[key: string]: any;
|
|
199
|
-
}[];
|
|
78
|
+
type?: import("vue").PropType<boolean>;
|
|
79
|
+
default?: boolean;
|
|
200
80
|
};
|
|
201
81
|
paginationPosition: {
|
|
202
|
-
type?:
|
|
203
|
-
default?:
|
|
204
|
-
} | {
|
|
205
|
-
type: any;
|
|
206
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
207
|
-
[key: string]: any;
|
|
208
|
-
} | import('../../utils/props').RequestParams | {
|
|
209
|
-
[key: string]: any;
|
|
210
|
-
}[] | {
|
|
211
|
-
[key: string]: any;
|
|
212
|
-
chartType: 'table';
|
|
213
|
-
plugin: '1';
|
|
214
|
-
layer: '1';
|
|
215
|
-
} | {
|
|
216
|
-
[key: string]: any;
|
|
217
|
-
}[] | {
|
|
218
|
-
[key: string]: any;
|
|
219
|
-
}[];
|
|
82
|
+
type?: import("vue").PropType<"bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "topCenter" | "bottomCenter">;
|
|
83
|
+
default?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
220
84
|
};
|
|
221
85
|
simple: {
|
|
222
|
-
type?:
|
|
223
|
-
default?:
|
|
224
|
-
} | {
|
|
225
|
-
type: any;
|
|
226
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
227
|
-
[key: string]: any;
|
|
228
|
-
} | import('../../utils/props').RequestParams | {
|
|
229
|
-
[key: string]: any;
|
|
230
|
-
}[] | {
|
|
231
|
-
[key: string]: any;
|
|
232
|
-
chartType: 'table';
|
|
233
|
-
plugin: '1';
|
|
234
|
-
layer: '1';
|
|
235
|
-
} | {
|
|
236
|
-
[key: string]: any;
|
|
237
|
-
}[] | {
|
|
238
|
-
[key: string]: any;
|
|
239
|
-
}[];
|
|
86
|
+
type?: import("vue").PropType<boolean>;
|
|
87
|
+
default?: boolean;
|
|
240
88
|
};
|
|
241
89
|
cellBackgroundColor: {
|
|
242
|
-
type?:
|
|
243
|
-
default?:
|
|
244
|
-
} | {
|
|
245
|
-
type: any;
|
|
246
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
247
|
-
[key: string]: any;
|
|
248
|
-
} | import('../../utils/props').RequestParams | {
|
|
249
|
-
[key: string]: any;
|
|
250
|
-
}[] | {
|
|
251
|
-
[key: string]: any;
|
|
252
|
-
chartType: 'table';
|
|
253
|
-
plugin: '1';
|
|
254
|
-
layer: '1';
|
|
255
|
-
} | {
|
|
256
|
-
[key: string]: any;
|
|
257
|
-
}[] | {
|
|
258
|
-
[key: string]: any;
|
|
259
|
-
}[];
|
|
90
|
+
type?: import("vue").PropType<string>;
|
|
91
|
+
default?: string;
|
|
260
92
|
};
|
|
261
93
|
borderColor: {
|
|
262
|
-
type?:
|
|
263
|
-
default?:
|
|
264
|
-
} | {
|
|
265
|
-
type: any;
|
|
266
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
267
|
-
[key: string]: any;
|
|
268
|
-
} | import('../../utils/props').RequestParams | {
|
|
269
|
-
[key: string]: any;
|
|
270
|
-
}[] | {
|
|
271
|
-
[key: string]: any;
|
|
272
|
-
chartType: 'table';
|
|
273
|
-
plugin: '1';
|
|
274
|
-
layer: '1';
|
|
275
|
-
} | {
|
|
276
|
-
[key: string]: any;
|
|
277
|
-
}[] | {
|
|
278
|
-
[key: string]: any;
|
|
279
|
-
}[];
|
|
94
|
+
type?: import("vue").PropType<string>;
|
|
95
|
+
default?: string;
|
|
280
96
|
};
|
|
281
97
|
paginationPageSize: {
|
|
282
|
-
type?:
|
|
283
|
-
default?:
|
|
284
|
-
} | {
|
|
285
|
-
type: any;
|
|
286
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
287
|
-
[key: string]: any;
|
|
288
|
-
} | import('../../utils/props').RequestParams | {
|
|
289
|
-
[key: string]: any;
|
|
290
|
-
}[] | {
|
|
291
|
-
[key: string]: any;
|
|
292
|
-
chartType: 'table';
|
|
293
|
-
plugin: '1';
|
|
294
|
-
layer: '1';
|
|
295
|
-
} | {
|
|
296
|
-
[key: string]: any;
|
|
297
|
-
}[] | {
|
|
298
|
-
[key: string]: any;
|
|
299
|
-
}[];
|
|
98
|
+
type?: import("vue").PropType<number>;
|
|
99
|
+
default?: number;
|
|
300
100
|
};
|
|
301
101
|
isUseAction: {
|
|
302
|
-
type?:
|
|
303
|
-
default?:
|
|
304
|
-
} | {
|
|
305
|
-
type: any;
|
|
306
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
307
|
-
[key: string]: any;
|
|
308
|
-
} | import('../../utils/props').RequestParams | {
|
|
309
|
-
[key: string]: any;
|
|
310
|
-
}[] | {
|
|
311
|
-
[key: string]: any;
|
|
312
|
-
chartType: 'table';
|
|
313
|
-
plugin: '1';
|
|
314
|
-
layer: '1';
|
|
315
|
-
} | {
|
|
316
|
-
[key: string]: any;
|
|
317
|
-
}[] | {
|
|
318
|
-
[key: string]: any;
|
|
319
|
-
}[];
|
|
102
|
+
type?: import("vue").PropType<boolean>;
|
|
103
|
+
default?: boolean;
|
|
320
104
|
};
|
|
321
105
|
actionColumnWidth: {
|
|
322
|
-
type?:
|
|
323
|
-
default?:
|
|
324
|
-
} | {
|
|
325
|
-
type: any;
|
|
326
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
327
|
-
[key: string]: any;
|
|
328
|
-
} | import('../../utils/props').RequestParams | {
|
|
329
|
-
[key: string]: any;
|
|
330
|
-
}[] | {
|
|
331
|
-
[key: string]: any;
|
|
332
|
-
chartType: 'table';
|
|
333
|
-
plugin: '1';
|
|
334
|
-
layer: '1';
|
|
335
|
-
} | {
|
|
336
|
-
[key: string]: any;
|
|
337
|
-
}[] | {
|
|
338
|
-
[key: string]: any;
|
|
339
|
-
}[];
|
|
106
|
+
type?: import("vue").PropType<number>;
|
|
107
|
+
default?: number;
|
|
340
108
|
};
|
|
341
109
|
actionList: {
|
|
342
|
-
type?:
|
|
343
|
-
default?: undefined;
|
|
344
|
-
} | {
|
|
345
|
-
type: any;
|
|
346
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
110
|
+
type?: import("vue").PropType<{
|
|
347
111
|
[key: string]: any;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
}[] | {
|
|
351
|
-
[key: string]: any;
|
|
352
|
-
chartType: 'table';
|
|
353
|
-
plugin: '1';
|
|
354
|
-
layer: '1';
|
|
355
|
-
} | {
|
|
356
|
-
[key: string]: any;
|
|
357
|
-
}[] | {
|
|
112
|
+
}[]>;
|
|
113
|
+
default?: {
|
|
358
114
|
[key: string]: any;
|
|
359
115
|
}[];
|
|
360
116
|
};
|
|
361
117
|
headerFontSize: {
|
|
362
|
-
type?:
|
|
363
|
-
default?:
|
|
364
|
-
} | {
|
|
365
|
-
type: any;
|
|
366
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
367
|
-
[key: string]: any;
|
|
368
|
-
} | import('../../utils/props').RequestParams | {
|
|
369
|
-
[key: string]: any;
|
|
370
|
-
}[] | {
|
|
371
|
-
[key: string]: any;
|
|
372
|
-
chartType: 'table';
|
|
373
|
-
plugin: '1';
|
|
374
|
-
layer: '1';
|
|
375
|
-
} | {
|
|
376
|
-
[key: string]: any;
|
|
377
|
-
}[] | {
|
|
378
|
-
[key: string]: any;
|
|
379
|
-
}[];
|
|
118
|
+
type?: import("vue").PropType<string>;
|
|
119
|
+
default?: string;
|
|
380
120
|
};
|
|
381
121
|
headerFontWeight: {
|
|
382
|
-
type?:
|
|
383
|
-
default?:
|
|
384
|
-
} | {
|
|
385
|
-
type: any;
|
|
386
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
387
|
-
[key: string]: any;
|
|
388
|
-
} | import('../../utils/props').RequestParams | {
|
|
389
|
-
[key: string]: any;
|
|
390
|
-
}[] | {
|
|
391
|
-
[key: string]: any;
|
|
392
|
-
chartType: 'table';
|
|
393
|
-
plugin: '1';
|
|
394
|
-
layer: '1';
|
|
395
|
-
} | {
|
|
396
|
-
[key: string]: any;
|
|
397
|
-
}[] | {
|
|
398
|
-
[key: string]: any;
|
|
399
|
-
}[];
|
|
122
|
+
type?: import("vue").PropType<number>;
|
|
123
|
+
default?: number;
|
|
400
124
|
};
|
|
401
125
|
fontSize: {
|
|
402
|
-
type?:
|
|
403
|
-
default?:
|
|
404
|
-
} | {
|
|
405
|
-
type: any;
|
|
406
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
407
|
-
[key: string]: any;
|
|
408
|
-
} | import('../../utils/props').RequestParams | {
|
|
409
|
-
[key: string]: any;
|
|
410
|
-
}[] | {
|
|
411
|
-
[key: string]: any;
|
|
412
|
-
chartType: 'table';
|
|
413
|
-
plugin: '1';
|
|
414
|
-
layer: '1';
|
|
415
|
-
} | {
|
|
416
|
-
[key: string]: any;
|
|
417
|
-
}[] | {
|
|
418
|
-
[key: string]: any;
|
|
419
|
-
}[];
|
|
126
|
+
type?: import("vue").PropType<string>;
|
|
127
|
+
default?: string;
|
|
420
128
|
};
|
|
421
129
|
fontWeight: {
|
|
422
|
-
type?:
|
|
423
|
-
default?:
|
|
424
|
-
} | {
|
|
425
|
-
type: any;
|
|
426
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
427
|
-
[key: string]: any;
|
|
428
|
-
} | import('../../utils/props').RequestParams | {
|
|
429
|
-
[key: string]: any;
|
|
430
|
-
}[] | {
|
|
431
|
-
[key: string]: any;
|
|
432
|
-
chartType: 'table';
|
|
433
|
-
plugin: '1';
|
|
434
|
-
layer: '1';
|
|
435
|
-
} | {
|
|
436
|
-
[key: string]: any;
|
|
437
|
-
}[] | {
|
|
438
|
-
[key: string]: any;
|
|
439
|
-
}[];
|
|
130
|
+
type?: import("vue").PropType<number>;
|
|
131
|
+
default?: number;
|
|
440
132
|
};
|
|
441
133
|
isReverse: {
|
|
442
|
-
type?:
|
|
443
|
-
default?:
|
|
444
|
-
} | {
|
|
445
|
-
type: any;
|
|
446
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
447
|
-
[key: string]: any;
|
|
448
|
-
} | import('../../utils/props').RequestParams | {
|
|
449
|
-
[key: string]: any;
|
|
450
|
-
}[] | {
|
|
451
|
-
[key: string]: any;
|
|
452
|
-
chartType: 'table';
|
|
453
|
-
plugin: '1';
|
|
454
|
-
layer: '1';
|
|
455
|
-
} | {
|
|
456
|
-
[key: string]: any;
|
|
457
|
-
}[] | {
|
|
458
|
-
[key: string]: any;
|
|
459
|
-
}[];
|
|
134
|
+
type?: import("vue").PropType<boolean>;
|
|
135
|
+
default?: boolean;
|
|
460
136
|
};
|
|
461
137
|
clickHighlight: {
|
|
462
|
-
type?:
|
|
463
|
-
default?:
|
|
464
|
-
} | {
|
|
465
|
-
type: any;
|
|
466
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
467
|
-
[key: string]: any;
|
|
468
|
-
} | import('../../utils/props').RequestParams | {
|
|
469
|
-
[key: string]: any;
|
|
470
|
-
}[] | {
|
|
471
|
-
[key: string]: any;
|
|
472
|
-
chartType: 'table';
|
|
473
|
-
plugin: '1';
|
|
474
|
-
layer: '1';
|
|
475
|
-
} | {
|
|
476
|
-
[key: string]: any;
|
|
477
|
-
}[] | {
|
|
478
|
-
[key: string]: any;
|
|
479
|
-
}[];
|
|
138
|
+
type?: import("vue").PropType<boolean>;
|
|
139
|
+
default?: boolean;
|
|
480
140
|
};
|
|
481
141
|
filterDropdownHeight: {
|
|
482
|
-
type?:
|
|
483
|
-
default?:
|
|
484
|
-
} | {
|
|
485
|
-
type: any;
|
|
486
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
487
|
-
[key: string]: any;
|
|
488
|
-
} | import('../../utils/props').RequestParams | {
|
|
489
|
-
[key: string]: any;
|
|
490
|
-
}[] | {
|
|
491
|
-
[key: string]: any;
|
|
492
|
-
chartType: 'table';
|
|
493
|
-
plugin: '1';
|
|
494
|
-
layer: '1';
|
|
495
|
-
} | {
|
|
496
|
-
[key: string]: any;
|
|
497
|
-
}[] | {
|
|
498
|
-
[key: string]: any;
|
|
499
|
-
}[];
|
|
142
|
+
type?: import("vue").PropType<string>;
|
|
143
|
+
default?: string;
|
|
500
144
|
};
|
|
501
145
|
graphicConfig: {
|
|
502
|
-
type?:
|
|
503
|
-
default?: undefined;
|
|
504
|
-
} | {
|
|
505
|
-
type: any;
|
|
506
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
507
|
-
[key: string]: any;
|
|
508
|
-
} | import('../../utils/props').RequestParams | {
|
|
509
|
-
[key: string]: any;
|
|
510
|
-
}[] | {
|
|
146
|
+
type?: import("vue").PropType<{
|
|
511
147
|
[key: string]: any;
|
|
512
148
|
chartType: 'table';
|
|
513
149
|
plugin: '1';
|
|
514
150
|
layer: '1';
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
}[] | {
|
|
518
|
-
[key: string]: any;
|
|
519
|
-
}[];
|
|
520
|
-
};
|
|
521
|
-
id: {
|
|
522
|
-
type?: undefined;
|
|
523
|
-
default?: undefined;
|
|
524
|
-
} | {
|
|
525
|
-
type: any;
|
|
526
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
527
|
-
[key: string]: any;
|
|
528
|
-
} | import('../../utils/props').RequestParams | {
|
|
529
|
-
[key: string]: any;
|
|
530
|
-
}[] | {
|
|
151
|
+
}>;
|
|
152
|
+
default?: {
|
|
531
153
|
[key: string]: any;
|
|
532
154
|
chartType: 'table';
|
|
533
155
|
plugin: '1';
|
|
534
156
|
layer: '1';
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
id: {
|
|
160
|
+
type?: import("vue").PropType<string>;
|
|
161
|
+
default?: string;
|
|
540
162
|
};
|
|
541
163
|
name: {
|
|
542
|
-
type?:
|
|
543
|
-
default?:
|
|
544
|
-
} | {
|
|
545
|
-
type: any;
|
|
546
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
547
|
-
[key: string]: any;
|
|
548
|
-
} | import('../../utils/props').RequestParams | {
|
|
549
|
-
[key: string]: any;
|
|
550
|
-
}[] | {
|
|
551
|
-
[key: string]: any;
|
|
552
|
-
chartType: 'table';
|
|
553
|
-
plugin: '1';
|
|
554
|
-
layer: '1';
|
|
555
|
-
} | {
|
|
556
|
-
[key: string]: any;
|
|
557
|
-
}[] | {
|
|
558
|
-
[key: string]: any;
|
|
559
|
-
}[];
|
|
164
|
+
type?: import("vue").PropType<string>;
|
|
165
|
+
default?: string;
|
|
560
166
|
};
|
|
561
167
|
keyName: {
|
|
562
|
-
type?:
|
|
563
|
-
default?:
|
|
564
|
-
} | {
|
|
565
|
-
type: any;
|
|
566
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
567
|
-
[key: string]: any;
|
|
568
|
-
} | import('../../utils/props').RequestParams | {
|
|
569
|
-
[key: string]: any;
|
|
570
|
-
}[] | {
|
|
571
|
-
[key: string]: any;
|
|
572
|
-
chartType: 'table';
|
|
573
|
-
plugin: '1';
|
|
574
|
-
layer: '1';
|
|
575
|
-
} | {
|
|
576
|
-
[key: string]: any;
|
|
577
|
-
}[] | {
|
|
578
|
-
[key: string]: any;
|
|
579
|
-
}[];
|
|
168
|
+
type?: import("vue").PropType<string>;
|
|
169
|
+
default?: string;
|
|
580
170
|
};
|
|
581
171
|
type: {
|
|
582
|
-
type?:
|
|
583
|
-
default?:
|
|
584
|
-
} | {
|
|
585
|
-
type: any;
|
|
586
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
587
|
-
[key: string]: any;
|
|
588
|
-
} | import('../../utils/props').RequestParams | {
|
|
589
|
-
[key: string]: any;
|
|
590
|
-
}[] | {
|
|
591
|
-
[key: string]: any;
|
|
592
|
-
chartType: 'table';
|
|
593
|
-
plugin: '1';
|
|
594
|
-
layer: '1';
|
|
595
|
-
} | {
|
|
596
|
-
[key: string]: any;
|
|
597
|
-
}[] | {
|
|
598
|
-
[key: string]: any;
|
|
599
|
-
}[];
|
|
172
|
+
type?: import("vue").PropType<string>;
|
|
173
|
+
default?: string;
|
|
600
174
|
};
|
|
601
175
|
width: {
|
|
602
|
-
type?:
|
|
603
|
-
default?:
|
|
604
|
-
} | {
|
|
605
|
-
type: any;
|
|
606
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
607
|
-
[key: string]: any;
|
|
608
|
-
} | import('../../utils/props').RequestParams | {
|
|
609
|
-
[key: string]: any;
|
|
610
|
-
}[] | {
|
|
611
|
-
[key: string]: any;
|
|
612
|
-
chartType: 'table';
|
|
613
|
-
plugin: '1';
|
|
614
|
-
layer: '1';
|
|
615
|
-
} | {
|
|
616
|
-
[key: string]: any;
|
|
617
|
-
}[] | {
|
|
618
|
-
[key: string]: any;
|
|
619
|
-
}[];
|
|
176
|
+
type?: import("vue").PropType<string>;
|
|
177
|
+
default?: string;
|
|
620
178
|
};
|
|
621
179
|
height: {
|
|
622
|
-
type?:
|
|
623
|
-
default?:
|
|
624
|
-
} | {
|
|
625
|
-
type: any;
|
|
626
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
627
|
-
[key: string]: any;
|
|
628
|
-
} | import('../../utils/props').RequestParams | {
|
|
629
|
-
[key: string]: any;
|
|
630
|
-
}[] | {
|
|
631
|
-
[key: string]: any;
|
|
632
|
-
chartType: 'table';
|
|
633
|
-
plugin: '1';
|
|
634
|
-
layer: '1';
|
|
635
|
-
} | {
|
|
636
|
-
[key: string]: any;
|
|
637
|
-
}[] | {
|
|
638
|
-
[key: string]: any;
|
|
639
|
-
}[];
|
|
180
|
+
type?: import("vue").PropType<string>;
|
|
181
|
+
default?: string;
|
|
640
182
|
};
|
|
641
183
|
position: {
|
|
642
|
-
type?:
|
|
643
|
-
default?:
|
|
644
|
-
} | {
|
|
645
|
-
type: any;
|
|
646
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
647
|
-
[key: string]: any;
|
|
648
|
-
} | import('../../utils/props').RequestParams | {
|
|
649
|
-
[key: string]: any;
|
|
650
|
-
}[] | {
|
|
651
|
-
[key: string]: any;
|
|
652
|
-
chartType: 'table';
|
|
653
|
-
plugin: '1';
|
|
654
|
-
layer: '1';
|
|
655
|
-
} | {
|
|
656
|
-
[key: string]: any;
|
|
657
|
-
}[] | {
|
|
658
|
-
[key: string]: any;
|
|
659
|
-
}[];
|
|
184
|
+
type?: import("vue").PropType<string>;
|
|
185
|
+
default?: string;
|
|
660
186
|
};
|
|
661
187
|
top: {
|
|
662
|
-
type?:
|
|
663
|
-
default?:
|
|
664
|
-
} | {
|
|
665
|
-
type: any;
|
|
666
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
667
|
-
[key: string]: any;
|
|
668
|
-
} | import('../../utils/props').RequestParams | {
|
|
669
|
-
[key: string]: any;
|
|
670
|
-
}[] | {
|
|
671
|
-
[key: string]: any;
|
|
672
|
-
chartType: 'table';
|
|
673
|
-
plugin: '1';
|
|
674
|
-
layer: '1';
|
|
675
|
-
} | {
|
|
676
|
-
[key: string]: any;
|
|
677
|
-
}[] | {
|
|
678
|
-
[key: string]: any;
|
|
679
|
-
}[];
|
|
188
|
+
type?: import("vue").PropType<string>;
|
|
189
|
+
default?: string;
|
|
680
190
|
};
|
|
681
191
|
left: {
|
|
682
|
-
type?:
|
|
683
|
-
default?:
|
|
684
|
-
} | {
|
|
685
|
-
type: any;
|
|
686
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
687
|
-
[key: string]: any;
|
|
688
|
-
} | import('../../utils/props').RequestParams | {
|
|
689
|
-
[key: string]: any;
|
|
690
|
-
}[] | {
|
|
691
|
-
[key: string]: any;
|
|
692
|
-
chartType: 'table';
|
|
693
|
-
plugin: '1';
|
|
694
|
-
layer: '1';
|
|
695
|
-
} | {
|
|
696
|
-
[key: string]: any;
|
|
697
|
-
}[] | {
|
|
698
|
-
[key: string]: any;
|
|
699
|
-
}[];
|
|
192
|
+
type?: import("vue").PropType<string>;
|
|
193
|
+
default?: string;
|
|
700
194
|
};
|
|
701
195
|
zIndex: {
|
|
702
|
-
type?:
|
|
703
|
-
default?:
|
|
704
|
-
} | {
|
|
705
|
-
type: any;
|
|
706
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
707
|
-
[key: string]: any;
|
|
708
|
-
} | import('../../utils/props').RequestParams | {
|
|
709
|
-
[key: string]: any;
|
|
710
|
-
}[] | {
|
|
711
|
-
[key: string]: any;
|
|
712
|
-
chartType: 'table';
|
|
713
|
-
plugin: '1';
|
|
714
|
-
layer: '1';
|
|
715
|
-
} | {
|
|
716
|
-
[key: string]: any;
|
|
717
|
-
}[] | {
|
|
718
|
-
[key: string]: any;
|
|
719
|
-
}[];
|
|
196
|
+
type?: import("vue").PropType<number>;
|
|
197
|
+
default?: number;
|
|
720
198
|
};
|
|
721
199
|
rotate: {
|
|
722
|
-
type?:
|
|
723
|
-
default?:
|
|
724
|
-
} | {
|
|
725
|
-
type: any;
|
|
726
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
727
|
-
[key: string]: any;
|
|
728
|
-
} | import('../../utils/props').RequestParams | {
|
|
729
|
-
[key: string]: any;
|
|
730
|
-
}[] | {
|
|
731
|
-
[key: string]: any;
|
|
732
|
-
chartType: 'table';
|
|
733
|
-
plugin: '1';
|
|
734
|
-
layer: '1';
|
|
735
|
-
} | {
|
|
736
|
-
[key: string]: any;
|
|
737
|
-
}[] | {
|
|
738
|
-
[key: string]: any;
|
|
739
|
-
}[];
|
|
200
|
+
type?: import("vue").PropType<string>;
|
|
201
|
+
default?: string;
|
|
740
202
|
};
|
|
741
203
|
isShow: {
|
|
742
|
-
type?:
|
|
743
|
-
default?:
|
|
744
|
-
} | {
|
|
745
|
-
type: any;
|
|
746
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
747
|
-
[key: string]: any;
|
|
748
|
-
} | import('../../utils/props').RequestParams | {
|
|
749
|
-
[key: string]: any;
|
|
750
|
-
}[] | {
|
|
751
|
-
[key: string]: any;
|
|
752
|
-
chartType: 'table';
|
|
753
|
-
plugin: '1';
|
|
754
|
-
layer: '1';
|
|
755
|
-
} | {
|
|
756
|
-
[key: string]: any;
|
|
757
|
-
}[] | {
|
|
758
|
-
[key: string]: any;
|
|
759
|
-
}[];
|
|
204
|
+
type?: import("vue").PropType<boolean>;
|
|
205
|
+
default?: boolean;
|
|
760
206
|
};
|
|
761
207
|
isRender: {
|
|
762
|
-
type?:
|
|
763
|
-
default?:
|
|
764
|
-
} | {
|
|
765
|
-
type: any;
|
|
766
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
767
|
-
[key: string]: any;
|
|
768
|
-
} | import('../../utils/props').RequestParams | {
|
|
769
|
-
[key: string]: any;
|
|
770
|
-
}[] | {
|
|
771
|
-
[key: string]: any;
|
|
772
|
-
chartType: 'table';
|
|
773
|
-
plugin: '1';
|
|
774
|
-
layer: '1';
|
|
775
|
-
} | {
|
|
776
|
-
[key: string]: any;
|
|
777
|
-
}[] | {
|
|
778
|
-
[key: string]: any;
|
|
779
|
-
}[];
|
|
208
|
+
type?: import("vue").PropType<boolean>;
|
|
209
|
+
default?: boolean;
|
|
780
210
|
};
|
|
781
211
|
events: {
|
|
782
|
-
type?:
|
|
783
|
-
default?:
|
|
784
|
-
} | {
|
|
785
|
-
type: any;
|
|
786
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
787
|
-
[key: string]: any;
|
|
788
|
-
} | import('../../utils/props').RequestParams | {
|
|
789
|
-
[key: string]: any;
|
|
790
|
-
}[] | {
|
|
791
|
-
[key: string]: any;
|
|
792
|
-
chartType: 'table';
|
|
793
|
-
plugin: '1';
|
|
794
|
-
layer: '1';
|
|
795
|
-
} | {
|
|
796
|
-
[key: string]: any;
|
|
797
|
-
}[] | {
|
|
798
|
-
[key: string]: any;
|
|
799
|
-
}[];
|
|
212
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
213
|
+
default?: import('../../utils/props').Events;
|
|
800
214
|
};
|
|
801
215
|
requestUrl: {
|
|
802
|
-
type?:
|
|
803
|
-
default?:
|
|
804
|
-
} | {
|
|
805
|
-
type: any;
|
|
806
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
807
|
-
[key: string]: any;
|
|
808
|
-
} | import('../../utils/props').RequestParams | {
|
|
809
|
-
[key: string]: any;
|
|
810
|
-
}[] | {
|
|
811
|
-
[key: string]: any;
|
|
812
|
-
chartType: 'table';
|
|
813
|
-
plugin: '1';
|
|
814
|
-
layer: '1';
|
|
815
|
-
} | {
|
|
816
|
-
[key: string]: any;
|
|
817
|
-
}[] | {
|
|
818
|
-
[key: string]: any;
|
|
819
|
-
}[];
|
|
216
|
+
type?: import("vue").PropType<string>;
|
|
217
|
+
default?: string;
|
|
820
218
|
};
|
|
821
219
|
requestMethod: {
|
|
822
|
-
type?:
|
|
823
|
-
default?:
|
|
824
|
-
} | {
|
|
825
|
-
type: any;
|
|
826
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
827
|
-
[key: string]: any;
|
|
828
|
-
} | import('../../utils/props').RequestParams | {
|
|
829
|
-
[key: string]: any;
|
|
830
|
-
}[] | {
|
|
831
|
-
[key: string]: any;
|
|
832
|
-
chartType: 'table';
|
|
833
|
-
plugin: '1';
|
|
834
|
-
layer: '1';
|
|
835
|
-
} | {
|
|
836
|
-
[key: string]: any;
|
|
837
|
-
}[] | {
|
|
838
|
-
[key: string]: any;
|
|
839
|
-
}[];
|
|
220
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
221
|
+
default?: import('../../utils/props').RequestMethod;
|
|
840
222
|
};
|
|
841
223
|
requestHeaders: {
|
|
842
|
-
type?:
|
|
843
|
-
default?: undefined;
|
|
844
|
-
} | {
|
|
845
|
-
type: any;
|
|
846
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
224
|
+
type?: import("vue").PropType<{
|
|
847
225
|
[key: string]: any;
|
|
848
|
-
}
|
|
226
|
+
}>;
|
|
227
|
+
default?: {
|
|
849
228
|
[key: string]: any;
|
|
850
|
-
}
|
|
851
|
-
[key: string]: any;
|
|
852
|
-
chartType: 'table';
|
|
853
|
-
plugin: '1';
|
|
854
|
-
layer: '1';
|
|
855
|
-
} | {
|
|
856
|
-
[key: string]: any;
|
|
857
|
-
}[] | {
|
|
858
|
-
[key: string]: any;
|
|
859
|
-
}[];
|
|
229
|
+
};
|
|
860
230
|
};
|
|
861
231
|
isOpenRequestTimer: {
|
|
862
|
-
type?:
|
|
863
|
-
default?:
|
|
864
|
-
} | {
|
|
865
|
-
type: any;
|
|
866
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
867
|
-
[key: string]: any;
|
|
868
|
-
} | import('../../utils/props').RequestParams | {
|
|
869
|
-
[key: string]: any;
|
|
870
|
-
}[] | {
|
|
871
|
-
[key: string]: any;
|
|
872
|
-
chartType: 'table';
|
|
873
|
-
plugin: '1';
|
|
874
|
-
layer: '1';
|
|
875
|
-
} | {
|
|
876
|
-
[key: string]: any;
|
|
877
|
-
}[] | {
|
|
878
|
-
[key: string]: any;
|
|
879
|
-
}[];
|
|
232
|
+
type?: import("vue").PropType<boolean>;
|
|
233
|
+
default?: boolean;
|
|
880
234
|
};
|
|
881
235
|
requestInterval: {
|
|
882
|
-
type?:
|
|
883
|
-
default?:
|
|
884
|
-
} | {
|
|
885
|
-
type: any;
|
|
886
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
887
|
-
[key: string]: any;
|
|
888
|
-
} | import('../../utils/props').RequestParams | {
|
|
889
|
-
[key: string]: any;
|
|
890
|
-
}[] | {
|
|
891
|
-
[key: string]: any;
|
|
892
|
-
chartType: 'table';
|
|
893
|
-
plugin: '1';
|
|
894
|
-
layer: '1';
|
|
895
|
-
} | {
|
|
896
|
-
[key: string]: any;
|
|
897
|
-
}[] | {
|
|
898
|
-
[key: string]: any;
|
|
899
|
-
}[];
|
|
236
|
+
type?: import("vue").PropType<number>;
|
|
237
|
+
default?: number;
|
|
900
238
|
};
|
|
901
239
|
requestParams: {
|
|
902
|
-
type?:
|
|
903
|
-
default?:
|
|
904
|
-
} | {
|
|
905
|
-
type: any;
|
|
906
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
907
|
-
[key: string]: any;
|
|
908
|
-
} | import('../../utils/props').RequestParams | {
|
|
909
|
-
[key: string]: any;
|
|
910
|
-
}[] | {
|
|
911
|
-
[key: string]: any;
|
|
912
|
-
chartType: 'table';
|
|
913
|
-
plugin: '1';
|
|
914
|
-
layer: '1';
|
|
915
|
-
} | {
|
|
916
|
-
[key: string]: any;
|
|
917
|
-
}[] | {
|
|
918
|
-
[key: string]: any;
|
|
919
|
-
}[];
|
|
240
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
241
|
+
default?: import('../../utils/props').RequestParams;
|
|
920
242
|
};
|
|
921
243
|
requestSort: {
|
|
922
|
-
type?:
|
|
923
|
-
default?:
|
|
924
|
-
} | {
|
|
925
|
-
type: any;
|
|
926
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
927
|
-
[key: string]: any;
|
|
928
|
-
} | import('../../utils/props').RequestParams | {
|
|
929
|
-
[key: string]: any;
|
|
930
|
-
}[] | {
|
|
931
|
-
[key: string]: any;
|
|
932
|
-
chartType: 'table';
|
|
933
|
-
plugin: '1';
|
|
934
|
-
layer: '1';
|
|
935
|
-
} | {
|
|
936
|
-
[key: string]: any;
|
|
937
|
-
}[] | {
|
|
938
|
-
[key: string]: any;
|
|
939
|
-
}[];
|
|
244
|
+
type?: import("vue").PropType<number>;
|
|
245
|
+
default?: number;
|
|
940
246
|
};
|
|
941
247
|
dataType: {
|
|
942
|
-
type?:
|
|
943
|
-
default?:
|
|
944
|
-
} | {
|
|
945
|
-
type: any;
|
|
946
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
947
|
-
[key: string]: any;
|
|
948
|
-
} | import('../../utils/props').RequestParams | {
|
|
949
|
-
[key: string]: any;
|
|
950
|
-
}[] | {
|
|
951
|
-
[key: string]: any;
|
|
952
|
-
chartType: 'table';
|
|
953
|
-
plugin: '1';
|
|
954
|
-
layer: '1';
|
|
955
|
-
} | {
|
|
956
|
-
[key: string]: any;
|
|
957
|
-
}[] | {
|
|
958
|
-
[key: string]: any;
|
|
959
|
-
}[];
|
|
248
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
249
|
+
default?: "indicator" | "static" | "request";
|
|
960
250
|
};
|
|
961
251
|
};
|
|
962
252
|
export declare const tableEvents: string[];
|