@ecan-bi/datav 1.0.18 → 1.0.21

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 (62) hide show
  1. package/dist/_utils/constant.d.ts +8 -0
  2. package/dist/_utils/hooks/index.d.ts +3 -1
  3. package/dist/_utils/hooks/useImagePath.d.ts +2 -0
  4. package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
  5. package/dist/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  6. package/dist/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  7. package/dist/_utils/props.d.ts +13 -0
  8. package/dist/_utils/request.d.ts +2 -0
  9. package/dist/common/Skeleton/Skeleton.vue.d.ts +20 -0
  10. package/dist/common/Skeleton/index.d.ts +2 -0
  11. package/dist/common/echarts/ECharts.d.ts +2 -2
  12. package/dist/common/index.d.ts +2 -0
  13. package/dist/common/spin/Spin.vue.d.ts +17 -0
  14. package/dist/common/spin/index.d.ts +2 -0
  15. package/dist/container/border/props.d.ts +9 -0
  16. package/dist/container/card/index.d.ts +3 -0
  17. package/dist/container/card/props.d.ts +244 -0
  18. package/dist/container/index.d.ts +0 -1
  19. package/dist/container/modal/Modal.vue.d.ts +1 -0
  20. package/dist/control/button/Button.vue.d.ts +13 -0
  21. package/dist/control/button/props.d.ts +9 -0
  22. package/dist/control/date-picker/DatePicker.vue.d.ts +14 -1
  23. package/dist/control/date-picker/props.d.ts +9 -0
  24. package/dist/control/index.d.ts +1 -0
  25. package/dist/control/input/Input.vue.d.ts +13 -0
  26. package/dist/control/input/props.d.ts +9 -0
  27. package/dist/control/range-picker/RangePicker.vue.d.ts +194 -22
  28. package/dist/control/range-picker/props.d.ts +40 -0
  29. package/dist/control/select/Select.vue.d.ts +129 -26
  30. package/dist/control/select/props.d.ts +121 -23
  31. package/dist/{container → control}/tabs/Tabs.vue.d.ts +23 -1
  32. package/dist/{container → control}/tabs/index.d.ts +0 -0
  33. package/dist/{container → control}/tabs/props.d.ts +16 -0
  34. package/dist/graph/bar/Bar.vue.d.ts +88 -224
  35. package/dist/graph/bar/props.d.ts +76 -227
  36. package/dist/graph/combo-graph/ComboGraph.vue.d.ts +89 -229
  37. package/dist/graph/combo-graph/props.d.ts +78 -232
  38. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +15 -0
  39. package/dist/graph/custom-graph/props.d.ts +11 -0
  40. package/dist/graph/line/Line.vue.d.ts +87 -219
  41. package/dist/graph/line/props.d.ts +76 -222
  42. package/dist/graph/pie/Pie.vue.d.ts +82 -259
  43. package/dist/graph/pie/props.d.ts +74 -262
  44. package/dist/graph/scatter/Scatter.vue.d.ts +17 -0
  45. package/dist/graph/scatter/props.d.ts +13 -0
  46. package/dist/index.esm.js +3 -3
  47. package/dist/index.esm.js.map +1 -0
  48. package/dist/index.umd.js +3 -3
  49. package/dist/index.umd.js.map +1 -0
  50. package/dist/media/image/Image.vue.d.ts +14 -0
  51. package/dist/media/image/props.d.ts +9 -0
  52. package/dist/setting/event-config/index.d.ts +2 -0
  53. package/dist/table/table/Table.vue.d.ts +19 -1
  54. package/dist/table/table/props.d.ts +13 -0
  55. package/dist/text/list/List.vue.d.ts +21 -0
  56. package/dist/text/list/props.d.ts +18 -0
  57. package/dist/text/text/Text.vue.d.ts +16 -0
  58. package/dist/text/text/props.d.ts +12 -0
  59. package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -0
  60. package/dist/text/time-display/props.d.ts +9 -0
  61. package/package.json +1 -2
  62. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +0 -17
