@ecan-bi/datav 1.0.16 → 1.0.19

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 (64) 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 +740 -0
  37. package/dist/graph/combo-graph/index.d.ts +3 -0
  38. package/dist/graph/combo-graph/props.d.ts +465 -0
  39. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +15 -0
  40. package/dist/graph/custom-graph/props.d.ts +11 -0
  41. package/dist/graph/index.d.ts +1 -0
  42. package/dist/graph/line/Line.vue.d.ts +87 -219
  43. package/dist/graph/line/props.d.ts +76 -222
  44. package/dist/graph/pie/Pie.vue.d.ts +82 -259
  45. package/dist/graph/pie/props.d.ts +74 -262
  46. package/dist/graph/scatter/Scatter.vue.d.ts +17 -0
  47. package/dist/graph/scatter/props.d.ts +13 -0
  48. package/dist/index.esm.js +3 -2
  49. package/dist/index.esm.js.map +1 -0
  50. package/dist/index.umd.js +3 -2
  51. package/dist/index.umd.js.map +1 -0
  52. package/dist/media/image/Image.vue.d.ts +14 -0
  53. package/dist/media/image/props.d.ts +9 -0
  54. package/dist/setting/event-config/index.d.ts +2 -0
  55. package/dist/table/table/Table.vue.d.ts +19 -1
  56. package/dist/table/table/props.d.ts +13 -0
  57. package/dist/text/list/List.vue.d.ts +21 -0
  58. package/dist/text/list/props.d.ts +18 -0
  59. package/dist/text/text/Text.vue.d.ts +16 -0
  60. package/dist/text/text/props.d.ts +12 -0
  61. package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -0
  62. package/dist/text/time-display/props.d.ts +9 -0
  63. package/package.json +1 -1
  64. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +0 -17
