@ecan-bi/datav 1.4.40 → 1.4.42
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 +5059 -4878
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +25 -25
- 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 +33 -0
- package/types/graph/bar/index.d.ts +33 -0
- package/types/graph/bar/props.d.ts +20 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +33 -0
- package/types/graph/combo-graph/index.d.ts +33 -0
- package/types/graph/combo-graph/props.d.ts +20 -0
- package/types/graph/line/Line.vue.d.ts +33 -0
- package/types/graph/line/index.d.ts +33 -0
- package/types/graph/line/props.d.ts +24 -0
- package/types/graph/pie/Pie.vue.d.ts +33 -0
- package/types/graph/pie/index.d.ts +33 -0
- package/types/graph/pie/props.d.ts +20 -0
- package/types/graph/scatter/Scatter.vue.d.ts +33 -0
- package/types/graph/scatter/index.d.ts +33 -0
- package/types/graph/scatter/props.d.ts +20 -0
- package/types/laboratory/pivotTable/PivotTableContainer.vue.d.ts +23 -8
- package/types/laboratory/pivotTable/index.d.ts +23 -8
- package/types/laboratory/pivotTable/props.d.ts +2 -2
- package/types/table/table/Table.vue.d.ts +20 -1
- package/types/table/table/index.d.ts +20 -1
- package/types/table/table/props.d.ts +11 -0
|
@@ -333,6 +333,22 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
333
333
|
type?: import("vue").PropType<boolean>;
|
|
334
334
|
default?: boolean;
|
|
335
335
|
};
|
|
336
|
+
noDataTip: {
|
|
337
|
+
type?: import("vue").PropType<boolean>;
|
|
338
|
+
default?: boolean;
|
|
339
|
+
};
|
|
340
|
+
tipText: {
|
|
341
|
+
type?: import("vue").PropType<string>;
|
|
342
|
+
default?: string;
|
|
343
|
+
};
|
|
344
|
+
tipTextColor: {
|
|
345
|
+
type?: import("vue").PropType<string>;
|
|
346
|
+
default?: string;
|
|
347
|
+
};
|
|
348
|
+
tipTextFontSize: {
|
|
349
|
+
type?: import("vue").PropType<string>;
|
|
350
|
+
default?: string;
|
|
351
|
+
};
|
|
336
352
|
id: {
|
|
337
353
|
type?: import("vue").PropType<string>;
|
|
338
354
|
default?: string;
|
|
@@ -633,6 +649,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
633
649
|
onClose: () => void;
|
|
634
650
|
ecanModal: import("vue").Ref<any>;
|
|
635
651
|
echartRef: import("vue").Ref<any>;
|
|
652
|
+
emptyData: import("vue").Ref<boolean>;
|
|
636
653
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
637
654
|
data: {
|
|
638
655
|
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
@@ -968,6 +985,22 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
968
985
|
type?: import("vue").PropType<boolean>;
|
|
969
986
|
default?: boolean;
|
|
970
987
|
};
|
|
988
|
+
noDataTip: {
|
|
989
|
+
type?: import("vue").PropType<boolean>;
|
|
990
|
+
default?: boolean;
|
|
991
|
+
};
|
|
992
|
+
tipText: {
|
|
993
|
+
type?: import("vue").PropType<string>;
|
|
994
|
+
default?: string;
|
|
995
|
+
};
|
|
996
|
+
tipTextColor: {
|
|
997
|
+
type?: import("vue").PropType<string>;
|
|
998
|
+
default?: string;
|
|
999
|
+
};
|
|
1000
|
+
tipTextFontSize: {
|
|
1001
|
+
type?: import("vue").PropType<string>;
|
|
1002
|
+
default?: string;
|
|
1003
|
+
};
|
|
971
1004
|
id: {
|
|
972
1005
|
type?: import("vue").PropType<string>;
|
|
973
1006
|
default?: string;
|
|
@@ -89,6 +89,10 @@ export interface ScatterProps extends Props {
|
|
|
89
89
|
yAxisMin: number;
|
|
90
90
|
xAxisLabelShow: boolean;
|
|
91
91
|
crossShow: boolean;
|
|
92
|
+
noDataTip: boolean;
|
|
93
|
+
tipText: string;
|
|
94
|
+
tipTextColor: string;
|
|
95
|
+
tipTextFontSize: string;
|
|
92
96
|
}
|
|
93
97
|
export declare const scatterProps: ScatterProps;
|
|
94
98
|
export declare const scatterComponentProps: {
|
|
@@ -426,6 +430,22 @@ export declare const scatterComponentProps: {
|
|
|
426
430
|
type?: import("vue").PropType<boolean>;
|
|
427
431
|
default?: boolean;
|
|
428
432
|
};
|
|
433
|
+
noDataTip: {
|
|
434
|
+
type?: import("vue").PropType<boolean>;
|
|
435
|
+
default?: boolean;
|
|
436
|
+
};
|
|
437
|
+
tipText: {
|
|
438
|
+
type?: import("vue").PropType<string>;
|
|
439
|
+
default?: string;
|
|
440
|
+
};
|
|
441
|
+
tipTextColor: {
|
|
442
|
+
type?: import("vue").PropType<string>;
|
|
443
|
+
default?: string;
|
|
444
|
+
};
|
|
445
|
+
tipTextFontSize: {
|
|
446
|
+
type?: import("vue").PropType<string>;
|
|
447
|
+
default?: string;
|
|
448
|
+
};
|
|
429
449
|
id: {
|
|
430
450
|
type?: import("vue").PropType<string>;
|
|
431
451
|
default?: string;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
fullMode: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
2
6
|
graphicConfig: {
|
|
3
7
|
type?: import("vue").PropType<{
|
|
4
8
|
[key: string]: any;
|
|
@@ -40,8 +44,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
40
44
|
};
|
|
41
45
|
};
|
|
42
46
|
configMode: {
|
|
43
|
-
type?: import("vue").PropType<"
|
|
44
|
-
default?: "
|
|
47
|
+
type?: import("vue").PropType<"fullMode" | "halfMode">;
|
|
48
|
+
default?: "fullMode" | "halfMode";
|
|
45
49
|
};
|
|
46
50
|
id: {
|
|
47
51
|
type?: import("vue").PropType<string>;
|
|
@@ -161,6 +165,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
161
165
|
};
|
|
162
166
|
}, {
|
|
163
167
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
168
|
+
fullMode: {
|
|
169
|
+
type: BooleanConstructor;
|
|
170
|
+
default: boolean;
|
|
171
|
+
};
|
|
164
172
|
graphicConfig: {
|
|
165
173
|
type?: import("vue").PropType<{
|
|
166
174
|
[key: string]: any;
|
|
@@ -202,8 +210,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
202
210
|
};
|
|
203
211
|
};
|
|
204
212
|
configMode: {
|
|
205
|
-
type?: import("vue").PropType<"
|
|
206
|
-
default?: "
|
|
213
|
+
type?: import("vue").PropType<"fullMode" | "halfMode">;
|
|
214
|
+
default?: "fullMode" | "halfMode";
|
|
207
215
|
};
|
|
208
216
|
id: {
|
|
209
217
|
type?: import("vue").PropType<string>;
|
|
@@ -377,7 +385,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
377
385
|
styleConfig: {
|
|
378
386
|
[key: string]: any;
|
|
379
387
|
};
|
|
380
|
-
configMode: "
|
|
388
|
+
configMode: "fullMode" | "halfMode";
|
|
389
|
+
fullMode: boolean;
|
|
381
390
|
}>;
|
|
382
391
|
indicatorUrl: import("vue").ComputedRef<any>;
|
|
383
392
|
click: () => void;
|
|
@@ -386,6 +395,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
386
395
|
data: any;
|
|
387
396
|
}) => void;
|
|
388
397
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
398
|
+
fullMode: {
|
|
399
|
+
type: BooleanConstructor;
|
|
400
|
+
default: boolean;
|
|
401
|
+
};
|
|
389
402
|
graphicConfig: {
|
|
390
403
|
type?: import("vue").PropType<{
|
|
391
404
|
[key: string]: any;
|
|
@@ -427,8 +440,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
427
440
|
};
|
|
428
441
|
};
|
|
429
442
|
configMode: {
|
|
430
|
-
type?: import("vue").PropType<"
|
|
431
|
-
default?: "
|
|
443
|
+
type?: import("vue").PropType<"fullMode" | "halfMode">;
|
|
444
|
+
default?: "fullMode" | "halfMode";
|
|
432
445
|
};
|
|
433
446
|
id: {
|
|
434
447
|
type?: import("vue").PropType<string>;
|
|
@@ -546,5 +559,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
546
559
|
type?: import("vue").PropType<null>;
|
|
547
560
|
default?: null;
|
|
548
561
|
};
|
|
549
|
-
}>>, {
|
|
562
|
+
}>>, {
|
|
563
|
+
fullMode: boolean;
|
|
564
|
+
}>;
|
|
550
565
|
export default _sfc_main;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
2
|
+
fullMode: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
2
6
|
graphicConfig: {
|
|
3
7
|
type?: import("vue").PropType<{
|
|
4
8
|
[key: string]: any;
|
|
@@ -40,8 +44,8 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
40
44
|
};
|
|
41
45
|
};
|
|
42
46
|
configMode: {
|
|
43
|
-
type?: import("vue").PropType<"
|
|
44
|
-
default?: "
|
|
47
|
+
type?: import("vue").PropType<"fullMode" | "halfMode">;
|
|
48
|
+
default?: "fullMode" | "halfMode";
|
|
45
49
|
};
|
|
46
50
|
id: {
|
|
47
51
|
type?: import("vue").PropType<string>;
|
|
@@ -161,6 +165,10 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
161
165
|
};
|
|
162
166
|
}, {
|
|
163
167
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
168
|
+
fullMode: {
|
|
169
|
+
type: BooleanConstructor;
|
|
170
|
+
default: boolean;
|
|
171
|
+
};
|
|
164
172
|
graphicConfig: {
|
|
165
173
|
type?: import("vue").PropType<{
|
|
166
174
|
[key: string]: any;
|
|
@@ -202,8 +210,8 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
202
210
|
};
|
|
203
211
|
};
|
|
204
212
|
configMode: {
|
|
205
|
-
type?: import("vue").PropType<"
|
|
206
|
-
default?: "
|
|
213
|
+
type?: import("vue").PropType<"fullMode" | "halfMode">;
|
|
214
|
+
default?: "fullMode" | "halfMode";
|
|
207
215
|
};
|
|
208
216
|
id: {
|
|
209
217
|
type?: import("vue").PropType<string>;
|
|
@@ -377,7 +385,8 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
377
385
|
styleConfig: {
|
|
378
386
|
[key: string]: any;
|
|
379
387
|
};
|
|
380
|
-
configMode: "
|
|
388
|
+
configMode: "fullMode" | "halfMode";
|
|
389
|
+
fullMode: boolean;
|
|
381
390
|
}>;
|
|
382
391
|
indicatorUrl: import("vue").ComputedRef<any>;
|
|
383
392
|
click: () => void;
|
|
@@ -386,6 +395,10 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
386
395
|
data: any;
|
|
387
396
|
}) => void;
|
|
388
397
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
398
|
+
fullMode: {
|
|
399
|
+
type: BooleanConstructor;
|
|
400
|
+
default: boolean;
|
|
401
|
+
};
|
|
389
402
|
graphicConfig: {
|
|
390
403
|
type?: import("vue").PropType<{
|
|
391
404
|
[key: string]: any;
|
|
@@ -427,8 +440,8 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
427
440
|
};
|
|
428
441
|
};
|
|
429
442
|
configMode: {
|
|
430
|
-
type?: import("vue").PropType<"
|
|
431
|
-
default?: "
|
|
443
|
+
type?: import("vue").PropType<"fullMode" | "halfMode">;
|
|
444
|
+
default?: "fullMode" | "halfMode";
|
|
432
445
|
};
|
|
433
446
|
id: {
|
|
434
447
|
type?: import("vue").PropType<string>;
|
|
@@ -546,6 +559,8 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
546
559
|
type?: import("vue").PropType<null>;
|
|
547
560
|
default?: null;
|
|
548
561
|
};
|
|
549
|
-
}>>, {
|
|
562
|
+
}>>, {
|
|
563
|
+
fullMode: boolean;
|
|
564
|
+
}>> & Record<string, any>;
|
|
550
565
|
export default EcanPivotTable;
|
|
551
566
|
export * from './props';
|
|
@@ -60,8 +60,8 @@ export declare const pivotTableComponentProps: {
|
|
|
60
60
|
};
|
|
61
61
|
};
|
|
62
62
|
configMode: {
|
|
63
|
-
type?: import("vue").PropType<"
|
|
64
|
-
default?: "
|
|
63
|
+
type?: import("vue").PropType<"fullMode" | "halfMode">;
|
|
64
|
+
default?: "fullMode" | "halfMode";
|
|
65
65
|
};
|
|
66
66
|
id: {
|
|
67
67
|
type?: import("vue").PropType<string>;
|
|
@@ -247,6 +247,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
247
247
|
type?: import("vue").PropType<boolean>;
|
|
248
248
|
default?: boolean;
|
|
249
249
|
};
|
|
250
|
+
conditionList: {
|
|
251
|
+
type?: import("vue").PropType<{
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
}[]>;
|
|
254
|
+
default?: {
|
|
255
|
+
[key: string]: any;
|
|
256
|
+
}[];
|
|
257
|
+
};
|
|
250
258
|
id: {
|
|
251
259
|
type?: import("vue").PropType<string>;
|
|
252
260
|
default?: string;
|
|
@@ -415,7 +423,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
415
423
|
seqIcon3: any;
|
|
416
424
|
iconSize: import("vue").ComputedRef<number>;
|
|
417
425
|
containerClass: import("vue").ComputedRef<string>;
|
|
418
|
-
getCellStyle: (column: any, value: any) => any;
|
|
426
|
+
getCellStyle: (column: any, value: any, record: any) => any;
|
|
419
427
|
isMatchCondition: (column: any, value: any) => any;
|
|
420
428
|
getAttrImgSrc: (column: any) => string;
|
|
421
429
|
getAttrImgStyle: (column: any) => {
|
|
@@ -429,6 +437,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
429
437
|
isScroll: import("vue").ComputedRef<boolean>;
|
|
430
438
|
scrollWrapStyle: import("vue").Ref<{}>;
|
|
431
439
|
isLinkStyle: (column: any) => boolean;
|
|
440
|
+
hasConditionConfig: (dataIndex: string) => boolean;
|
|
441
|
+
formatTextByConditions: (column: any, value: string, record: any) => string;
|
|
442
|
+
getChgByCondition: (column: any, value: string, record: any, type: number) => any;
|
|
432
443
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
433
444
|
columns: {
|
|
434
445
|
type?: import("vue").PropType<{
|
|
@@ -678,6 +689,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
678
689
|
type?: import("vue").PropType<boolean>;
|
|
679
690
|
default?: boolean;
|
|
680
691
|
};
|
|
692
|
+
conditionList: {
|
|
693
|
+
type?: import("vue").PropType<{
|
|
694
|
+
[key: string]: any;
|
|
695
|
+
}[]>;
|
|
696
|
+
default?: {
|
|
697
|
+
[key: string]: any;
|
|
698
|
+
}[];
|
|
699
|
+
};
|
|
681
700
|
id: {
|
|
682
701
|
type?: import("vue").PropType<string>;
|
|
683
702
|
default?: string;
|
|
@@ -247,6 +247,14 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
247
247
|
type?: import("vue").PropType<boolean>;
|
|
248
248
|
default?: boolean;
|
|
249
249
|
};
|
|
250
|
+
conditionList: {
|
|
251
|
+
type?: import("vue").PropType<{
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
}[]>;
|
|
254
|
+
default?: {
|
|
255
|
+
[key: string]: any;
|
|
256
|
+
}[];
|
|
257
|
+
};
|
|
250
258
|
id: {
|
|
251
259
|
type?: import("vue").PropType<string>;
|
|
252
260
|
default?: string;
|
|
@@ -415,7 +423,7 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
415
423
|
seqIcon3: any;
|
|
416
424
|
iconSize: import("vue").ComputedRef<number>;
|
|
417
425
|
containerClass: import("vue").ComputedRef<string>;
|
|
418
|
-
getCellStyle: (column: any, value: any) => any;
|
|
426
|
+
getCellStyle: (column: any, value: any, record: any) => any;
|
|
419
427
|
isMatchCondition: (column: any, value: any) => any;
|
|
420
428
|
getAttrImgSrc: (column: any) => string;
|
|
421
429
|
getAttrImgStyle: (column: any) => {
|
|
@@ -429,6 +437,9 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
429
437
|
isScroll: import("vue").ComputedRef<boolean>;
|
|
430
438
|
scrollWrapStyle: import("vue").Ref<{}>;
|
|
431
439
|
isLinkStyle: (column: any) => boolean;
|
|
440
|
+
hasConditionConfig: (dataIndex: string) => boolean;
|
|
441
|
+
formatTextByConditions: (column: any, value: string, record: any) => string;
|
|
442
|
+
getChgByCondition: (column: any, value: string, record: any, type: number) => any;
|
|
432
443
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
433
444
|
columns: {
|
|
434
445
|
type?: import("vue").PropType<{
|
|
@@ -678,6 +689,14 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
678
689
|
type?: import("vue").PropType<boolean>;
|
|
679
690
|
default?: boolean;
|
|
680
691
|
};
|
|
692
|
+
conditionList: {
|
|
693
|
+
type?: import("vue").PropType<{
|
|
694
|
+
[key: string]: any;
|
|
695
|
+
}[]>;
|
|
696
|
+
default?: {
|
|
697
|
+
[key: string]: any;
|
|
698
|
+
}[];
|
|
699
|
+
};
|
|
681
700
|
id: {
|
|
682
701
|
type?: import("vue").PropType<string>;
|
|
683
702
|
default?: string;
|
|
@@ -67,6 +67,9 @@ export interface TableProps extends Props {
|
|
|
67
67
|
clickTargetColumns: string[];
|
|
68
68
|
linkTextColor: string;
|
|
69
69
|
isTableFill: boolean;
|
|
70
|
+
conditionList: {
|
|
71
|
+
[key: string]: any;
|
|
72
|
+
}[];
|
|
70
73
|
}
|
|
71
74
|
export declare const tableProps: TableProps;
|
|
72
75
|
export declare const tableComponentProps: {
|
|
@@ -318,6 +321,14 @@ export declare const tableComponentProps: {
|
|
|
318
321
|
type?: import("vue").PropType<boolean>;
|
|
319
322
|
default?: boolean;
|
|
320
323
|
};
|
|
324
|
+
conditionList: {
|
|
325
|
+
type?: import("vue").PropType<{
|
|
326
|
+
[key: string]: any;
|
|
327
|
+
}[]>;
|
|
328
|
+
default?: {
|
|
329
|
+
[key: string]: any;
|
|
330
|
+
}[];
|
|
331
|
+
};
|
|
321
332
|
id: {
|
|
322
333
|
type?: import("vue").PropType<string>;
|
|
323
334
|
default?: string;
|