@@ -1,15 +1,11 @@
1
- import { Events } from 'src/_utils/props';
1
+ import { Events, KeyTypeDataFieldNames, ValueTypeDataFieldNames } from 'src/_utils/props';
2
2
  declare const _default: import("vue").DefineComponent<{
3
3
  data: {
4
4
  type?: undefined;
5
5
  default?: undefined;
6
6
  } | {
7
7
  type: any;
8
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
9
- name: string;
10
- value: string;
11
- type: string;
12
- } | Events | {
8
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
13
9
  [key: string]: any;
14
10
  } | import("src/_utils/props").RequestParams;
15
11
  };
@@ -18,11 +14,7 @@ declare const _default: import("vue").DefineComponent<{
18
14
  default?: undefined;
19
15
  } | {
20
16
  type: any;
21
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
22
- name: string;
23
- value: string;
24
- type: string;
25
- } | Events | {
17
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
26
18
  [key: string]: any;
27
19
  } | import("src/_utils/props").RequestParams;
28
20
  };
@@ -31,11 +23,7 @@ declare const _default: import("vue").DefineComponent<{
31
23
  default?: undefined;
32
24
  } | {
33
25
  type: any;
34
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
35
- name: string;
36
- value: string;
37
- type: string;
38
- } | Events | {
26
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
39
27
  [key: string]: any;
40
28
  } | import("src/_utils/props").RequestParams;
41
29
  };
@@ -44,11 +32,7 @@ declare const _default: import("vue").DefineComponent<{
44
32
  default?: undefined;
45
33
  } | {
46
34
  type: any;
47
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
48
- name: string;
49
- value: string;
50
- type: string;
51
- } | Events | {
35
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
52
36
  [key: string]: any;
53
37
  } | import("src/_utils/props").RequestParams;
54
38
  };
@@ -57,11 +41,7 @@ declare const _default: import("vue").DefineComponent<{
57
41
  default?: undefined;
58
42
  } | {
59
43
  type: any;
60
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
61
- name: string;
62
- value: string;
63
- type: string;
64
- } | Events | {
44
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
65
45
  [key: string]: any;
66
46
  } | import("src/_utils/props").RequestParams;
67
47
  };
@@ -70,11 +50,7 @@ declare const _default: import("vue").DefineComponent<{
70
50
  default?: undefined;
71
51
  } | {
72
52
  type: any;
73
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
74
- name: string;
75
- value: string;
76
- type: string;
77
- } | Events | {
53
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
78
54
  [key: string]: any;
79
55
  } | import("src/_utils/props").RequestParams;
80
56
  };
@@ -83,11 +59,7 @@ declare const _default: import("vue").DefineComponent<{
83
59
  default?: undefined;
84
60
  } | {
85
61
  type: any;
86
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
87
- name: string;
88
- value: string;
89
- type: string;
90
- } | Events | {
62
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
91
63
  [key: string]: any;
92
64
  } | import("src/_utils/props").RequestParams;
93
65
  };
@@ -96,11 +68,7 @@ declare const _default: import("vue").DefineComponent<{
96
68
  default?: undefined;
97
69
  } | {
98
70
  type: any;
99
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
100
- name: string;
101
- value: string;
102
- type: string;
103
- } | Events | {
71
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
104
72
  [key: string]: any;
105
73
  } | import("src/_utils/props").RequestParams;
106
74
  };
@@ -109,11 +77,7 @@ declare const _default: import("vue").DefineComponent<{
109
77
  default?: undefined;
110
78
  } | {
111
79
  type: any;
112
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
113
- name: string;
114
- value: string;
115
- type: string;
116
- } | Events | {
80
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
117
81
  [key: string]: any;
118
82
  } | import("src/_utils/props").RequestParams;
119
83
  };
@@ -122,11 +86,7 @@ declare const _default: import("vue").DefineComponent<{
122
86
  default?: undefined;
123
87
  } | {
124
88
  type: any;
125
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
126
- name: string;
127
- value: string;
128
- type: string;
129
- } | Events | {
89
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
130
90
  [key: string]: any;
131
91
  } | import("src/_utils/props").RequestParams;
132
92
  };
@@ -135,11 +95,7 @@ declare const _default: import("vue").DefineComponent<{
135
95
  default?: undefined;
136
96
  } | {
137
97
  type: any;
138
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
139
- name: string;
140
- value: string;
141
- type: string;
142
- } | Events | {
98
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
143
99
  [key: string]: any;
144
100
  } | import("src/_utils/props").RequestParams;