@@ -0,0 +1,3 @@
1
+ export declare const EcanComboGraph: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>> & Record<string, any>;
2
+ export default EcanComboGraph;
3
+ export * from './props';
@@ -0,0 +1,465 @@
1
+ import { Data, Props, ValueTypeDataFieldNames, KeyTypeDataFieldNames } from '../../_utils/props';
2
+ export interface ComboGraphProps extends Props {
3
+ data: Data;
4
+ titleText: string;
5
+ titleSubtext: string;
6
+ colors: string[];
7
+ legendShow: boolean;
8
+ legendTextStyleColor: string;
9
+ legendLeft: 'left' | 'center' | 'right';
10
+ legendTop: 'top' | 'middle' | 'bottom';
11
+ legendOrient: 'vertical' | 'horizontal';
12
+ xAxisSplitLineShow: boolean;
13
+ xAxisLabelColor: string;
14
+ xAxisLineStyleColor: string;
15
+ xAxisTickShow: boolean;
16
+ yAxisSplitLineShow: boolean;
17
+ xAxisSplitLineStyleColor: string;
18
+ yAxisSplitLineStyleColor: string;
19
+ yAxisLabelColor: string;
20
+ yAxisLineStyleColor: string;
21
+ valueTypeDataFieldNames: ValueTypeDataFieldNames;
22
+ keyTypeDataFieldNames: KeyTypeDataFieldNames;
23
+ tooltipShow: boolean;
24
+ tooltipTrigger: 'item' | 'axis' | 'none';
25
+ tooltipTextStyleColor: string;
26
+ tooltipFormatter: string;
27
+ seriesTypes: string[];
28
+ dataFieldConfigType: 'key' | 'value';
29
+ }
30
+ export declare const comboGraphProps: ComboGraphProps;
31
+ export declare const comboGraphComponentProps: {
32
+ data: {
33
+ type?: undefined;
34
+ default?: undefined;
35
+ } | {
36
+ type: any;
37
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
38
+ [key: string]: any;
39
+ } | import("../../_utils/props").RequestParams;
40
+ };
41
+ titleText: {
42
+ type?: undefined;
43
+ default?: undefined;
44
+ } | {
45
+ type: any;
46
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
47
+ [key: string]: any;
48
+ } | import("../../_utils/props").RequestParams;
49
+ };
50
+ titleSubtext: {
51
+ type?: undefined;
52
+ default?: undefined;
53
+ } | {
54
+ type: any;
55
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
56
+ [key: string]: any;
57
+ } | import("../../_utils/props").RequestParams;
58
+ };
59
+ colors: {
60
+ type?: undefined;
61
+ default?: undefined;
62
+ } | {
63
+ type: any;
64
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
65
+ [key: string]: any;
66
+ } | import("../../_utils/props").RequestParams;
67
+ };
68
+ legendShow: {
69
+ type?: undefined;
70
+ default?: undefined;
71
+ } | {
72
+ type: any;
73
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
74
+ [key: string]: any;
75
+ } | import("../../_utils/props").RequestParams;
76
+ };
77
+ legendTextStyleColor: {
78
+ type?: undefined;
79
+ default?: undefined;
80
+ } | {
81
+ type: any;
82
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
83
+ [key: string]: any;
84
+ } | import("../../_utils/props").RequestParams;
85
+ };
86
+ legendLeft: {
87
+ type?: undefined;
88
+ default?: undefined;
89
+ } | {
90
+ type: any;
91
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
92
+ [key: string]: any;
93
+ } | import("../../_utils/props").RequestParams;
94
+ };
95
+ legendTop: {
96
+ type?: undefined;
97
+ default?: undefined;
98
+ } | {
99
+ type: any;
100
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
101
+ [key: string]: any;
102
+ } | import("../../_utils/props").RequestParams;
103
+ };
104
+ legendOrient: {
105
+ type?: undefined;
106
+ default?: undefined;
107
+ } | {
108
+ type: any;
109
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
110
+ [key: string]: any;
111
+ } | import("../../_utils/props").RequestParams;
112
+ };
113
+ xAxisSplitLineShow: {
114
+ type?: undefined;
115
+ default?: undefined;
116
+ } | {
117
+ type: any;
118
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
119
+ [key: string]: any;
120
+ } | import("../../_utils/props").RequestParams;
121
+ };
122
+ xAxisLabelColor: {
123
+ type?: undefined;
124
+ default?: undefined;
125
+ } | {
126
+ type: any;
127
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
128
+ [key: string]: any;
129
+ } | import("../../_utils/props").RequestParams;
130
+ };
131
+ xAxisLineStyleColor: {
132
+ type?: undefined;
133
+ default?: undefined;
134
+ } | {
135
+ type: any;
136
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
137
+ [key: string]: any;
138
+ } | import("../../_utils/props").RequestParams;
139
+ };
140
+ xAxisTickShow: {
141
+ type?: undefined;
142
+ default?: undefined;
143
+ } | {
144
+ type: any;
145
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
146
+ [key: string]: any;
147
+ } | import("../../_utils/props").RequestParams;
148
+ };
149
+ yAxisSplitLineShow: {
150
+ type?: undefined;
151
+ default?: undefined;
152
+ } | {
153
+ type: any;
154
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
155
+ [key: string]: any;
156
+ } | import("../../_utils/props").RequestParams;
157
+ };
158
+ xAxisSplitLineStyleColor: {
159
+ type?: undefined;
160
+ default?: undefined;
161
+ } | {
162
+ type: any;
163
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
164
+ [key: string]: any;
165
+ } | import("../../_utils/props").RequestParams;
166
+ };
167
+ yAxisSplitLineStyleColor: {
168
+ type?: undefined;
169
+ default?: undefined;
170
+ } | {
171
+ type: any;
172
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
173
+ [key: string]: any;
174
+ } | import("../../_utils/props").RequestParams;
175
+ };
176
+ yAxisLabelColor: {
177
+ type?: undefined;
178
+ default?: undefined;
179
+ } | {
180
+ type: any;
181
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
182
+ [key: string]: any;
183
+ } | import("../../_utils/props").RequestParams;
184
+ };
185
+ yAxisLineStyleColor: {
186
+ type?: undefined;
187
+ default?: undefined;
188
+ } | {
189
+ type: any;
190
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
191
+ [key: string]: any;
192
+ } | import("../../_utils/props").RequestParams;
193
+ };
194
+ valueTypeDataFieldNames: {
195
+ type?: undefined;
196
+ default?: undefined;
197
+ } | {
198
+ type: any;
199
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
200
+ [key: string]: any;
201
+ } | import("../../_utils/props").RequestParams;
202
+ };
203
+ keyTypeDataFieldNames: {
204
+ type?: undefined;
205
+ default?: undefined;
206
+ } | {
207
+ type: any;
208
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
209
+ [key: string]: any;
210
+ } | import("../../_utils/props").RequestParams;
211
+ };
212
+ tooltipShow: {
213
+ type?: undefined;
214
+ default?: undefined;
215
+ } | {
216
+ type: any;
217
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
218
+ [key: string]: any;
219
+ } | import("../../_utils/props").RequestParams;
220
+ };
221
+ tooltipTrigger: {
222
+ type?: undefined;
223
+ default?: undefined;
224
+ } | {
225
+ type: any;
226
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
227
+ [key: string]: any;
228
+ } | import("../../_utils/props").RequestParams;
229
+ };
230
+ tooltipTextStyleColor: {
231
+ type?: undefined;
232
+ default?: undefined;
233
+ } | {
234
+ type: any;
235
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
236
+ [key: string]: any;
237
+ } | import("../../_utils/props").RequestParams;
238
+ };
239
+ tooltipFormatter: {
240
+ type?: undefined;
241
+ default?: undefined;
242
+ } | {
243
+ type: any;
244
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
245
+ [key: string]: any;
246
+ } | import("../../_utils/props").RequestParams;
247
+ };
248
+ seriesTypes: {
249
+ type?: undefined;
250
+ default?: undefined;
251
+ } | {
252
+ type: any;
253
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
254
+ [key: string]: any;
255
+ } | import("../../_utils/props").RequestParams;
256
+ };
257
+ dataFieldConfigType: {
258
+ type?: undefined;
259
+ default?: undefined;
260
+ } | {
261
+ type: any;
262
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
263
+ [key: string]: any;
264
+ } | import("../../_utils/props").RequestParams;
265
+ };
266
+ id: {
267
+ type?: undefined;
268
+ default?: undefined;
269
+ } | {
270
+ type: any;
271
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
272
+ [key: string]: any;
273
+ } | import("../../_utils/props").RequestParams;
274
+ };
275
+ name: {
276
+ type?: undefined;
277
+ default?: undefined;
278
+ } | {
279
+ type: any;
280
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
281
+ [key: string]: any;
282
+ } | import("../../_utils/props").RequestParams;
283
+ };
284
+ keyName: {
285
+ type?: undefined;
286
+ default?: undefined;
287
+ } | {
288
+ type: any;
289
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
290
+ [key: string]: any;
291
+ } | import("../../_utils/props").RequestParams;
292
+ };
293
+ type: {
294
+ type?: undefined;
295
+ default?: undefined;
296
+ } | {
297
+ type: any;
298
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
299
+ [key: string]: any;
300
+ } | import("../../_utils/props").RequestParams;
301
+ };
302
+ width: {
303
+ type?: undefined;
304
+ default?: undefined;
305
+ } | {
306
+ type: any;
307
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
308
+ [key: string]: any;
309
+ } | import("../../_utils/props").RequestParams;
310
+ };
311
+ height: {
312
+ type?: undefined;
313
+ default?: undefined;
314
+ } | {
315
+ type: any;
316
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
317
+ [key: string]: any;
318
+ } | import("../../_utils/props").RequestParams;
319
+ };
320
+ position: {
321
+ type?: undefined;
322
+ default?: undefined;
323
+ } | {
324
+ type: any;
325
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
326
+ [key: string]: any;
327
+ } | import("../../_utils/props").RequestParams;
328
+ };
329
+ top: {
330
+ type?: undefined;
331
+ default?: undefined;
332
+ } | {
333
+ type: any;
334
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
335
+ [key: string]: any;
336
+ } | import("../../_utils/props").RequestParams;
337
+ };
338
+ left: {
339
+ type?: undefined;
340
+ default?: undefined;
341
+ } | {
342
+ type: any;
343
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
344
+ [key: string]: any;
345
+ } | import("../../_utils/props").RequestParams;
346
+ };
347
+ zIndex: {
348
+ type?: undefined;
349
+ default?: undefined;
350
+ } | {
351
+ type: any;
352
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
353
+ [key: string]: any;
354
+ } | import("../../_utils/props").RequestParams;
355
+ };
356
+ rotate: {
357
+ type?: undefined;
358
+ default?: undefined;
359
+ } | {
360
+ type: any;
361
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
362
+ [key: string]: any;
363
+ } | import("../../_utils/props").RequestParams;
364
+ };
365
+ isShow: {
366
+ type?: undefined;
367
+ default?: undefined;
368
+ } | {
369
+ type: any;
370
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
371
+ [key: string]: any;
372
+ } | import("../../_utils/props").RequestParams;
373
+ };
374
+ isRender: {
375
+ type?: undefined;
376
+ default?: undefined;
377
+ } | {
378
+ type: any;
379
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
380
+ [key: string]: any;
381
+ } | import("../../_utils/props").RequestParams;
382
+ };
383
+ isRequestData: {
384
+ type?: undefined;
385
+ default?: undefined;
386
+ } | {
387
+ type: any;
388
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
389
+ [key: string]: any;
390
+ } | import("../../_utils/props").RequestParams;
391
+ };
392
+ events: {
393
+ type?: undefined;
394
+ default?: undefined;
395
+ } | {
396
+ type: any;
397
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
398
+ [key: string]: any;
399
+ } | import("../../_utils/props").RequestParams;
400
+ };
401
+ requestUrl: {
402
+ type?: undefined;
403
+ default?: undefined;
404
+ } | {
405
+ type: any;
406
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
407
+ [key: string]: any;
408
+ } | import("../../_utils/props").RequestParams;
409
+ };
410
+ requestMethod: {
411
+ type?: undefined;
412
+ default?: undefined;
413
+ } | {
414
+ type: any;
415
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
416
+ [key: string]: any;
417
+ } | import("../../_utils/props").RequestParams;
418
+ };
419
+ requestHeaders: {
420
+ type?: undefined;
421
+ default?: undefined;
422
+ } | {
423
+ type: any;
424
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
425
+ [key: string]: any;
426
+ } | import("../../_utils/props").RequestParams;
427
+ };
428
+ isOpenRequestTimer: {
429
+ type?: undefined;
430
+ default?: undefined;
431
+ } | {
432
+ type: any;
433
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
434
+ [key: string]: any;
435
+ } | import("../../_utils/props").RequestParams;
436
+ };
437
+ requestInterval: {
438
+ type?: undefined;
439
+ default?: undefined;
440
+ } | {
441
+ type: any;
442
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
443
+ [key: string]: any;
444
+ } | import("../../_utils/props").RequestParams;
445
+ };
446
+ requestParams: {
447
+ type?: undefined;
448
+ default?: undefined;
449
+ } | {
450
+ type: any;
451
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
452
+ [key: string]: any;
453
+ } | import("../../_utils/props").RequestParams;
454
+ };
455
+ requestSort: {
456
+ type?: undefined;
457
+ default?: undefined;
458
+ } | {
459
+ type: any;
460
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
461
+ [key: string]: any;
462
+ } | import("../../_utils/props").RequestParams;
463
+ };
464
+ };
465
+ export declare const comboGraphEvents: string[];
@@ -253,6 +253,17 @@ declare const _default: import("vue").DefineComponent<{
253
253
  [key: string]: any;
254
254
  } | import("../../_utils/props").RequestParams;
