@ecan-bi/datav 1.6.9 → 1.6.11

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 (34) hide show
  1. package/dist/index.es.js +7931 -7797
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +41 -41
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +2 -2
  6. package/package.json +1 -1
  7. package/types/graph/bar/Bar.vue.d.ts +14 -0
  8. package/types/graph/bar/index.d.ts +14 -0
  9. package/types/graph/bar/props.d.ts +5 -0
  10. package/types/graph/boxplot/Boxplot.vue.d.ts +14 -0
  11. package/types/graph/boxplot/index.d.ts +14 -0
  12. package/types/graph/boxplot/props.d.ts +6 -0
  13. package/types/graph/budget/Budget.vue.d.ts +14 -0
  14. package/types/graph/budget/index.d.ts +14 -0
  15. package/types/graph/budget/props.d.ts +5 -0
  16. package/types/graph/combo-graph/ComboGraph.vue.d.ts +14 -0
  17. package/types/graph/combo-graph/index.d.ts +14 -0
  18. package/types/graph/combo-graph/props.d.ts +5 -0
  19. package/types/graph/gauge/Gauge.vue.d.ts +14 -0
  20. package/types/graph/gauge/index.d.ts +14 -0
  21. package/types/graph/gauge/props.d.ts +5 -0
  22. package/types/graph/line/Line.vue.d.ts +14 -0
  23. package/types/graph/line/index.d.ts +14 -0
  24. package/types/graph/line/props.d.ts +6 -0
  25. package/types/graph/pie/Pie.vue.d.ts +14 -0
  26. package/types/graph/pie/index.d.ts +14 -0
  27. package/types/graph/pie/props.d.ts +5 -0
  28. package/types/graph/radar/Radar.vue.d.ts +14 -0
  29. package/types/graph/radar/index.d.ts +14 -0
  30. package/types/graph/radar/props.d.ts +6 -0
  31. package/types/graph/scatter/Scatter.vue.d.ts +14 -0
  32. package/types/graph/scatter/index.d.ts +14 -0
  33. package/types/graph/scatter/props.d.ts +5 -0
  34. package/types/setting/provider-config/source-modal/SourceModal.vue.d.ts +7 -2
@@ -145,6 +145,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
145
145
  type?: import("vue").PropType<boolean>;
146
146
  default?: boolean;
147
147
  };
148
+ toolboxInfoSource: {
149
+ type?: import("vue").PropType<boolean>;
150
+ default?: boolean;
151
+ };
148
152
  toolboxOrient: {
149
153
  type?: import("vue").PropType<string>;
150
154
  default?: string;
@@ -439,6 +443,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
439
443
  icon: string;
440
444
  onclick(): void;
441
445
  };
446
+ mySource: {
447
+ show: boolean;
448
+ title: string;
449
+ icon: string;
450
+ onclick(): void;
451
+ };
442
452
  };
443
453
  };
444
454
  title: {
@@ -650,6 +660,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
650
660
  type?: import("vue").PropType<boolean>;
651
661
  default?: boolean;
652
662
  };
663
+ toolboxInfoSource: {
664
+ type?: import("vue").PropType<boolean>;
665
+ default?: boolean;
666
+ };
653
667
  toolboxOrient: {
654
668
  type?: import("vue").PropType<string>;
655
669
  default?: string;
@@ -145,6 +145,10 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
145
145
  type?: import("vue").PropType<boolean>;
146
146
  default?: boolean;
147
147
  };
148
+ toolboxInfoSource: {
149
+ type?: import("vue").PropType<boolean>;
150
+ default?: boolean;
151
+ };
148
152
  toolboxOrient: {
149
153
  type?: import("vue").PropType<string>;
150
154
  default?: string;
@@ -439,6 +443,12 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
439
443
  icon: string;
440
444
  onclick(): void;
441
445
  };
446
+ mySource: {
447
+ show: boolean;
448
+ title: string;
449
+ icon: string;
450
+ onclick(): void;
451
+ };
442
452
  };
443
453
  };
444
454
  title: {
@@ -650,6 +660,10 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
650
660
  type?: import("vue").PropType<boolean>;
651
661
  default?: boolean;
652
662
  };
