@ecan-bi/datav 1.4.5 → 1.4.7
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 +1114 -1106
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +36 -36
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/types/graph/scatter/Scatter.vue.d.ts +8 -0
- package/types/graph/scatter/index.d.ts +8 -0
- package/types/graph/scatter/props.d.ts +5 -0
|
@@ -329,6 +329,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
329
329
|
type?: import("vue").PropType<boolean>;
|
|
330
330
|
default?: boolean;
|
|
331
331
|
};
|
|
332
|
+
crossShow: {
|
|
333
|
+
type?: import("vue").PropType<boolean>;
|
|
334
|
+
default?: boolean;
|
|
335
|
+
};
|
|
332
336
|
id: {
|
|
333
337
|
type?: import("vue").PropType<string>;
|
|
334
338
|
default?: string;
|
|
@@ -956,6 +960,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
956
960
|
type?: import("vue").PropType<boolean>;
|
|
957
961
|
default?: boolean;
|
|
958
962
|
};
|
|
963
|
+
crossShow: {
|
|
964
|
+
type?: import("vue").PropType<boolean>;
|
|
965
|
+
default?: boolean;
|
|
966
|
+
};
|
|
959
967
|
id: {
|
|
960
968
|
type?: import("vue").PropType<string>;
|
|
961
969
|
default?: string;
|
|
@@ -88,6 +88,7 @@ export interface ScatterProps extends Props {
|
|
|
88
88
|
yAxisMax: number;
|
|
89
89
|
yAxisMin: number;
|
|
90
90
|
xAxisLabelShow: boolean;
|
|
91
|
+
crossShow: boolean;
|
|
91
92
|
}
|
|
92
93
|
export declare const scatterProps: ScatterProps;
|
|
93
94
|
export declare const scatterComponentProps: {
|
|
@@ -421,6 +422,10 @@ export declare const scatterComponentProps: {
|
|
|
421
422
|
type?: import("vue").PropType<boolean>;
|
|
422
423
|
default?: boolean;
|
|
423
424
|
};
|
|
425
|
+
crossShow: {
|
|
426
|
+
type?: import("vue").PropType<boolean>;
|
|
427
|
+
default?: boolean;
|
|
428
|
+
};
|
|
424
429
|
id: {
|
|
425
430
|
type?: import("vue").PropType<string>;
|
|
426
431
|
default?: string;
|