@ecan-bi/datav 1.0.23 → 1.0.24

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 (61) hide show
  1. package/dist/_utils/constant.d.ts +3 -7
  2. package/dist/_utils/diagramParam.d.ts +145 -0
  3. package/dist/_utils/hooks/index.d.ts +2 -0
  4. package/dist/_utils/hooks/usePageUrl.d.ts +2 -0
  5. package/dist/_utils/hooks/useRequestDiagram.d.ts +5 -0
  6. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +17 -0
  7. package/dist/_utils/hooks/useVariablesInText.d.ts +4 -0
  8. package/dist/_utils/props.d.ts +1 -1
  9. package/dist/_utils/propsDiagram.d.ts +52 -0
  10. package/dist/components.d.ts +1 -0
  11. package/dist/container/border/Border.vue.d.ts +360 -0
  12. package/dist/container/border/props.d.ts +11 -10
  13. package/dist/container/card/props.d.ts +9 -9
  14. package/dist/container/modal/Modal.vue.d.ts +2 -0
  15. package/dist/control/button/Button.vue.d.ts +13 -13
  16. package/dist/control/button/props.d.ts +9 -9
  17. package/dist/control/date-picker/DatePicker.vue.d.ts +13 -13
  18. package/dist/control/date-picker/props.d.ts +9 -9
  19. package/dist/control/input/Input.vue.d.ts +13 -13
  20. package/dist/control/input/props.d.ts +9 -9
  21. package/dist/control/range-picker/RangePicker.vue.d.ts +13 -13
  22. package/dist/control/range-picker/props.d.ts +9 -9
  23. package/dist/control/select/Select.vue.d.ts +13 -13
  24. package/dist/control/select/props.d.ts +9 -9
  25. package/dist/control/tabs/Tabs.vue.d.ts +10 -10
  26. package/dist/control/tabs/props.d.ts +7 -7
  27. package/dist/graph/bar/Bar.vue.d.ts +1800 -59
  28. package/dist/graph/bar/props.d.ts +1794 -55
  29. package/dist/graph/combo-graph/ComboGraph.vue.d.ts +13 -13
  30. package/dist/graph/combo-graph/props.d.ts +9 -9
  31. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +13 -13
  32. package/dist/graph/custom-graph/props.d.ts +9 -9
  33. package/dist/graph/line/Line.vue.d.ts +13 -13
  34. package/dist/graph/line/props.d.ts +9 -9
  35. package/dist/graph/pie/Pie.vue.d.ts +14 -13
  36. package/dist/graph/pie/props.d.ts +9 -9
  37. package/dist/graph/scatter/Scatter.vue.d.ts +213 -17
  38. package/dist/graph/scatter/props.d.ts +126 -9
  39. package/dist/index.esm.js +1 -15
  40. package/dist/index.esm.js.map +1 -1
  41. package/dist/index.umd.js +1 -15
  42. package/dist/index.umd.js.map +1 -1
  43. package/dist/map/index.d.ts +1 -0
  44. package/dist/map/map/Map.vue.d.ts +710 -0
  45. package/dist/map/map/index.d.ts +3 -0
  46. package/dist/map/map/props.d.ts +514 -0
  47. package/dist/media/image/Image.vue.d.ts +53 -13
  48. package/dist/media/image/props.d.ts +39 -9
  49. package/dist/table/table/Table.vue.d.ts +1401 -51
  50. package/dist/table/table/props.d.ts +1392 -45
  51. package/dist/text/index.d.ts +1 -0
  52. package/dist/text/list/List.vue.d.ts +13 -13
  53. package/dist/text/list/props.d.ts +9 -9
  54. package/dist/text/proportion/Proportion.vue.d.ts +524 -0
  55. package/dist/text/proportion/index.d.ts +3 -0
  56. package/dist/text/proportion/props.d.ts +395 -0
  57. package/dist/text/text/Text.vue.d.ts +68 -51
  58. package/dist/text/text/props.d.ts +25 -13
  59. package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -13
  60. package/dist/text/time-display/props.d.ts +9 -9
  61. package/package.json +1 -1
@@ -351,15 +351,6 @@ declare const _default: import("vue").DefineComponent<{
351
351
  [key: string]: any;
352
352
  } | import("src/_utils/props").RequestParams;
353
353
  };
