@ecan-bi/datav 1.6.8 → 1.6.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.
- package/dist/index.es.js +7167 -7073
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +41 -41
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/bar/Bar.vue.d.ts +14 -0
- package/types/graph/bar/index.d.ts +14 -0
- package/types/graph/bar/props.d.ts +5 -0
- package/types/graph/boxplot/Boxplot.vue.d.ts +14 -0
- package/types/graph/boxplot/index.d.ts +14 -0
- package/types/graph/boxplot/props.d.ts +6 -0
- package/types/graph/budget/Budget.vue.d.ts +14 -0
- package/types/graph/budget/index.d.ts +14 -0
- package/types/graph/budget/props.d.ts +5 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +14 -0
- package/types/graph/combo-graph/index.d.ts +14 -0
- package/types/graph/combo-graph/props.d.ts +5 -0
- package/types/graph/gauge/Gauge.vue.d.ts +14 -0
- package/types/graph/gauge/index.d.ts +14 -0
- package/types/graph/gauge/props.d.ts +5 -0
- package/types/graph/line/Line.vue.d.ts +14 -0
- package/types/graph/line/index.d.ts +14 -0
- package/types/graph/line/props.d.ts +6 -0
- package/types/graph/pie/Pie.vue.d.ts +14 -0
- package/types/graph/pie/index.d.ts +14 -0
- package/types/graph/pie/props.d.ts +5 -0
- package/types/graph/radar/Radar.vue.d.ts +14 -0
- package/types/graph/radar/index.d.ts +14 -0
- package/types/graph/radar/props.d.ts +6 -0
- package/types/graph/scatter/Scatter.vue.d.ts +14 -0
- package/types/graph/scatter/index.d.ts +14 -0
- package/types/graph/scatter/props.d.ts +5 -0
- package/types/setting/provider-config/source-modal/SourceModal.vue.d.ts +7 -2
- package/types/table/table/Table.vue.d.ts +1 -0
- package/types/table/table/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -244,6 +244,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
244
244
|
type?: import("vue").PropType<boolean>;
|
|
245
245
|
default?: boolean;
|
|
246
246
|
};
|
|
247
|
+
toolboxInfoSource: {
|
|
248
|
+
type?: import("vue").PropType<boolean>;
|
|
249
|
+
default?: boolean;
|
|
250
|
+
};
|
|
247
251
|
toolboxOrient: {
|
|
248
252
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
249
253
|
default?: "vertical" | "horizontal";
|
|
@@ -636,6 +640,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
636
640
|
icon: string;
|
|
637
641
|
onclick(): void;
|
|
638
642
|
};
|
|
643
|
+
mySource: {
|
|
644
|
+
show: any;
|
|
645
|
+
title: string;
|
|
646
|
+
icon: string;
|
|
647
|
+
onclick(): void;
|
|
648
|
+
};
|
|
639
649
|
};
|
|
640
650
|
};
|
|
641
651
|
title: {
|
|
@@ -1045,6 +1055,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1045
1055
|
type?: import("vue").PropType<boolean>;
|
|
1046
1056
|
default?: boolean;
|
|
1047
1057
|
};
|
|
1058
|
+
toolboxInfoSource: {
|
|
1059
|
+
type?: import("vue").PropType<boolean>;
|
|
1060
|
+
default?: boolean;
|
|
1061
|
+
};
|
|
1048
1062
|
toolboxOrient: {
|
|
1049
1063
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
1050
1064
|
default?: "vertical" | "horizontal";
|
|
@@ -243,6 +243,10 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
243
243
|
type?: import("vue").PropType<boolean>;
|
|
244
244
|
default?: boolean;
|
|
245
245
|
};
|
|
246
|
+
toolboxInfoSource: {
|
|
247
|
+
type?: import("vue").PropType<boolean>;
|
|
248
|
+
default?: boolean;
|
|
249
|
+
};
|
|
246
250
|
toolboxOrient: {
|
|
247
251
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
248
252
|
default?: "vertical" | "horizontal";
|
|
@@ -635,6 +639,12 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
635
639
|
icon: string;
|
|
636
640
|
onclick(): void;
|
|
637
641
|
};
|
|
642
|
+
mySource: {
|
|
643
|
+
show: any;
|
|
644
|
+
title: string;
|
|
645
|
+
icon: string;
|
|
646
|
+
onclick(): void;
|
|
647
|
+
};
|
|
638
648
|
};
|
|
639
649
|
};
|
|
640
650
|
title: {
|
|
@@ -1044,6 +1054,10 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
1044
1054
|
type?: import("vue").PropType<boolean>;
|
|
1045
1055
|
default?: boolean;
|
|
1046
1056
|
};
|
|
1057
|
+
toolboxInfoSource: {
|
|
1058
|
+
type?: import("vue").PropType<boolean>;
|
|
1059
|
+
default?: boolean;
|
|
1060
|
+
};
|
|
1047
1061
|
toolboxOrient: {
|
|
1048
1062
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
1049
1063
|
default?: "vertical" | "horizontal";
|
|
@@ -62,6 +62,7 @@ export interface BarProps extends Props {
|
|
|
62
62
|
toolboxDownloadShow: boolean;
|
|
63
63
|
toolboxDataZoomShow: boolean;
|
|
64
64
|
toolboxInfoShow: boolean;
|
|
65
|
+
toolboxInfoSource: boolean;
|
|
65
66
|
toolboxOrient: 'horizontal' | 'vertical';
|
|
66
67
|
toolboxItemSize: number;
|
|
67
68
|
toolboxItemGap: number;
|
|
@@ -362,6 +363,10 @@ export declare const barComponentProps: {
|
|
|
362
363
|
type?: import("vue").PropType<boolean>;
|
|
363
364
|
default?: boolean;
|
|
364
365
|
};
|
|
366
|
+
toolboxInfoSource: {
|
|
367
|
+
type?: import("vue").PropType<boolean>;
|
|
368
|
+
default?: boolean;
|
|
369
|
+
};
|
|
365
370
|
toolboxOrient: {
|
|
366
371
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
367
372
|
default?: "vertical" | "horizontal";
|
|
@@ -263,6 +263,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
263
263
|
type?: import("vue").PropType<boolean>;
|
|
264
264
|
default?: boolean;
|
|
265
265
|
};
|
|
266
|
+
toolboxInfoSource: {
|
|
267
|
+
type?: import("vue").PropType<boolean>;
|
|
268
|
+
default?: boolean;
|
|
269
|
+
};
|
|
266
270
|
toolboxOrient: {
|
|
267
271
|
type?: import("vue").PropType<string>;
|
|
268
272
|
default?: string;
|
|
@@ -554,6 +558,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
554
558
|
icon: string;
|
|
555
559
|
onclick(): void;
|
|
556
560
|
};
|
|
561
|
+
mySource: {
|
|
562
|
+
show: boolean;
|
|
563
|
+
title: string;
|
|
564
|
+
icon: string;
|
|
565
|
+
onclick(): void;
|
|
566
|
+
};
|
|
557
567
|
};
|
|
558
568
|
};
|
|
559
569
|
title: {
|
|
@@ -969,6 +979,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
969
979
|
type?: import("vue").PropType<boolean>;
|
|
970
980
|
default?: boolean;
|
|
971
981
|
};
|
|
982
|
+
toolboxInfoSource: {
|
|
983
|
+
type?: import("vue").PropType<boolean>;
|
|
984
|
+
default?: boolean;
|
|
985
|
+
};
|
|
972
986
|
toolboxOrient: {
|
|
973
987
|
type?: import("vue").PropType<string>;
|
|
974
988
|
default?: string;
|
|
@@ -263,6 +263,10 @@ export declare const EcanBoxplot: import("../../utils/withInstall").SFCWithInsta
|
|
|
263
263
|
type?: import("vue").PropType<boolean>;
|
|
264
264
|
default?: boolean;
|
|
265
265
|
};
|
|
266
|
+
toolboxInfoSource: {
|
|
267
|
+
type?: import("vue").PropType<boolean>;
|
|
268
|
+
default?: boolean;
|
|
269
|
+
};
|
|
266
270
|
toolboxOrient: {
|
|
267
271
|
type?: import("vue").PropType<string>;
|
|
268
272
|
default?: string;
|
|
@@ -554,6 +558,12 @@ export declare const EcanBoxplot: import("../../utils/withInstall").SFCWithInsta
|
|
|
554
558
|
icon: string;
|
|
555
559
|
onclick(): void;
|
|
556
560
|
};
|
|
561
|
+
mySource: {
|
|
562
|
+
show: boolean;
|
|
563
|
+
title: string;
|
|
564
|
+
icon: string;
|
|
565
|
+
onclick(): void;
|
|
566
|
+
};
|
|
557
567
|
};
|
|
558
568
|
};
|
|
559
569
|
title: {
|
|
@@ -969,6 +979,10 @@ export declare const EcanBoxplot: import("../../utils/withInstall").SFCWithInsta
|
|
|
969
979
|
type?: import("vue").PropType<boolean>;
|
|
970
980
|
default?: boolean;
|
|
971
981
|
};
|
|
982
|
+
toolboxInfoSource: {
|
|
983
|
+
type?: import("vue").PropType<boolean>;
|
|
984
|
+
default?: boolean;
|
|
985
|
+
};
|
|
972
986
|
toolboxOrient: {
|
|
973
987
|
type?: import("vue").PropType<string>;
|
|
974
988
|
default?: string;
|
|
@@ -55,6 +55,7 @@ export interface BoxplotProps extends Props {
|
|
|
55
55
|
toolboxDownloadShow: boolean;
|
|
56
56
|
toolboxDataZoomShow: boolean;
|
|
57
57
|
toolboxInfoShow: boolean;
|
|
58
|
+
toolboxInfoSource: boolean;
|
|
58
59
|
toolboxOrient: 'horizontal' | 'vertical';
|
|
59
60
|
toolboxItemSize: number;
|
|
60
61
|
toolboxItemGap: number;
|
|
@@ -168,6 +169,7 @@ export declare const boxplotProps: {
|
|
|
168
169
|
toolboxDownloadShow: boolean;
|
|
169
170
|
toolboxDataZoomShow: boolean;
|
|
170
171
|
toolboxInfoShow: boolean;
|
|
172
|
+
toolboxInfoSource: boolean;
|
|
171
173
|
toolboxOrient: string;
|
|
172
174
|
toolboxItemSize: number;
|
|
173
175
|
toolboxItemGap: number;
|
|
@@ -500,6 +502,10 @@ export declare const boxplotComponentProps: {
|
|
|
500
502
|
type?: import("vue").PropType<boolean>;
|
|
501
503
|
default?: boolean;
|
|
502
504
|
};
|
|
505
|
+
toolboxInfoSource: {
|
|
506
|
+
type?: import("vue").PropType<boolean>;
|
|
507
|
+
default?: boolean;
|
|
508
|
+
};
|
|
503
509
|
toolboxOrient: {
|
|
504
510
|
type?: import("vue").PropType<string>;
|
|
505
511
|
default?: string;
|
|
@@ -220,6 +220,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
220
220
|
type?: import("vue").PropType<boolean>;
|
|
221
221
|
default?: boolean;
|
|
222
222
|
};
|
|
223
|
+
toolboxInfoSource: {
|
|
224
|
+
type?: import("vue").PropType<boolean>;
|
|
225
|
+
default?: boolean;
|
|
226
|
+
};
|
|
223
227
|
toolboxOrient: {
|
|
224
228
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
225
229
|
default?: "vertical" | "horizontal";
|
|
@@ -659,6 +663,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
659
663
|
icon: string;
|
|
660
664
|
onclick(): void;
|
|
661
665
|
};
|
|
666
|
+
mySource: {
|
|
667
|
+
show: any;
|
|
668
|
+
title: string;
|
|
669
|
+
icon: string;
|
|
670
|
+
onclick(): void;
|
|
671
|
+
};
|
|
662
672
|
};
|
|
663
673
|
};
|
|
664
674
|
grid: {
|
|
@@ -989,6 +999,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
989
999
|
type?: import("vue").PropType<boolean>;
|
|
990
1000
|
default?: boolean;
|
|
991
1001
|
};
|
|
1002
|
+
toolboxInfoSource: {
|
|
1003
|
+
type?: import("vue").PropType<boolean>;
|
|
1004
|
+
default?: boolean;
|
|
1005
|
+
};
|
|
992
1006
|
toolboxOrient: {
|
|
993
1007
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
994
1008
|
default?: "vertical" | "horizontal";
|
|
@@ -219,6 +219,10 @@ export declare const EcanBudget: import("../../utils/withInstall").SFCWithInstal
|
|
|
219
219
|
type?: import("vue").PropType<boolean>;
|
|
220
220
|
default?: boolean;
|
|
221
221
|
};
|
|
222
|
+
toolboxInfoSource: {
|
|
223
|
+
type?: import("vue").PropType<boolean>;
|
|
224
|
+
default?: boolean;
|
|
225
|
+
};
|
|
222
226
|
toolboxOrient: {
|
|
223
227
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
224
228
|
default?: "vertical" | "horizontal";
|
|
@@ -658,6 +662,12 @@ export declare const EcanBudget: import("../../utils/withInstall").SFCWithInstal
|
|
|
658
662
|
icon: string;
|
|
659
663
|
onclick(): void;
|
|
660
664
|
};
|
|
665
|
+
mySource: {
|
|
666
|
+
show: any;
|
|
667
|
+
title: string;
|
|
668
|
+
icon: string;
|
|
669
|
+
onclick(): void;
|
|
670
|
+
};
|
|
661
671
|
};
|
|
662
672
|
};
|
|
663
673
|
grid: {
|
|
@@ -988,6 +998,10 @@ export declare const EcanBudget: import("../../utils/withInstall").SFCWithInstal
|
|
|
988
998
|
type?: import("vue").PropType<boolean>;
|
|
989
999
|
default?: boolean;
|
|
990
1000
|
};
|
|
1001
|
+
toolboxInfoSource: {
|
|
1002
|
+
type?: import("vue").PropType<boolean>;
|
|
1003
|
+
default?: boolean;
|
|
1004
|
+
};
|
|
991
1005
|
toolboxOrient: {
|
|
992
1006
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
993
1007
|
default?: "vertical" | "horizontal";
|
|
@@ -57,6 +57,7 @@ export interface BudgetProps extends Props {
|
|
|
57
57
|
toolboxDownloadShow: boolean;
|
|
58
58
|
toolboxDataZoomShow: boolean;
|
|
59
59
|
toolboxInfoShow: boolean;
|
|
60
|
+
toolboxInfoSource: boolean;
|
|
60
61
|
toolboxOrient: 'horizontal' | 'vertical';
|
|
61
62
|
toolboxItemSize: number;
|
|
62
63
|
toolboxItemGap: number;
|
|
@@ -342,6 +343,10 @@ export declare const budgetComponentProps: {
|
|
|
342
343
|
type?: import("vue").PropType<boolean>;
|
|
343
344
|
default?: boolean;
|
|
344
345
|
};
|
|
346
|
+
toolboxInfoSource: {
|
|
347
|
+
type?: import("vue").PropType<boolean>;
|
|
348
|
+
default?: boolean;
|
|
349
|
+
};
|
|
345
350
|
toolboxOrient: {
|
|
346
351
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
347
352
|
default?: "vertical" | "horizontal";
|
|
@@ -228,6 +228,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
228
228
|
type?: import("vue").PropType<boolean>;
|
|
229
229
|
default?: boolean;
|
|
230
230
|
};
|
|
231
|
+
toolboxInfoSource: {
|
|
232
|
+
type?: import("vue").PropType<boolean>;
|
|
233
|
+
default?: boolean;
|
|
234
|
+
};
|
|
231
235
|
toolboxOrient: {
|
|
232
236
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
233
237
|
default?: "vertical" | "horizontal";
|
|
@@ -683,6 +687,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
683
687
|
icon: string;
|
|
684
688
|
onclick(): void;
|
|
685
689
|
};
|
|
690
|
+
mySource: {
|
|
691
|
+
show: any;
|
|
692
|
+
title: string;
|
|
693
|
+
icon: string;
|
|
694
|
+
onclick(): void;
|
|
695
|
+
};
|
|
686
696
|
};
|
|
687
697
|
};
|
|
688
698
|
grid: {
|
|
@@ -1022,6 +1032,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1022
1032
|
type?: import("vue").PropType<boolean>;
|
|
1023
1033
|
default?: boolean;
|
|
1024
1034
|
};
|
|
1035
|
+
toolboxInfoSource: {
|
|
1036
|
+
type?: import("vue").PropType<boolean>;
|
|
1037
|
+
default?: boolean;
|
|
1038
|
+
};
|
|
1025
1039
|
toolboxOrient: {
|
|
1026
1040
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
1027
1041
|
default?: "vertical" | "horizontal";
|
|
@@ -227,6 +227,10 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
227
227
|
type?: import("vue").PropType<boolean>;
|
|
228
228
|
default?: boolean;
|
|
229
229
|
};
|
|
230
|
+
toolboxInfoSource: {
|
|
231
|
+
type?: import("vue").PropType<boolean>;
|
|
232
|
+
default?: boolean;
|
|
233
|
+
};
|
|
230
234
|
toolboxOrient: {
|
|
231
235
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
232
236
|
default?: "vertical" | "horizontal";
|
|
@@ -682,6 +686,12 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
682
686
|
icon: string;
|
|
683
687
|
onclick(): void;
|
|
684
688
|
};
|
|
689
|
+
mySource: {
|
|
690
|
+
show: any;
|
|
691
|
+
title: string;
|
|
692
|
+
icon: string;
|
|
693
|
+
onclick(): void;
|
|
694
|
+
};
|
|
685
695
|
};
|
|
686
696
|
};
|
|
687
697
|
grid: {
|
|
@@ -1021,6 +1031,10 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
1021
1031
|
type?: import("vue").PropType<boolean>;
|
|
1022
1032
|
default?: boolean;
|
|
1023
1033
|
};
|
|
1034
|
+
toolboxInfoSource: {
|
|
1035
|
+
type?: import("vue").PropType<boolean>;
|
|
1036
|
+
default?: boolean;
|
|
1037
|
+
};
|
|
1024
1038
|
toolboxOrient: {
|
|
1025
1039
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
1026
1040
|
default?: "vertical" | "horizontal";
|
|
@@ -60,6 +60,7 @@ export interface ComboGraphProps extends Props {
|
|
|
60
60
|
toolboxDownloadShow: boolean;
|
|
61
61
|
toolboxDataZoomShow: boolean;
|
|
62
62
|
toolboxInfoShow: boolean;
|
|
63
|
+
toolboxInfoSource: boolean;
|
|
63
64
|
toolboxOrient: 'horizontal' | 'vertical';
|
|
64
65
|
toolboxItemSize: number;
|
|
65
66
|
toolboxItemGap: number;
|
|
@@ -357,6 +358,10 @@ export declare const comboGraphComponentProps: {
|
|
|
357
358
|
type?: import("vue").PropType<boolean>;
|
|
358
359
|
default?: boolean;
|
|
359
360
|
};
|
|
361
|
+
toolboxInfoSource: {
|
|
362
|
+
type?: import("vue").PropType<boolean>;
|
|
363
|
+
default?: boolean;
|
|
364
|
+
};
|
|
360
365
|
toolboxOrient: {
|
|
361
366
|
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
362
367
|
default?: "vertical" | "horizontal";
|
|
@@ -87,6 +87,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
87
87
|
type?: import("vue").PropType<boolean>;
|
|
88
88
|
default?: boolean;
|
|
89
89
|
};
|
|
90
|
+
toolboxInfoSource: {
|
|
91
|
+
type?: import("vue").PropType<boolean>;
|
|
92
|
+
default?: boolean;
|
|
93
|
+
};
|
|
90
94
|
toolboxShow: {
|
|
91
95
|
type?: import("vue").PropType<boolean>;
|
|
92
96
|
default?: boolean;
|
|
@@ -322,6 +326,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
322
326
|
icon: string;
|
|
323
327
|
onclick(): void;
|
|
324
328
|
};
|
|
329
|
+
mySource: {
|
|
330
|
+
show: boolean;
|
|
331
|
+
title: string;
|
|
332
|
+
icon: string;
|
|
333
|
+
onclick(): void;
|
|
334
|
+
};
|
|
325
335
|
};
|
|
326
336
|
};
|
|
327
337
|
title: {
|
|
@@ -491,6 +501,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
491
501
|
type?: import("vue").PropType<boolean>;
|
|
492
502
|
default?: boolean;
|
|
493
503
|
};
|
|
504
|
+
toolboxInfoSource: {
|
|
505
|
+
type?: import("vue").PropType<boolean>;
|
|
506
|
+
default?: boolean;
|
|
507
|
+
};
|
|
494
508
|
toolboxShow: {
|
|
495
509
|
type?: import("vue").PropType<boolean>;
|
|
496
510
|
default?: boolean;
|
|
@@ -87,6 +87,10 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
87
87
|
type?: import("vue").PropType<boolean>;
|
|
88
88
|
default?: boolean;
|
|
89
89
|
};
|
|
90
|
+
toolboxInfoSource: {
|
|
91
|
+
type?: import("vue").PropType<boolean>;
|
|
92
|
+
default?: boolean;
|
|
93
|
+
};
|
|
90
94
|
toolboxShow: {
|
|
91
95
|
type?: import("vue").PropType<boolean>;
|
|
92
96
|
default?: boolean;
|
|
@@ -322,6 +326,12 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
322
326
|
icon: string;
|
|
323
327
|
onclick(): void;
|
|
324
328
|
};
|
|
329
|
+
mySource: {
|
|
330
|
+
show: boolean;
|
|
331
|
+
title: string;
|
|
332
|
+
icon: string;
|
|
333
|
+
onclick(): void;
|
|
334
|
+
};
|
|
325
335
|
};
|
|
326
336
|
};
|
|
327
337
|
title: {
|
|
@@ -491,6 +501,10 @@ export declare const EcanGauge: import("../../utils/withInstall").SFCWithInstall
|
|
|
491
501
|
type?: import("vue").PropType<boolean>;
|
|
492
502
|
default?: boolean;
|
|
493
503
|
};
|
|
504
|
+
toolboxInfoSource: {
|
|
505
|
+
type?: import("vue").PropType<boolean>;
|
|
506
|
+
default?: boolean;
|
|
507
|
+
};
|
|
494
508
|
toolboxShow: {
|
|
495
509
|
type?: import("vue").PropType<boolean>;
|
|
496
510
|
default?: boolean;
|
|
@@ -23,6 +23,7 @@ export interface GaugeProps extends Props {
|
|
|
23
23
|
toolboxDownloadShow: boolean;
|
|
24
24
|
toolboxDataZoomShow: boolean;
|
|
25
25
|
toolboxInfoShow: boolean;
|
|
26
|
+
toolboxInfoSource: boolean;
|
|
26
27
|
toolboxShow: boolean;
|
|
27
28
|
toolboxOrient: 'horizontal' | 'vertical';
|
|
28
29
|
toolboxItemSize: number;
|
|
@@ -130,6 +131,10 @@ export declare const gaugeComponentProps: {
|
|
|
130
131
|
type?: import("vue").PropType<boolean>;
|
|
131
132
|
default?: boolean;
|
|
132
133
|
};
|
|
134
|
+
toolboxInfoSource: {
|
|
135
|
+
type?: import("vue").PropType<boolean>;
|
|
136
|
+
default?: boolean;
|
|
137
|
+
};
|
|
133
138
|
toolboxShow: {
|
|
134
139
|
type?: import("vue").PropType<boolean>;
|
|
135
140
|
default?: boolean;
|
|
@@ -273,6 +273,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
273
273
|
type?: import("vue").PropType<boolean>;
|
|
274
274
|
default?: boolean;
|
|
275
275
|
};
|
|
276
|
+
toolboxInfoSource: {
|
|
277
|
+
type?: import("vue").PropType<boolean>;
|
|
278
|
+
default?: boolean;
|
|
279
|
+
};
|
|
276
280
|
toolboxOrient: {
|
|
277
281
|
type?: import("vue").PropType<string>;
|
|
278
282
|
default?: string;
|
|
@@ -608,6 +612,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
608
612
|
icon: string;
|
|
609
613
|
onclick(): void;
|
|
610
614
|
};
|
|
615
|
+
mySource: {
|
|
616
|
+
show: boolean;
|
|
617
|
+
title: string;
|
|
618
|
+
icon: string;
|
|
619
|
+
onclick(): void;
|
|
620
|
+
};
|
|
611
621
|
};
|
|
612
622
|
};
|
|
613
623
|
title: {
|
|
@@ -1029,6 +1039,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1029
1039
|
type?: import("vue").PropType<boolean>;
|
|
1030
1040
|
default?: boolean;
|
|
1031
1041
|
};
|
|
1042
|
+
toolboxInfoSource: {
|
|
1043
|
+
type?: import("vue").PropType<boolean>;
|
|
1044
|
+
default?: boolean;
|
|
1045
|
+
};
|
|
1032
1046
|
toolboxOrient: {
|
|
1033
1047
|
type?: import("vue").PropType<string>;
|
|
1034
1048
|
default?: string;
|
|
@@ -273,6 +273,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
273
273
|
type?: import("vue").PropType<boolean>;
|
|
274
274
|
default?: boolean;
|
|
275
275
|
};
|
|
276
|
+
toolboxInfoSource: {
|
|
277
|
+
type?: import("vue").PropType<boolean>;
|
|
278
|
+
default?: boolean;
|
|
279
|
+
};
|
|
276
280
|
toolboxOrient: {
|
|
277
281
|
type?: import("vue").PropType<string>;
|
|
278
282
|
default?: string;
|
|
@@ -608,6 +612,12 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
608
612
|
icon: string;
|
|
609
613
|
onclick(): void;
|
|
610
614
|
};
|
|
615
|
+
mySource: {
|
|
616
|
+
show: boolean;
|
|
617
|
+
title: string;
|
|
618
|
+
icon: string;
|
|
619
|
+
onclick(): void;
|
|
620
|
+
};
|
|
611
621
|
};
|
|
612
622
|
};
|
|
613
623
|
title: {
|
|
@@ -1029,6 +1039,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
1029
1039
|
type?: import("vue").PropType<boolean>;
|
|
1030
1040
|
default?: boolean;
|
|
1031
1041
|
};
|
|
1042
|
+
toolboxInfoSource: {
|
|
1043
|
+
type?: import("vue").PropType<boolean>;
|
|
1044
|
+
default?: boolean;
|
|
1045
|
+
};
|
|
1032
1046
|
toolboxOrient: {
|
|
1033
1047
|
type?: import("vue").PropType<string>;
|
|
1034
1048
|
default?: string;
|
|
@@ -58,6 +58,7 @@ export interface LineProps extends Props {
|
|
|
58
58
|
toolboxDownloadShow: boolean;
|
|
59
59
|
toolboxDataZoomShow: boolean;
|
|
60
60
|
toolboxInfoShow: boolean;
|
|
61
|
+
toolboxInfoSource: boolean;
|
|
61
62
|
toolboxOrient: 'horizontal' | 'vertical';
|
|
62
63
|
toolboxItemSize: number;
|
|
63
64
|
toolboxItemGap: number;
|
|
@@ -183,6 +184,7 @@ export declare const lineProps: {
|
|
|
183
184
|
toolboxDownloadShow: boolean;
|
|
184
185
|
toolboxDataZoomShow: boolean;
|
|
185
186
|
toolboxInfoShow: boolean;
|
|
187
|
+
toolboxInfoSource: boolean;
|
|
186
188
|
toolboxOrient: string;
|
|
187
189
|
toolboxItemSize: number;
|
|
188
190
|
toolboxItemGap: number;
|
|
@@ -536,6 +538,10 @@ export declare const lineComponentProps: {
|
|
|
536
538
|
type?: import("vue").PropType<boolean>;
|
|
537
539
|
default?: boolean;
|
|
538
540
|
};
|
|
541
|
+
toolboxInfoSource: {
|
|
542
|
+
type?: import("vue").PropType<boolean>;
|
|
543
|
+
default?: boolean;
|
|
544
|
+
};
|
|
539
545
|
toolboxOrient: {
|
|
540
546
|
type?: import("vue").PropType<string>;
|
|
541
547
|
default?: string;
|
|
@@ -56,6 +56,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
56
56
|
type?: import("vue").PropType<boolean>;
|
|
57
57
|
default?: boolean;
|
|
58
58
|
};
|
|
59
|
+
toolboxInfoSource: {
|
|
60
|
+
type?: import("vue").PropType<boolean>;
|
|
61
|
+
default?: boolean;
|
|
62
|
+
};
|
|
59
63
|
tooltipTrigger: {
|
|
60
64
|
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
61
65
|
default?: "none" | "axis" | "item";
|
|
@@ -467,6 +471,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
467
471
|
icon: string;
|
|
468
472
|
onclick(): void;
|
|
469
473
|
};
|
|
474
|
+
mySource: {
|
|
475
|
+
show: boolean;
|
|
476
|
+
title: string;
|
|
477
|
+
icon: string;
|
|
478
|
+
onclick(): void;
|
|
479
|
+
};
|
|
470
480
|
};
|
|
471
481
|
};
|
|
472
482
|
title: {
|
|
@@ -595,6 +605,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
595
605
|
type?: import("vue").PropType<boolean>;
|
|
596
606
|
default?: boolean;
|
|
597
607
|
};
|
|
608
|
+
toolboxInfoSource: {
|
|
609
|
+
type?: import("vue").PropType<boolean>;
|
|
610
|
+
default?: boolean;
|
|
611
|
+
};
|
|
598
612
|
tooltipTrigger: {
|
|
599
613
|
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
600
614
|
default?: "none" | "axis" | "item";
|
|
@@ -55,6 +55,10 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
55
55
|
type?: import("vue").PropType<boolean>;
|
|
56
56
|
default?: boolean;
|
|
57
57
|
};
|
|
58
|
+
toolboxInfoSource: {
|
|
59
|
+
type?: import("vue").PropType<boolean>;
|
|
60
|
+
default?: boolean;
|
|
61
|
+
};
|
|
58
62
|
tooltipTrigger: {
|
|
59
63
|
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
60
64
|
default?: "none" | "axis" | "item";
|
|
@@ -466,6 +470,12 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
466
470
|
icon: string;
|
|
467
471
|
onclick(): void;
|
|
468
472
|
};
|
|
473
|
+
mySource: {
|
|
474
|
+
show: boolean;
|
|
475
|
+
title: string;
|
|
476
|
+
icon: string;
|
|
477
|
+
onclick(): void;
|
|
478
|
+
};
|
|
469
479
|
};
|
|
470
480
|
};
|
|
471
481
|
title: {
|
|
@@ -594,6 +604,10 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
594
604
|
type?: import("vue").PropType<boolean>;
|
|
595
605
|
default?: boolean;
|
|
596
606
|
};
|
|
607
|
+
toolboxInfoSource: {
|
|
608
|
+
type?: import("vue").PropType<boolean>;
|
|
609
|
+
default?: boolean;
|
|
610
|
+
};
|
|
597
611
|
tooltipTrigger: {
|
|
598
612
|
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
599
613
|
default?: "none" | "axis" | "item";
|
|
@@ -14,6 +14,7 @@ export interface PieProps extends Props {
|
|
|
14
14
|
toolboxDownloadShow: boolean;
|
|
15
15
|
toolboxDataZoomShow: boolean;
|
|
16
16
|
toolboxInfoShow: boolean;
|
|
17
|
+
toolboxInfoSource: boolean;
|
|
17
18
|
tooltipTrigger: 'item' | 'axis' | 'none';
|
|
18
19
|
tooltipTextStyleColor: string;
|
|
19
20
|
tooltipFormatter: string;
|
|
@@ -133,6 +134,10 @@ export declare const pieComponentProps: {
|
|
|
133
134
|
type?: import("vue").PropType<boolean>;
|
|
134
135
|
default?: boolean;
|
|
135
136
|
};
|
|
137
|
+
toolboxInfoSource: {
|
|
138
|
+
type?: import("vue").PropType<boolean>;
|
|
139
|
+
default?: boolean;
|
|
140
|
+
};
|
|
136
141
|
tooltipTrigger: {
|
|
137
142
|
type?: import("vue").PropType<"none" | "axis" | "item">;
|
|
138
143
|
default?: "none" | "axis" | "item";
|