@ecan-bi/datav 1.0.14 → 1.0.17

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 (61) 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/combo-graph/ComboGraph.vue.d.ts +880 -0
  29. package/dist/graph/combo-graph/index.d.ts +3 -0
  30. package/dist/graph/combo-graph/props.d.ts +619 -0
  31. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
  32. package/dist/graph/custom-graph/props.d.ts +53 -53
  33. package/dist/graph/index.d.ts +1 -0
  34. package/dist/graph/line/Line.vue.d.ts +286 -109
  35. package/dist/graph/line/props.d.ts +235 -49
  36. package/dist/graph/pie/Pie.vue.d.ts +332 -114
  37. package/dist/graph/pie/props.d.ts +279 -57
  38. package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
  39. package/dist/graph/scatter/props.d.ts +148 -123
  40. package/dist/index.esm.js +16 -0
  41. package/dist/index.umd.js +16 -0
  42. package/dist/media/image/Image.vue.d.ts +55 -55
  43. package/dist/media/image/props.d.ts +51 -51
  44. package/dist/table/table/Table.vue.d.ts +208 -67
  45. package/dist/table/table/props.d.ts +160 -62
  46. package/dist/text/index.d.ts +2 -0
  47. package/dist/text/list/List.vue.d.ts +471 -0
  48. package/dist/text/list/index.d.ts +3 -0
  49. package/dist/text/list/props.d.ts +367 -0
  50. package/dist/text/text/Text.vue.d.ts +132 -43
  51. package/dist/text/text/props.d.ts +122 -38
  52. package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
  53. package/dist/text/time-display/index.d.ts +3 -0
  54. package/dist/text/time-display/props.d.ts +275 -0
  55. package/package.json +15 -6
  56. package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
  57. package/dist/_utils/request.d.ts +0 -2
  58. package/dist/index.js +0 -16
  59. package/dist/index.js.map +0 -1
  60. package/dist/index.mjs +0 -16
  61. package/dist/index.mjs.map +0 -1
@@ -18,6 +18,15 @@ export interface BarProps extends Props {
18
18
  yAxisSplitLineStyleColor: string;
19
19
  yAxisLabelColor: string;
20
20
  yAxisLineStyleColor: string;
21
+ dataFieldNames: {
22
+ name: string;
23
+ value: string;
24
+ type: string;
25
+ };
26
+ tooltipShow: boolean;
27
+ tooltipTrigger: 'item' | 'axis' | 'none';
28
+ tooltipTextStyleColor: string;
29
+ tooltipFormatter: string;
21
30
  }
22
31
  export declare const barProps: BarProps;