145
101
  };
@@ -148,11 +104,7 @@ declare const _default: import("vue").DefineComponent<{
148
104
  default?: undefined;
149
105
  } | {
150
106
  type: any;
151
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
152
- name: string;
153
- value: string;
154
- type: string;
155
- } | Events | {
107
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
156
108
  [key: string]: any;
157
109
  } | import("src/_utils/props").RequestParams;
158
110
  };
@@ -161,11 +113,7 @@ declare const _default: import("vue").DefineComponent<{
161
113
  default?: undefined;
162
114
  } | {
163
115
  type: any;
164
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
165
- name: string;
166
- value: string;
167
- type: string;
168
- } | Events | {
116
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
169
117
  [key: string]: any;
170
118
  } | import("src/_utils/props").RequestParams;
171
119
  };
@@ -174,11 +122,7 @@ declare const _default: import("vue").DefineComponent<{
174
122
  default?: undefined;
175
123
  } | {
176
124
  type: any;
177
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
178
- name: string;
179
- value: string;
180
- type: string;
181
- } | Events | {
125
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
182
126
  [key: string]: any;
183
127
  } | import("src/_utils/props").RequestParams;
184
128
  };
@@ -187,11 +131,7 @@ declare const _default: import("vue").DefineComponent<{
187
131
  default?: undefined;
188
132
  } | {
189
133
  type: any;
190
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
191
- name: string;
192
- value: string;
193
- type: string;
194
- } | Events | {
134
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
195
135
  [key: string]: any;
196
136
  } | import("src/_utils/props").RequestParams;
197
137
  };
@@ -200,11 +140,7 @@ declare const _default: import("vue").DefineComponent<{
200
140
  default?: undefined;
201
141
  } | {
202
142
  type: any;
203
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
204
- name: string;
205
- value: string;
206
- type: string;
207
- } | Events | {
143
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
208
144
  [key: string]: any;
209
145
  } | import("src/_utils/props").RequestParams;
210
146
  };
@@ -213,11 +149,7 @@ declare const _default: import("vue").DefineComponent<{
213
149
  default?: undefined;
214
150
  } | {
215
151
  type: any;
216
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
217
- name: string;
218
- value: string;
219
- type: string;
220
- } | Events | {
152
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
221
153
  [key: string]: any;
222
154
  } | import("src/_utils/props").RequestParams;
223
155
  };
@@ -226,24 +158,25 @@ declare const _default: import("vue").DefineComponent<{
226
158
  default?: undefined;
227
159
  } | {
228
160
  type: any;
229
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
230
- name: string;
231
- value: string;
232
- type: string;
233
- } | Events | {
161
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
234
162
  [key: string]: any;
235
163
  } | import("src/_utils/props").RequestParams;
236
164
  };
237
- dataFieldNames: {
165
+ valueTypeDataFieldNames: {
238
166
  type?: undefined;
239
167
  default?: undefined;
240
168
  } | {
241
169
  type: any;
242
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
243
- name: string;
244
- value: string;
245
- type: string;
246
- } | Events | {
170
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
171
+ [key: string]: any;
172
+ } | import("src/_utils/props").RequestParams;
173
+ };
174
+ keyTypeDataFieldNames: {
175
+ type?: undefined;
176
+ default?: undefined;
177
+ } | {
178
+ type: any;
179
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
247
180
  [key: string]: any;
248
181
  } | import("src/_utils/props").RequestParams;
249
182
  };
@@ -252,11 +185,7 @@ declare const _default: import("vue").DefineComponent<{
252
185
  default?: undefined;
253
186
  } | {
254
187
  type: any;
255
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
256
- name: string;
257
- value: string;
258
- type: string;
259
- } | Events | {
188
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
260
189
  [key: string]: any;
261
190
  } | import("src/_utils/props").RequestParams;
262
191
  };
@@ -265,11 +194,7 @@ declare const _default: import("vue").DefineComponent<{
265
194
  default?: undefined;
266
195
  } | {
267
196
  type: any;
268
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
269
- name: string;
270
- value: string;
271
- type: string;
272
- } | Events | {
197
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
273
198
  [key: string]: any;
274
199
  } | import("src/_utils/props").RequestParams;
275
200
  };
