@ecan-bi/datav 1.0.13 → 1.0.16

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.
Files changed (53) hide show
  1. package/dist/_utils/constant.d.ts +1 -1
  2. package/dist/_utils/hooks/index.d.ts +1 -1
  3. package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
  4. package/dist/_utils/hooks/useRequestData.d.ts +5 -13
  5. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
  6. package/dist/_utils/props.d.ts +1 -1
  7. package/dist/_utils/util.d.ts +14 -0
  8. package/dist/common/echarts/ECharts.d.ts +1 -0
  9. package/dist/container/border/props.d.ts +67 -57
  10. package/dist/container/index.d.ts +1 -0
  11. package/dist/container/modal/Modal.vue.d.ts +49 -32
  12. package/dist/container/modal/props.d.ts +29 -18
  13. package/dist/container/tabs/Tabs.vue.d.ts +271 -0
  14. package/dist/container/tabs/index.d.ts +3 -0
  15. package/dist/container/tabs/props.d.ts +219 -0
  16. package/dist/control/button/Button.vue.d.ts +53 -53
  17. package/dist/control/button/props.d.ts +49 -49
  18. package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
  19. package/dist/control/date-picker/props.d.ts +7 -7
  20. package/dist/control/input/Input.vue.d.ts +59 -59
  21. package/dist/control/input/props.d.ts +53 -53
  22. package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
  23. package/dist/control/range-picker/props.d.ts +51 -51
  24. package/dist/control/select/Select.vue.d.ts +65 -61
  25. package/dist/control/select/props.d.ts +53 -53
  26. package/dist/graph/bar/Bar.vue.d.ts +304 -57
  27. package/dist/graph/bar/props.d.ts +277 -49
  28. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
  29. package/dist/graph/custom-graph/props.d.ts +53 -53
  30. package/dist/graph/line/Line.vue.d.ts +286 -109
  31. package/dist/graph/line/props.d.ts +235 -49
  32. package/dist/graph/pie/Pie.vue.d.ts +332 -114
  33. package/dist/graph/pie/props.d.ts +279 -57
  34. package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
  35. package/dist/graph/scatter/props.d.ts +148 -123
  36. package/dist/index.esm.js +2 -2
  37. package/dist/index.umd.js +2 -2
  38. package/dist/media/image/Image.vue.d.ts +55 -55
  39. package/dist/media/image/props.d.ts +51 -51
  40. package/dist/table/table/Table.vue.d.ts +208 -67
  41. package/dist/table/table/props.d.ts +160 -62
  42. package/dist/text/index.d.ts +2 -0
  43. package/dist/text/list/List.vue.d.ts +471 -0
  44. package/dist/text/list/index.d.ts +3 -0
  45. package/dist/text/list/props.d.ts +367 -0
  46. package/dist/text/text/Text.vue.d.ts +132 -43
  47. package/dist/text/text/props.d.ts +122 -38
  48. package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
  49. package/dist/text/time-display/index.d.ts +3 -0
  50. package/dist/text/time-display/props.d.ts +275 -0
  51. package/package.json +12 -5
  52. package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
  53. package/dist/_utils/request.d.ts +0 -2
@@ -1,4 +1,4 @@
1
- import { RequestParams, Events } from 'src/_utils/props';
1
+ import { Events } from 'src/_utils/props';
2
2
  declare const _default: import("vue").DefineComponent<{
3
3
  data: {
4
4
  type?: undefined;
@@ -6,8 +6,12 @@ declare const _default: import("vue").DefineComponent<{
6
6
  } | {
7
7
  type: any;
8
8
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
9
+ name: string;
10
+ value: string;
11
+ type: string;
12
+ } | Events | {
9
13
  [key: string]: any;
10
- } | RequestParams | Events;
14
+ } | import("src/_utils/props").RequestParams;
11
15
  };
