@ecan-bi/datav 1.4.2 → 1.4.4
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 +1897 -1837
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +35 -35
- 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
|
@@ -120,6 +120,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
120
120
|
type?: import("vue").PropType<string>;
|
|
121
121
|
default?: string;
|
|
122
122
|
};
|
|
123
|
+
banScale: {
|
|
124
|
+
type?: import("vue").PropType<boolean>;
|
|
125
|
+
default?: boolean;
|
|
126
|
+
};
|
|
123
127
|
}, {
|
|
124
128
|
modalRef: import("vue").Ref<HTMLElement>;
|
|
125
129
|
containStyle: import("vue").Ref<{}>;
|
|
@@ -266,5 +270,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
266
270
|
type?: import("vue").PropType<string>;
|
|
267
271
|
default?: string;
|
|
268
272
|
};
|
|
273
|
+
banScale: {
|
|
274
|
+
type?: import("vue").PropType<boolean>;
|
|
275
|
+
default?: boolean;
|
|
276
|
+
};
|
|
269
277
|
}>>, {}>;
|
|
270
278
|
export default _sfc_main;
|
|
@@ -119,6 +119,10 @@ export declare const EcanModal: import('../../utils/withInstall').SFCWithInstall
|
|
|
119
119
|
type?: import("vue").PropType<string>;
|
|
120
120
|
default?: string;
|
|
121
121
|
};
|
|
122
|
+
banScale: {
|
|
123
|
+
type?: import("vue").PropType<boolean>;
|
|
124
|
+
default?: boolean;
|
|
125
|
+
};
|
|
122
126
|
}, {
|
|
123
127
|
modalRef: import("vue").Ref<HTMLElement>;
|
|
124
128
|
containStyle: import("vue").Ref<{}>;
|
|
@@ -265,6 +269,10 @@ export declare const EcanModal: import('../../utils/withInstall').SFCWithInstall
|
|
|
265
269
|
type?: import("vue").PropType<string>;
|
|
266
270
|
default?: string;
|
|
267
271
|
};
|
|
272
|
+
banScale: {
|
|
273
|
+
type?: import("vue").PropType<boolean>;
|
|
274
|
+
default?: boolean;
|
|
275
|
+
};
|
|
268
276
|
}>>, {}>> & Record<string, any>;
|
|
269
277
|
export default EcanModal;
|
|
270
278
|
export * from './props';
|
|
@@ -34,6 +34,7 @@ export interface ModalProps {
|
|
|
34
34
|
[key: string]: any;
|
|
35
35
|
}[];
|
|
36
36
|
parentIframeId: string;
|
|
37
|
+
banScale: boolean;
|
|
37
38
|
}
|
|
38
39
|
export declare const modalProps: ModalProps;
|
|
39
40
|
export declare const modalComponentProps: {
|
|
@@ -157,5 +158,9 @@ export declare const modalComponentProps: {
|
|
|
157
158
|
type?: import("vue").PropType<string>;
|
|
158
159
|
default?: string;
|
|
159
160
|
};
|
|
161
|
+
banScale: {
|
|
162
|
+
type?: import("vue").PropType<boolean>;
|
|
163
|
+
default?: boolean;
|
|
164
|
+
};
|
|
160
165
|
};
|
|
161
166
|
export declare const modalEvents: string[];
|
|
@@ -299,6 +299,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
299
299
|
click: () => void;
|
|
300
300
|
onCalculate: (item: any) => void;
|
|
301
301
|
onDeleteCalculate: (key: string) => void;
|
|
302
|
+
onFilter: (data: any) => void;
|
|
302
303
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
303
304
|
graphicConfig: {
|
|
304
305
|
type?: import("vue").PropType<{
|
|
@@ -299,6 +299,7 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
299
299
|
click: () => void;
|
|
300
300
|
onCalculate: (item: any) => void;
|
|
301
301
|
onDeleteCalculate: (key: string) => void;
|
|
302
|
+
onFilter: (data: any) => void;
|
|
302
303
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
303
304
|
graphicConfig: {
|
|
304
305
|
type?: import("vue").PropType<{
|