@ecan-bi/datav 1.6.37 → 1.6.38
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 +4873 -4846
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +41 -41
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +10 -0
- package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +9 -0
- package/types/setting/provider-config/index.d.ts +10 -0
package/package.json
CHANGED
|
@@ -15,6 +15,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
|
+
isOutDrill: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
18
22
|
contextRequestUrl: {
|
|
19
23
|
type?: import("vue").PropType<string>;
|
|
20
24
|
default?: string;
|
|
@@ -140,6 +144,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
140
144
|
defaultPivotTableFontSize: import("vue").ComputedRef<number>;
|
|
141
145
|
isMobile: import("vue").ComputedRef<boolean>;
|
|
142
146
|
isShowDrillModal: import("vue").Ref<boolean>;
|
|
147
|
+
isOutTriggerDrill: import("vue").Ref<boolean>;
|
|
143
148
|
onCloseModal: () => void;
|
|
144
149
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
145
150
|
pageId: {
|
|
@@ -158,6 +163,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
158
163
|
type: StringConstructor;
|
|
159
164
|
default: string;
|
|
160
165
|
};
|
|
166
|
+
isOutDrill: {
|
|
167
|
+
type: BooleanConstructor;
|
|
168
|
+
default: boolean;
|
|
169
|
+
};
|
|
161
170
|
contextRequestUrl: {
|
|
162
171
|
type?: import("vue").PropType<string>;
|
|
163
172
|
default?: string;
|
|
@@ -275,5 +284,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
275
284
|
customStyle: Record<string, any>;
|
|
276
285
|
fixedHeight: string;
|
|
277
286
|
customId: string;
|
|
287
|
+
isOutDrill: boolean;
|
|
278
288
|
}>;
|
|
279
289
|
export default _sfc_main;
|
|
@@ -31,6 +31,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
31
31
|
type: BooleanConstructor;
|
|
32
32
|
default: boolean;
|
|
33
33
|
};
|
|
34
|
+
isOutDrill: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
34
38
|
}, {
|
|
35
39
|
indDetailInfo: {
|
|
36
40
|
keyName: string;
|
|
@@ -158,6 +162,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
158
162
|
type: BooleanConstructor;
|
|
159
163
|
default: boolean;
|
|
160
164
|
};
|
|
165
|
+
isOutDrill: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
161
169
|
}>>, {
|
|
162
170
|
pageMode: string;
|
|
163
171
|
width: string;
|
|
@@ -167,5 +175,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
167
175
|
pivotTableFontSize: number;
|
|
168
176
|
drillDetailUrl: string;
|
|
169
177
|
isShowMask: boolean;
|
|
178
|
+
isOutDrill: boolean;
|
|
170
179
|
}>;
|
|
171
180
|
export default _sfc_main;
|
|
@@ -15,6 +15,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
|
+
isOutDrill: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
18
22
|
contextRequestUrl: {
|
|
19
23
|
type?: import("vue").PropType<string>;
|
|
20
24
|
default?: string;
|
|
@@ -140,6 +144,7 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
140
144
|
defaultPivotTableFontSize: import("vue").ComputedRef<number>;
|
|
141
145
|
isMobile: import("vue").ComputedRef<boolean>;
|
|
142
146
|
isShowDrillModal: import("vue").Ref<boolean>;
|
|
147
|
+
isOutTriggerDrill: import("vue").Ref<boolean>;
|
|
143
148
|
onCloseModal: () => void;
|
|
144
149
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
145
150
|
pageId: {
|
|
@@ -158,6 +163,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
158
163
|
type: StringConstructor;
|
|
159
164
|
default: string;
|
|
160
165
|
};
|
|
166
|
+
isOutDrill: {
|
|
167
|
+
type: BooleanConstructor;
|
|
168
|
+
default: boolean;
|
|
169
|
+
};
|
|
161
170
|
contextRequestUrl: {
|
|
162
171
|
type?: import("vue").PropType<string>;
|
|
163
172
|
default?: string;
|
|
@@ -275,6 +284,7 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
275
284
|
customStyle: Record<string, any>;
|
|
276
285
|
fixedHeight: string;
|
|
277
286
|
customId: string;
|
|
287
|
+
isOutDrill: boolean;
|
|
278
288
|
}>> & Record<string, any>;
|
|
279
289
|
export default EcanProviderConfig;
|
|
280
290
|
export * from './props';
|