@ecan-bi/datav 1.0.41 → 1.0.44

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/index.es.js +906 -255
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +906 -252
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +149 -86
  6. package/package.json +1 -1
  7. package/types/_utils/constant.d.ts +3 -1
  8. package/types/_utils/hooks/index.d.ts +2 -0
  9. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  10. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  11. package/types/container/border/Border.vue.d.ts +183 -54
  12. package/types/container/border/index.d.ts +130 -1
  13. package/types/container/border/props.d.ts +115 -55
  14. package/types/container/modal/Modal.vue.d.ts +1 -1
  15. package/types/container/modal/index.d.ts +1 -1
  16. package/types/control/button/Button.vue.d.ts +110 -0
  17. package/types/control/button/index.d.ts +111 -1
  18. package/types/control/button/props.d.ts +104 -44
  19. package/types/control/date-picker/props.d.ts +52 -52
  20. package/types/control/input/props.d.ts +48 -48
  21. package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
  22. package/types/control/range-picker/props.d.ts +52 -52
  23. package/types/control/select/Select.vue.d.ts +50 -50
  24. package/types/control/select/props.d.ts +50 -50
  25. package/types/control/tabs/Tabs.vue.d.ts +42 -0
  26. package/types/control/tabs/index.d.ts +42 -0
  27. package/types/control/tabs/props.d.ts +24 -0
  28. package/types/graph/bar/Bar.vue.d.ts +128 -128
  29. package/types/graph/bar/index.d.ts +128 -128
  30. package/types/graph/bar/props.d.ts +65 -65
  31. package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
  32. package/types/graph/combo-graph/index.d.ts +155 -0
  33. package/types/graph/combo-graph/props.d.ts +72 -0
  34. package/types/graph/custom-graph/props.d.ts +48 -48
  35. package/types/graph/line/Line.vue.d.ts +155 -0
  36. package/types/graph/line/index.d.ts +155 -0
  37. package/types/graph/line/props.d.ts +72 -0
  38. package/types/graph/pie/Pie.vue.d.ts +155 -0
  39. package/types/graph/pie/index.d.ts +155 -0
  40. package/types/graph/pie/props.d.ts +72 -0
  41. package/types/graph/scatter/Scatter.vue.d.ts +155 -0
  42. package/types/graph/scatter/index.d.ts +155 -0
  43. package/types/graph/scatter/props.d.ts +72 -0
  44. package/types/map/map/props.d.ts +112 -112
  45. package/types/media/image/props.d.ts +52 -52
  46. package/types/setting/index.d.ts +1 -0
  47. package/types/setting/provider-config/ProviderConfig.vue.d.ts +36 -6
  48. package/types/setting/provider-config/index.d.ts +37 -7
  49. package/types/setting/provider-config/props.d.ts +21 -3
  50. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  51. package/types/setting/renderer/index.d.ts +23 -0
  52. package/types/setting/renderer/props.d.ts +17 -0
  53. package/types/table/table/Table.vue.d.ts +900 -79
  54. package/types/table/table/index.d.ts +899 -79
  55. package/types/table/table/props.d.ts +451 -39
  56. package/types/text/list/List.vue.d.ts +64 -64
  57. package/types/text/list/props.d.ts +64 -64
  58. package/types/text/proportion/Proportion.vue.d.ts +68 -68
  59. package/types/text/proportion/props.d.ts +68 -68
  60. package/types/text/text/Text.vue.d.ts +66 -66
  61. package/types/text/text/props.d.ts +66 -66
  62. package/types/text/time-display/props.d.ts +60 -60
@@ -8,7 +8,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
8
8
  type: any;
9
9
  default: string | number | boolean | Events | {
10
10
  [key: string]: any;
11
- } | import("../../_utils/props").RequestParams;
11
+ } | import('../../_utils/props').RequestParams;
12
12
  };
13
13
  format: {
14
14
  type?: undefined;
@@ -17,7 +17,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
17
17
  type: any;
18
18
  default: string | number | boolean | Events | {
19
19
  [key: string]: any;
20
- } | import("../../_utils/props").RequestParams;
20
+ } | import('../../_utils/props').RequestParams;
21
21
  };
