@ecan-bi/datav 1.0.88 → 1.0.90

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 (104) hide show
  1. package/dist/index.es.js +146 -48
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +145 -47
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +13 -17
  6. package/es/container/modal/Modal.js +1 -4
  7. package/es/container/modal/Modal.js.map +1 -1
  8. package/es/container/modal/index.js.map +1 -1
  9. package/es/container/modal/props.js +1 -1
  10. package/es/container/modal/props.js.map +1 -1
  11. package/es/graph/bar/Bar.js +33 -2
  12. package/es/graph/bar/Bar.js.map +1 -1
  13. package/es/graph/bar/index.js.map +1 -1
  14. package/es/graph/bar/props.js +1 -2
  15. package/es/graph/bar/props.js.map +1 -1
  16. package/es/graph/combo-graph/ComboGraph.js +44 -12
  17. package/es/graph/combo-graph/ComboGraph.js.map +1 -1
  18. package/es/graph/combo-graph/props.js +1 -1
  19. package/es/graph/combo-graph/props.js.map +1 -1
  20. package/es/graph/line/Line.js +37 -3
  21. package/es/graph/line/Line.js.map +1 -1
  22. package/es/graph/line/props.js +7 -6
  23. package/es/graph/line/props.js.map +1 -1
  24. package/es/graph/pie/Pie.js +22 -1
  25. package/es/graph/pie/Pie.js.map +1 -1
  26. package/es/graph/pie/props.js +1 -1
  27. package/es/graph/pie/props.js.map +1 -1
  28. package/es/graph/scatter/Scatter.js +10 -1
  29. package/es/graph/scatter/Scatter.js.map +1 -1
  30. package/es/graph/scatter/props.js +1 -1
  31. package/es/graph/scatter/props.js.map +1 -1
  32. package/es/hooks/useRequestData.js +1 -1
  33. package/es/hooks/useRequestData.js.map +1 -1
  34. package/es/hooks/useValueFormatter.js +2 -1
  35. package/es/hooks/useValueFormatter.js.map +1 -1
  36. package/es/hooks/useVariablesInText.js +32 -11
  37. package/es/hooks/useVariablesInText.js.map +1 -1
  38. package/es/setting/provider-config/ProviderConfig.js +3 -1
  39. package/es/setting/provider-config/ProviderConfig.js.map +1 -1
  40. package/es/table/table/Table.js +87 -28
  41. package/es/table/table/Table.js.map +1 -1
  42. package/es/table/table/index.js.map +1 -1
  43. package/es/table/table/props.js +1 -0
  44. package/es/table/table/props.js.map +1 -1
  45. package/es/text/text/Text.js +21 -1
  46. package/es/text/text/Text.js.map +1 -1
  47. package/es/text/text/props.js +4 -1
  48. package/es/text/text/props.js.map +1 -1
  49. package/lib/container/modal/Modal.js +1 -4
  50. package/lib/container/modal/Modal.js.map +1 -1
  51. package/lib/container/modal/index.js.map +1 -1
  52. package/lib/container/modal/props.js +1 -1
  53. package/lib/container/modal/props.js.map +1 -1
  54. package/lib/graph/bar/Bar.js +33 -2
  55. package/lib/graph/bar/Bar.js.map +1 -1
  56. package/lib/graph/bar/index.js.map +1 -1
  57. package/lib/graph/bar/props.js +1 -2
  58. package/lib/graph/bar/props.js.map +1 -1
  59. package/lib/graph/combo-graph/ComboGraph.js +44 -12
  60. package/lib/graph/combo-graph/ComboGraph.js.map +1 -1
  61. package/lib/graph/combo-graph/props.js +1 -1
  62. package/lib/graph/combo-graph/props.js.map +1 -1
  63. package/lib/graph/line/Line.js +37 -3
  64. package/lib/graph/line/Line.js.map +1 -1
  65. package/lib/graph/line/props.js +7 -6
  66. package/lib/graph/line/props.js.map +1 -1
  67. package/lib/graph/pie/Pie.js +22 -1
  68. package/lib/graph/pie/Pie.js.map +1 -1
  69. package/lib/graph/pie/props.js +1 -1
  70. package/lib/graph/pie/props.js.map +1 -1
  71. package/lib/graph/scatter/Scatter.js +10 -1
  72. package/lib/graph/scatter/Scatter.js.map +1 -1
  73. package/lib/graph/scatter/props.js +1 -1
  74. package/lib/graph/scatter/props.js.map +1 -1
  75. package/lib/hooks/useRequestData.js +1 -1
  76. package/lib/hooks/useRequestData.js.map +1 -1
  77. package/lib/hooks/useValueFormatter.js +2 -1
  78. package/lib/hooks/useValueFormatter.js.map +1 -1
  79. package/lib/hooks/useVariablesInText.js +33 -11
  80. package/lib/hooks/useVariablesInText.js.map +1 -1
  81. package/lib/setting/provider-config/ProviderConfig.js +3 -1
  82. package/lib/setting/provider-config/ProviderConfig.js.map +1 -1
  83. package/lib/style.css +6503 -6503
  84. package/lib/table/table/Table.js +87 -28
  85. package/lib/table/table/Table.js.map +1 -1
  86. package/lib/table/table/index.js.map +1 -1
  87. package/lib/table/table/props.js +1 -0
  88. package/lib/table/table/props.js.map +1 -1
  89. package/lib/text/text/Text.js +21 -1
  90. package/lib/text/text/Text.js.map +1 -1
  91. package/lib/text/text/props.js +4 -1
  92. package/lib/text/text/props.js.map +1 -1
  93. package/package.json +1 -1
  94. package/types/container/modal/index.d.ts +1 -1
  95. package/types/control/select/Select.vue.d.ts +1 -0
  96. package/types/control/select/index.d.ts +1 -0
  97. package/types/table/table/Table.vue.d.ts +124 -5
  98. package/types/table/table/index.d.ts +125 -6
  99. package/types/table/table/props.d.ts +63 -0
  100. package/types/text/text/Text.vue.d.ts +66 -0
  101. package/types/text/text/index.d.ts +66 -0
  102. package/types/text/text/props.d.ts +36 -0
  103. package/types/hooks/usePickEchartsData.d.ts +0 -2
  104. package/types/hooks/useTooltipFormatter.d.ts +0 -4
