@ecan-bi/datav 1.5.74 → 1.5.76
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 +4918 -4902
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +34 -34
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/line/Line.vue.d.ts +8 -0
- package/types/graph/line/index.d.ts +8 -0
- package/types/graph/line/props.d.ts +6 -0
- package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +1 -0
- package/types/setting/provider-config/drill-modal/LastDetail.vue.d.ts +1 -0
package/package.json
CHANGED
|
@@ -465,6 +465,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
465
465
|
type?: import("vue").PropType<boolean>;
|
|
466
466
|
default?: boolean;
|
|
467
467
|
};
|
|
468
|
+
backgroundColor: {
|
|
469
|
+
type?: import("vue").PropType<string>;
|
|
470
|
+
default?: string;
|
|
471
|
+
};
|
|
468
472
|
position: {
|
|
469
473
|
type?: import("vue").PropType<string>;
|
|
470
474
|
default?: string;
|
|
@@ -1213,6 +1217,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1213
1217
|
type?: import("vue").PropType<boolean>;
|
|
1214
1218
|
default?: boolean;
|
|
1215
1219
|
};
|
|
1220
|
+
backgroundColor: {
|
|
1221
|
+
type?: import("vue").PropType<string>;
|
|
1222
|
+
default?: string;
|
|
1223
|
+
};
|
|
1216
1224
|
position: {
|
|
1217
1225
|
type?: import("vue").PropType<string>;
|
|
1218
1226
|
default?: string;
|
|
@@ -465,6 +465,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
465
465
|
type?: import("vue").PropType<boolean>;
|
|
466
466
|
default?: boolean;
|
|
467
467
|
};
|
|
468
|
+
backgroundColor: {
|
|
469
|
+
type?: import("vue").PropType<string>;
|
|
470
|
+
default?: string;
|
|
471
|
+
};
|
|
468
472
|
position: {
|
|
469
473
|
type?: import("vue").PropType<string>;
|
|
470
474
|
default?: string;
|
|
@@ -1213,6 +1217,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
1213
1217
|
type?: import("vue").PropType<boolean>;
|
|
1214
1218
|
default?: boolean;
|
|
1215
1219
|
};
|
|
1220
|
+
backgroundColor: {
|
|
1221
|
+
type?: import("vue").PropType<string>;
|
|
1222
|
+
default?: string;
|
|
1223
|
+
};
|
|
1216
1224
|
position: {
|
|
1217
1225
|
type?: import("vue").PropType<string>;
|
|
1218
1226
|
default?: string;
|
|
@@ -106,6 +106,7 @@ export interface LineProps extends Props {
|
|
|
106
106
|
startValue: string;
|
|
107
107
|
endValue: string;
|
|
108
108
|
isForbidClick: boolean;
|
|
109
|
+
backgroundColor: string;
|
|
109
110
|
}
|
|
110
111
|
export declare const lineProps: {
|
|
111
112
|
id: string;
|
|
@@ -230,6 +231,7 @@ export declare const lineProps: {
|
|
|
230
231
|
startValue: string;
|
|
231
232
|
endValue: string;
|
|
232
233
|
isForbidClick: boolean;
|
|
234
|
+
backgroundColor: string;
|
|
233
235
|
position: string;
|
|
234
236
|
zIndex: number;
|
|
235
237
|
isShow: boolean;
|
|
@@ -725,6 +727,10 @@ export declare const lineComponentProps: {
|
|
|
725
727
|
type?: import("vue").PropType<boolean>;
|
|
726
728
|
default?: boolean;
|
|
727
729
|
};
|
|
730
|
+
backgroundColor: {
|
|
731
|
+
type?: import("vue").PropType<string>;
|
|
732
|
+
default?: string;
|
|
733
|
+
};
|
|
728
734
|
position: {
|
|
729
735
|
type?: import("vue").PropType<string>;
|
|
730
736
|
default?: string;
|
|
@@ -48,6 +48,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
48
48
|
urlJsonStr: import("vue").Ref<string>;
|
|
49
49
|
drillDetailUrl: import("vue").Ref<string>;
|
|
50
50
|
isIndFullScreen: import("vue").Ref<boolean>;
|
|
51
|
+
tableFontSize: import("vue").ComputedRef<string>;
|
|
51
52
|
handleTableChange: (page: any) => void;
|
|
52
53
|
getContainer: () => Element;
|
|
53
54
|
onDetailCancel: () => void;
|