22
22
  startTime: {
23
23
  type?: undefined;
@@ -26,7 +26,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
26
26
  type: any;
27
27
  default: string | number | boolean | Events | {
28
28
  [key: string]: any;
29
- } | import("../../_utils/props").RequestParams;
29
+ } | import('../../_utils/props').RequestParams;
30
30
  };
31
31
  endTime: {
32
32
  type?: undefined;
@@ -35,7 +35,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
35
35
  type: any;
36
36
  default: string | number | boolean | Events | {
37
37
  [key: string]: any;
38
- } | import("../../_utils/props").RequestParams;
38
+ } | import('../../_utils/props').RequestParams;
39
39
  };
40
40
  id: {
41
41
  type?: undefined;
@@ -44,7 +44,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
44
44
  type: any;
45
45
  default: string | number | boolean | Events | {
46
46
  [key: string]: any;
47
- } | import("../../_utils/props").RequestParams;
47
+ } | import('../../_utils/props').RequestParams;
48
48
  };
49
49
  name: {
50
50
  type?: undefined;
@@ -53,7 +53,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
53
53
  type: any;
54
54
  default: string | number | boolean | Events | {
55
55
  [key: string]: any;
56
- } | import("../../_utils/props").RequestParams;
56
+ } | import('../../_utils/props').RequestParams;
57
57
  };
58
58
  keyName: {
59
59
  type?: undefined;
@@ -62,7 +62,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
62
62
  type: any;
63
63
  default: string | number | boolean | Events | {
64
64
  [key: string]: any;
65
- } | import("../../_utils/props").RequestParams;
65
+ } | import('../../_utils/props').RequestParams;
66
66
  };
67
67
  type: {
68
68
  type?: undefined;
@@ -71,7 +71,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
71
71
  type: any;
72
72
  default: string | number | boolean | Events | {
73
73
  [key: string]: any;
74
- } | import("../../_utils/props").RequestParams;
74
+ } | import('../../_utils/props').RequestParams;
75
75
  };
76
76
  width: {
77
77
  type?: undefined;
@@ -80,7 +80,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
80
80
  type: any;
81
81
  default: string | number | boolean | Events | {
82
82
  [key: string]: any;
83
- } | import("../../_utils/props").RequestParams;
83
+ } | import('../../_utils/props').RequestParams;
84
84
  };
85
85
  height: {
86
86
  type?: undefined;
@@ -89,7 +89,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
89
89
  type: any;
90
90
  default: string | number | boolean | Events | {
91
91
  [key: string]: any;
92
- } | import("../../_utils/props").RequestParams;
92
+ } | import('../../_utils/props').RequestParams;
93
93
  };
94
94
  position: {
95
95
  type?: undefined;
@@ -98,7 +98,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
98
98
  type: any;
99
99
  default: string | number | boolean | Events | {
100
100
  [key: string]: any;
101
- } | import("../../_utils/props").RequestParams;
101
+ } | import('../../_utils/props').RequestParams;
102
102
  };
103
103
  top: {
104
104
  type?: undefined;
@@ -107,7 +107,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
107
107
  type: any;
108
108
  default: string | number | boolean | Events | {
109
109
  [key: string]: any;
110
- } | import("../../_utils/props").RequestParams;
110
+ } | import('../../_utils/props').RequestParams;
111
111
  };
112
112
  left: {
113
113
  type?: undefined;
@@ -116,7 +116,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
116
116
  type: any;
117
117
  default: string | number | boolean | Events | {
118
118
  [key: string]: any;
119
- } | import("../../_utils/props").RequestParams;
119
+ } | import('../../_utils/props').RequestParams;
120
120
  };
121
121
  zIndex: {
122
122
  type?: undefined;
@@ -125,7 +125,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
125
125
  type: any;
126
126
  default: string | number | boolean | Events | {
127
127
  [key: string]: any;
128
- } | import("../../_utils/props").RequestParams;
128
+ } | import('../../_utils/props').RequestParams;
129
129
  };
130
130
  rotate: {
131
131
  type?: undefined;
@@ -134,7 +134,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
134
134
  type: any;
135
135
  default: string | number | boolean | Events | {
136
136
  [key: string]: any;
137
- } | import("../../_utils/props").RequestParams;
137
+ } | import('../../_utils/props').RequestParams;
138
138
  };
