@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.
- package/dist/index.es.js +3815 -3736
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +29 -29
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/modal/Modal.vue.d.ts +8 -0
- package/types/container/modal/index.d.ts +8 -0
- package/types/container/modal/props.d.ts +5 -0
- package/types/graph/line/Line.vue.d.ts +9 -0
- package/types/graph/line/index.d.ts +9 -0
- package/types/graph/line/props.d.ts +6 -0
- package/types/graph/radar/Radar.vue.d.ts +9 -0
- package/types/graph/radar/index.d.ts +9 -0
- package/types/graph/radar/props.d.ts +6 -0
- package/types/graph/scatter/Scatter.vue.d.ts +9 -0
- package/types/graph/scatter/index.d.ts +9 -0
- package/types/graph/scatter/props.d.ts +5 -0
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
- package/types/setting/provider-config/index.d.ts +16 -0
- package/types/setting/provider-config/props.d.ts +11 -0
- package/types/table/table/Table.vue.d.ts +32 -0
- package/types/table/table/index.d.ts +32 -0
- package/types/table/table/props.d.ts +20 -0
- package/types/utils/mobileUtils.d.ts +3 -0
|
@@ -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;
|