12
16
  titleText: {
13
17
  type?: undefined;
@@ -15,8 +19,12 @@ declare const _default: import("vue").DefineComponent<{
15
19
  } | {
16
20
  type: any;
17
21
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
22
+ name: string;
23
+ value: string;
24
+ type: string;
25
+ } | Events | {
18
26
  [key: string]: any;
19
- } | RequestParams | Events;
27
+ } | import("src/_utils/props").RequestParams;
20
28
  };
21
29
  titleSubtext: {
22
30
  type?: undefined;
@@ -24,8 +32,12 @@ declare const _default: import("vue").DefineComponent<{
24
32
  } | {
25
33
  type: any;
26
34
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
35
+ name: string;
36
+ value: string;
37
+ type: string;
38
+ } | Events | {
27
39
  [key: string]: any;
28
- } | RequestParams | Events;
40
+ } | import("src/_utils/props").RequestParams;
29
41
  };
30
42
  colors: {
31
43
  type?: undefined;
@@ -33,8 +45,12 @@ declare const _default: import("vue").DefineComponent<{
33
45
  } | {
34
46
  type: any;
35
47
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
48
+ name: string;
49
+ value: string;
50
+ type: string;
51
+ } | Events | {
36
52
  [key: string]: any;
37
- } | RequestParams | Events;
53
+ } | import("src/_utils/props").RequestParams;
38
54
  };
39
55
  legendShow: {
40
56
  type?: undefined;
@@ -42,8 +58,12 @@ declare const _default: import("vue").DefineComponent<{
42
58
  } | {
43
59
  type: any;
44
60
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
61
+ name: string;
62
+ value: string;
63
+ type: string;
64
+ } | Events | {
45
65
  [key: string]: any;
46
- } | RequestParams | Events;
66
+ } | import("src/_utils/props").RequestParams;
47
67
  };
48
68
  legendTextStyleColor: {
49
69
  type?: undefined;
@@ -51,8 +71,12 @@ declare const _default: import("vue").DefineComponent<{
51
71
  } | {
52
72
  type: any;
53
73
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
74
+ name: string;
75
+ value: string;
76
+ type: string;
77
+ } | Events | {
54
78
  [key: string]: any;
55
- } | RequestParams | Events;
79
+ } | import("src/_utils/props").RequestParams;
56
80
  };
57
81
  legendLeft: {
58
82
  type?: undefined;
@@ -60,8 +84,12 @@ declare const _default: import("vue").DefineComponent<{
60
84
  } | {
61
85
  type: any;
62
86
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
87
+ name: string;
88
+ value: string;
89
+ type: string;
90
+ } | Events | {
63
91
  [key: string]: any;
64
- } | RequestParams | Events;
92
+ } | import("src/_utils/props").RequestParams;
65
93
  };
66
94
  legendTop: {
67
95
  type?: undefined;
@@ -69,8 +97,12 @@ declare const _default: import("vue").DefineComponent<{
69
97
  } | {
70
98
  type: any;
71
99
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
100
+ name: string;
101
+ value: string;
102
+ type: string;
103
+ } | Events | {
72
104
  [key: string]: any;
73
- } | RequestParams | Events;
105
+ } | import("src/_utils/props").RequestParams;
74
106
  };
75
107
  legendOrient: {
76
108
  type?: undefined;
@@ -78,8 +110,12 @@ declare const _default: import("vue").DefineComponent<{
78
110
  } | {
79
111
  type: any;
80
112
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
113
+ name: string;
114
+ value: string;
115
+ type: string;
116
+ } | Events | {
81
117
  [key: string]: any;
82
- } | RequestParams | Events;
118
+ } | import("src/_utils/props").RequestParams;
83
119
  };
84
120
  xAxisSplitLineShow: {
85
121
  type?: undefined;
@@ -87,8 +123,12 @@ declare const _default: import("vue").DefineComponent<{
87
123
  } | {
88
124
  type: any;
89
125
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
126
+ name: string;
127
+ value: string;
128
+ type: string;
129
+ } | Events | {
90
130
  [key: string]: any;
91
- } | RequestParams | Events;
131
+ } | import("src/_utils/props").RequestParams;
92
132
  };