139
139
  isShow: {
140
140
  type?: undefined;
@@ -143,7 +143,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
143
143
  type: any;
144
144
  default: string | number | boolean | Events | {
145
145
  [key: string]: any;
146
- } | import("../../_utils/props").RequestParams;
146
+ } | import('../../_utils/props').RequestParams;
147
147
  };
148
148
  isRender: {
149
149
  type?: undefined;
@@ -152,7 +152,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
152
152
  type: any;
153
153
  default: string | number | boolean | Events | {
154
154
  [key: string]: any;
155
- } | import("../../_utils/props").RequestParams;
155
+ } | import('../../_utils/props').RequestParams;
156
156
  };
157
157
  events: {
158
158
  type?: undefined;
@@ -161,7 +161,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
161
161
  type: any;
162
162
  default: string | number | boolean | Events | {
163
163
  [key: string]: any;
164
- } | import("../../_utils/props").RequestParams;
164
+ } | import('../../_utils/props').RequestParams;
165
165
  };
166
166
  requestUrl: {
167
167
  type?: undefined;
@@ -170,7 +170,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
170
170
  type: any;
171
171
  default: string | number | boolean | Events | {
172
172
  [key: string]: any;
173
- } | import("../../_utils/props").RequestParams;
173
+ } | import('../../_utils/props').RequestParams;
174
174
  };
175
175
  requestMethod: {
176
176
  type?: undefined;
@@ -179,7 +179,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
179
179
  type: any;
180
180
  default: string | number | boolean | Events | {
181
181
  [key: string]: any;
182
- } | import("../../_utils/props").RequestParams;
182
+ } | import('../../_utils/props').RequestParams;
183
183
  };
184
184
  requestHeaders: {
185
185
  type?: undefined;
@@ -188,7 +188,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
188
188
  type: any;
189
189
  default: string | number | boolean | Events | {
190
190
  [key: string]: any;
191
- } | import("../../_utils/props").RequestParams;
191
+ } | import('../../_utils/props').RequestParams;
192
192
  };
193
193
  isOpenRequestTimer: {
194
194
  type?: undefined;
@@ -197,7 +197,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
197
197
  type: any;
198
198
  default: string | number | boolean | Events | {
199
199
  [key: string]: any;
200
- } | import("../../_utils/props").RequestParams;
200
+ } | import('../../_utils/props').RequestParams;
201
201
  };
202
202
  requestInterval: {
203
203
  type?: undefined;
@@ -206,7 +206,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
206
206
  type: any;
207
207
  default: string | number | boolean | Events | {
208
208
  [key: string]: any;
209
- } | import("../../_utils/props").RequestParams;
209
+ } | import('../../_utils/props').RequestParams;
210
210
  };
211
211
  requestParams: {
212
212
  type?: undefined;
@@ -215,7 +215,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
215
215
  type: any;
216
216
  default: string | number | boolean | Events | {
217
217
  [key: string]: any;
218
- } | import("../../_utils/props").RequestParams;
218
+ } | import('../../_utils/props').RequestParams;
219
219
  };
220
220
  requestSort: {
221
221
  type?: undefined;
@@ -224,7 +224,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
224
224
  type: any;
225
225
  default: string | number | boolean | Events | {
226
226
  [key: string]: any;
227
- } | import("../../_utils/props").RequestParams;
227
+ } | import('../../_utils/props').RequestParams;
228
228
  };
229
229
  dataType: {
230
230
  type?: undefined;
@@ -233,7 +233,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
233
233
  type: any;
234
234
  default: string | number | boolean | Events | {
235
235
  [key: string]: any;
236
- } | import("../../_utils/props").RequestParams;
236
+ } | import('../../_utils/props').RequestParams;
237
237
  };
238
238
  }, {
239
239
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
@@ -365,7 +365,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
365
365
  type: any;
366
366
  default: string | number | boolean | Events | {
367
367
  [key: string]: any;
368
- } | import("../../_utils/props").RequestParams;
368
+ } | import('../../_utils/props').RequestParams;
369
369
  };