@@ -278,11 +203,7 @@ declare const _default: import("vue").DefineComponent<{
278
203
  default?: undefined;
279
204
  } | {
280
205
  type: any;
281
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
282
- name: string;
283
- value: string;
284
- type: string;
285
- } | Events | {
206
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
286
207
  [key: string]: any;
287
208
  } | import("src/_utils/props").RequestParams;
288
209
  };
@@ -291,11 +212,7 @@ declare const _default: import("vue").DefineComponent<{
291
212
  default?: undefined;
292
213
  } | {
293
214
  type: any;
294
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
295
- name: string;
296
- value: string;
297
- type: string;
298
- } | Events | {
215
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
299
216
  [key: string]: any;
300
217
  } | import("src/_utils/props").RequestParams;
301
218
  };
@@ -304,11 +221,16 @@ declare const _default: import("vue").DefineComponent<{
304
221
  default?: undefined;
305
222
  } | {
306
223
  type: any;
307
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
308
- name: string;
309
- value: string;
310
- type: string;
311
- } | Events | {
224
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
225
+ [key: string]: any;
226
+ } | import("src/_utils/props").RequestParams;
227
+ };
228
+ dataFieldConfigType: {
229
+ type?: undefined;
230
+ default?: undefined;
231
+ } | {
232
+ type: any;
233
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
312
234
  [key: string]: any;
313
235
  } | import("src/_utils/props").RequestParams;
314
236
  };
@@ -317,11 +239,7 @@ declare const _default: import("vue").DefineComponent<{
317
239
  default?: undefined;
318
240
  } | {
319
241
  type: any;
320
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
321
- name: string;
322
- value: string;
323
- type: string;
324
- } | Events | {
242
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
325
243
  [key: string]: any;
326
244
  } | import("src/_utils/props").RequestParams;
327
245
  };
@@ -330,11 +248,7 @@ declare const _default: import("vue").DefineComponent<{
330
248
  default?: undefined;
331
249
  } | {
332
250
  type: any;
333
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
334
- name: string;
335
- value: string;
336
- type: string;
337
- } | Events | {
251
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
338
252
  [key: string]: any;
339
253
  } | import("src/_utils/props").RequestParams;
340
254
  };
@@ -343,11 +257,7 @@ declare const _default: import("vue").DefineComponent<{
343
257
  default?: undefined;
344
258
  } | {
345
259
  type: any;
346
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
347
- name: string;
348
- value: string;
349
- type: string;
350
- } | Events | {
260
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
351
261
  [key: string]: any;
352
262
  } | import("src/_utils/props").RequestParams;
353
263
  };
@@ -356,11 +266,7 @@ declare const _default: import("vue").DefineComponent<{
356
266
  default?: undefined;
357
267
  } | {
358
268
  type: any;
359
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
360
- name: string;
361
- value: string;
362
- type: string;
363
- } | Events | {
269
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
364
270
  [key: string]: any;
365
271
  } | import("src/_utils/props").RequestParams;
366
272
  };
@@ -369,11 +275,7 @@ declare const _default: import("vue").DefineComponent<{
369
275
  default?: undefined;
370
276
  } | {
371
277
  type: any;
372
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
373
- name: string;
374
- value: string;
375
- type: string;
376
- } | Events | {
278
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
377
279
  [key: string]: any;
378
280
  } | import("src/_utils/props").RequestParams;
379
281
  };
@@ -382,11 +284,7 @@ declare const _default: import("vue").DefineComponent<{
382
284
  default?: undefined;
383
285
  } | {
384
286
  type: any;
385
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
386
- name: string;
387
- value: string;
388
- type: string;
389
- } | Events | {
287
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
390
288
  [key: string]: any;
391
289
  } | import("src/_utils/props").RequestParams;
392
290
  };
@@ -395,11 +293,7 @@ declare const _default: import("vue").DefineComponent<{
395
293
  default?: undefined;
396
294
  } | {
397
295
  type: any;
398
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
399
- name: string;
400
- value: string;
401
- type: string;
402
- } | Events | {
296
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
403
297
  [key: string]: any;
404
298
  } | import("src/_utils/props").RequestParams;
405
299
  };