@@ -339,6 +339,46 @@ declare const _sfc_main: import("vue").DefineComponent<{
339
339
  [key: string]: any;
340
340
  }[];
341
341
  };
342
+ headerFontSize: {
343
+ type?: undefined;
344
+ default?: undefined;
345
+ } | {
346
+ type: any;
347
+ default: string | number | boolean | import("../../utils/props").Events | {
348
+ [key: string]: any;
349
+ } | import("../../utils/props").RequestParams | {
350
+ [key: string]: any;
351
+ }[] | {
352
+ [key: string]: any;
353
+ chartType: "table";
354
+ plugin: "1";
355
+ layer: "1";
356
+ } | {
357
+ [key: string]: any;
358
+ }[] | {
359
+ [key: string]: any;
360
+ }[];
361
+ };
362
+ headerFontWeight: {
363
+ type?: undefined;
364
+ default?: undefined;
365
+ } | {
366
+ type: any;
367
+ default: string | number | boolean | import("../../utils/props").Events | {
368
+ [key: string]: any;
369
+ } | import("../../utils/props").RequestParams | {
370
+ [key: string]: any;
371
+ }[] | {
372
+ [key: string]: any;
373
+ chartType: "table";
374
+ plugin: "1";
375
+ layer: "1";
376
+ } | {
377
+ [key: string]: any;
378
+ }[] | {
379
+ [key: string]: any;
380
+ }[];
381
+ };
342
382
  fontSize: {
343
383
  type?: undefined;
344
384
  default?: undefined;
@@ -379,6 +419,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
379
419
  [key: string]: any;
380
420
  }[];
381
421
  };
