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