255
255
  };
256
+ requestSort: {
257
+ type?: undefined;
258
+ default?: undefined;
259
+ } | {
260
+ type: any;
261
+ default: string | number | boolean | {
262
+ [key: string]: any;
263
+ } | import("../../_utils/props").Events | {
264
+ [key: string]: any;
265
+ } | import("../../_utils/props").RequestParams;
266
+ };
256
267
  }, {
257
268
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
258
269
  myOption: import("vue").Ref<any>;
@@ -281,6 +292,7 @@ declare const _default: import("vue").DefineComponent<{
281
292
  isOpenRequestTimer?: unknown;
282
293
  requestInterval?: unknown;
283
294
  requestParams?: unknown;
295
+ requestSort?: unknown;
284
296
  } & {} & {
285
297
  type?: string | number | boolean | {
286
298
  [key: string]: any;
@@ -351,5 +363,8 @@ declare const _default: import("vue").DefineComponent<{
351
363
  requestParams?: string | number | boolean | {
352
364
  [key: string]: any;
353
365
  };
366
+ requestSort?: string | number | boolean | {
367
+ [key: string]: any;
368
+ };
354
369
  }>, {}>;
355
370
  export default _default;
@@ -260,4 +260,15 @@ export declare const customGraphComponentProps: {
260
260
  [key: string]: any;
261
261
  } | import("../../_utils/props").RequestParams;
262
262
  };
263
+ requestSort: {
264
+ type?: undefined;
265
+ default?: undefined;
266
+ } | {
267
+ type: any;
268
+ default: string | number | boolean | {
269
+ [key: string]: any;
270
+ } | import("../../_utils/props").Events | {
271
+ [key: string]: any;
272
+ } | import("../../_utils/props").RequestParams;
273
+ };
263
274
  };
@@ -3,3 +3,4 @@ export * from './line';
3
3
  export * from './bar';
4
4
  export * from './scatter';
5
5
  export * from './custom-graph';
6
+ export * from './combo-graph';