422
+ isReverse: {
423
+ type?: undefined;
424
+ default?: undefined;
425
+ } | {
426
+ type: any;
427
+ default: string | number | boolean | import("../../utils/props").Events | {
428
+ [key: string]: any;
429
+ } | import("../../utils/props").RequestParams | {
430
+ [key: string]: any;
431
+ }[] | {
432
+ [key: string]: any;
433
+ chartType: "table";
434
+ plugin: "1";
435
+ layer: "1";
436
+ } | {
437
+ [key: string]: any;
438
+ }[] | {
439
+ [key: string]: any;
440
+ }[];
441
+ };
382
442
  graphicConfig: {
383
443
  type?: undefined;
384
444
  default?: undefined;
@@ -844,9 +904,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
844
904
  [key: string]: any;
845
905
  }>;
846
906
  y: import("vue").ComputedRef<number>;
847
- myColumns: import("vue").ComputedRef<{
848
- [key: string]: any;
849
- }[]>;
850
907
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
851
908
  customRow: (record: any) => {
852
909
  onClick: () => void;
@@ -868,8 +925,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
868
925
  tableChange: ({ current }: {
869
926
  current: number;
870
927
  }, _filters: any, sorter: any) => void;
871
- dataColumns: import("vue").Ref<any[]>;
872
- dataSource: import("vue").Ref<{
928
+ tableDataSource: import("vue").Ref<{
929
+ [x: string]: any;
930
+ }[]>;
931
+ tableColumns: import("vue").Ref<{
873
932
  [x: string]: any;
874
933
  }[]>;
875
934
  summaryList: import("vue").ComputedRef<{
@@ -1222,6 +1281,46 @@ declare const _sfc_main: import("vue").DefineComponent<{
1222
1281
  [key: string]: any;
1223
1282
  }[];
1224
1283
  };
1284
+ headerFontSize: {
1285
+ type?: undefined;
1286
+ default?: undefined;
1287
+ } | {
1288
+ type: any;
1289
+ default: string | number | boolean | import("../../utils/props").Events | {
1290
+ [key: string]: any;
1291
+ } | import("../../utils/props").RequestParams | {
1292
+ [key: string]: any;
1293
+ }[] | {
1294
+ [key: string]: any;
1295
+ chartType: "table";
1296
+ plugin: "1";
1297
+ layer: "1";
1298
+ } | {
1299
+ [key: string]: any;
1300
+ }[] | {
1301
+ [key: string]: any;
1302
+ }[];
1303
+ };
1304
+ headerFontWeight: {
1305
+ type?: undefined;
1306
+ default?: undefined;
1307
+ } | {
1308
+ type: any;
1309
+ default: string | number | boolean | import("../../utils/props").Events | {
1310
+ [key: string]: any;
1311
+ } | import("../../utils/props").RequestParams | {
1312
+ [key: string]: any;
1313
+ }[] | {
1314
+ [key: string]: any;
1315
+ chartType: "table";
1316
+ plugin: "1";
1317
+ layer: "1";
1318
+ } | {
1319
+ [key: string]: any;
1320
+ }[] | {
1321
+ [key: string]: any;
1322
+ }[];
1323
+ };
1225
1324
  fontSize: {
1226
1325
  type?: undefined;
1227
1326
  default?: undefined;
@@ -1262,6 +1361,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
1262
1361
  [key: string]: any;
1263
1362
  }[];
1264
1363
  };
1364
+ isReverse: {
1365
+ type?: undefined;
1366
+ default?: undefined;
1367
+ } | {
1368
+ type: any;
1369
+ default: string | number | boolean | import("../../utils/props").Events | {
1370
+ [key: string]: any;
1371
+ } | import("../../utils/props").RequestParams | {
1372
+ [key: string]: any;
1373
+ }[] | {
1374
+ [key: string]: any;
1375
+ chartType: "table";
1376
+ plugin: "1";
1377
+ layer: "1";
1378
+ } | {
1379
+ [key: string]: any;
1380
+ }[] | {
1381
+ [key: string]: any;
1382
+ }[];
1383
+ };
1265
1384
  graphicConfig: {
1266
1385
  type?: undefined;
1267
1386
  default?: undefined;
@@ -1,4 +1,4 @@
1
- export declare const EcanTable: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
2
2
  columns: {
3
3
  type?: undefined;
4
4
  default?: undefined;
@@ -339,6 +339,46 @@ export declare const EcanTable: import("../../utils/withInstall").SFCWithInstall
339
339
  [key: string]: any;
340
340
  }[];
341
341
  };
342
+ headerFontSize: {
343
+ type?: undefined;
344
+ default?: undefined;
345
+ } | {
346
+ type: any;
347
+ default: string | number | boolean | import("../../utils/props").Events | {
348
+ [key: string]: any;
349
+ } | import("../../utils/props").RequestParams | {
350
+ [key: string]: any;
351
+ }[] | {
352
+ [key: string]: any;
353
+ chartType: "table";
354
+ plugin: "1";
355
+ layer: "1";
356
+ } | {
357
+ [key: string]: any;
358
+ }[] | {
359
+ [key: string]: any;
360
+ }[];
361
+ };
362
+ headerFontWeight: {
363
+ type?: undefined;
364
+ default?: undefined;
365
+ } | {
366
+ type: any;
367
+ default: string | number | boolean | import("../../utils/props").Events | {
368
+ [key: string]: any;
369
+ } | import("../../utils/props").RequestParams | {
370
+ [key: string]: any;
371
+ }[] | {
372
+ [key: string]: any;
373
+ chartType: "table";
374
+ plugin: "1";
375
+ layer: "1";
376
+ } | {
377
+ [key: string]: any;
378
+ }[] | {
379
+ [key: string]: any;
380
+ }[];
381
+ };
342
382
  fontSize: {
343
383
  type?: undefined;
344
384
  default?: undefined;
@@ -379,6 +419,26 @@ export declare const EcanTable: import("../../utils/withInstall").SFCWithInstall
379
419
  [key: string]: any;
380
420
  }[];
381
421
  };
