@ecan-bi/datav 1.0.7 → 1.0.10

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