@ecan-bi/datav 1.5.45 → 1.5.46
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 +3254 -3184
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +26 -26
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +56 -0
- package/types/graph/combo-graph/index.d.ts +56 -0
- package/types/graph/combo-graph/props.d.ts +35 -0
- package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +6 -0
- package/types/setting/provider-config/drill-modal/LastDetail.vue.d.ts +9 -0
package/package.json
CHANGED
|
@@ -464,6 +464,34 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
464
464
|
type?: import("vue").PropType<string>;
|
|
465
465
|
default?: string;
|
|
466
466
|
};
|
|
467
|
+
labelShow: {
|
|
468
|
+
type?: import("vue").PropType<boolean>;
|
|
469
|
+
default?: boolean;
|
|
470
|
+
};
|
|
471
|
+
labelFontSize: {
|
|
472
|
+
type?: import("vue").PropType<string>;
|
|
473
|
+
default?: string;
|
|
474
|
+
};
|
|
475
|
+
labelPosition: {
|
|
476
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
477
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
478
|
+
};
|
|
479
|
+
labelColor: {
|
|
480
|
+
type?: import("vue").PropType<string>;
|
|
481
|
+
default?: string;
|
|
482
|
+
};
|
|
483
|
+
labelWidth: {
|
|
484
|
+
type?: import("vue").PropType<number>;
|
|
485
|
+
default?: number;
|
|
486
|
+
};
|
|
487
|
+
labelOverflow: {
|
|
488
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
489
|
+
default?: "none" | "truncate" | "break";
|
|
490
|
+
};
|
|
491
|
+
labelFormatter: {
|
|
492
|
+
type?: import("vue").PropType<string>;
|
|
493
|
+
default?: string;
|
|
494
|
+
};
|
|
467
495
|
id: {
|
|
468
496
|
type?: import("vue").PropType<string>;
|
|
469
497
|
default?: string;
|
|
@@ -1226,6 +1254,34 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1226
1254
|
type?: import("vue").PropType<string>;
|
|
1227
1255
|
default?: string;
|
|
1228
1256
|
};
|
|
1257
|
+
labelShow: {
|
|
1258
|
+
type?: import("vue").PropType<boolean>;
|
|
1259
|
+
default?: boolean;
|
|
1260
|
+
};
|
|
1261
|
+
labelFontSize: {
|
|
1262
|
+
type?: import("vue").PropType<string>;
|
|
1263
|
+
default?: string;
|
|
1264
|
+
};
|
|
1265
|
+
labelPosition: {
|
|
1266
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
1267
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
1268
|
+
};
|
|
1269
|
+
labelColor: {
|
|
1270
|
+
type?: import("vue").PropType<string>;
|
|
1271
|
+
default?: string;
|
|
1272
|
+
};
|
|
1273
|
+
labelWidth: {
|
|
1274
|
+
type?: import("vue").PropType<number>;
|
|
1275
|
+
default?: number;
|
|
1276
|
+
};
|
|
1277
|
+
labelOverflow: {
|
|
1278
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
1279
|
+
default?: "none" | "truncate" | "break";
|
|
1280
|
+
};
|
|
1281
|
+
labelFormatter: {
|
|
1282
|
+
type?: import("vue").PropType<string>;
|
|
1283
|
+
default?: string;
|
|
1284
|
+
};
|
|
1229
1285
|
id: {
|
|
1230
1286
|
type?: import("vue").PropType<string>;
|
|
1231
1287
|
default?: string;
|
|
@@ -463,6 +463,34 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
463
463
|
type?: import("vue").PropType<string>;
|
|
464
464
|
default?: string;
|
|
465
465
|
};
|
|
466
|
+
labelShow: {
|
|
467
|
+
type?: import("vue").PropType<boolean>;
|
|
468
|
+
default?: boolean;
|
|
469
|
+
};
|
|
470
|
+
labelFontSize: {
|
|
471
|
+
type?: import("vue").PropType<string>;
|
|
472
|
+
default?: string;
|
|
473
|
+
};
|
|
474
|
+
labelPosition: {
|
|
475
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
476
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
477
|
+
};
|
|
478
|
+
labelColor: {
|
|
479
|
+
type?: import("vue").PropType<string>;
|
|
480
|
+
default?: string;
|
|
481
|
+
};
|
|
482
|
+
labelWidth: {
|
|
483
|
+
type?: import("vue").PropType<number>;
|
|
484
|
+
default?: number;
|
|
485
|
+
};
|
|
486
|
+
labelOverflow: {
|
|
487
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
488
|
+
default?: "none" | "truncate" | "break";
|
|
489
|
+
};
|
|
490
|
+
labelFormatter: {
|
|
491
|
+
type?: import("vue").PropType<string>;
|
|
492
|
+
default?: string;
|
|
493
|
+
};
|
|
466
494
|
id: {
|
|
467
495
|
type?: import("vue").PropType<string>;
|
|
468
496
|
default?: string;
|
|
@@ -1225,6 +1253,34 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
1225
1253
|
type?: import("vue").PropType<string>;
|
|
1226
1254
|
default?: string;
|
|
1227
1255
|
};
|
|
1256
|
+
labelShow: {
|
|
1257
|
+
type?: import("vue").PropType<boolean>;
|
|
1258
|
+
default?: boolean;
|
|
1259
|
+
};
|
|
1260
|
+
labelFontSize: {
|
|
1261
|
+
type?: import("vue").PropType<string>;
|
|
1262
|
+
default?: string;
|
|
1263
|
+
};
|
|
1264
|
+
labelPosition: {
|
|
1265
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
1266
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
1267
|
+
};
|
|
1268
|
+
labelColor: {
|
|
1269
|
+
type?: import("vue").PropType<string>;
|
|
1270
|
+
default?: string;
|
|
1271
|
+
};
|
|
1272
|
+
labelWidth: {
|
|
1273
|
+
type?: import("vue").PropType<number>;
|
|
1274
|
+
default?: number;
|
|
1275
|
+
};
|
|
1276
|
+
labelOverflow: {
|
|
1277
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
1278
|
+
default?: "none" | "truncate" | "break";
|
|
1279
|
+
};
|
|
1280
|
+
labelFormatter: {
|
|
1281
|
+
type?: import("vue").PropType<string>;
|
|
1282
|
+
default?: string;
|
|
1283
|
+
};
|
|
1228
1284
|
id: {
|
|
1229
1285
|
type?: import("vue").PropType<string>;
|
|
1230
1286
|
default?: string;
|
|
@@ -119,6 +119,13 @@ export interface ComboGraphProps extends Props {
|
|
|
119
119
|
tipText: string;
|
|
120
120
|
tipTextColor: string;
|
|
121
121
|
tipTextFontSize: string;
|
|
122
|
+
labelShow: boolean;
|
|
123
|
+
labelFontSize: string;
|
|
124
|
+
labelPosition: 'inside' | 'top' | 'bottom' | 'right' | 'left';
|
|
125
|
+
labelColor: string;
|
|
126
|
+
labelWidth: number;
|
|
127
|
+
labelOverflow: 'none' | 'truncate' | 'break';
|
|
128
|
+
labelFormatter: string;
|
|
122
129
|
}
|
|
123
130
|
export declare const comboGraphProps: ComboGraphProps;
|
|
124
131
|
export declare const comboGraphComponentProps: {
|
|
@@ -586,6 +593,34 @@ export declare const comboGraphComponentProps: {
|
|
|
586
593
|
type?: import("vue").PropType<string>;
|
|
587
594
|
default?: string;
|
|
588
595
|
};
|
|
596
|
+
labelShow: {
|
|
597
|
+
type?: import("vue").PropType<boolean>;
|
|
598
|
+
default?: boolean;
|
|
599
|
+
};
|
|
600
|
+
labelFontSize: {
|
|
601
|
+
type?: import("vue").PropType<string>;
|
|
602
|
+
default?: string;
|
|
603
|
+
};
|
|
604
|
+
labelPosition: {
|
|
605
|
+
type?: import("vue").PropType<"top" | "left" | "right" | "bottom" | "inside">;
|
|
606
|
+
default?: "top" | "left" | "right" | "bottom" | "inside";
|
|
607
|
+
};
|
|
608
|
+
labelColor: {
|
|
609
|
+
type?: import("vue").PropType<string>;
|
|
610
|
+
default?: string;
|
|
611
|
+
};
|
|
612
|
+
labelWidth: {
|
|
613
|
+
type?: import("vue").PropType<number>;
|
|
614
|
+
default?: number;
|
|
615
|
+
};
|
|
616
|
+
labelOverflow: {
|
|
617
|
+
type?: import("vue").PropType<"none" | "truncate" | "break">;
|
|
618
|
+
default?: "none" | "truncate" | "break";
|
|
619
|
+
};
|
|
620
|
+
labelFormatter: {
|
|
621
|
+
type?: import("vue").PropType<string>;
|
|
622
|
+
default?: string;
|
|
623
|
+
};
|
|
589
624
|
id: {
|
|
590
625
|
type?: import("vue").PropType<string>;
|
|
591
626
|
default?: string;
|
|
@@ -67,6 +67,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
67
67
|
theDateInfo: any;
|
|
68
68
|
isShowSubDrillModal: import("vue").Ref<boolean>;
|
|
69
69
|
normalTableUnits: import("vue").Ref<{}>;
|
|
70
|
+
drillConditions: import("vue").ComputedRef<{
|
|
71
|
+
label: any;
|
|
72
|
+
typeGuid: any;
|
|
73
|
+
rule: any;
|
|
74
|
+
value: any;
|
|
75
|
+
}[]>;
|
|
70
76
|
getContainer: () => Element;
|
|
71
77
|
toggleFullScreen: () => void;
|
|
72
78
|
onDetailCancel: () => void;
|
|
@@ -8,6 +8,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
8
8
|
type: ObjectConstructor;
|
|
9
9
|
default: () => {};
|
|
10
10
|
};
|
|
11
|
+
scaleValue: {
|
|
12
|
+
type: ObjectConstructor;
|
|
13
|
+
default: () => {};
|
|
14
|
+
};
|
|
11
15
|
}, {
|
|
12
16
|
visible: import("vue").Ref<boolean>;
|
|
13
17
|
loading: import("vue").Ref<boolean>;
|
|
@@ -51,7 +55,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
51
55
|
type: ObjectConstructor;
|
|
52
56
|
default: () => {};
|
|
53
57
|
};
|
|
58
|
+
scaleValue: {
|
|
59
|
+
type: ObjectConstructor;
|
|
60
|
+
default: () => {};
|
|
61
|
+
};
|
|
54
62
|
}>>, {
|
|
55
63
|
theme: string;
|
|
64
|
+
scaleValue: Record<string, any>;
|
|
56
65
|
theDateInfo: Record<string, any>;
|
|
57
66
|
}>;
|