@ecan-bi/datav 1.6.16 → 1.6.17
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 +10008 -9884
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +82 -82
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
- package/types/container/border/Border.vue.d.ts +181 -1
- package/types/container/border/index.d.ts +181 -1
- package/types/container/border/props.d.ts +5 -0
- package/types/control/tree-select/TreeSelect.vue.d.ts +24 -0
- package/types/control/tree-select/index.d.ts +24 -0
- package/types/control/tree-select/props.d.ts +10 -0
- package/types/setting/page-config/PageConfig.vue.d.ts +16 -0
- package/types/setting/page-config/index.d.ts +16 -0
- package/types/setting/page-config/props.d.ts +11 -0
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
- package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +1 -0
- package/types/setting/provider-config/index.d.ts +16 -0
- package/types/setting/provider-config/props.d.ts +11 -0
|
@@ -119,6 +119,14 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
119
119
|
type?: import("vue").PropType<boolean>;
|
|
120
120
|
default?: boolean;
|
|
121
121
|
};
|
|
122
|
+
groupMap: {
|
|
123
|
+
type?: import("vue").PropType<{
|
|
124
|
+
[key: string]: any[];
|
|
125
|
+
}>;
|
|
126
|
+
default?: {
|
|
127
|
+
[key: string]: any[];
|
|
128
|
+
};
|
|
129
|
+
};
|
|
122
130
|
}, {
|
|
123
131
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
124
132
|
configStyle: any;
|
|
@@ -254,6 +262,14 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
254
262
|
type?: import("vue").PropType<boolean>;
|
|
255
263
|
default?: boolean;
|
|
256
264
|
};
|
|
265
|
+
groupMap: {
|
|
266
|
+
type?: import("vue").PropType<{
|
|
267
|
+
[key: string]: any[];
|
|
268
|
+
}>;
|
|
269
|
+
default?: {
|
|
270
|
+
[key: string]: any[];
|
|
271
|
+
};
|
|
272
|
+
};
|
|
257
273
|
}>>, {
|
|
258
274
|
pageId: string;
|
|
259
275
|
customStyle: Record<string, any>;
|
|
@@ -31,6 +31,9 @@ export interface ProviderConfig {
|
|
|
31
31
|
pivotTableFontSize: string;
|
|
32
32
|
drillDetailUrl: string;
|
|
33
33
|
hideLoading?: boolean;
|
|
34
|
+
groupMap: {
|
|
35
|
+
[key: string]: any[];
|
|
36
|
+
};
|
|
34
37
|
}
|
|
35
38
|
export declare const providerConfig: ProviderConfig;
|
|
36
39
|
export declare const providerConfigComponentProps: {
|
|
@@ -138,4 +141,12 @@ export declare const providerConfigComponentProps: {
|
|
|
138
141
|
type?: import("vue").PropType<boolean>;
|
|
139
142
|
default?: boolean;
|
|
140
143
|
};
|
|
144
|
+
groupMap: {
|
|
145
|
+
type?: import("vue").PropType<{
|
|
146
|
+
[key: string]: any[];
|
|
147
|
+
}>;
|
|
148
|
+
default?: {
|
|
149
|
+
[key: string]: any[];
|
|
150
|
+
};
|
|
151
|
+
};
|
|
141
152
|
};
|