663
+ toolboxInfoSource: {
664
+ type?: import("vue").PropType<boolean>;
665
+ default?: boolean;
666
+ };
653
667
  toolboxOrient: {
654
668
  type?: import("vue").PropType<string>;
655
669
  default?: string;
@@ -22,6 +22,7 @@ export interface RadarProps extends Props {
22
22
  toolboxDownloadShow: boolean;
23
23
  toolboxDataZoomShow: boolean;
24
24
  toolboxInfoShow: boolean;
25
+ toolboxInfoSource: boolean;
25
26
  toolboxOrient: 'horizontal' | 'vertical';
26
27
  toolboxItemSize: number;
27
28
  toolboxItemGap: number;
@@ -107,6 +108,7 @@ export declare const radarProps: {
107
108
  toolboxDownloadShow: boolean;
108
109
  toolboxDataZoomShow: boolean;
109
110
  toolboxInfoShow: boolean;
111
+ toolboxInfoSource: boolean;
110
112
  toolboxOrient: string;
111
113
  toolboxItemSize: number;
112
114
  toolboxItemGap: number;
@@ -322,6 +324,10 @@ export declare const radarComponentProps: {
322
324
  type?: import("vue").PropType<boolean>;
323
325
  default?: boolean;
324
326
  };
327
+ toolboxInfoSource: {
328
+ type?: import("vue").PropType<boolean>;
329
+ default?: boolean;
330
+ };
325
331
  toolboxOrient: {
326
332
  type?: import("vue").PropType<string>;
327
333
  default?: string;
@@ -201,6 +201,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
201
201
  type?: import("vue").PropType<boolean>;
202
202
  default?: boolean;
203
203
  };
204
+ toolboxInfoSource: {
205
+ type?: import("vue").PropType<boolean>;
206
+ default?: boolean;
207
+ };
204
208
  toolboxOrient: {
205
209
  type?: import("vue").PropType<"vertical" | "horizontal">;
206
210
  default?: "vertical" | "horizontal";
@@ -551,6 +555,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
551
555
  icon: string;
552
556
  onclick(): void;
553
557
  };
558
+ mySource: {
559
+ show: boolean;
560
+ title: string;
561
+ icon: string;
562
+ onclick(): void;
563
+ };
554
564
  };
555
565
  };
556
566
  title: {
@@ -918,6 +928,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
918
928
  type?: import("vue").PropType<boolean>;
919
929
  default?: boolean;
920
930
  };
931
+ toolboxInfoSource: {
932
+ type?: import("vue").PropType<boolean>;
933
+ default?: boolean;
934
+ };
921
935
  toolboxOrient: {
922
936
  type?: import("vue").PropType<"vertical" | "horizontal">;
923
937
  default?: "vertical" | "horizontal";
@@ -201,6 +201,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
201
201
  type?: import("vue").PropType<boolean>;
202
202
  default?: boolean;
203
203
  };
204
+ toolboxInfoSource: {
205
+ type?: import("vue").PropType<boolean>;
206
+ default?: boolean;
207
+ };
204
208
  toolboxOrient: {
205
209
  type?: import("vue").PropType<"vertical" | "horizontal">;
206
210
  default?: "vertical" | "horizontal";
@@ -551,6 +555,12 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
551
555
  icon: string;
552
556
  onclick(): void;
553
557
  };
558
+ mySource: {
559
+ show: boolean;
560
+ title: string;
561
+ icon: string;
562
+ onclick(): void;
563
+ };
554
564
  };
555
565
  };
556
566
  title: {
@@ -918,6 +928,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
918
928
  type?: import("vue").PropType<boolean>;
919
929
  default?: boolean;
920
930
  };
931
+ toolboxInfoSource: {
932
+ type?: import("vue").PropType<boolean>;
933
+ default?: boolean;
934
+ };
921
935
  toolboxOrient: {
922
936
  type?: import("vue").PropType<"vertical" | "horizontal">;
923
937
  default?: "vertical" | "horizontal";
@@ -53,6 +53,7 @@ export interface ScatterProps extends Props {
53
53
  toolboxDownloadShow: boolean;
54
54
  toolboxDataZoomShow: boolean;
55
55
  toolboxInfoShow: boolean;
56
+ toolboxInfoSource: boolean;
56
57
  toolboxOrient: 'horizontal' | 'vertical';
57
58
  toolboxItemSize: number;
58
59
  toolboxItemGap: number;
@@ -305,6 +306,10 @@ export declare const scatterComponentProps: {
305
306
  type?: import("vue").PropType<boolean>;
306
307
  default?: boolean;
307
308
  };
309
+ toolboxInfoSource: {
310
+ type?: import("vue").PropType<boolean>;
311
+ default?: boolean;
312
+ };
308
313
  toolboxOrient: {
309
314
  type?: import("vue").PropType<"vertical" | "horizontal">;
310
315
  default?: "vertical" | "horizontal";
@@ -4,10 +4,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
4
4
  default: string;
5
5
  };
6
6
  }, {
7
- columns: {
7
+ columns: ({
8
8
  title: string;
9
9
  dataIndex: string;
10
- }[];
10
+ width?: undefined;
11
+ } | {
12
+ title: string;
13
+ dataIndex: string;
14
+ width: number;
15
+ })[];
11
16
  dataSource: import("vue").Ref<any[]>;
12
17
  visible: import("vue").Ref<boolean>;
13
18
  wrapClassName: import("vue").ComputedRef<string>;