@ecan-bi/datav 1.4.71 → 1.4.73
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 +3548 -3461
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +29 -29
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/scatter/Scatter.vue.d.ts +3 -0
- package/types/graph/scatter/index.d.ts +3 -0
- package/types/laboratory/pivotTable/PivotTableContainer.vue.d.ts +1 -1
- package/types/laboratory/pivotTable/index.d.ts +1 -1
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
- package/types/setting/provider-config/index.d.ts +16 -0
- package/types/utils/constant.d.ts +1 -0
package/package.json
CHANGED
|
@@ -650,6 +650,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
650
650
|
ecanModal: import("vue").Ref<any>;
|
|
651
651
|
echartRef: import("vue").Ref<any>;
|
|
652
652
|
emptyData: import("vue").Ref<boolean>;
|
|
653
|
+
eventObj: import("vue").Ref<{
|
|
654
|
+
[x: string]: any;
|
|
655
|
+
}>;
|
|
653
656
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
654
657
|
data: {
|
|
655
658
|
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
@@ -650,6 +650,9 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
650
650
|
ecanModal: import("vue").Ref<any>;
|
|
651
651
|
echartRef: import("vue").Ref<any>;
|
|
652
652
|
emptyData: import("vue").Ref<boolean>;
|
|
653
|
+
eventObj: import("vue").Ref<{
|
|
654
|
+
[x: string]: any;
|
|
655
|
+
}>;
|
|
653
656
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
654
657
|
data: {
|
|
655
658
|
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
@@ -348,6 +348,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
348
348
|
}[];
|
|
349
349
|
events: import("../../utils/props").Events;
|
|
350
350
|
id: string;
|
|
351
|
+
type: string;
|
|
351
352
|
dataType: "indicator" | "request" | "static";
|
|
352
353
|
graphicConfig: {
|
|
353
354
|
[key: string]: any;
|
|
@@ -368,7 +369,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
368
369
|
customRequestParams: string;
|
|
369
370
|
dataSetParam: any;
|
|
370
371
|
requestType: any;
|
|
371
|
-
type: string;
|
|
372
372
|
indicatorList: {
|
|
373
373
|
[key: string]: any;
|
|
374
374
|
}[];
|
|
@@ -348,6 +348,7 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
348
348
|
}[];
|
|
349
349
|
events: import("../../utils/props").Events;
|
|
350
350
|
id: string;
|
|
351
|
+
type: string;
|
|
351
352
|
dataType: "indicator" | "request" | "static";
|
|
352
353
|
graphicConfig: {
|
|
353
354
|
[key: string]: any;
|
|
@@ -368,7 +369,6 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
368
369
|
customRequestParams: string;
|
|
369
370
|
dataSetParam: any;
|
|
370
371
|
requestType: any;
|
|
371
|
-
type: string;
|
|
372
372
|
indicatorList: {
|
|
373
373
|
[key: string]: any;
|
|
374
374
|
}[];
|
|
@@ -78,6 +78,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
78
78
|
}, {
|
|
79
79
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
80
80
|
configStyle: any;
|
|
81
|
+
indDetailInfo: {
|
|
82
|
+
visible: boolean;
|
|
83
|
+
dataSource: any[];
|
|
84
|
+
columns: any[];
|
|
85
|
+
title: string;
|
|
86
|
+
pagination: {
|
|
87
|
+
current: number;
|
|
88
|
+
pageSize: number;
|
|
89
|
+
total: number;
|
|
90
|
+
showSizeChanger: boolean;
|
|
91
|
+
showQuickJumper: boolean;
|
|
92
|
+
showTotal: (total: number) => string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
getContainer: () => Element;
|
|
96
|
+
handleTableChange: (page: any) => void;
|
|
81
97
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
82
98
|
pageId: {
|
|
83
99
|
type: StringConstructor;
|
|
@@ -78,6 +78,22 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
78
78
|
}, {
|
|
79
79
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
80
80
|
configStyle: any;
|
|
81
|
+
indDetailInfo: {
|
|
82
|
+
visible: boolean;
|
|
83
|
+
dataSource: any[];
|
|
84
|
+
columns: any[];
|
|
85
|
+
title: string;
|
|
86
|
+
pagination: {
|
|
87
|
+
current: number;
|
|
88
|
+
pageSize: number;
|
|
89
|
+
total: number;
|
|
90
|
+
showSizeChanger: boolean;
|
|
91
|
+
showQuickJumper: boolean;
|
|
92
|
+
showTotal: (total: number) => string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
getContainer: () => Element;
|
|
96
|
+
handleTableChange: (page: any) => void;
|
|
81
97
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
82
98
|
pageId: {
|
|
83
99
|
type: StringConstructor;
|
|
@@ -6,6 +6,7 @@ export declare const GLOBAL_TOKEN = "GLOBAL_TOKEN";
|
|
|
6
6
|
export declare const REFRESH_PAGE = "REFRESH_PAGE";
|
|
7
7
|
export declare const MODAL_MODEL = "MODAL_MODEL";
|
|
8
8
|
export declare const LOADED_DATA = "LOADED_DATA";
|
|
9
|
+
export declare const COMMON_OPERATE = "COMMON_OPERATE";
|
|
9
10
|
export declare const ZOOM_FONT_SIZE = 18;
|
|
10
11
|
export declare const CONTEXT = "ygt";
|
|
11
12
|
export declare const INDICATOR_URL: any;
|