@ecan-bi/datav 1.3.99 → 1.4.1
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 +2727 -2694
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +15 -15
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/line/Line.vue.d.ts +10 -0
- package/types/graph/line/index.d.ts +10 -0
- package/types/graph/line/props.d.ts +6 -0
- package/types/graph/pie/Pie.vue.d.ts +1 -0
- package/types/graph/pie/index.d.ts +1 -0
- package/types/laboratory/pivotTable/PivotTableContainer.vue.d.ts +2 -0
- package/types/laboratory/pivotTable/index.d.ts +2 -0
package/package.json
CHANGED
|
@@ -429,6 +429,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
429
429
|
type?: import("vue").PropType<boolean>;
|
|
430
430
|
default?: boolean;
|
|
431
431
|
};
|
|
432
|
+
tooltipTextStyleColor: {
|
|
433
|
+
type?: import("vue").PropType<string>;
|
|
434
|
+
default?: string;
|
|
435
|
+
};
|
|
432
436
|
position: {
|
|
433
437
|
type?: import("vue").PropType<string>;
|
|
434
438
|
default?: string;
|
|
@@ -516,6 +520,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
516
520
|
top: string;
|
|
517
521
|
itemSize: number;
|
|
518
522
|
itemGap: number;
|
|
523
|
+
orient: string;
|
|
519
524
|
feature: {
|
|
520
525
|
myDownload: {
|
|
521
526
|
show: boolean;
|
|
@@ -559,6 +564,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
559
564
|
trigger: string;
|
|
560
565
|
textStyle: {
|
|
561
566
|
fontSize: number;
|
|
567
|
+
color: string;
|
|
562
568
|
};
|
|
563
569
|
show: boolean;
|
|
564
570
|
formatter: (params: any) => string;
|
|
@@ -1110,6 +1116,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1110
1116
|
type?: import("vue").PropType<boolean>;
|
|
1111
1117
|
default?: boolean;
|
|
1112
1118
|
};
|
|
1119
|
+
tooltipTextStyleColor: {
|
|
1120
|
+
type?: import("vue").PropType<string>;
|
|
1121
|
+
default?: string;
|
|
1122
|
+
};
|
|
1113
1123
|
position: {
|
|
1114
1124
|
type?: import("vue").PropType<string>;
|
|
1115
1125
|
default?: string;
|
|
@@ -429,6 +429,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
429
429
|
type?: import("vue").PropType<boolean>;
|
|
430
430
|
default?: boolean;
|
|
431
431
|
};
|
|
432
|
+
tooltipTextStyleColor: {
|
|
433
|
+
type?: import("vue").PropType<string>;
|
|
434
|
+
default?: string;
|
|
435
|
+
};
|
|
432
436
|
position: {
|
|
433
437
|
type?: import("vue").PropType<string>;
|
|
434
438
|
default?: string;
|
|
@@ -516,6 +520,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
516
520
|
top: string;
|
|
517
521
|
itemSize: number;
|
|
518
522
|
itemGap: number;
|
|
523
|
+
orient: string;
|
|
519
524
|
feature: {
|
|
520
525
|
myDownload: {
|
|
521
526
|
show: boolean;
|
|
@@ -559,6 +564,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
559
564
|
trigger: string;
|
|
560
565
|
textStyle: {
|
|
561
566
|
fontSize: number;
|
|
567
|
+
color: string;
|
|
562
568
|
};
|
|
563
569
|
show: boolean;
|
|
564
570
|
formatter: (params: any) => string;
|
|
@@ -1110,6 +1116,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
1110
1116
|
type?: import("vue").PropType<boolean>;
|
|
1111
1117
|
default?: boolean;
|
|
1112
1118
|
};
|
|
1119
|
+
tooltipTextStyleColor: {
|
|
1120
|
+
type?: import("vue").PropType<string>;
|
|
1121
|
+
default?: string;
|
|
1122
|
+
};
|
|
1113
1123
|
position: {
|
|
1114
1124
|
type?: import("vue").PropType<string>;
|
|
1115
1125
|
default?: string;
|
|
@@ -97,6 +97,7 @@ export interface LineProps extends Props {
|
|
|
97
97
|
xAxisMaxValue: number;
|
|
98
98
|
yAxisMaxValue: number;
|
|
99
99
|
xAxisLabelShow: boolean;
|
|
100
|
+
tooltipTextStyleColor: string;
|
|
100
101
|
}
|
|
101
102
|
export declare const lineProps: {
|
|
102
103
|
id: string;
|
|
@@ -212,6 +213,7 @@ export declare const lineProps: {
|
|
|
212
213
|
xAxisMaxValue: any;
|
|
213
214
|
yAxisMaxValue: any;
|
|
214
215
|
xAxisLabelShow: boolean;
|
|
216
|
+
tooltipTextStyleColor: string;
|
|
215
217
|
position: string;
|
|
216
218
|
zIndex: number;
|
|
217
219
|
isShow: boolean;
|
|
@@ -663,6 +665,10 @@ export declare const lineComponentProps: {
|
|
|
663
665
|
type?: import("vue").PropType<boolean>;
|
|
664
666
|
default?: boolean;
|
|
665
667
|
};
|
|
668
|
+
tooltipTextStyleColor: {
|
|
669
|
+
type?: import("vue").PropType<string>;
|
|
670
|
+
default?: string;
|
|
671
|
+
};
|
|
666
672
|
position: {
|
|
667
673
|
type?: import("vue").PropType<string>;
|
|
668
674
|
default?: string;
|
|
@@ -295,7 +295,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
295
295
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
296
296
|
pageMode: string;
|
|
297
297
|
pivotTableRef: import("vue").Ref<any>;
|
|
298
|
+
calculateList: import("vue").Ref<any[]>;
|
|
298
299
|
click: () => void;
|
|
300
|
+
onCalculate: (item: any) => void;
|
|
299
301
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
300
302
|
graphicConfig: {
|
|
301
303
|
type?: import("vue").PropType<{
|
|
@@ -295,7 +295,9 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
295
295
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
296
296
|
pageMode: string;
|
|
297
297
|
pivotTableRef: import("vue").Ref<any>;
|
|
298
|
+
calculateList: import("vue").Ref<any[]>;
|
|
298
299
|
click: () => void;
|
|
300
|
+
onCalculate: (item: any) => void;
|
|
299
301
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
300
302
|
graphicConfig: {
|
|
301
303
|
type?: import("vue").PropType<{
|