354
- isRequestData: {
355
- type?: undefined;
356
- default?: undefined;
357
- } | {
358
- type: any;
359
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
360
- [key: string]: any;
361
- } | import("src/_utils/props").RequestParams;
362
- };
363
354
  events: {
364
355
  type?: undefined;
365
356
  default?: undefined;
@@ -432,6 +423,15 @@ declare const _default: import("vue").DefineComponent<{
432
423
  [key: string]: any;
433
424
  } | import("src/_utils/props").RequestParams;
434
425
  };
426
+ dataType: {
427
+ type?: undefined;
428
+ default?: undefined;
429
+ } | {
430
+ type: any;
431
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
432
+ [key: string]: any;
433
+ } | import("src/_utils/props").RequestParams;
434
+ };
435
435
  }, {
436
436
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
437
437
  option: import("vue").ComputedRef<{
@@ -582,7 +582,6 @@ declare const _default: import("vue").DefineComponent<{
582
582
  rotate?: unknown;
583
583
  isShow?: unknown;
584
584
  isRender?: unknown;
585
- isRequestData?: unknown;
586
585
  events?: unknown;
587
586
  requestUrl?: unknown;
588
587
  requestMethod?: unknown;
@@ -591,6 +590,7 @@ declare const _default: import("vue").DefineComponent<{
591
590
  requestInterval?: unknown;
592
591
  requestParams?: unknown;
593
592
  requestSort?: unknown;
593
+ dataType?: unknown;
594
594
  } & {} & {
595
595
  type?: string | number | boolean | {
596
596
  [key: string]: any;
@@ -709,9 +709,6 @@ declare const _default: import("vue").DefineComponent<{
709
709
  isRender?: string | number | boolean | {
710
710
  [key: string]: any;
711
711
  };
712
- isRequestData?: string | number | boolean | {
713
- [key: string]: any;
714
- };
715
712
  events?: string | number | boolean | {
716
713
  [key: string]: any;
717
714
  };
@@ -736,5 +733,8 @@ declare const _default: import("vue").DefineComponent<{
736
733
  requestSort?: string | number | boolean | {
737
734
  [key: string]: any;
738
735
  };
736
+ dataType?: string | number | boolean | {
737
+ [key: string]: any;
738
+ };
739
739
  }>, {}>;
740
740
  export default _default;
@@ -380,15 +380,6 @@ export declare const comboGraphComponentProps: {
380
380
  [key: string]: any;
381
381
  } | import("../../_utils/props").RequestParams;
382
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
383
  events: {
393
384
  type?: undefined;
394
385
  default?: undefined;
@@ -461,5 +452,14 @@ export declare const comboGraphComponentProps: {
461
452
  [key: string]: any;
462
453
  } | import("../../_utils/props").RequestParams;
463
454
  };
455
+ dataType: {
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
464
  };
465
465
  export declare const comboGraphEvents: string[];
@@ -165,7 +165,7 @@ declare const _default: import("vue").DefineComponent<{
165
165
  [key: string]: any;
166
166
  } | import("../../_utils/props").RequestParams;
167
167
  };
168
- isRequestData: {
168
+ events: {
169
169
  type?: undefined;
170
170
  default?: undefined;
171
171
  } | {
@@ -176,7 +176,7 @@ declare const _default: import("vue").DefineComponent<{
176
176
  [key: string]: any;
177
177
  } | import("../../_utils/props").RequestParams;
178
178
  };
179
- events: {
179
+ requestUrl: {
180
180
  type?: undefined;
181
181
  default?: undefined;
182
182
  } | {
@@ -187,7 +187,7 @@ declare const _default: import("vue").DefineComponent<{
187
187
  [key: string]: any;
188
188
  } | import("../../_utils/props").RequestParams;
189
189
  };
190
- requestUrl: {
190
+ requestMethod: {
191
191
  type?: undefined;
192
192
  default?: undefined;
193
193
  } | {
@@ -198,7 +198,7 @@ declare const _default: import("vue").DefineComponent<{
198
198
  [key: string]: any;
199
199
  } | import("../../_utils/props").RequestParams;
200
200
  };
201
- requestMethod: {
201
+ requestHeaders: {
202
202
  type?: undefined;
203
203
  default?: undefined;
204
204
  } | {
@@ -209,7 +209,7 @@ declare const _default: import("vue").DefineComponent<{
209
209
  [key: string]: any;
210
210
  } | import("../../_utils/props").RequestParams;
211
211
  };
212
- requestHeaders: {
212
+ isOpenRequestTimer: {
213
213
  type?: undefined;
214
214
  default?: undefined;
215
215
  } | {
@@ -220,7 +220,7 @@ declare const _default: import("vue").DefineComponent<{
220
220
  [key: string]: any;
221
221
  } | import("../../_utils/props").RequestParams;
222
222
  };
223
- isOpenRequestTimer: {
223
+ requestInterval: {
224
224
  type?: undefined;
225
225
  default?: undefined;
226
226
  } | {
@@ -231,7 +231,7 @@ declare const _default: import("vue").DefineComponent<{
231
231
  [key: string]: any;
232
232
  } | import("../../_utils/props").RequestParams;
233
233
  };
234
- requestInterval: {
234
+ requestParams: {
235
235
  type?: undefined;
236
236
  default?: undefined;
237
237
  } | {
@@ -242,7 +242,7 @@ declare const _default: import("vue").DefineComponent<{
242
242
  [key: string]: any;
243
243
  } | import("../../_utils/props").RequestParams;
244
244
  };
245
- requestParams: {
245
+ requestSort: {
246
246
  type?: undefined;
247
247
  default?: undefined;
248
248
  } | {
@@ -253,7 +253,7 @@ declare const _default: import("vue").DefineComponent<{
253
253
  [key: string]: any;
254
254
  } | import("../../_utils/props").RequestParams;
255
255
  };
256
- requestSort: {
256
+ dataType: {
257
257
  type?: undefined;
258
258
  default?: undefined;
259
259
  } | {
@@ -284,7 +284,6 @@ declare const _default: import("vue").DefineComponent<{
284
284
  rotate?: unknown;
285
285
  isShow?: unknown;
286
286
  isRender?: unknown;
287
- isRequestData?: unknown;
288
287
  events?: unknown;
289
288
  requestUrl?: unknown;
290
289
  requestMethod?: unknown;
@@ -293,6 +292,7 @@ declare const _default: import("vue").DefineComponent<{
293
292
  requestInterval?: unknown;
294
293
  requestParams?: unknown;
295
294
  requestSort?: unknown;
295
+ dataType?: unknown;
296
296
  } & {} & {
297
297
  type?: string | number | boolean | {
298
298
  [key: string]: any;
@@ -339,9 +339,6 @@ declare const _default: import("vue").DefineComponent<{
339
339
  isRender?: string | number | boolean | {
340
340
  [key: string]: any;
341
341
  };
342
- isRequestData?: string | number | boolean | {
343
- [key: string]: any;
344
- };
345
342
  events?: string | number | boolean | {
346
343
  [key: string]: any;
347
344
  };
@@ -366,5 +363,8 @@ declare const _default: import("vue").DefineComponent<{
366
363
  requestSort?: string | number | boolean | {
367
364
  [key: string]: any;
368
365
  };
366
+ dataType?: string | number | boolean | {
367
+ [key: string]: any;
368
+ };
369
369
  }>, {}>;
370
370
  export default _default;
@@ -172,7 +172,7 @@ export declare const customGraphComponentProps: {
172
172
  [key: string]: any;
173
173
  } | import("../../_utils/props").RequestParams;
174
174
  };
175
- isRequestData: {
175
+ events: {
176
176
  type?: undefined;
177
177
  default?: undefined;
178
178
  } | {
@@ -183,7 +183,7 @@ export declare const customGraphComponentProps: {
183
183
  [key: string]: any;
184
184
  } | import("../../_utils/props").RequestParams;
185
185
  };
186
- events: {
186
+ requestUrl: {
187
187
  type?: undefined;
188
188
  default?: undefined;
189
189
  } | {
@@ -194,7 +194,7 @@ export declare const customGraphComponentProps: {
194
194
  [key: string]: any;
195
195
  } | import("../../_utils/props").RequestParams;
196
196
  };
197
- requestUrl: {
197
+ requestMethod: {
198
198
  type?: undefined;
199
199
  default?: undefined;
200
200
  } | {
@@ -205,7 +205,7 @@ export declare const customGraphComponentProps: {
205
205
  [key: string]: any;
206
206
  } | import("../../_utils/props").RequestParams;
207
207
  };
208
- requestMethod: {
208
+ requestHeaders: {
209
209
  type?: undefined;
210
210
  default?: undefined;
211
211
  } | {
@@ -216,7 +216,7 @@ export declare const customGraphComponentProps: {
216
216
  [key: string]: any;
217
217
  } | import("../../_utils/props").RequestParams;
218
218
  };
219
- requestHeaders: {
219
+ isOpenRequestTimer: {
220
220
  type?: undefined;
221
221
  default?: undefined;
222
222
  } | {
@@ -227,7 +227,7 @@ export declare const customGraphComponentProps: {
227
227
  [key: string]: any;
228
228
  } | import("../../_utils/props").RequestParams;
229
229
  };
230
- isOpenRequestTimer: {
230
+ requestInterval: {
231
231
  type?: undefined;
232
232
  default?: undefined;
233
233
  } | {
@@ -238,7 +238,7 @@ export declare const customGraphComponentProps: {
238
238
  [key: string]: any;
239
239
  } | import("../../_utils/props").RequestParams;
240
240
  };
241
- requestInterval: {
241
+ requestParams: {
242
242
  type?: undefined;
243
243
  default?: undefined;
244
244
  } | {
@@ -249,7 +249,7 @@ export declare const customGraphComponentProps: {
249
249
  [key: string]: any;
250
250
  } | import("../../_utils/props").RequestParams;
251
251
  };
252
- requestParams: {
252
+ requestSort: {
253
253
  type?: undefined;
254
254
  default?: undefined;
255
255
  } | {
@@ -260,7 +260,7 @@ export declare const customGraphComponentProps: {
260
260
  [key: string]: any;
261
261
  } | import("../../_utils/props").RequestParams;
262
262
  };
263
- requestSort: {
263
+ dataType: {
264
264
  type?: undefined;
265
265
  default?: undefined;
266
266
  } | {
@@ -333,15 +333,6 @@ declare const _default: import("vue").DefineComponent<{
333
333
  [key: string]: any;
334
334
  } | import("src/_utils/props").RequestParams;
335
335
  };
336
- isRequestData: {
337
- type?: undefined;
338
- default?: undefined;
339
- } | {
340
- type: any;
341
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
342
- [key: string]: any;
343
- } | import("src/_utils/props").RequestParams;
344
- };
345
336
  events: {
346
337
  type?: undefined;
347
338
  default?: undefined;
@@ -414,6 +405,15 @@ declare const _default: import("vue").DefineComponent<{
414
405
  [key: string]: any;
415
406
  } | import("src/_utils/props").RequestParams;
416
407
  };
408
+ dataType: {
409
+ type?: undefined;
410
+ default?: undefined;
411
+ } | {
412
+ type: any;
413
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
414
+ [key: string]: any;
415
+ } | import("src/_utils/props").RequestParams;
416
+ };
417
417
  }, {
418
418
  option: import("vue").ComputedRef<{
419
419
  title: {
@@ -548,7 +548,6 @@ declare const _default: import("vue").DefineComponent<{
548
548
  rotate?: unknown;
549
549
  isShow?: unknown;
550
550
  isRender?: unknown;
551
- isRequestData?: unknown;
552
551
  events?: unknown;
553
552
  requestUrl?: unknown;
554
553
  requestMethod?: unknown;
@@ -557,6 +556,7 @@ declare const _default: import("vue").DefineComponent<{
557
556
  requestInterval?: unknown;
558
557
  requestParams?: unknown;
559
558
  requestSort?: unknown;
559
+ dataType?: unknown;
560
560
  } & {} & {
561
561
  type?: string | number | boolean | {
562
562
  [key: string]: any;
@@ -669,9 +669,6 @@ declare const _default: import("vue").DefineComponent<{
669
669
  isRender?: string | number | boolean | {
670
670
  [key: string]: any;
671
671
  };
672
- isRequestData?: string | number | boolean | {
673
- [key: string]: any;
674
- };
675
672
  events?: string | number | boolean | {
676
673
  [key: string]: any;
677
674
  };
@@ -696,5 +693,8 @@ declare const _default: import("vue").DefineComponent<{
696
693
  requestSort?: string | number | boolean | {
697
694
  [key: string]: any;
698
695
  };
696
+ dataType?: string | number | boolean | {
697
+ [key: string]: any;
698
+ };
699
699
  }>, {}>;
700
700
  export default _default;
@@ -360,15 +360,6 @@ export declare const lineComponentProps: {
360
360
  [key: string]: any;
361
361
  } | import("../../_utils/props").RequestParams;
362
362
  };
363
- isRequestData: {
364
- type?: undefined;
365
- default?: undefined;
366
- } | {
367
- type: any;
368
- default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
369
- [key: string]: any;
370
- } | import("../../_utils/props").RequestParams;
371
- };
372
363
  events: {
373
364
  type?: undefined;
374
365
  default?: undefined;
@@ -441,5 +432,14 @@ export declare const lineComponentProps: {
441
432
  [key: string]: any;
442
433
  } | import("../../_utils/props").RequestParams;
443
434
  };
435
+ dataType: {
436
+ type?: undefined;
437
+ default?: undefined;
438
+ } | {
439
+ type: any;
440
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
441
+ [key: string]: any;
442
+ } | import("../../_utils/props").RequestParams;
443
+ };
444
444
  };
445
445
  export declare const lineEvents: string[];
@@ -396,15 +396,6 @@ declare const _default: import("vue").DefineComponent<{
396
396
  [key: string]: any;
397
397
  } | import("src/_utils/props").RequestParams;
398
398
  };
399
- isRequestData: {
400
- type?: undefined;
401
- default?: undefined;
402
- } | {
403
- type: any;
404
- default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
405
- [key: string]: any;
406
- } | import("src/_utils/props").RequestParams;
407
- };
408
399
  events: {
409
400
  type?: undefined;
410
401
  default?: undefined;
@@ -477,6 +468,15 @@ declare const _default: import("vue").DefineComponent<{
477
468
  [key: string]: any;
478
469
  } | import("src/_utils/props").RequestParams;
479
470
  };
471
+ dataType: {
472
+ type?: undefined;
473
+ default?: undefined;
474
+ } | {
475
+ type: any;
476
+ default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | Events | {
477
+ [key: string]: any;
478
+ } | import("src/_utils/props").RequestParams;
479
+ };
480
480
  }, {
481
481
  option: import("vue").ComputedRef<{
482
482
  title: {
@@ -525,6 +525,7 @@ declare const _default: import("vue").DefineComponent<{
525
525
  [key: string]: any;
526
526
  };
527
527
  series: {
528
+ data: any;
528
529
  type: string;
529
530
  radius: (string | number | boolean | {
530
531
  [key: string]: any;
@@ -620,7 +621,6 @@ declare const _default: import("vue").DefineComponent<{
620
621
  rotate?: unknown;
621
622
  isShow?: unknown;
622
623
  isRender?: unknown;
623
- isRequestData?: unknown;
624
624
  events?: unknown;
625
625
  requestUrl?: unknown;
626
626
  requestMethod?: unknown;
@@ -629,6 +629,7 @@ declare const _default: import("vue").DefineComponent<{
629
629
  requestInterval?: unknown;
630
630
  requestParams?: unknown;
631
631
  requestSort?: unknown;
632
+ dataType?: unknown;
632
633
  } & {} & {
633
634
  type?: string | number | boolean | {
634
635
  [key: string]: any;
@@ -762,9 +763,6 @@ declare const _default: import("vue").DefineComponent<{
762
763
  isRender?: string | number | boolean | {
763
764
  [key: string]: any;
764
765
  };
765
- isRequestData?: string | number | boolean | {
766
- [key: string]: any;
767
- };
768
766
  events?: string | number | boolean | {
769
767
  [key: string]: any;
770
768
  };
@@ -789,5 +787,8 @@ declare const _default: import("vue").DefineComponent<{
789
787
  requestSort?: string | number | boolean | {
790
788
  [key: string]: any;
791
789
  };
790
+ dataType?: string | number | boolean | {
791
+ [key: string]: any;
792
+ };
792
793
  }>, {}>;
793
794
  export default _default;
@@ -430,15 +430,6 @@ export declare const pieComponentProps: {
430
430
  [key: string]: any;
431
431
  } | import("../../_utils/props").RequestParams;
432
432
  };
433
- isRequestData: {
434
- type?: undefined;
435
- default?: undefined;
436
- } | {
437
- type: any;
438
- default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
439
- [key: string]: any;
440
- } | import("../../_utils/props").RequestParams;
441
- };
442
433
  events: {
443
434
  type?: undefined;
444
435
  default?: undefined;
@@ -511,6 +502,15 @@ export declare const pieComponentProps: {
511
502
  [key: string]: any;
512
503
  } | import("../../_utils/props").RequestParams;
513
504
  };
505
+ dataType: {
506
+ type?: undefined;
507
+ default?: undefined;
508
+ } | {
509
+ type: any;
510
+ default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | import("../../_utils/props").Events | {
511
+ [key: string]: any;
512
+ } | import("../../_utils/props").RequestParams;
513
+ };
514
514
  };
515
515
  export interface PieEvents {
516
516
  refreshData: () => void;