@ecan-bi/datav 1.4.10 → 1.4.11
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 +24 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/types/laboratory/value-line/ValueLine.vue.d.ts +8 -0
- package/types/laboratory/value-line/index.d.ts +8 -0
- package/types/laboratory/value-line/props.d.ts +6 -0
|
@@ -411,6 +411,10 @@ export declare const EcanValueLine: import("../../utils/withInstall").SFCWithIns
|
|
|
411
411
|
type?: import("vue").PropType<any[]>;
|
|
412
412
|
default?: any[];
|
|
413
413
|
};
|
|
414
|
+
markPointFormatter: {
|
|
415
|
+
type?: import("vue").PropType<string>;
|
|
416
|
+
default?: string;
|
|
417
|
+
};
|
|
414
418
|
position: {
|
|
415
419
|
type?: import("vue").PropType<string>;
|
|
416
420
|
default?: string;
|
|
@@ -1075,6 +1079,10 @@ export declare const EcanValueLine: import("../../utils/withInstall").SFCWithIns
|
|
|
1075
1079
|
type?: import("vue").PropType<any[]>;
|
|
1076
1080
|
default?: any[];
|
|
1077
1081
|
};
|
|
1082
|
+
markPointFormatter: {
|
|
1083
|
+
type?: import("vue").PropType<string>;
|
|
1084
|
+
default?: string;
|
|
1085
|
+
};
|
|
1078
1086
|
position: {
|
|
1079
1087
|
type?: import("vue").PropType<string>;
|
|
1080
1088
|
default?: string;
|
|
@@ -98,6 +98,7 @@ export interface ValueLineProps extends Props {
|
|
|
98
98
|
axisMarkPoint: {
|
|
99
99
|
[key: string]: any;
|
|
100
100
|
}[];
|
|
101
|
+
markPointFormatter: string;
|
|
101
102
|
}
|
|
102
103
|
export declare const valueLineProps: {
|
|
103
104
|
id: string;
|
|
@@ -205,6 +206,7 @@ export declare const valueLineProps: {
|
|
|
205
206
|
tooltipTextStyleColor: string;
|
|
206
207
|
customPoint: string;
|
|
207
208
|
axisMarkPoint: any[];
|
|
209
|
+
markPointFormatter: string;
|
|
208
210
|
position: string;
|
|
209
211
|
zIndex: number;
|
|
210
212
|
isShow: boolean;
|
|
@@ -639,6 +641,10 @@ export declare const valueLineComponentProps: {
|
|
|
639
641
|
type?: import("vue").PropType<any[]>;
|
|
640
642
|
default?: any[];
|
|
641
643
|
};
|
|
644
|
+
markPointFormatter: {
|
|
645
|
+
type?: import("vue").PropType<string>;
|
|
646
|
+
default?: string;
|
|
647
|
+
};
|
|
642
648
|
position: {
|
|
643
649
|
type?: import("vue").PropType<string>;
|
|
644
650
|
default?: string;
|