@ecan-bi/datav 1.4.41 → 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 +5020 -4843
- 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/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;
|
|
@@ -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;
|