23
32
  export declare const barComponentProps: {
@@ -27,8 +36,12 @@ export declare const barComponentProps: {
27
36
  } | {
28
37
  type: any;
29
38
  default: string | number | boolean | Data | string[] | {
39
+ name: string;
40
+ value: string;
41
+ type: string;
42
+ } | import("../../_utils/props").Events | {
30
43
  [key: string]: any;
31
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
44
+ } | import("../../_utils/props").RequestParams;
32
45
  };
33
46
  titleText: {
34
47
  type?: undefined;
@@ -36,8 +49,12 @@ export declare const barComponentProps: {
36
49
  } | {
37
50
  type: any;
38
51
  default: string | number | boolean | Data | string[] | {
52
+ name: string;
53
+ value: string;
54
+ type: string;
55
+ } | import("../../_utils/props").Events | {
39
56
  [key: string]: any;
40
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
57
+ } | import("../../_utils/props").RequestParams;
41
58
  };
42
59
  titleSubtext: {
43
60
  type?: undefined;
@@ -45,8 +62,12 @@ export declare const barComponentProps: {
45
62
  } | {
46
63
  type: any;
47
64
  default: string | number | boolean | Data | string[] | {
65
+ name: string;
66
+ value: string;
67
+ type: string;
68
+ } | import("../../_utils/props").Events | {
48
69
  [key: string]: any;
49
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
70
+ } | import("../../_utils/props").RequestParams;
50
71
  };
51
72
  colors: {
52
73
  type?: undefined;
@@ -54,8 +75,12 @@ export declare const barComponentProps: {
54
75
  } | {
55
76
  type: any;
56
77
  default: string | number | boolean | Data | string[] | {
78
+ name: string;
79
+ value: string;
80
+ type: string;
81
+ } | import("../../_utils/props").Events | {
57
82
  [key: string]: any;
58
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
83
+ } | import("../../_utils/props").RequestParams;
59
84
  };
60
85
  legendShow: {
61
86
  type?: undefined;
@@ -63,8 +88,12 @@ export declare const barComponentProps: {
63
88
  } | {
64
89
  type: any;
65
90
  default: string | number | boolean | Data | string[] | {
91
+ name: string;
92
+ value: string;
93
+ type: string;
94
+ } | import("../../_utils/props").Events | {
66
95
  [key: string]: any;
67
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
96
+ } | import("../../_utils/props").RequestParams;
68
97
  };
69
98
  legendTextStyleColor: {
70
99
  type?: undefined;
@@ -72,8 +101,12 @@ export declare const barComponentProps: {
72
101
  } | {
73
102
  type: any;
74
103
  default: string | number | boolean | Data | string[] | {
104
+ name: string;
105
+ value: string;
106
+ type: string;
107
+ } | import("../../_utils/props").Events | {
75
108
  [key: string]: any;
76
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
109
+ } | import("../../_utils/props").RequestParams;
77
110
  };
78
111
  legendLeft: {
79
112
  type?: undefined;
@@ -81,8 +114,12 @@ export declare const barComponentProps: {
81
114
  } | {
82
115
  type: any;
83
116
  default: string | number | boolean | Data | string[] | {
117
+ name: string;
118
+ value: string;
119
+ type: string;
120
+ } | import("../../_utils/props").Events | {
84
121
  [key: string]: any;
85
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
122
+ } | import("../../_utils/props").RequestParams;
86
123
  };
87
124
  legendTop: {
88
125
  type?: undefined;
@@ -90,8 +127,12 @@ export declare const barComponentProps: {
90
127
  } | {
91
128
  type: any;
92
129
  default: string | number | boolean | Data | string[] | {
130
+ name: string;
131
+ value: string;
132
+ type: string;
133
+ } | import("../../_utils/props").Events | {
93
134
  [key: string]: any;
94
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
135
+ } | import("../../_utils/props").RequestParams;
95
136
  };
96
137
  legendOrient: {
97
138
  type?: undefined;
@@ -99,8 +140,12 @@ export declare const barComponentProps: {
99
140
  } | {
100
141
  type: any;
101
142
  default: string | number | boolean | Data | string[] | {
143
+ name: string;
144
+ value: string;
145
+ type: string;
146
+ } | import("../../_utils/props").Events | {
102
147
  [key: string]: any;
103
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
148
+ } | import("../../_utils/props").RequestParams;
104
149
  };
105
150
  xAxisSplitLineShow: {
106
151
  type?: undefined;
@@ -108,8 +153,12 @@ export declare const barComponentProps: {
108
153
  } | {
109
154
  type: any;
110
155
  default: string | number | boolean | Data | string[] | {
156
+ name: string;
157
+ value: string;
158
+ type: string;
159
+ } | import("../../_utils/props").Events | {
111
160
  [key: string]: any;
112
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
161
+ } | import("../../_utils/props").RequestParams;
113
162
  };
114
163
  xAxisLabelColor: {
115
164
  type?: undefined;
@@ -117,8 +166,12 @@ export declare const barComponentProps: {
117
166
  } | {
118
167
  type: any;
119
168
  default: string | number | boolean | Data | string[] | {
169
+ name: string;
170
+ value: string;
171
+ type: string;
172
+ } | import("../../_utils/props").Events | {
120
173
  [key: string]: any;
121
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
174
+ } | import("../../_utils/props").RequestParams;
122
175
  };
123
176
  xAxisLineStyleColor: {
124
177
  type?: undefined;
@@ -126,8 +179,12 @@ export declare const barComponentProps: {
126
179
  } | {
127
180
  type: any;
128
181
  default: string | number | boolean | Data | string[] | {
182
+ name: string;
183
+ value: string;
184
+ type: string;
185
+ } | import("../../_utils/props").Events | {
129
186
  [key: string]: any;
130
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
187
+ } | import("../../_utils/props").RequestParams;
131
188
  };
132
189
  xAxisTickShow: {
133
190
  type?: undefined;
@@ -135,8 +192,12 @@ export declare const barComponentProps: {
135
192
  } | {
136
193
  type: any;
137
194
  default: string | number | boolean | Data | string[] | {
195
+ name: string;
196
+ value: string;
197
+ type: string;
198
+ } | import("../../_utils/props").Events | {
138
199
  [key: string]: any;
139
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
200
+ } | import("../../_utils/props").RequestParams;
140
201
  };
141
202
  yAxisSplitLineShow: {
142
203
  type?: undefined;
@@ -144,8 +205,12 @@ export declare const barComponentProps: {
144
205
  } | {
145
206
  type: any;
146
207
  default: string | number | boolean | Data | string[] | {
208
+ name: string;
209
+ value: string;
210
+ type: string;
211
+ } | import("../../_utils/props").Events | {
147
212
  [key: string]: any;
148
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
213
+ } | import("../../_utils/props").RequestParams;
149
214
  };
150
215
  xAxisSplitLineStyleColor: {
151
216
  type?: undefined;
@@ -153,8 +218,12 @@ export declare const barComponentProps: {
153
218
  } | {
154
219
  type: any;
155
220
  default: string | number | boolean | Data | string[] | {
221
+ name: string;
222
+ value: string;
223
+ type: string;
224
+ } | import("../../_utils/props").Events | {
156
225
  [key: string]: any;
157
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
226
+ } | import("../../_utils/props").RequestParams;
158
227
  };
159
228
  yAxisSplitLineStyleColor: {
160
229
  type?: undefined;
@@ -162,8 +231,12 @@ export declare const barComponentProps: {
162
231
  } | {
163
232
  type: any;
164
233
  default: string | number | boolean | Data | string[] | {
234
+ name: string;
235
+ value: string;
236
+ type: string;
237
+ } | import("../../_utils/props").Events | {
165
238
  [key: string]: any;
166
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
239
+ } | import("../../_utils/props").RequestParams;
167
240
  };
168
241
  yAxisLabelColor: {
169
242
  type?: undefined;
@@ -171,8 +244,12 @@ export declare const barComponentProps: {
171
244
  } | {
172
245
  type: any;
173
246
  default: string | number | boolean | Data | string[] | {
247
+ name: string;
248
+ value: string;
249
+ type: string;
250
+ } | import("../../_utils/props").Events | {
174
251
  [key: string]: any;
175
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
252
+ } | import("../../_utils/props").RequestParams;
176
253
  };
177
254
  yAxisLineStyleColor: {
178
255
  type?: undefined;
@@ -180,8 +257,77 @@ export declare const barComponentProps: {
180
257
  } | {
181
258
  type: any;
182
259
  default: string | number | boolean | Data | string[] | {
260
+ name: string;
261
+ value: string;
262
+ type: string;
263
+ } | import("../../_utils/props").Events | {
183
264
  [key: string]: any;
184
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
265
+ } | import("../../_utils/props").RequestParams;
266
+ };
267
+ dataFieldNames: {
268
+ type?: undefined;
269
+ default?: undefined;
270
+ } | {
271
+ type: any;
272
+ default: string | number | boolean | Data | string[] | {
273
+ name: string;
274
+ value: string;
275
+ type: string;
276
+ } | import("../../_utils/props").Events | {
277
+ [key: string]: any;
278
+ } | import("../../_utils/props").RequestParams;
279
+ };
280
+ tooltipShow: {
281
+ type?: undefined;
282
+ default?: undefined;
283
+ } | {
284
+ type: any;
285
+ default: string | number | boolean | Data | string[] | {
286
+ name: string;
287
+ value: string;
288
+ type: string;
289
+ } | import("../../_utils/props").Events | {
290
+ [key: string]: any;
291
+ } | import("../../_utils/props").RequestParams;
292
+ };
293
+ tooltipTrigger: {
294
+ type?: undefined;
295
+ default?: undefined;
296
+ } | {
297
+ type: any;
298
+ default: string | number | boolean | Data | string[] | {
299
+ name: string;
300
+ value: string;
301
+ type: string;
302
+ } | import("../../_utils/props").Events | {
303
+ [key: string]: any;
304
+ } | import("../../_utils/props").RequestParams;
305
+ };
306
+ tooltipTextStyleColor: {
307
+ type?: undefined;
308
+ default?: undefined;
309
+ } | {
310
+ type: any;
311
+ default: string | number | boolean | Data | string[] | {
312
+ name: string;
313
+ value: string;
314
+ type: string;
315
+ } | import("../../_utils/props").Events | {
316
+ [key: string]: any;
317
+ } | import("../../_utils/props").RequestParams;
318
+ };
319
+ tooltipFormatter: {
320
+ type?: undefined;
321
+ default?: undefined;
322
+ } | {
323
+ type: any;
324
+ default: string | number | boolean | Data | string[] | {
325
+ name: string;
326
+ value: string;
327
+ type: string;
328
+ } | import("../../_utils/props").Events | {
329
+ [key: string]: any;
330
+ } | import("../../_utils/props").RequestParams;
185
331
  };
186
332
  id: {
187
333
  type?: undefined;
@@ -189,8 +335,12 @@ export declare const barComponentProps: {
189
335
  } | {
190
336
  type: any;
191
337
  default: string | number | boolean | Data | string[] | {
338
+ name: string;
339
+ value: string;
340
+ type: string;
341
+ } | import("../../_utils/props").Events | {
192
342
  [key: string]: any;
193
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
343
+ } | import("../../_utils/props").RequestParams;
194
344
  };
195
345
  name: {
196
346
  type?: undefined;
@@ -198,8 +348,12 @@ export declare const barComponentProps: {
198
348
  } | {
199
349
  type: any;
200
350
  default: string | number | boolean | Data | string[] | {
351
+ name: string;
352
+ value: string;
353
+ type: string;
354
+ } | import("../../_utils/props").Events | {
201
355
  [key: string]: any;
202
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
356
+ } | import("../../_utils/props").RequestParams;
203
357
  };
204
358
  keyName: {
205
359
  type?: undefined;
@@ -207,8 +361,12 @@ export declare const barComponentProps: {
207
361
  } | {
208
362
  type: any;
209
363
  default: string | number | boolean | Data | string[] | {
364
+ name: string;
365
+ value: string;
366
+ type: string;
367
+ } | import("../../_utils/props").Events | {
210
368
  [key: string]: any;
211
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
369
+ } | import("../../_utils/props").RequestParams;
212
370
  };
213
371
  type: {
214
372
  type?: undefined;
@@ -216,8 +374,12 @@ export declare const barComponentProps: {
216
374
  } | {
217
375
  type: any;
218
376
  default: string | number | boolean | Data | string[] | {
377
+ name: string;
378
+ value: string;
379
+ type: string;
380
+ } | import("../../_utils/props").Events | {
219
381
  [key: string]: any;
220
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
382
+ } | import("../../_utils/props").RequestParams;
221
383
  };
222
384
  width: {
223
385
  type?: undefined;
@@ -225,8 +387,12 @@ export declare const barComponentProps: {
225
387
  } | {
226
388
  type: any;
227
389
  default: string | number | boolean | Data | string[] | {
390
+ name: string;
391
+ value: string;
392
+ type: string;
393
+ } | import("../../_utils/props").Events | {
228
394
  [key: string]: any;
229
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
395
+ } | import("../../_utils/props").RequestParams;
230
396
  };
231
397
  height: {
232
398
  type?: undefined;
@@ -234,8 +400,12 @@ export declare const barComponentProps: {
234
400
  } | {
235
401
  type: any;
236
402
  default: string | number | boolean | Data | string[] | {
403
+ name: string;
404
+ value: string;
405
+ type: string;
406
+ } | import("../../_utils/props").Events | {
237
407
  [key: string]: any;
238
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
408
+ } | import("../../_utils/props").RequestParams;
239
409
  };
240
410
  position: {
241
411
  type?: undefined;
@@ -243,8 +413,12 @@ export declare const barComponentProps: {
243
413
  } | {
244
414
  type: any;
245
415
  default: string | number | boolean | Data | string[] | {
416
+ name: string;
417
+ value: string;
418
+ type: string;
419
+ } | import("../../_utils/props").Events | {
246
420
  [key: string]: any;
247
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
421
+ } | import("../../_utils/props").RequestParams;
248
422
  };
249
423
  top: {
250
424
  type?: undefined;
@@ -252,8 +426,12 @@ export declare const barComponentProps: {
252
426
  } | {
253
427
  type: any;
254
428
  default: string | number | boolean | Data | string[] | {
429
+ name: string;
430
+ value: string;
431
+ type: string;
432
+ } | import("../../_utils/props").Events | {
255
433
  [key: string]: any;
256
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
434
+ } | import("../../_utils/props").RequestParams;
257
435
  };
258
436
  left: {
259
437
  type?: undefined;
@@ -261,8 +439,12 @@ export declare const barComponentProps: {
261
439
  } | {
262
440
  type: any;
263
441
  default: string | number | boolean | Data | string[] | {
442
+ name: string;
443
+ value: string;
444
+ type: string;
445
+ } | import("../../_utils/props").Events | {
264
446
  [key: string]: any;
265
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
447
+ } | import("../../_utils/props").RequestParams;
266
448
  };
267
449
  zIndex: {
268
450
  type?: undefined;
@@ -270,8 +452,12 @@ export declare const barComponentProps: {
270
452
  } | {
271
453
  type: any;
272
454
  default: string | number | boolean | Data | string[] | {
455
+ name: string;
456
+ value: string;
457
+ type: string;
458
+ } | import("../../_utils/props").Events | {
273
459
  [key: string]: any;
274
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
460
+ } | import("../../_utils/props").RequestParams;
275
461
  };
276
462
  rotate: {
277
463
  type?: undefined;
@@ -279,8 +465,12 @@ export declare const barComponentProps: {
279
465
  } | {
280
466
  type: any;
281
467
  default: string | number | boolean | Data | string[] | {
468
+ name: string;
469
+ value: string;
470
+ type: string;
471
+ } | import("../../_utils/props").Events | {
282
472
  [key: string]: any;
283
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
473
+ } | import("../../_utils/props").RequestParams;
284
474
  };
285
475
  isShow: {
286
476
  type?: undefined;
@@ -288,8 +478,12 @@ export declare const barComponentProps: {
288
478
  } | {
289
479
  type: any;
290
480
  default: string | number | boolean | Data | string[] | {
481
+ name: string;
482
+ value: string;
483
+ type: string;
484
+ } | import("../../_utils/props").Events | {
291
485
  [key: string]: any;
292
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
486
+ } | import("../../_utils/props").RequestParams;
293
487
  };
294
488
  isRender: {
295
489
  type?: undefined;
@@ -297,8 +491,12 @@ export declare const barComponentProps: {
297
491
  } | {
298
492
  type: any;
299
493
  default: string | number | boolean | Data | string[] | {
494
+ name: string;
495
+ value: string;
496
+ type: string;
497
+ } | import("../../_utils/props").Events | {
300
498
  [key: string]: any;
301
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
499
+ } | import("../../_utils/props").RequestParams;
302
500
  };
303
501
  isRequestData: {
304
502
  type?: undefined;
@@ -306,77 +504,107 @@ export declare const barComponentProps: {
306
504
  } | {
307
505
  type: any;
308
506
  default: string | number | boolean | Data | string[] | {
507
+ name: string;
508
+ value: string;
509
+ type: string;
510
+ } | import("../../_utils/props").Events | {
309
511
  [key: string]: any;
310
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
512
+ } | import("../../_utils/props").RequestParams;
311
513
  };
312
- requestUrl: {
514
+ events: {
313
515
  type?: undefined;
314
516
  default?: undefined;
315
517
  } | {
316
518
  type: any;
317
519
  default: string | number | boolean | Data | string[] | {
520
+ name: string;
521
+ value: string;
522
+ type: string;
523
+ } | import("../../_utils/props").Events | {
318
524
  [key: string]: any;
319
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
525
+ } | import("../../_utils/props").RequestParams;
320
526
  };
321
- requestMethod: {
527
+ requestUrl: {
322
528
  type?: undefined;
323
529
  default?: undefined;
324
530
  } | {
325
531
  type: any;
326
532
  default: string | number | boolean | Data | string[] | {
533
+ name: string;
534
+ value: string;
535
+ type: string;
536
+ } | import("../../_utils/props").Events | {
327
537
  [key: string]: any;
328
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
538
+ } | import("../../_utils/props").RequestParams;
329
539
  };
330
- requestHeaders: {
540
+ requestMethod: {
331
541
  type?: undefined;
332
542
  default?: undefined;
333
543
  } | {
334
544
  type: any;
335
545
  default: string | number | boolean | Data | string[] | {
546
+ name: string;
547
+ value: string;
548
+ type: string;
549
+ } | import("../../_utils/props").Events | {
336
550
  [key: string]: any;
337
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
551
+ } | import("../../_utils/props").RequestParams;
338
552
  };
339
- isOpenRequestTimer: {
553
+ requestHeaders: {
340
554
  type?: undefined;
341
555
  default?: undefined;
342
556
  } | {
343
557
  type: any;
344
558
  default: string | number | boolean | Data | string[] | {
559
+ name: string;
560
+ value: string;
561
+ type: string;
562
+ } | import("../../_utils/props").Events | {
345
563
  [key: string]: any;
346
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
564
+ } | import("../../_utils/props").RequestParams;
347
565
  };
348
- requestInterval: {
566
+ isOpenRequestTimer: {
349
567
  type?: undefined;
350
568
  default?: undefined;
351
569
  } | {
352
570
  type: any;
353
571
  default: string | number | boolean | Data | string[] | {
572
+ name: string;
573
+ value: string;
574
+ type: string;
575
+ } | import("../../_utils/props").Events | {
354
576
  [key: string]: any;
355
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
577
+ } | import("../../_utils/props").RequestParams;
356
578
  };
357
- requestParams: {
579
+ requestInterval: {
358
580
  type?: undefined;
359
581
  default?: undefined;
360
582
  } | {
361
583
  type: any;
362
584
  default: string | number | boolean | Data | string[] | {
585
+ name: string;
586
+ value: string;
587
+ type: string;
588
+ } | import("../../_utils/props").Events | {
363
589
  [key: string]: any;
364
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
590
+ } | import("../../_utils/props").RequestParams;
365
591
  };
366
- events: {
592
+ requestParams: {
367
593
  type?: undefined;
368
594
  default?: undefined;
369
595
  } | {
370
596
  type: any;
371
597
  default: string | number | boolean | Data | string[] | {
598
+ name: string;
599
+ value: string;
600
+ type: string;
601
+ } | import("../../_utils/props").Events | {
372
602
  [key: string]: any;
373
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
603
+ } | import("../../_utils/props").RequestParams;
374
604
  };
375
605
  };
376
606
  export interface BarEvents {
377
607
  refreshData: () => void;
378
608
  click: () => void;
379
609
  }
380
- declare type BarEventsKey = Array<keyof BarEvents>;
381
- export declare const barEvents: BarEventsKey;
382
- export {};
610
+ export declare const barEvents: Array<keyof BarEvents>;