422
+ isReverse: {
423
+ type?: undefined;
424
+ default?: undefined;
425
+ } | {
426
+ type: any;
427
+ default: string | number | boolean | import("../../utils/props").Events | {
428
+ [key: string]: any;
429
+ } | import("../../utils/props").RequestParams | {
430
+ [key: string]: any;
431
+ }[] | {
432
+ [key: string]: any;
433
+ chartType: "table";
434
+ plugin: "1";
435
+ layer: "1";
436
+ } | {
437
+ [key: string]: any;
438
+ }[] | {
439
+ [key: string]: any;
440
+ }[];
441
+ };
382
442
  graphicConfig: {
383
443
  type?: undefined;
384
444
  default?: undefined;
@@ -844,9 +904,6 @@ export declare const EcanTable: import("../../utils/withInstall").SFCWithInstall
844
904
  [key: string]: any;
845
905
  }>;
846
906
  y: import("vue").ComputedRef<number>;
847
- myColumns: import("vue").ComputedRef<{
848
- [key: string]: any;
849
- }[]>;
850
907
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
851
908
  customRow: (record: any) => {
852
909
  onClick: () => void;
@@ -868,8 +925,10 @@ export declare const EcanTable: import("../../utils/withInstall").SFCWithInstall
868
925
  tableChange: ({ current }: {
869
926
  current: number;
870
927
  }, _filters: any, sorter: any) => void;
871
- dataColumns: import("vue").Ref<any[]>;
872
- dataSource: import("vue").Ref<{
928
+ tableDataSource: import("vue").Ref<{
929
+ [x: string]: any;
930
+ }[]>;
931
+ tableColumns: import("vue").Ref<{
873
932
  [x: string]: any;
874
933
  }[]>;
875
934
  summaryList: import("vue").ComputedRef<{
@@ -1222,6 +1281,46 @@ export declare const EcanTable: import("../../utils/withInstall").SFCWithInstall
1222
1281
  [key: string]: any;
1223
1282
  }[];
1224
1283
  };
1284
+ headerFontSize: {
1285
+ type?: undefined;
1286
+ default?: undefined;
1287
+ } | {
1288
+ type: any;
1289
+ default: string | number | boolean | import("../../utils/props").Events | {
1290
+ [key: string]: any;
1291
+ } | import("../../utils/props").RequestParams | {
1292
+ [key: string]: any;
1293
+ }[] | {
1294
+ [key: string]: any;
1295
+ chartType: "table";
1296
+ plugin: "1";
1297
+ layer: "1";
1298
+ } | {
1299
+ [key: string]: any;
1300
+ }[] | {
1301
+ [key: string]: any;
1302
+ }[];
1303
+ };
1304
+ headerFontWeight: {
1305
+ type?: undefined;
1306
+ default?: undefined;
1307
+ } | {
1308
+ type: any;
1309
+ default: string | number | boolean | import("../../utils/props").Events | {
1310
+ [key: string]: any;
1311
+ } | import("../../utils/props").RequestParams | {
1312
+ [key: string]: any;
1313
+ }[] | {
1314
+ [key: string]: any;
1315
+ chartType: "table";
1316
+ plugin: "1";
1317
+ layer: "1";
1318
+ } | {
1319
+ [key: string]: any;
1320
+ }[] | {
1321
+ [key: string]: any;
1322
+ }[];
1323
+ };
1225
1324
  fontSize: {
1226
1325
  type?: undefined;
1227
1326
  default?: undefined;
@@ -1262,6 +1361,26 @@ export declare const EcanTable: import("../../utils/withInstall").SFCWithInstall
1262
1361
  [key: string]: any;
1263
1362
  }[];
1264
1363
  };
