@ecan-bi/datav 1.4.1 → 1.4.2
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 +1973 -1966
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +20 -20
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/modal/Modal.vue.d.ts +8 -0
- package/types/container/modal/index.d.ts +8 -0
- package/types/container/modal/props.d.ts +5 -0
- package/types/laboratory/pivotTable/PivotTableContainer.vue.d.ts +1 -0
- package/types/laboratory/pivotTable/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -116,6 +116,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
116
116
|
[key: string]: any;
|
|
117
117
|
}[];
|
|
118
118
|
};
|
|
119
|
+
parentIframeId: {
|
|
120
|
+
type?: import("vue").PropType<string>;
|
|
121
|
+
default?: string;
|
|
122
|
+
};
|
|
119
123
|
}, {
|
|
120
124
|
modalRef: import("vue").Ref<HTMLElement>;
|
|
121
125
|
containStyle: import("vue").Ref<{}>;
|
|
@@ -258,5 +262,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
258
262
|
[key: string]: any;
|
|
259
263
|
}[];
|
|
260
264
|
};
|
|
265
|
+
parentIframeId: {
|
|
266
|
+
type?: import("vue").PropType<string>;
|
|
267
|
+
default?: string;
|
|
268
|
+
};
|
|
261
269
|
}>>, {}>;
|
|
262
270
|
export default _sfc_main;
|
|
@@ -115,6 +115,10 @@ export declare const EcanModal: import('../../utils/withInstall').SFCWithInstall
|
|
|
115
115
|
[key: string]: any;
|
|
116
116
|
}[];
|
|
117
117
|
};
|
|
118
|
+
parentIframeId: {
|
|
119
|
+
type?: import("vue").PropType<string>;
|
|
120
|
+
default?: string;
|
|
121
|
+
};
|
|
118
122
|
}, {
|
|
119
123
|
modalRef: import("vue").Ref<HTMLElement>;
|
|
120
124
|
containStyle: import("vue").Ref<{}>;
|
|
@@ -257,6 +261,10 @@ export declare const EcanModal: import('../../utils/withInstall').SFCWithInstall
|
|
|
257
261
|
[key: string]: any;
|
|
258
262
|
}[];
|
|
259
263
|
};
|
|
264
|
+
parentIframeId: {
|
|
265
|
+
type?: import("vue").PropType<string>;
|
|
266
|
+
default?: string;
|
|
267
|
+
};
|
|
260
268
|
}>>, {}>> & Record<string, any>;
|
|
261
269
|
export default EcanModal;
|
|
262
270
|
export * from './props';
|
|
@@ -33,6 +33,7 @@ export interface ModalProps {
|
|
|
33
33
|
requestList: {
|
|
34
34
|
[key: string]: any;
|
|
35
35
|
}[];
|
|
36
|
+
parentIframeId: string;
|
|
36
37
|
}
|
|
37
38
|
export declare const modalProps: ModalProps;
|
|
38
39
|
export declare const modalComponentProps: {
|
|
@@ -152,5 +153,9 @@ export declare const modalComponentProps: {
|
|
|
152
153
|
[key: string]: any;
|
|
153
154
|
}[];
|
|
154
155
|
};
|
|
156
|
+
parentIframeId: {
|
|
157
|
+
type?: import("vue").PropType<string>;
|
|
158
|
+
default?: string;
|
|
159
|
+
};
|
|
155
160
|
};
|
|
156
161
|
export declare const modalEvents: string[];
|
|
@@ -298,6 +298,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
298
298
|
calculateList: import("vue").Ref<any[]>;
|
|
299
299
|
click: () => void;
|
|
300
300
|
onCalculate: (item: any) => void;
|
|
301
|
+
onDeleteCalculate: (key: string) => void;
|
|
301
302
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
302
303
|
graphicConfig: {
|
|
303
304
|
type?: import("vue").PropType<{
|
|
@@ -298,6 +298,7 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
298
298
|
calculateList: import("vue").Ref<any[]>;
|
|
299
299
|
click: () => void;
|
|
300
300
|
onCalculate: (item: any) => void;
|
|
301
|
+
onDeleteCalculate: (key: string) => void;
|
|
301
302
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
302
303
|
graphicConfig: {
|
|
303
304
|
type?: import("vue").PropType<{
|