@@ -408,11 +302,7 @@ declare const _default: import("vue").DefineComponent<{
408
302
  default?: undefined;
409
303
  } | {
410
304
  type: any;
411
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
412
- name: string;
413
- value: string;
414
- type: string;
415
- } | Events | {
305
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
416
306
  [key: string]: any;
417
307
  } | import("src/_utils/props").RequestParams;
418
308
  };
@@ -421,11 +311,7 @@ declare const _default: import("vue").DefineComponent<{
421
311
  default?: undefined;
422
312
  } | {
423
313
  type: any;
424
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
425
- name: string;
426
- value: string;
427
- type: string;
428
- } | Events | {
314
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
429
315
  [key: string]: any;
430
316
  } | import("src/_utils/props").RequestParams;
431
317
  };
@@ -434,11 +320,7 @@ declare const _default: import("vue").DefineComponent<{
434
320
  default?: undefined;
435
321
  } | {
436
322
  type: any;
437
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
438
- name: string;
439
- value: string;
440
- type: string;
441
- } | Events | {
323
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
442
324
  [key: string]: any;
443
325
  } | import("src/_utils/props").RequestParams;
444
326
  };
@@ -447,11 +329,7 @@ declare const _default: import("vue").DefineComponent<{
447
329
  default?: undefined;
448
330
  } | {
449
331
  type: any;
450
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
451
- name: string;
452
- value: string;
453
- type: string;
454
- } | Events | {
332
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
455
333
  [key: string]: any;
456
334
  } | import("src/_utils/props").RequestParams;
457
335
  };
@@ -460,11 +338,7 @@ declare const _default: import("vue").DefineComponent<{
460
338
  default?: undefined;
461
339
  } | {
462
340
  type: any;
463
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
464
- name: string;
465
- value: string;
466
- type: string;
467
- } | Events | {
341
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
468
342
  [key: string]: any;
469
343
  } | import("src/_utils/props").RequestParams;
470
344
  };
@@ -473,11 +347,7 @@ declare const _default: import("vue").DefineComponent<{
473
347
  default?: undefined;
474
348
  } | {
475
349
  type: any;
476
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
477
- name: string;
478
- value: string;
479
- type: string;
480
- } | Events | {
350
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
481
351
  [key: string]: any;
482
352
  } | import("src/_utils/props").RequestParams;
483
353
  };
@@ -486,11 +356,7 @@ declare const _default: import("vue").DefineComponent<{
486
356
  default?: undefined;
487
357
  } | {
488
358
  type: any;
489
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
490
- name: string;
491
- value: string;
492
- type: string;
493
- } | Events | {
359
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
494
360
  [key: string]: any;
495
361
  } | import("src/_utils/props").RequestParams;
496
362
  };
@@ -499,11 +365,7 @@ declare const _default: import("vue").DefineComponent<{
499
365
  default?: undefined;
500
366
  } | {
501
367
  type: any;
502
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
503
- name: string;
504
- value: string;
505
- type: string;
506
- } | Events | {
368
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
507
369
  [key: string]: any;
508
370
  } | import("src/_utils/props").RequestParams;
509
371
  };
@@ -512,11 +374,7 @@ declare const _default: import("vue").DefineComponent<{
512
374
  default?: undefined;
513
375
  } | {
514
376
  type: any;
515
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
516
- name: string;
517
- value: string;
518
- type: string;
519
- } | Events | {
377
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
520
378
  [key: string]: any;
521
379
  } | import("src/_utils/props").RequestParams;
522
380
  };
@@ -525,11 +383,7 @@ declare const _default: import("vue").DefineComponent<{
525
383
  default?: undefined;
526
384
  } | {
527
385
  type: any;
528
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
529
- name: string;
530
- value: string;
531
- type: string;
532
- } | Events | {
386
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
533
387
  [key: string]: any;
534
388
  } | import("src/_utils/props").RequestParams;
535
389
  };
@@ -538,11 +392,7 @@ declare const _default: import("vue").DefineComponent<{
538
392
  default?: undefined;
539
393
  } | {
540
394
  type: any;
541
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
542
- name: string;
543
- value: string;
544
- type: string;
545
- } | Events | {
395
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
546
396
  [key: string]: any;
547
397
  } | import("src/_utils/props").RequestParams;
548
398
  };