1364
+ isReverse: {
1365
+ type?: undefined;
1366
+ default?: undefined;
1367
+ } | {
1368
+ type: any;
1369
+ default: string | number | boolean | import("../../utils/props").Events | {
1370
+ [key: string]: any;
1371
+ } | import("../../utils/props").RequestParams | {
1372
+ [key: string]: any;
1373
+ }[] | {
1374
+ [key: string]: any;
1375
+ chartType: "table";
1376
+ plugin: "1";
1377
+ layer: "1";
1378
+ } | {
1379
+ [key: string]: any;
1380
+ }[] | {
1381
+ [key: string]: any;
1382
+ }[];
1383
+ };
1265
1384
  graphicConfig: {
1266
1385
  type?: undefined;
1267
1386
  default?: undefined;
@@ -23,8 +23,11 @@ export interface TableProps extends Props {
23
23
  actionList: {
24
24
  [key: string]: any;
25
25
  }[];
26
+ headerFontSize: string;
27
+ headerFontWeight: number;
26
28
  fontSize: string;
27
29
  fontWeight: number;
30
+ isReverse: boolean;
28
31
  graphicConfig: {
29
32
  [key: string]: any;
30
33
  chartType: 'table';
@@ -374,6 +377,46 @@ export declare const tableComponentProps: {
374
377
  [key: string]: any;
375
378
  }[];
376
379
  };
380
+ headerFontSize: {
381
+ type?: undefined;
382
+ default?: undefined;
383
+ } | {
384
+ type: any;
385
+ default: string | number | boolean | import('../../utils/props').Events | {
386
+ [key: string]: any;
387
+ } | import('../../utils/props').RequestParams | {
388
+ [key: string]: any;
389
+ }[] | {
390
+ [key: string]: any;
391
+ chartType: 'table';
392
+ plugin: '1';
393
+ layer: '1';
394
+ } | {
395
+ [key: string]: any;
396
+ }[] | {
397
+ [key: string]: any;
398
+ }[];
399
+ };
400
+ headerFontWeight: {
401
+ type?: undefined;
402
+ default?: undefined;
403
+ } | {
404
+ type: any;
405
+ default: string | number | boolean | import('../../utils/props').Events | {
406
+ [key: string]: any;
407
+ } | import('../../utils/props').RequestParams | {
408
+ [key: string]: any;
409
+ }[] | {
410
+ [key: string]: any;
411
+ chartType: 'table';
412
+ plugin: '1';
413
+ layer: '1';
414
+ } | {
415
+ [key: string]: any;
416
+ }[] | {
417
+ [key: string]: any;
418
+ }[];
419
+ };
377
420
  fontSize: {
378
421
  type?: undefined;
379
422
  default?: undefined;
@@ -414,6 +457,26 @@ export declare const tableComponentProps: {
414
457
  [key: string]: any;
415
458
  }[];
416
459
  };
460
+ isReverse: {
461
+ type?: undefined;
462
+ default?: undefined;
463
+ } | {
464
+ type: any;
465
+ default: string | number | boolean | import('../../utils/props').Events | {
466
+ [key: string]: any;
467
+ } | import('../../utils/props').RequestParams | {
468
+ [key: string]: any;
469
+ }[] | {
470
+ [key: string]: any;
471
+ chartType: 'table';
472
+ plugin: '1';
473
+ layer: '1';
474
+ } | {
475
+ [key: string]: any;
476
+ }[] | {
477
+ [key: string]: any;
478
+ }[];
479
+ };
417
480
  graphicConfig: {
418
481
  type?: undefined;
419
482
  default?: undefined;
@@ -142,6 +142,39 @@ declare const _sfc_main: import("vue").DefineComponent<{
142
142
  [key: string]: any;
143
143
  };
144
144
  };
145
+ href: {
146
+ type?: undefined;
147
+ default?: undefined;
148
+ } | {
149
+ type: any;
150
+ default: string | number | boolean | import("../../utils/props").Events | {
151
+ [key: string]: any;
152
+ } | import("../../utils/props").RequestParams | {
153
+ [key: string]: any;
154
+ };
155
+ };
156
+ target: {
157
+ type?: undefined;
158
+ default?: undefined;
159
+ } | {
160
+ type: any;
161
+ default: string | number | boolean | import("../../utils/props").Events | {
162
+ [key: string]: any;
163
+ } | import("../../utils/props").RequestParams | {
164
+ [key: string]: any;
165
+ };
166
+ };
167
+ linkPage: {
168
+ type?: undefined;
169
+ default?: undefined;
170
+ } | {
171
+ type: any;
172
+ default: string | number | boolean | import("../../utils/props").Events | {
173
+ [key: string]: any;
174
+ } | import("../../utils/props").RequestParams | {
175
+ [key: string]: any;
176
+ };
177
+ };
145
178
  id: {
146
179
  type?: undefined;
147
180
  default?: undefined;
@@ -533,6 +566,39 @@ declare const _sfc_main: import("vue").DefineComponent<{
533
566
  [key: string]: any;
534
567
  };
535
568
  };
569
+ href: {
570
+ type?: undefined;
571
+ default?: undefined;
572
+ } | {
573
+ type: any;
574
+ default: string | number | boolean | import("../../utils/props").Events | {
575
+ [key: string]: any;
576
+ } | import("../../utils/props").RequestParams | {
577
+ [key: string]: any;
578
+ };
579
+ };
580
+ target: {
581
+ type?: undefined;
582
+ default?: undefined;
583
+ } | {
584
+ type: any;
585
+ default: string | number | boolean | import("../../utils/props").Events | {
586
+ [key: string]: any;
587
+ } | import("../../utils/props").RequestParams | {
588
+ [key: string]: any;
589
+ };
590
+ };
591
+ linkPage: {
592
+ type?: undefined;
593
+ default?: undefined;
594
+ } | {
595
+ type: any;
596
+ default: string | number | boolean | import("../../utils/props").Events | {
597
+ [key: string]: any;
598
+ } | import("../../utils/props").RequestParams | {
599
+ [key: string]: any;
600
+ };
601
+ };
536
602
  id: {
537
603
  type?: undefined;
538
604
  default?: undefined;
@@ -142,6 +142,39 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
142
142
  [key: string]: any;
143
143
  };
144
144
  };
145
+ href: {
146
+ type?: undefined;
147
+ default?: undefined;
148
+ } | {
149
+ type: any;
150
+ default: string | number | boolean | import("../../utils/props").Events | {
151
+ [key: string]: any;
152
+ } | import("../../utils/props").RequestParams | {
153
+ [key: string]: any;
154
+ };
155
+ };
156
+ target: {
157
+ type?: undefined;
158
+ default?: undefined;
159
+ } | {
160
+ type: any;
161
+ default: string | number | boolean | import("../../utils/props").Events | {
162
+ [key: string]: any;
163
+ } | import("../../utils/props").RequestParams | {
164
+ [key: string]: any;
165
+ };
166
+ };
167
+ linkPage: {
168
+ type?: undefined;
169
+ default?: undefined;
170
+ } | {
171
+ type: any;
172
+ default: string | number | boolean | import("../../utils/props").Events | {
173
+ [key: string]: any;
174
+ } | import("../../utils/props").RequestParams | {
175
+ [key: string]: any;
176
+ };
177
+ };
145
178
  id: {
146
179
  type?: undefined;
147
180
  default?: undefined;
@@ -533,6 +566,39 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
533
566
  [key: string]: any;
534
567
  };
535
568
  };
