@ecan-bi/datav 1.6.3 → 1.6.5
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 +2369 -2376
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +29 -19
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/boxplot/Boxplot.vue.d.ts +1 -0
- package/types/graph/boxplot/index.d.ts +1 -0
- 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/index.d.ts +8 -0
- package/types/setting/provider-config/props.d.ts +5 -0
- package/types/text/text/Text.vue.d.ts +8 -0
- package/types/text/text/index.d.ts +8 -0
- package/types/text/text/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -95,6 +95,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
95
95
|
type?: import("vue").PropType<string>;
|
|
96
96
|
default?: string;
|
|
97
97
|
};
|
|
98
|
+
hideLoading?: {
|
|
99
|
+
type?: import("vue").PropType<boolean>;
|
|
100
|
+
default?: boolean;
|
|
101
|
+
};
|
|
98
102
|
}, {
|
|
99
103
|
style: import("vue").ComputedRef<any>;
|
|
100
104
|
container: import("vue").Ref<any>;
|
|
@@ -198,6 +202,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
198
202
|
type?: import("vue").PropType<string>;
|
|
199
203
|
default?: string;
|
|
200
204
|
};
|
|
205
|
+
hideLoading?: {
|
|
206
|
+
type?: import("vue").PropType<boolean>;
|
|
207
|
+
default?: boolean;
|
|
208
|
+
};
|
|
201
209
|
}>>, {
|
|
202
210
|
pageId: string;
|
|
203
211
|
customId: string;
|
|
@@ -95,6 +95,10 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
95
95
|
type?: import("vue").PropType<string>;
|
|
96
96
|
default?: string;
|
|
97
97
|
};
|
|
98
|
+
hideLoading?: {
|
|
99
|
+
type?: import("vue").PropType<boolean>;
|
|
100
|
+
default?: boolean;
|
|
101
|
+
};
|
|
98
102
|
}, {
|
|
99
103
|
style: import("vue").ComputedRef<any>;
|
|
100
104
|
container: import("vue").Ref<any>;
|
|
@@ -198,6 +202,10 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
198
202
|
type?: import("vue").PropType<string>;
|
|
199
203
|
default?: string;
|
|
200
204
|
};
|
|
205
|
+
hideLoading?: {
|
|
206
|
+
type?: import("vue").PropType<boolean>;
|
|
207
|
+
default?: boolean;
|
|
208
|
+
};
|
|
201
209
|
}>>, {
|
|
202
210
|
pageId: string;
|
|
203
211
|
customId: string;
|
|
@@ -23,6 +23,7 @@ export interface PageConfig {
|
|
|
23
23
|
drillingMode: 'normalTable' | 'pivotTable' | 'default';
|
|
24
24
|
pivotTableFontSize: string;
|
|
25
25
|
drillDetailUrl: string;
|
|
26
|
+
hideLoading?: boolean;
|
|
26
27
|
}
|
|
27
28
|
export declare const pageConfig: PageConfig;
|
|
28
29
|
export declare const pageConfigComponentProps: {
|
|
@@ -110,4 +111,8 @@ export declare const pageConfigComponentProps: {
|
|
|
110
111
|
type?: import("vue").PropType<string>;
|
|
111
112
|
default?: string;
|
|
112
113
|
};
|
|
114
|
+
hideLoading?: {
|
|
115
|
+
type?: import("vue").PropType<boolean>;
|
|
116
|
+
default?: boolean;
|
|
117
|
+
};
|
|
113
118
|
};
|
|
@@ -115,6 +115,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
115
115
|
type?: import("vue").PropType<string>;
|
|
116
116
|
default?: string;
|
|
117
117
|
};
|
|
118
|
+
hideLoading?: {
|
|
119
|
+
type?: import("vue").PropType<boolean>;
|
|
120
|
+
default?: boolean;
|
|
121
|
+
};
|
|
118
122
|
}, {
|
|
119
123
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
120
124
|
configStyle: any;
|
|
@@ -245,6 +249,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
245
249
|
type?: import("vue").PropType<string>;
|
|
246
250
|
default?: string;
|
|
247
251
|
};
|
|
252
|
+
hideLoading?: {
|
|
253
|
+
type?: import("vue").PropType<boolean>;
|
|
254
|
+
default?: boolean;
|
|
255
|
+
};
|
|
248
256
|
}>>, {
|
|
249
257
|
pageId: string;
|
|
250
258
|
customStyle: Record<string, any>;
|
|
@@ -115,6 +115,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
115
115
|
type?: import("vue").PropType<string>;
|
|
116
116
|
default?: string;
|
|
117
117
|
};
|
|
118
|
+
hideLoading?: {
|
|
119
|
+
type?: import("vue").PropType<boolean>;
|
|
120
|
+
default?: boolean;
|
|
121
|
+
};
|
|
118
122
|
}, {
|
|
119
123
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
120
124
|
configStyle: any;
|
|
@@ -245,6 +249,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
245
249
|
type?: import("vue").PropType<string>;
|
|
246
250
|
default?: string;
|
|
247
251
|
};
|
|
252
|
+
hideLoading?: {
|
|
253
|
+
type?: import("vue").PropType<boolean>;
|
|
254
|
+
default?: boolean;
|
|
255
|
+
};
|
|
248
256
|
}>>, {
|
|
249
257
|
pageId: string;
|
|
250
258
|
customStyle: Record<string, any>;
|
|
@@ -30,6 +30,7 @@ export interface ProviderConfig {
|
|
|
30
30
|
drillingMode: 'normalTable' | 'pivotTable' | 'default';
|
|
31
31
|
pivotTableFontSize: string;
|
|
32
32
|
drillDetailUrl: string;
|
|
33
|
+
hideLoading?: boolean;
|
|
33
34
|
}
|
|
34
35
|
export declare const providerConfig: ProviderConfig;
|
|
35
36
|
export declare const providerConfigComponentProps: {
|
|
@@ -133,4 +134,8 @@ export declare const providerConfigComponentProps: {
|
|
|
133
134
|
type?: import("vue").PropType<string>;
|
|
134
135
|
default?: string;
|
|
135
136
|
};
|
|
137
|
+
hideLoading?: {
|
|
138
|
+
type?: import("vue").PropType<boolean>;
|
|
139
|
+
default?: boolean;
|
|
140
|
+
};
|
|
136
141
|
};
|
|
@@ -223,6 +223,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
223
223
|
type?: import("vue").PropType<string>;
|
|
224
224
|
default?: string;
|
|
225
225
|
};
|
|
226
|
+
useWarningStatus?: {
|
|
227
|
+
type?: import("vue").PropType<boolean>;
|
|
228
|
+
default?: boolean;
|
|
229
|
+
};
|
|
226
230
|
id: {
|
|
227
231
|
type?: import("vue").PropType<string>;
|
|
228
232
|
default?: string;
|
|
@@ -605,6 +609,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
605
609
|
type?: import("vue").PropType<string>;
|
|
606
610
|
default?: string;
|
|
607
611
|
};
|
|
612
|
+
useWarningStatus?: {
|
|
613
|
+
type?: import("vue").PropType<boolean>;
|
|
614
|
+
default?: boolean;
|
|
615
|
+
};
|
|
608
616
|
id: {
|
|
609
617
|
type?: import("vue").PropType<string>;
|
|
610
618
|
default?: string;
|
|
@@ -223,6 +223,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
223
223
|
type?: import("vue").PropType<string>;
|
|
224
224
|
default?: string;
|
|
225
225
|
};
|
|
226
|
+
useWarningStatus?: {
|
|
227
|
+
type?: import("vue").PropType<boolean>;
|
|
228
|
+
default?: boolean;
|
|
229
|
+
};
|
|
226
230
|
id: {
|
|
227
231
|
type?: import("vue").PropType<string>;
|
|
228
232
|
default?: string;
|
|
@@ -605,6 +609,10 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
605
609
|
type?: import("vue").PropType<string>;
|
|
606
610
|
default?: string;
|
|
607
611
|
};
|
|
612
|
+
useWarningStatus?: {
|
|
613
|
+
type?: import("vue").PropType<boolean>;
|
|
614
|
+
default?: boolean;
|
|
615
|
+
};
|
|
608
616
|
id: {
|
|
609
617
|
type?: import("vue").PropType<string>;
|
|
610
618
|
default?: string;
|
|
@@ -59,6 +59,7 @@ export interface TextProps extends Props {
|
|
|
59
59
|
isContentMarkDown: boolean;
|
|
60
60
|
parentId?: string;
|
|
61
61
|
associatId?: string;
|
|
62
|
+
useWarningStatus?: boolean;
|
|
62
63
|
}
|
|
63
64
|
export declare const textProps: TextProps;
|
|
64
65
|
export declare const textComponentProps: {
|
|
@@ -286,6 +287,10 @@ export declare const textComponentProps: {
|
|
|
286
287
|
type?: import("vue").PropType<string>;
|
|
287
288
|
default?: string;
|
|
288
289
|
};
|
|
290
|
+
useWarningStatus?: {
|
|
291
|
+
type?: import("vue").PropType<boolean>;
|
|
292
|
+
default?: boolean;
|
|
293
|
+
};
|
|
289
294
|
id: {
|
|
290
295
|
type?: import("vue").PropType<string>;
|
|
291
296
|
default?: string;
|