93
133
  xAxisLabelColor: {
94
134
  type?: undefined;
@@ -96,8 +136,12 @@ declare const _default: import("vue").DefineComponent<{
96
136
  } | {
97
137
  type: any;
98
138
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
139
+ name: string;
140
+ value: string;
141
+ type: string;
142
+ } | Events | {
99
143
  [key: string]: any;
100
- } | RequestParams | Events;
144
+ } | import("src/_utils/props").RequestParams;
101
145
  };
102
146
  xAxisLineStyleColor: {
103
147
  type?: undefined;
@@ -105,8 +149,12 @@ declare const _default: import("vue").DefineComponent<{
105
149
  } | {
106
150
  type: any;
107
151
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
152
+ name: string;
153
+ value: string;
154
+ type: string;
155
+ } | Events | {
108
156
  [key: string]: any;
109
- } | RequestParams | Events;
157
+ } | import("src/_utils/props").RequestParams;
110
158
  };
111
159
  xAxisTickShow: {
112
160
  type?: undefined;
@@ -114,8 +162,12 @@ declare const _default: import("vue").DefineComponent<{
114
162
  } | {
115
163
  type: any;
116
164
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
165
+ name: string;
166
+ value: string;
167
+ type: string;
168
+ } | Events | {
117
169
  [key: string]: any;
118
- } | RequestParams | Events;
170
+ } | import("src/_utils/props").RequestParams;
119
171
  };
120
172
  yAxisSplitLineShow: {
121
173
  type?: undefined;
@@ -123,8 +175,12 @@ declare const _default: import("vue").DefineComponent<{
123
175
  } | {
124
176
  type: any;
125
177
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
178
+ name: string;
179
+ value: string;
180
+ type: string;
181
+ } | Events | {
126
182
  [key: string]: any;
127
- } | RequestParams | Events;
183
+ } | import("src/_utils/props").RequestParams;
128
184
  };
129
185
  xAxisSplitLineStyleColor: {
130
186
  type?: undefined;
@@ -132,8 +188,12 @@ declare const _default: import("vue").DefineComponent<{
132
188
  } | {
133
189
  type: any;
134
190
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
191
+ name: string;
192
+ value: string;
193
+ type: string;
194
+ } | Events | {
135
195
  [key: string]: any;
136
- } | RequestParams | Events;
196
+ } | import("src/_utils/props").RequestParams;
137
197
  };
138
198
  yAxisSplitLineStyleColor: {
139
199
  type?: undefined;
@@ -141,8 +201,12 @@ declare const _default: import("vue").DefineComponent<{
141
201
  } | {
142
202
  type: any;
143
203
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
204
+ name: string;
205
+ value: string;
206
+ type: string;
207
+ } | Events | {
144
208
  [key: string]: any;
145
- } | RequestParams | Events;
209
+ } | import("src/_utils/props").RequestParams;
146
210
  };
147
211
  yAxisLabelColor: {
148
212
  type?: undefined;
@@ -150,8 +214,12 @@ declare const _default: import("vue").DefineComponent<{
150
214
  } | {
151
215
  type: any;
152
216
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
217
+ name: string;
218
+ value: string;
219
+ type: string;
220
+ } | Events | {
153
221
  [key: string]: any;
154
- } | RequestParams | Events;
222
+ } | import("src/_utils/props").RequestParams;
155
223
  };
