@ecan-bi/datav 1.5.53 → 1.5.55
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 +2530 -2532
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +28 -28
- 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 +0 -3
- package/types/graph/scatter/index.d.ts +0 -3
- package/types/setting/page-config/PageConfig.vue.d.ts +2 -0
- package/types/setting/page-config/index.d.ts +2 -0
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +9 -0
- package/types/setting/provider-config/index.d.ts +9 -0
package/package.json
CHANGED
|
@@ -674,9 +674,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
674
674
|
ecanModal: import("vue").Ref<any>;
|
|
675
675
|
echartRef: import("vue").Ref<any>;
|
|
676
676
|
emptyData: import("vue").Ref<boolean>;
|
|
677
|
-
eventObj: import("vue").Ref<{
|
|
678
|
-
[x: string]: any;
|
|
679
|
-
}>;
|
|
680
677
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
681
678
|
data: {
|
|
682
679
|
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
@@ -674,9 +674,6 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
674
674
|
ecanModal: import("vue").Ref<any>;
|
|
675
675
|
echartRef: import("vue").Ref<any>;
|
|
676
676
|
emptyData: import("vue").Ref<boolean>;
|
|
677
|
-
eventObj: import("vue").Ref<{
|
|
678
|
-
[x: string]: any;
|
|
679
|
-
}>;
|
|
680
677
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
681
678
|
data: {
|
|
682
679
|
type?: import("vue").PropType<import("../../utils/props").Data>;
|
|
@@ -99,6 +99,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
99
99
|
style: import("vue").ComputedRef<any>;
|
|
100
100
|
container: import("vue").Ref<any>;
|
|
101
101
|
ready: import("vue").Ref<boolean>;
|
|
102
|
+
scaleValue: any;
|
|
103
|
+
containerStyle: import("vue").ComputedRef<any>;
|
|
102
104
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
103
105
|
pageId: {
|
|
104
106
|
type: StringConstructor;
|
|
@@ -99,6 +99,8 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
99
99
|
style: import("vue").ComputedRef<any>;
|
|
100
100
|
container: import("vue").Ref<any>;
|
|
101
101
|
ready: import("vue").Ref<boolean>;
|
|
102
|
+
scaleValue: any;
|
|
103
|
+
containerStyle: import("vue").ComputedRef<any>;
|
|
102
104
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
103
105
|
pageId: {
|
|
104
106
|
type: StringConstructor;
|
|
@@ -7,6 +7,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
|
+
customStyle: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default: () => {};
|
|
13
|
+
};
|
|
10
14
|
fixedHeight: {
|
|
11
15
|
type: StringConstructor;
|
|
12
16
|
default: string;
|
|
@@ -131,6 +135,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
131
135
|
type: StringConstructor;
|
|
132
136
|
default: string;
|
|
133
137
|
};
|
|
138
|
+
customStyle: {
|
|
139
|
+
type: ObjectConstructor;
|
|
140
|
+
default: () => {};
|
|
141
|
+
};
|
|
134
142
|
fixedHeight: {
|
|
135
143
|
type: StringConstructor;
|
|
136
144
|
default: string;
|
|
@@ -237,6 +245,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
237
245
|
};
|
|
238
246
|
}>>, {
|
|
239
247
|
pageId: string;
|
|
248
|
+
customStyle: Record<string, any>;
|
|
240
249
|
fixedHeight: string;
|
|
241
250
|
customId: string;
|
|
242
251
|
}>;
|
|
@@ -7,6 +7,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
|
+
customStyle: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default: () => {};
|
|
13
|
+
};
|
|
10
14
|
fixedHeight: {
|
|
11
15
|
type: StringConstructor;
|
|
12
16
|
default: string;
|
|
@@ -131,6 +135,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
131
135
|
type: StringConstructor;
|
|
132
136
|
default: string;
|
|
133
137
|
};
|
|
138
|
+
customStyle: {
|
|
139
|
+
type: ObjectConstructor;
|
|
140
|
+
default: () => {};
|
|
141
|
+
};
|
|
134
142
|
fixedHeight: {
|
|
135
143
|
type: StringConstructor;
|
|
136
144
|
default: string;
|
|
@@ -237,6 +245,7 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
237
245
|
};
|
|
238
246
|
}>>, {
|
|
239
247
|
pageId: string;
|
|
248
|
+
customStyle: Record<string, any>;
|
|
240
249
|
fixedHeight: string;
|
|
241
250
|
customId: string;
|
|
242
251
|
}>> & Record<string, any>;
|