370
370
  format: {
371
371
  type?: undefined;
@@ -374,7 +374,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
374
374
  type: any;
375
375
  default: string | number | boolean | Events | {
376
376
  [key: string]: any;
377
- } | import("../../_utils/props").RequestParams;
377
+ } | import('../../_utils/props').RequestParams;
378
378
  };
379
379
  startTime: {
380
380
  type?: undefined;
@@ -383,7 +383,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
383
383
  type: any;
384
384
  default: string | number | boolean | Events | {
385
385
  [key: string]: any;
386
- } | import("../../_utils/props").RequestParams;
386
+ } | import('../../_utils/props').RequestParams;
387
387
  };
388
388
  endTime: {
389
389
  type?: undefined;
@@ -392,7 +392,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
392
392
  type: any;
393
393
  default: string | number | boolean | Events | {
394
394
  [key: string]: any;
395
- } | import("../../_utils/props").RequestParams;
395
+ } | import('../../_utils/props').RequestParams;
396
396
  };
397
397
  id: {
398
398
  type?: undefined;
@@ -401,7 +401,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
401
401
  type: any;
402
402
  default: string | number | boolean | Events | {
403
403
  [key: string]: any;
404
- } | import("../../_utils/props").RequestParams;
404
+ } | import('../../_utils/props').RequestParams;
405
405
  };
406
406
  name: {
407
407
  type?: undefined;
@@ -410,7 +410,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
410
410
  type: any;
411
411
  default: string | number | boolean | Events | {
412
412
  [key: string]: any;
413
- } | import("../../_utils/props").RequestParams;
413
+ } | import('../../_utils/props').RequestParams;
414
414
  };
415
415
  keyName: {
416
416
  type?: undefined;
@@ -419,7 +419,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
419
419
  type: any;
420
420
  default: string | number | boolean | Events | {
421
421
  [key: string]: any;
422
- } | import("../../_utils/props").RequestParams;
422
+ } | import('../../_utils/props').RequestParams;
423
423
  };
424
424
  type: {
425
425
  type?: undefined;
@@ -428,7 +428,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
428
428
  type: any;
429
429
  default: string | number | boolean | Events | {
430
430
  [key: string]: any;
431
- } | import("../../_utils/props").RequestParams;
431
+ } | import('../../_utils/props').RequestParams;
432
432
  };
433
433
  width: {
434
434
  type?: undefined;
@@ -437,7 +437,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
437
437
  type: any;
438
438
  default: string | number | boolean | Events | {
439
439
  [key: string]: any;
440
- } | import("../../_utils/props").RequestParams;
440
+ } | import('../../_utils/props').RequestParams;
441
441
  };
442
442
  height: {
443
443
  type?: undefined;
@@ -446,7 +446,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
446
446
  type: any;
447
447
  default: string | number | boolean | Events | {
448
448
  [key: string]: any;
449
- } | import("../../_utils/props").RequestParams;
449
+ } | import('../../_utils/props').RequestParams;
450
450
  };
451
451
  position: {
452
452
  type?: undefined;
@@ -455,7 +455,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
455
455
  type: any;
456
456
  default: string | number | boolean | Events | {
457
457
  [key: string]: any;
458
- } | import("../../_utils/props").RequestParams;
458
+ } | import('../../_utils/props').RequestParams;
459
459
  };
460
460
  top: {
461
461
  type?: undefined;
@@ -464,7 +464,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
464
464
  type: any;
465
465
  default: string | number | boolean | Events | {
466
466
  [key: string]: any;
467
- } | import("../../_utils/props").RequestParams;
467
+ } | import('../../_utils/props').RequestParams;
468
468
  };
469
469
  left: {
470
470
  type?: undefined;
@@ -473,7 +473,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
473
473
  type: any;
474
474
  default: string | number | boolean | Events | {
475
475
  [key: string]: any;
476
- } | import("../../_utils/props").RequestParams;
476
+ } | import('../../_utils/props').RequestParams;
477
477
  };
478
478
  zIndex: {
479
479
  type?: undefined;
@@ -482,7 +482,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
482
482
  type: any;
483
483
  default: string | number | boolean | Events | {
484
484
  [key: string]: any;
485
- } | import("../../_utils/props").RequestParams;
485
+ } | import('../../_utils/props').RequestParams;
486
486
  };
