@ecan-bi/datav 1.5.42 → 1.5.44
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 +2618 -2493
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +20 -19
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/setting/page-config/PageConfig.vue.d.ts +8 -0
- package/types/setting/page-config/index.d.ts +8 -0
- package/types/setting/page-config/props.d.ts +5 -0
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +8 -0
- package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +9 -0
- package/types/setting/provider-config/drill-modal/LastDetail.vue.d.ts +7 -0
- package/types/setting/provider-config/index.d.ts +8 -0
- package/types/setting/provider-config/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -91,6 +91,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
91
91
|
type?: import("vue").PropType<string>;
|
|
92
92
|
default?: string;
|
|
93
93
|
};
|
|
94
|
+
drillDetailUrl: {
|
|
95
|
+
type?: import("vue").PropType<string>;
|
|
96
|
+
default?: string;
|
|
97
|
+
};
|
|
94
98
|
}, {
|
|
95
99
|
style: import("vue").ComputedRef<any>;
|
|
96
100
|
container: import("vue").Ref<any>;
|
|
@@ -188,6 +192,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
188
192
|
type?: import("vue").PropType<string>;
|
|
189
193
|
default?: string;
|
|
190
194
|
};
|
|
195
|
+
drillDetailUrl: {
|
|
196
|
+
type?: import("vue").PropType<string>;
|
|
197
|
+
default?: string;
|
|
198
|
+
};
|
|
191
199
|
}>>, {
|
|
192
200
|
pageId: string;
|
|
193
201
|
customId: string;
|
|
@@ -91,6 +91,10 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
91
91
|
type?: import("vue").PropType<string>;
|
|
92
92
|
default?: string;
|
|
93
93
|
};
|
|
94
|
+
drillDetailUrl: {
|
|
95
|
+
type?: import("vue").PropType<string>;
|
|
96
|
+
default?: string;
|
|
97
|
+
};
|
|
94
98
|
}, {
|
|
95
99
|
style: import("vue").ComputedRef<any>;
|
|
96
100
|
container: import("vue").Ref<any>;
|
|
@@ -188,6 +192,10 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
188
192
|
type?: import("vue").PropType<string>;
|
|
189
193
|
default?: string;
|
|
190
194
|
};
|
|
195
|
+
drillDetailUrl: {
|
|
196
|
+
type?: import("vue").PropType<string>;
|
|
197
|
+
default?: string;
|
|
198
|
+
};
|
|
191
199
|
}>>, {
|
|
192
200
|
pageId: string;
|
|
193
201
|
customId: string;
|
|
@@ -22,6 +22,7 @@ export interface PageConfig {
|
|
|
22
22
|
}[];
|
|
23
23
|
drillingMode: 'normalTable' | 'pivotTable' | 'default';
|
|
24
24
|
pivotTableFontSize: string;
|
|
25
|
+
drillDetailUrl: string;
|
|
25
26
|
}
|
|
26
27
|
export declare const pageConfig: PageConfig;
|
|
27
28
|
export declare const pageConfigComponentProps: {
|
|
@@ -105,4 +106,8 @@ export declare const pageConfigComponentProps: {
|
|
|
105
106
|
type?: import("vue").PropType<string>;
|
|
106
107
|
default?: string;
|
|
107
108
|
};
|
|
109
|
+
drillDetailUrl: {
|
|
110
|
+
type?: import("vue").PropType<string>;
|
|
111
|
+
default?: string;
|
|
112
|
+
};
|
|
108
113
|
};
|
|
@@ -107,6 +107,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
107
107
|
type?: import("vue").PropType<string>;
|
|
108
108
|
default?: string;
|
|
109
109
|
};
|
|
110
|
+
drillDetailUrl: {
|
|
111
|
+
type?: import("vue").PropType<string>;
|
|
112
|
+
default?: string;
|
|
113
|
+
};
|
|
110
114
|
}, {
|
|
111
115
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
112
116
|
configStyle: any;
|
|
@@ -227,6 +231,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
227
231
|
type?: import("vue").PropType<string>;
|
|
228
232
|
default?: string;
|
|
229
233
|
};
|
|
234
|
+
drillDetailUrl: {
|
|
235
|
+
type?: import("vue").PropType<string>;
|
|
236
|
+
default?: string;
|
|
237
|
+
};
|
|
230
238
|
}>>, {
|
|
231
239
|
pageId: string;
|
|
232
240
|
fixedHeight: string;
|
|
@@ -23,6 +23,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
23
23
|
type: StringConstructor;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
+
drillDetailUrl: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
26
30
|
}, {
|
|
27
31
|
indDetailInfo: {
|
|
28
32
|
keyName: string;
|
|
@@ -97,6 +101,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
97
101
|
type: StringConstructor;
|
|
98
102
|
default: string;
|
|
99
103
|
};
|
|
104
|
+
drillDetailUrl: {
|
|
105
|
+
type: StringConstructor;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
100
108
|
}>>, {
|
|
101
109
|
pageMode: string;
|
|
102
110
|
width: string;
|
|
@@ -104,5 +112,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
104
112
|
scaleValue: Record<string, any>;
|
|
105
113
|
drillingMode: string;
|
|
106
114
|
pivotTableFontSize: number;
|
|
115
|
+
drillDetailUrl: string;
|
|
107
116
|
}>;
|
|
108
117
|
export default _sfc_main;
|
|
@@ -26,15 +26,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
26
26
|
detailBodyStyle: import("vue").ComputedRef<{
|
|
27
27
|
padding: string;
|
|
28
28
|
maxHeight?: undefined;
|
|
29
|
+
height?: undefined;
|
|
29
30
|
overflow?: undefined;
|
|
30
31
|
} | {
|
|
31
32
|
maxHeight: string;
|
|
33
|
+
height: string;
|
|
32
34
|
overflow: string;
|
|
33
35
|
padding?: undefined;
|
|
34
36
|
}>;
|
|
35
37
|
isMobile: boolean;
|
|
38
|
+
urlJsonStr: import("vue").Ref<string>;
|
|
39
|
+
drillDetailUrl: import("vue").Ref<string>;
|
|
40
|
+
isIndFullScreen: import("vue").Ref<boolean>;
|
|
36
41
|
handleTableChange: (page: any) => void;
|
|
37
42
|
getContainer: () => Element;
|
|
43
|
+
onDetailCancel: () => void;
|
|
44
|
+
toggleFullScreen: () => void;
|
|
38
45
|
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
46
|
theme: {
|
|
40
47
|
type: StringConstructor;
|
|
@@ -107,6 +107,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
107
107
|
type?: import("vue").PropType<string>;
|
|
108
108
|
default?: string;
|
|
109
109
|
};
|
|
110
|
+
drillDetailUrl: {
|
|
111
|
+
type?: import("vue").PropType<string>;
|
|
112
|
+
default?: string;
|
|
113
|
+
};
|
|
110
114
|
}, {
|
|
111
115
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
112
116
|
configStyle: any;
|
|
@@ -227,6 +231,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
227
231
|
type?: import("vue").PropType<string>;
|
|
228
232
|
default?: string;
|
|
229
233
|
};
|
|
234
|
+
drillDetailUrl: {
|
|
235
|
+
type?: import("vue").PropType<string>;
|
|
236
|
+
default?: string;
|
|
237
|
+
};
|
|
230
238
|
}>>, {
|
|
231
239
|
pageId: string;
|
|
232
240
|
fixedHeight: string;
|
|
@@ -29,6 +29,7 @@ export interface ProviderConfig {
|
|
|
29
29
|
}[];
|
|
30
30
|
drillingMode: 'normalTable' | 'pivotTable' | 'default';
|
|
31
31
|
pivotTableFontSize: string;
|
|
32
|
+
drillDetailUrl: string;
|
|
32
33
|
}
|
|
33
34
|
export declare const providerConfig: ProviderConfig;
|
|
34
35
|
export declare const providerConfigComponentProps: {
|
|
@@ -128,4 +129,8 @@ export declare const providerConfigComponentProps: {
|
|
|
128
129
|
type?: import("vue").PropType<string>;
|
|
129
130
|
default?: string;
|
|
130
131
|
};
|
|
132
|
+
drillDetailUrl: {
|
|
133
|
+
type?: import("vue").PropType<string>;
|
|
134
|
+
default?: string;
|
|
135
|
+
};
|
|
131
136
|
};
|