156
224
  yAxisLineStyleColor: {
157
225
  type?: undefined;
@@ -159,8 +227,77 @@ declare const _default: import("vue").DefineComponent<{
159
227
  } | {
160
228
  type: any;
161
229
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
230
+ name: string;
231
+ value: string;
232
+ type: string;
233
+ } | Events | {
234
+ [key: string]: any;
235
+ } | import("src/_utils/props").RequestParams;
236
+ };
237
+ dataFieldNames: {
238
+ type?: undefined;
239
+ default?: undefined;
240
+ } | {
241
+ type: any;
242
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | {
243
+ name: string;
244
+ value: string;
245
+ type: string;
246
+ } | Events | {
247
+ [key: string]: any;
248
+ } | import("src/_utils/props").RequestParams;
249
+ };
250
+ tooltipShow: {
251
+ type?: undefined;
252
+ default?: undefined;
253
+ } | {
254
+ type: any;
255
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | {
256
+ name: string;
257
+ value: string;
258
+ type: string;
259
+ } | Events | {
260
+ [key: string]: any;
261
+ } | import("src/_utils/props").RequestParams;
262
+ };
263
+ tooltipTrigger: {
264
+ type?: undefined;
265
+ default?: undefined;
266
+ } | {
267
+ type: any;
268
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | {
269
+ name: string;
270
+ value: string;
271
+ type: string;
272
+ } | Events | {
162
273
  [key: string]: any;
163
- } | RequestParams | Events;
274
+ } | import("src/_utils/props").RequestParams;
275
+ };
276
+ tooltipTextStyleColor: {
277
+ type?: undefined;
278
+ default?: undefined;
279
+ } | {
280
+ type: any;
281
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | {
282
+ name: string;
283
+ value: string;
284
+ type: string;
285
+ } | Events | {
286
+ [key: string]: any;
287
+ } | import("src/_utils/props").RequestParams;
288
+ };
289
+ tooltipFormatter: {
290
+ type?: undefined;
291
+ default?: undefined;
292
+ } | {
293
+ type: any;
294
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | {
295
+ name: string;
296
+ value: string;
297
+ type: string;
298
+ } | Events | {
299
+ [key: string]: any;
300
+ } | import("src/_utils/props").RequestParams;
164
301
  };
165
302
  id: {
166
303
  type?: undefined;
@@ -168,8 +305,12 @@ declare const _default: import("vue").DefineComponent<{
168
305
  } | {
169
306
  type: any;
170
307
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
308
+ name: string;
309
+ value: string;
310
+ type: string;
311
+ } | Events | {
171
312
  [key: string]: any;
172
- } | RequestParams | Events;
313
+ } | import("src/_utils/props").RequestParams;
173
314
  };
174
315
  name: {
175
316
  type?: undefined;
@@ -177,8 +318,12 @@ declare const _default: import("vue").DefineComponent<{
177
318
  } | {
178
319
  type: any;
179
320
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
321
+ name: string;
322
+ value: string;
323
+ type: string;
324
+ } | Events | {
180
325
  [key: string]: any;
181
- } | RequestParams | Events;
326
+ } | import("src/_utils/props").RequestParams;
182
327
  };
183
328
  keyName: {
184
329
  type?: undefined;
@@ -186,8 +331,12 @@ declare const _default: import("vue").DefineComponent<{
186
331
  } | {
187
332
  type: any;
188
333
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
334
+ name: string;
335
+ value: string;
336
+ type: string;
337
+ } | Events | {
189
338
  [key: string]: any;
190
- } | RequestParams | Events;
339
+ } | import("src/_utils/props").RequestParams;
191
340
  };
192
341
  type: {
193
342
  type?: undefined;
@@ -195,8 +344,12 @@ declare const _default: import("vue").DefineComponent<{
195
344
  } | {
196
345
  type: any;
197
346
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
347
+ name: string;
348
+ value: string;
349
+ type: string;
350
+ } | Events | {
198
351
  [key: string]: any;
199
- } | RequestParams | Events;
352
+ } | import("src/_utils/props").RequestParams;
200
353
  };