487
487
  rotate: {
488
488
  type?: undefined;
@@ -491,7 +491,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
491
491
  type: any;
492
492
  default: string | number | boolean | Events | {
493
493
  [key: string]: any;
494
- } | import("../../_utils/props").RequestParams;
494
+ } | import('../../_utils/props').RequestParams;
495
495
  };
496
496
  isShow: {
497
497
  type?: undefined;
@@ -500,7 +500,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
500
500
  type: any;
501
501
  default: string | number | boolean | Events | {
502
502
  [key: string]: any;
503
- } | import("../../_utils/props").RequestParams;
503
+ } | import('../../_utils/props').RequestParams;
504
504
  };
505
505
  isRender: {
506
506
  type?: undefined;
@@ -509,7 +509,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
509
509
  type: any;
510
510
  default: string | number | boolean | Events | {
511
511
  [key: string]: any;
512
- } | import("../../_utils/props").RequestParams;
512
+ } | import('../../_utils/props').RequestParams;
513
513
  };
514
514
  events: {
515
515
  type?: undefined;
@@ -518,7 +518,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
518
518
  type: any;
519
519
  default: string | number | boolean | Events | {
520
520
  [key: string]: any;
521
- } | import("../../_utils/props").RequestParams;
521
+ } | import('../../_utils/props').RequestParams;
522
522
  };
523
523
  requestUrl: {
524
524
  type?: undefined;
@@ -527,7 +527,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
527
527
  type: any;
528
528
  default: string | number | boolean | Events | {
529
529
  [key: string]: any;
530
- } | import("../../_utils/props").RequestParams;
530
+ } | import('../../_utils/props').RequestParams;
531
531
  };
532
532
  requestMethod: {
533
533
  type?: undefined;
@@ -536,7 +536,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
536
536
  type: any;
537
537
  default: string | number | boolean | Events | {
538
538
  [key: string]: any;
539
- } | import("../../_utils/props").RequestParams;
539
+ } | import('../../_utils/props').RequestParams;
540
540
  };
541
541
  requestHeaders: {
542
542
  type?: undefined;
@@ -545,7 +545,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
545
545
  type: any;
546
546
  default: string | number | boolean | Events | {
547
547
  [key: string]: any;
548
- } | import("../../_utils/props").RequestParams;
548
+ } | import('../../_utils/props').RequestParams;
549
549
  };
550
550
  isOpenRequestTimer: {
551
551
  type?: undefined;
@@ -554,7 +554,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
554
554
  type: any;
555
555
  default: string | number | boolean | Events | {
556
556
  [key: string]: any;
557
- } | import("../../_utils/props").RequestParams;
557
+ } | import('../../_utils/props').RequestParams;
558
558
  };
559
559
  requestInterval: {
560
560
  type?: undefined;
@@ -563,7 +563,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
563
563
  type: any;
564
564
  default: string | number | boolean | Events | {
565
565
  [key: string]: any;
566
- } | import("../../_utils/props").RequestParams;
566
+ } | import('../../_utils/props').RequestParams;
567
567
  };
568
568
  requestParams: {
569
569
  type?: undefined;
@@ -572,7 +572,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
572
572
  type: any;
573
573
  default: string | number | boolean | Events | {
574
574
  [key: string]: any;
575
- } | import("../../_utils/props").RequestParams;
575
+ } | import('../../_utils/props').RequestParams;
576
576
  };
577
577
  requestSort: {
578
578
  type?: undefined;
@@ -581,7 +581,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
581
581
  type: any;
582
582
  default: string | number | boolean | Events | {
583
583
  [key: string]: any;
584
- } | import("../../_utils/props").RequestParams;
584
+ } | import('../../_utils/props').RequestParams;
585
585
  };
586
586
  dataType: {
587
587
  type?: undefined;
@@ -590,7 +590,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
590
590
  type: any;
591
591
  default: string | number | boolean | Events | {
592
592
  [key: string]: any;
593
- } | import("../../_utils/props").RequestParams;
593
+ } | import('../../_utils/props').RequestParams;
594
594
  };
595
595
  }>>, {}>;
596
596
  export default _sfc_main;