@ecan-bi/datav 1.2.79 → 1.2.81

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.
@@ -163,6 +163,22 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
163
163
  type?: import("vue").PropType<boolean>;
164
164
  default?: boolean;
165
165
  };
166
+ paginationColor: {
167
+ type?: import("vue").PropType<string>;
168
+ default?: string;
169
+ };
170
+ paginationBgColor: {
171
+ type?: import("vue").PropType<string>;
172
+ default?: string;
173
+ };
174
+ activePaginationColor: {
175
+ type?: import("vue").PropType<string>;
176
+ default?: string;
177
+ };
178
+ activePaginationBgColor: {
179
+ type?: import("vue").PropType<string>;
180
+ default?: string;
181
+ };
166
182
  id: {
167
183
  type?: import("vue").PropType<string>;
168
184
  default?: string;
@@ -460,6 +476,22 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
460
476
  type?: import("vue").PropType<boolean>;
461
477
  default?: boolean;
462
478
  };
479
+ paginationColor: {
480
+ type?: import("vue").PropType<string>;
481
+ default?: string;
482
+ };
483
+ paginationBgColor: {
484
+ type?: import("vue").PropType<string>;
485
+ default?: string;
486
+ };
487
+ activePaginationColor: {
488
+ type?: import("vue").PropType<string>;
489
+ default?: string;
490
+ };
491
+ activePaginationBgColor: {
492
+ type?: import("vue").PropType<string>;
493
+ default?: string;
494
+ };
463
495
  id: {
464
496
  type?: import("vue").PropType<string>;
465
497
  default?: string;
@@ -45,6 +45,10 @@ export interface TableProps extends Props {
45
45
  isPageBottom: boolean;
46
46
  isShowTotal: boolean;
47
47
  hideTableHeader: boolean;
48
+ paginationColor: string;
49
+ paginationBgColor: string;
50
+ activePaginationColor: string;
51
+ activePaginationBgColor: string;
48
52
  }
49
53
  export declare const tableProps: TableProps;
50
54
  export declare const tableComponentProps: {
@@ -212,6 +216,22 @@ export declare const tableComponentProps: {
212
216
  type?: import("vue").PropType<boolean>;
213
217
  default?: boolean;
214
218
  };
219
+ paginationColor: {
220
+ type?: import("vue").PropType<string>;
221
+ default?: string;
222
+ };
223
+ paginationBgColor: {
224
+ type?: import("vue").PropType<string>;
225
+ default?: string;
226
+ };
227
+ activePaginationColor: {
228
+ type?: import("vue").PropType<string>;
229
+ default?: string;
230
+ };
231
+ activePaginationBgColor: {
232
+ type?: import("vue").PropType<string>;
233
+ default?: string;
234
+ };
215
235
  id: {
216
236
  type?: import("vue").PropType<string>;
217
237
  default?: string;
@@ -5,6 +5,9 @@ interface dataProps {
5
5
  containerMap: {
6
6
  [key: string]: any;
7
7
  };
8
+ combinationMap?: {
9
+ [key: string]: any;
10
+ };
8
11
  }
9
12
  export declare function compatibleMobileList(data: dataProps): any[];
10
13
  export {};