@@ -551,11 +401,7 @@ declare const _default: import("vue").DefineComponent<{
551
401
  default?: undefined;
552
402
  } | {
553
403
  type: any;
554
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
555
- name: string;
556
- value: string;
557
- type: string;
558
- } | Events | {
404
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
559
405
  [key: string]: any;
560
406
  } | import("src/_utils/props").RequestParams;
561
407
  };
@@ -564,11 +410,7 @@ declare const _default: import("vue").DefineComponent<{
564
410
  default?: undefined;
565
411
  } | {
566
412
  type: any;
567
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
568
- name: string;
569
- value: string;
570
- type: string;
571
- } | Events | {
413
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
572
414
  [key: string]: any;
573
415
  } | import("src/_utils/props").RequestParams;
574
416
  };
@@ -577,11 +419,16 @@ declare const _default: import("vue").DefineComponent<{
577
419
  default?: undefined;
578
420
  } | {
579
421
  type: any;
580
- default: string | number | boolean | string[] | import("src/_utils/props").Data | {
581
- name: string;
582
- value: string;
583
- type: string;
584
- } | Events | {
422
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
423
+ [key: string]: any;
424
+ } | import("src/_utils/props").RequestParams;
425
+ };
426
+ requestSort: {
427
+ type?: undefined;
428
+ default?: undefined;
429
+ } | {
430
+ type: any;
431
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
585
432
  [key: string]: any;
586
433
  } | import("src/_utils/props").RequestParams;
587
434
  };
@@ -694,6 +541,7 @@ declare const _default: import("vue").DefineComponent<{
694
541
  }[];
695
542
  }>;
696
543
  click: () => void;
544
+ loading: import("vue").Ref<boolean>;
697
545
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
698
546
  data?: unknown;
699
547
  titleText?: unknown;
@@ -713,12 +561,14 @@ declare const _default: import("vue").DefineComponent<{
713
561
  yAxisSplitLineStyleColor?: unknown;
714
562
  yAxisLabelColor?: unknown;
715
563
  yAxisLineStyleColor?: unknown;
716
- dataFieldNames?: unknown;
564
+ valueTypeDataFieldNames?: unknown;
565
+ keyTypeDataFieldNames?: unknown;
717
566
  tooltipShow?: unknown;
718
567
  tooltipTrigger?: unknown;
719
568
  tooltipTextStyleColor?: unknown;
720
569
  tooltipFormatter?: unknown;
721
570
  seriesTypes?: unknown;
571
+ dataFieldConfigType?: unknown;
722
572
  id?: unknown;
723
573
  name?: unknown;
724
574
  keyName?: unknown;
@@ -740,6 +590,7 @@ declare const _default: import("vue").DefineComponent<{
740
590
  isOpenRequestTimer?: unknown;
741
591
  requestInterval?: unknown;
742
592
  requestParams?: unknown;
593
+ requestSort?: unknown;
743
594
  } & {} & {
744
595
  type?: string | number | boolean | {
745
596
  [key: string]: any;
@@ -798,7 +649,10 @@ declare const _default: import("vue").DefineComponent<{
798
649
  yAxisLineStyleColor?: string | number | boolean | {
799
650
  [key: string]: any;
800
651
  };
801
- dataFieldNames?: string | number | boolean | {
652
+ valueTypeDataFieldNames?: string | number | boolean | {
653
+ [key: string]: any;
654
+ };
655
+ keyTypeDataFieldNames?: string | number | boolean | {
802
656
  [key: string]: any;
803
657
  };
804
658
  tooltipShow?: string | number | boolean | {
@@ -816,6 +670,9 @@ declare const _default: import("vue").DefineComponent<{
816
670
  seriesTypes?: string | number | boolean | {
817
671
  [key: string]: any;
818
672
  };
673
+ dataFieldConfigType?: string | number | boolean | {
674
+ [key: string]: any;
675
+ };
819
676
  id?: string | number | boolean | {
820
677
  [key: string]: any;
821
678
  };
@@ -876,5 +733,8 @@ declare const _default: import("vue").DefineComponent<{
876
733
  requestParams?: string | number | boolean | {
877
734
  [key: string]: any;
878
735
  };
736
+ requestSort?: string | number | boolean | {
737
+ [key: string]: any;
738
+ };
879
739
  }>, {}>;
880
740
  export default _default;