@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.
@@ -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
  };