201
354
  width: {
202
355
  type?: undefined;
@@ -204,8 +357,12 @@ declare const _default: import("vue").DefineComponent<{
204
357
  } | {
205
358
  type: any;
206
359
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
360
+ name: string;
361
+ value: string;
362
+ type: string;
363
+ } | Events | {
207
364
  [key: string]: any;
208
- } | RequestParams | Events;
365
+ } | import("src/_utils/props").RequestParams;
209
366
  };
210
367
  height: {
211
368
  type?: undefined;
@@ -213,8 +370,12 @@ declare const _default: import("vue").DefineComponent<{
213
370
  } | {
214
371
  type: any;
215
372
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
373
+ name: string;
374
+ value: string;
375
+ type: string;
376
+ } | Events | {
216
377
  [key: string]: any;
217
- } | RequestParams | Events;
378
+ } | import("src/_utils/props").RequestParams;
218
379
  };
219
380
  position: {
220
381
  type?: undefined;
@@ -222,8 +383,12 @@ declare const _default: import("vue").DefineComponent<{
222
383
  } | {
223
384
  type: any;
224
385
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
386
+ name: string;
387
+ value: string;
388
+ type: string;
389
+ } | Events | {
225
390
  [key: string]: any;
226
- } | RequestParams | Events;
391
+ } | import("src/_utils/props").RequestParams;
227
392
  };
228
393
  top: {
229
394
  type?: undefined;
@@ -231,8 +396,12 @@ declare const _default: import("vue").DefineComponent<{
231
396
  } | {
232
397
  type: any;
233
398
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
399
+ name: string;
400
+ value: string;
401
+ type: string;
402
+ } | Events | {
234
403
  [key: string]: any;
235
- } | RequestParams | Events;
404
+ } | import("src/_utils/props").RequestParams;
236
405
  };
237
406
  left: {
238
407
  type?: undefined;
@@ -240,8 +409,12 @@ declare const _default: import("vue").DefineComponent<{
240
409
  } | {
241
410
  type: any;
242
411
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
412
+ name: string;
413
+ value: string;
414
+ type: string;
415
+ } | Events | {
243
416
  [key: string]: any;
244
- } | RequestParams | Events;
417
+ } | import("src/_utils/props").RequestParams;
245
418
  };
246
419
  zIndex: {
247
420
  type?: undefined;
@@ -249,8 +422,12 @@ declare const _default: import("vue").DefineComponent<{
249
422
  } | {
250
423
  type: any;
251
424
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
425
+ name: string;
426
+ value: string;
427
+ type: string;
428
+ } | Events | {
252
429
  [key: string]: any;
253
- } | RequestParams | Events;
430
+ } | import("src/_utils/props").RequestParams;
254
431
  };
255
432
  rotate: {
256
433
  type?: undefined;
@@ -258,8 +435,12 @@ declare const _default: import("vue").DefineComponent<{
258
435
  } | {
259
436
  type: any;
260
437
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
438
+ name: string;
439
+ value: string;
440
+ type: string;
441
+ } | Events | {
261
442
  [key: string]: any;
262
- } | RequestParams | Events;
443
+ } | import("src/_utils/props").RequestParams;
263
444
  };
264
445
  isShow: {
265
446
  type?: undefined;
@@ -267,8 +448,12 @@ declare const _default: import("vue").DefineComponent<{
267
448
  } | {
268
449
  type: any;
269
450
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
451
+ name: string;
452
+ value: string;
453
+ type: string;
454
+ } | Events | {
270
455
  [key: string]: any;
271
- } | RequestParams | Events;
456
+ } | import("src/_utils/props").RequestParams;
272
457
  };
273
458
  isRender: {
274
459
  type?: undefined;
@@ -276,8 +461,12 @@ declare const _default: import("vue").DefineComponent<{
276
461
  } | {
277
462
  type: any;
278
463
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
464
+ name: string;
465
+ value: string;
466
+ type: string;
467
+ } | Events | {
279
468
  [key: string]: any;
280
- } | RequestParams | Events;
469
+ } | import("src/_utils/props").RequestParams;
281
470
  };
