@ecan-bi/datav 1.6.15 → 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.
@@ -99,6 +99,14 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
99
99
  type?: import("vue").PropType<boolean>;
100
100
  default?: boolean;
101
101
  };
102
+ groupMap: {
103
+ type?: import("vue").PropType<{
104
+ [key: string]: any[];
105
+ }>;
106
+ default?: {
107
+ [key: string]: any[];
108
+ };
109
+ };
102
110
  }, {
103
111
  style: import("vue").ComputedRef<any>;
104
112
  container: import("vue").Ref<any>;
@@ -206,6 +214,14 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
206
214
  type?: import("vue").PropType<boolean>;
207
215
  default?: boolean;
208
216
  };
217
+ groupMap: {
218
+ type?: import("vue").PropType<{
219
+ [key: string]: any[];
220
+ }>;
221
+ default?: {
222
+ [key: string]: any[];
223
+ };
224
+ };
209
225
  }>>, {
210
226
  pageId: string;
211
227
  customId: string;
@@ -24,6 +24,9 @@ export interface PageConfig {
24
24
  pivotTableFontSize: string;
25
25
  drillDetailUrl: string;
26
26
  hideLoading?: boolean;
27
+ groupMap: {
28
+ [key: string]: any[];
29
+ };
27
30
  }
28
31
  export declare const pageConfig: PageConfig;
29
32
  export declare const pageConfigComponentProps: {
@@ -115,4 +118,12 @@ export declare const pageConfigComponentProps: {
115
118
  type?: import("vue").PropType<boolean>;
116
119
  default?: boolean;
117
120
  };
121
+ groupMap: {
122
+ type?: import("vue").PropType<{
123
+ [key: string]: any[];
124
+ }>;
125
+ default?: {
126
+ [key: string]: any[];
127
+ };
128
+ };
118
129
  };
@@ -119,6 +119,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
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 @@ declare const _sfc_main: import("vue").DefineComponent<{
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>;
@@ -108,6 +108,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
108
108
  dropDownMenuStyle: import("vue").Ref<{}>;
109
109
  dropDownMenuVisible: import("vue").Ref<boolean>;
110
110
  toBeSelectedDims: any;
111
+ unitMap: any;
111
112
  getContainer: () => Element;
112
113
  toggleFullScreen: () => void;
113
114
  onDetailCancel: () => void;
@@ -61,6 +61,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
61
61
  defaultValue: string;
62
62
  searchLoading: import("vue").Ref<boolean>;
63
63
  downloading: import("vue").Ref<boolean>;
64
+ summaryList: import("vue").Ref<any[]>;
65
+ summaryHeight: import("vue").Ref<number>;
64
66
  handleTableChange: (_page: any, _filters: any, sorter: any) => void;
65
67
  handlePageChange: (current: any, pageSize: any) => void;
66
68
  getContainer: () => Element;
@@ -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
  };