@ecan-bi/datav 1.4.38 → 1.4.40
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 +2205 -2164
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +20 -20
- 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 +16 -0
- package/types/graph/combo-graph/index.d.ts +16 -0
- package/types/graph/combo-graph/props.d.ts +10 -0
package/package.json
CHANGED
|
@@ -440,6 +440,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
440
440
|
type?: import("vue").PropType<boolean>;
|
|
441
441
|
default?: boolean;
|
|
442
442
|
};
|
|
443
|
+
yAxisLeftUnitAdapt: {
|
|
444
|
+
type?: import("vue").PropType<boolean>;
|
|
445
|
+
default?: boolean;
|
|
446
|
+
};
|
|
447
|
+
yAxisRightUnitAdapt: {
|
|
448
|
+
type?: import("vue").PropType<boolean>;
|
|
449
|
+
default?: boolean;
|
|
450
|
+
};
|
|
443
451
|
id: {
|
|
444
452
|
type?: import("vue").PropType<string>;
|
|
445
453
|
default?: string;
|
|
@@ -1153,6 +1161,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1153
1161
|
type?: import("vue").PropType<boolean>;
|
|
1154
1162
|
default?: boolean;
|
|
1155
1163
|
};
|
|
1164
|
+
yAxisLeftUnitAdapt: {
|
|
1165
|
+
type?: import("vue").PropType<boolean>;
|
|
1166
|
+
default?: boolean;
|
|
1167
|
+
};
|
|
1168
|
+
yAxisRightUnitAdapt: {
|
|
1169
|
+
type?: import("vue").PropType<boolean>;
|
|
1170
|
+
default?: boolean;
|
|
1171
|
+
};
|
|
1156
1172
|
id: {
|
|
1157
1173
|
type?: import("vue").PropType<string>;
|
|
1158
1174
|
default?: string;
|
|
@@ -439,6 +439,14 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
439
439
|
type?: import("vue").PropType<boolean>;
|
|
440
440
|
default?: boolean;
|
|
441
441
|
};
|
|
442
|
+
yAxisLeftUnitAdapt: {
|
|
443
|
+
type?: import("vue").PropType<boolean>;
|
|
444
|
+
default?: boolean;
|
|
445
|
+
};
|
|
446
|
+
yAxisRightUnitAdapt: {
|
|
447
|
+
type?: import("vue").PropType<boolean>;
|
|
448
|
+
default?: boolean;
|
|
449
|
+
};
|
|
442
450
|
id: {
|
|
443
451
|
type?: import("vue").PropType<string>;
|
|
444
452
|
default?: string;
|
|
@@ -1152,6 +1160,14 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
1152
1160
|
type?: import("vue").PropType<boolean>;
|
|
1153
1161
|
default?: boolean;
|
|
1154
1162
|
};
|
|
1163
|
+
yAxisLeftUnitAdapt: {
|
|
1164
|
+
type?: import("vue").PropType<boolean>;
|
|
1165
|
+
default?: boolean;
|
|
1166
|
+
};
|
|
1167
|
+
yAxisRightUnitAdapt: {
|
|
1168
|
+
type?: import("vue").PropType<boolean>;
|
|
1169
|
+
default?: boolean;
|
|
1170
|
+
};
|
|
1155
1171
|
id: {
|
|
1156
1172
|
type?: import("vue").PropType<string>;
|
|
1157
1173
|
default?: string;
|
|
@@ -113,6 +113,8 @@ export interface ComboGraphProps extends Props {
|
|
|
113
113
|
xAxisMaxValue: number;
|
|
114
114
|
yAxisMaxValue: number;
|
|
115
115
|
xAxisLabelShow: boolean;
|
|
116
|
+
yAxisLeftUnitAdapt: boolean;
|
|
117
|
+
yAxisRightUnitAdapt: boolean;
|
|
116
118
|
}
|
|
117
119
|
export declare const comboGraphProps: ComboGraphProps;
|
|
118
120
|
export declare const comboGraphComponentProps: {
|
|
@@ -556,6 +558,14 @@ export declare const comboGraphComponentProps: {
|
|
|
556
558
|
type?: import("vue").PropType<boolean>;
|
|
557
559
|
default?: boolean;
|
|
558
560
|
};
|
|
561
|
+
yAxisLeftUnitAdapt: {
|
|
562
|
+
type?: import("vue").PropType<boolean>;
|
|
563
|
+
default?: boolean;
|
|
564
|
+
};
|
|
565
|
+
yAxisRightUnitAdapt: {
|
|
566
|
+
type?: import("vue").PropType<boolean>;
|
|
567
|
+
default?: boolean;
|
|
568
|
+
};
|
|
559
569
|
id: {
|
|
560
570
|
type?: import("vue").PropType<string>;
|
|
561
571
|
default?: string;
|