282
471
  isRequestData: {
283
472
  type?: undefined;
@@ -285,71 +474,103 @@ declare const _default: import("vue").DefineComponent<{
285
474
  } | {
286
475
  type: any;
287
476
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
477
+ name: string;
478
+ value: string;
479
+ type: string;
480
+ } | Events | {
288
481
  [key: string]: any;
289
- } | RequestParams | Events;
482
+ } | import("src/_utils/props").RequestParams;
290
483
  };
291
- requestUrl: {
484
+ events: {
292
485
  type?: undefined;
293
486
  default?: undefined;
294
487
  } | {
295
488
  type: any;
296
489
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
490
+ name: string;
491
+ value: string;
492
+ type: string;
493
+ } | Events | {
297
494
  [key: string]: any;
298
- } | RequestParams | Events;
495
+ } | import("src/_utils/props").RequestParams;
299
496
  };
300
- requestMethod: {
497
+ requestUrl: {
301
498
  type?: undefined;
302
499
  default?: undefined;
303
500
  } | {
304
501
  type: any;
305
502
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
503
+ name: string;
504
+ value: string;
505
+ type: string;
506
+ } | Events | {
306
507
  [key: string]: any;
307
- } | RequestParams | Events;
508
+ } | import("src/_utils/props").RequestParams;
308
509
  };
309
- requestHeaders: {
510
+ requestMethod: {
310
511
  type?: undefined;
311
512
  default?: undefined;
312
513
  } | {
313
514
  type: any;
314
515
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
516
+ name: string;
517
+ value: string;
518
+ type: string;
519
+ } | Events | {
315
520
  [key: string]: any;
316
- } | RequestParams | Events;
521
+ } | import("src/_utils/props").RequestParams;
317
522
  };
318
- isOpenRequestTimer: {
523
+ requestHeaders: {
319
524
  type?: undefined;
320
525
  default?: undefined;
321
526
  } | {
322
527
  type: any;
323
528
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
529
+ name: string;
530
+ value: string;
531
+ type: string;
532
+ } | Events | {
324
533
  [key: string]: any;
325
- } | RequestParams | Events;
534
+ } | import("src/_utils/props").RequestParams;
326
535
  };
327
- requestInterval: {
536
+ isOpenRequestTimer: {
328
537
  type?: undefined;
329
538
  default?: undefined;
330
539
  } | {
331
540
  type: any;
332
541
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
542
+ name: string;
543
+ value: string;
544
+ type: string;
545
+ } | Events | {
333
546
  [key: string]: any;
334
- } | RequestParams | Events;
547
+ } | import("src/_utils/props").RequestParams;
335
548
  };
336
- requestParams: {
549
+ requestInterval: {
337
550
  type?: undefined;
338
551
  default?: undefined;
339
552
  } | {
340
553
  type: any;
341
554
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
555
+ name: string;
556
+ value: string;
557
+ type: string;
558
+ } | Events | {
342
559
  [key: string]: any;
343
- } | RequestParams | Events;
560
+ } | import("src/_utils/props").RequestParams;
344
561
  };
345
- events: {
562
+ requestParams: {
346
563
  type?: undefined;
347
564
  default?: undefined;
348
565
  } | {
349
566
  type: any;
350
567
  default: string | number | boolean | string[] | import("src/_utils/props").Data | {
568
+ name: string;
569
+ value: string;
570
+ type: string;
571
+ } | Events | {
351
572
  [key: string]: any;
352
- } | RequestParams | Events;
573
+ } | import("src/_utils/props").RequestParams;
353
574
  };