569
+ href: {
570
+ type?: undefined;
571
+ default?: undefined;
572
+ } | {
573
+ type: any;
574
+ default: string | number | boolean | import("../../utils/props").Events | {
575
+ [key: string]: any;
576
+ } | import("../../utils/props").RequestParams | {
577
+ [key: string]: any;
578
+ };
579
+ };
580
+ target: {
581
+ type?: undefined;
582
+ default?: undefined;
583
+ } | {
584
+ type: any;
585
+ default: string | number | boolean | import("../../utils/props").Events | {
586
+ [key: string]: any;
587
+ } | import("../../utils/props").RequestParams | {
588
+ [key: string]: any;
589
+ };
590
+ };
591
+ linkPage: {
592
+ type?: undefined;
593
+ default?: undefined;
594
+ } | {
595
+ type: any;
596
+ default: string | number | boolean | import("../../utils/props").Events | {
597
+ [key: string]: any;
598
+ } | import("../../utils/props").RequestParams | {
599
+ [key: string]: any;
600
+ };
601
+ };
536
602
  id: {
537
603
  type?: undefined;
538
604
  default?: undefined;
@@ -15,6 +15,9 @@ export interface TextProps extends Props {
15
15
  variableFontSize: string;
16
16
  variableDefaultValue: string;
17
17
  format: '' | 'percentage';
18
+ href: string;
19
+ target: 'self' | 'blank' | 'event';
20
+ linkPage: string;
18
21
  }
19
22
  export declare const textProps: TextProps;
20
23
  export declare const textComponentProps: {
@@ -161,6 +164,39 @@ export declare const textComponentProps: {
161
164
  [key: string]: any;
162
165
  };
163
166
  };
167
+ href: {
168
+ type?: undefined;
169
+ default?: undefined;
170
+ } | {
171
+ type: any;
172
+ default: string | number | boolean | import('../../utils/props').Events | {
173
+ [key: string]: any;
174
+ } | import('../../utils/props').RequestParams | {
175
+ [key: string]: any;
176
+ };
177
+ };
178
+ target: {
179
+ type?: undefined;
180
+ default?: undefined;
181
+ } | {
182
+ type: any;
183
+ default: string | number | boolean | import('../../utils/props').Events | {
184
+ [key: string]: any;
185
+ } | import('../../utils/props').RequestParams | {
186
+ [key: string]: any;
187
+ };
188
+ };
189
+ linkPage: {
190
+ type?: undefined;
191
+ default?: undefined;
192
+ } | {
193
+ type: any;
194
+ default: string | number | boolean | import('../../utils/props').Events | {
195
+ [key: string]: any;
196
+ } | import('../../utils/props').RequestParams | {
197
+ [key: string]: any;
198
+ };
199
+ };
164
200
  id: {
165
201
  type?: undefined;
166
202
  default?: undefined;
@@ -1,2 +0,0 @@
1
- export declare const usePickEchartsData: (data?: any) => any;
2
- export default usePickEchartsData;
@@ -1,4 +0,0 @@
1
- export declare const useTooltipFormatter: (formatter: string, data?: {
2
- [key: string]: any;
3
- }) => (param: any) => string;
4
- export default useTooltipFormatter;