354
575
  }, {
355
576
  option: import("vue").ComputedRef<{
@@ -367,6 +588,15 @@ declare const _default: import("vue").DefineComponent<{
367
588
  };
368
589
  tooltip: {
369
590
  trigger: string;
591
+ show: string | number | boolean | {
592
+ [key: string]: any;
593
+ };
594
+ formatter: string;
595
+ textStyle: {
596
+ color: string | number | boolean | {
597
+ [key: string]: any;
598
+ };
599
+ };
370
600
  };
371
601
  legend: {
372
602
  show: string | number | boolean | {
@@ -389,6 +619,9 @@ declare const _default: import("vue").DefineComponent<{
389
619
  };
390
620
  xAxis: {
391
621
  type: string;
622
+ data: {
623
+ [x: string]: any;
624
+ }[];
392
625
  splitLine: {
393
626
  show: string | number | boolean | {
394
627
  [key: string]: any;
@@ -442,12 +675,6 @@ declare const _default: import("vue").DefineComponent<{
442
675
  };
443
676
  };
444
677
  };
445
- dataset: {
446
- dimensions: string[];
447
- source: {
448
- [x: string]: any;
449
- }[];
450
- };
451
678
  series: {
452
679
  [x: string]: any;
453
680
  }[];
@@ -474,6 +701,11 @@ declare const _default: import("vue").DefineComponent<{
474
701
  yAxisSplitLineStyleColor?: unknown;
475
702
  yAxisLabelColor?: unknown;
476
703
  yAxisLineStyleColor?: unknown;
704
+ dataFieldNames?: unknown;
705
+ tooltipShow?: unknown;
706
+ tooltipTrigger?: unknown;
707
+ tooltipTextStyleColor?: unknown;
708
+ tooltipFormatter?: unknown;
477
709
  id?: unknown;
478
710
  name?: unknown;
479
711
  keyName?: unknown;
@@ -488,13 +720,13 @@ declare const _default: import("vue").DefineComponent<{
488
720
  isShow?: unknown;
489
721
  isRender?: unknown;
490
722
  isRequestData?: unknown;
723
+ events?: unknown;
491
724
  requestUrl?: unknown;
492
725
  requestMethod?: unknown;
493
726
  requestHeaders?: unknown;
494
727
  isOpenRequestTimer?: unknown;
495
728
  requestInterval?: unknown;
496
729
  requestParams?: unknown;
497
- events?: unknown;
498
730
  } & {} & {
499
731
  type?: string | number | boolean | {
500
732
  [key: string]: any;
@@ -553,6 +785,21 @@ declare const _default: import("vue").DefineComponent<{
553
785
  yAxisLineStyleColor?: string | number | boolean | {
554
786
  [key: string]: any;
555
787
  };
788
+ dataFieldNames?: string | number | boolean | {
789
+ [key: string]: any;
790
+ };
791
+ tooltipShow?: string | number | boolean | {
792
+ [key: string]: any;
793
+ };
794
+ tooltipTrigger?: string | number | boolean | {
795
+ [key: string]: any;
796
+ };
797
+ tooltipTextStyleColor?: string | number | boolean | {
798
+ [key: string]: any;
799
+ };
800
+ tooltipFormatter?: string | number | boolean | {
801
+ [key: string]: any;
802
+ };
556
803
  id?: string | number | boolean | {
557
804
  [key: string]: any;
558
805
  };
@@ -592,6 +839,9 @@ declare const _default: import("vue").DefineComponent<{
592
839
  isRequestData?: string | number | boolean | {
593
840
  [key: string]: any;
594
841
  };
842
+ events?: string | number | boolean | {
843
+ [key: string]: any;
844
+ };
595
845
  requestUrl?: string | number | boolean | {
596
846
  [key: string]: any;
597
847
  };
@@ -610,8 +860,5 @@ declare const _default: import("vue").DefineComponent<{
610
860
  requestParams?: string | number | boolean | {
611
861
  [key: string]: any;
612
862
  };
613
- events?: string | number | boolean | {
614
- [key: string]: any;
615
- };
616
863
  }>, {}>;
617
864
  export default _default;